Vcl.Outline.TOutlineType

From RAD Studio API Documentation
Jump to: navigation, search

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.



See Also