Skip to main content

TcxCustomNavigatorButtons.Images Property

Specifies the images which can be displayed within the collection’s navigator buttons.

Declaration

property Images: TCustomImageList read; write;

Property Value

Type
TCustomImageList

Remarks

The Images property contains a list of images that can be used instead of the default button images. Each navigator button has an ImageIndex property which allows you to select an image from the Images list to be displayed in this button. If the Images property is unassigned, default buttons will display images from the DefaultImages collection, based on button default indexes. Custom buttons will have no images.

In order to use this property, you should:

  • Place an image list on a form;

  • Populate it with appropriate images;

  • Select the required button in the Object Inspector;

  • Assign the list as shown below:

or via code:

DBNavigator1.Buttons.Images := ilMain;
See Also