Search
ItemLabel.Image Property
See Also
 





Gets or sets the image displayed by this label.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public Image Image { get; set; }

Visual Basic  Copy Code

Public Property Image As Image

 Property Value

A System.Drawing.Image object to render inside the label. The default value is null.

 Remarks

If a label displays both image and Text, the image position relative to text depends on the ImageAlign property.

If the label is only intended to display an icon image and no text, you could also set its Locked property to prevent users from entering text.

 See Also