Skip to main content
Box

PageCanvas.DrawRectangle(RichEditPenBase, Int32, Int32, Int32, Int32) Method

Draws a custom rectangle.

Namespace: DevExpress.XtraRichEdit.API.Layout

Assembly: DevExpress.RichEdit.v23.2.Core.dll

NuGet Packages: DevExpress.RichEdit.Core, DevExpress.Win.Navigation

Declaration

public void DrawRectangle(
    RichEditPenBase pen,
    int x,
    int y,
    int width,
    int height
)

Parameters

Name Type Description
pen RichEditPenBase

The RichEditPenBase descendant that sets the outline color and thickness.

x Int32

Sets the x-coordinate of the shape’s upper-left corner.

y Int32

Sets the y-coordinate of the shape’s upper-left corner.

width Int32

Sets the shape’s width.

height Int32

Sets the shape’s height.

Remarks

To set the line style, use the RichEditPenBase.DashStyle method.

See Also