Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxLookAndFeel.SkinPainter Property

Provides access to the active skin painter.

#Declaration

Delphi
property SkinPainter: TcxCustomLookAndFeelPainter read; write;

#Property Value

Type Description
TcxCustomLookAndFeelPainter

Returns the active skin painter if a skin is applied to a control. This property returns nil (in Delphi) or nullptr (in C++Builder) if the operating system-dependent style or a deprecated look & feel style is applied to the control.

Cast the property value to the corresponding TcxCustomLookAndFeelPainter class descendant to access all public API members.

Tip

Call the SkinPainter.ClassType function to identify the actual painter type.

#Remarks

A skin painter implements all UI draw routines specific to the corresponding skin.

See Also