Vcl.Menus.TMenuItem.SubMenuImages

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property SubMenuImages: TCustomImageList read FSubMenuImages write SetSubMenuImages;

C++

__property Vcl::Imglist::TCustomImageList* SubMenuImages = {read=FSubMenuImages, write=SetSubMenuImages};

Properties

Type Visibility Source Unit Parent
property published
Vcl.Menus.pas
Vcl.Menus.hpp
Vcl.Menus TMenuItem

Description

Lists the images that can appear beside individual items in a submenu of this menu item.

Use SubMenuImages to supply a set of images that can appear beside items listed in the Items property. Individual menu items set their ImageIndex property to indicate which image in the list appears to the left of the menu item caption.

Tip: If the application uses action lists, this property can be the value of the command list's Images property. This way, menu items and buttons that do the same thing can display the same image.

See Also