Developer

Glyph

Specifies optional icon to be displayed beside (before) text.

property Glyph: TPicture read FGlyph write SetGlyph;
If both Glyph and ImageIndex properties are set, image from Glyph property will be used.

Property is of TPicture type. TPicture is a TGraphic container, used to hold a graphic, the type of which is specified in the Graphic property. It is used in place of a TGraphic if the graphic can be of any TGraphic class. More info in Delphi Help.

Example:


NxLinkLabel61.Caption := 'Open'; NxLinkLabel61.Glyph.LoadFromFile('c:\Pictures\MyPicture.png'); NxLinkLabel61.TextSpacing := 4;

See also