Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Box

PageCanvas.FillEllipse(RichEditBrushBase, Rectangle) Method

Draws a filled custom ellipse.

Namespace: DevExpress.XtraRichEdit.API.Layout

Assembly: DevExpress.RichEdit.v19.1.Core.dll

Declaration

public abstract void FillEllipse(
    RichEditBrushBase brush,
    Rectangle bounds
)

Parameters

Name Type Description
brush RichEditBrushBase

The RichEditBrushBase descendant that sets the shape color and thickness.

bounds Rectangle

Sets the location and size of the shape.

Example

This code snippet illustrates the implementation of the PageCanvas.DrawImage and PageCanvas.FillEllipse methods. They draw a filled color ellipse and a custom image over the table cell.

Public Overrides Sub DrawTableCell(ByVal tableCell As LayoutTableCell)
    If Form1.customDrawTable = True Then
        Dim Tbounds As Rectangle = tableCell.Bounds
        Dim tableRectangle As New Rectangle(New Point(Tbounds.X + Tbounds.Width \ 2 - 10, Tbounds.Y + Tbounds.Height \ 2 - 10), New Size(20, 20))
        Canvas.FillEllipse(New RichEditBrush(Color.MediumAquamarine), Canvas.ConvertToDrawingLayoutUnits(tableRectangle, DocumentLayoutUnit.Pixel))
        Canvas.DrawImage(OfficeImage.CreateImage(DevExpress.Images.ImageResourceCache.Default.GetImage("devav/people/employeeaward_16x16.png")), tableCell.Bounds, ImageSizeMode.Squeeze)
        MyBase.DrawTableCell(tableCell)
    Else
        MyBase.DrawTableCell(tableCell)
    End If
End Sub

The following code snippets (auto-collected from DevExpress Examples) contain references to the FillEllipse(RichEditBrushBase, Rectangle) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also