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

dxUseVectorIcons Constant

Specifies if DevExpress controls use vector icons instead of bitmaps in built-in menus and dialogs.

#Declaration

Delphi
const dxUseVectorIcons: Boolean = True;

#Returns

Type Description
Boolean

If True, DevExpress controls use a set of vector icons in UI elements of built-in menus and dialogs. If False (default), DevExpress controls use bitmap icons.

#Remarks

To use vector icons instead of bitmaps in built-in UI elements and menus, set the dxUseVectorIcons global constant to True in the initialization section of the main application unit:

uses
  Forms,
  cxLookAndFeels,
// ...
begin
  dxUseVectorIcons := True;
  Application.Initialize;
  Application.MainFormOnTaskbar := True;
  Application.CreateForm(TMyForm, MyForm);
  Application.Run;
end.

Use Vector Icons Examples

The dxUseVectorIcons global constant value affects the following DevExpress products:

See Also