Vcl.Outline.TOutlineType
Delphi
TOutlineType = (otStandard, otOwnerDraw);
C++
enum DECLSPEC_DENUM TOutlineType : unsigned char { otStandard, otOwnerDraw };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | Vcl.Outline.pas Vcl.Outline.hpp |
Vcl.Outline | Vcl.Outline |
Description
TOutlineType indicates whether an outline is owner-drawn.
TOutlineType determines whether an outline is drawn automatically or by user code in an OnDrawItem event.
| Value | Meaning |
|---|---|
|
otStandardItems |
Items are drawn automatically. |
|
otOwnerDraw |
Items are drawn on the Canvas by application code. |