Skip to main content

CustomDrawEventArgs.Bounds Property

Gets the painted element’s bounding rectangle.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v23.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

Declaration

public Rectangle Bounds { get; }

Property Value

Type Description
Rectangle

A System.Drawing.Rectangle structure specifying the boundaries of the painted element.

Remarks

There are two basic things required to paint an object. These are a System.Drawing.Graphics object used to paint and a rectangle specifying the object’s boundaries. When performing custom painting, you can access these values via the CustomDrawEventArgs.Graphics and Bounds properties of the event parameter.

Use the Bounds property to locate painted text, images, etc. inside the painted element’s area.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Bounds property.

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