Spread Windows Forms 12.0 Product Documentation
Picture Property (ElementControl)


FarPoint.Win Assembly > FarPoint.Win Namespace > ElementControl Class : Picture Property
Gets or sets the picture for the control.
Syntax
'Declaration
 
Public Overridable Property Picture As Image
'Usage
 
Dim instance As ElementControl
Dim value As Image
 
instance.Picture = value
 
value = instance.Picture
public virtual Image Picture {get; set;}

Property Value

Image object containing the picture
Remarks

Controls can display pictures in layers. The first layer consists of a foreground picture, next comes the content of the control, such as text and a picture, then comes the background picture, and finally, the background of the control, which displays the background color.

Set this property to specify the picture for the content layer.

For more information, see the Image class in the Microsoft .NET Framework Reference.

Set the ForegroundImage property to specify the foreground picture layer. Set the BackgroundImage property to specify the background picture layer.

Specify the alignment for the contents in a control using the AlignHorz and AlignVert properties.

You can work with the positioning of the picture by setting the MarginTop, MarginBottom, MarginLeft, and MarginRight properties. These properties leave space between the edge of the picture and the edges of the control.

You can also set the PictureMargin property to specify the margin to use between the picture and the text in the control.

Specify the orientation of the picture by setting the PictureOrientation property.

You can use the various pictures' transparency colors to display portions of the underlying content and other pictures in the control. For the picture layer, set the PictureTransparencyColor property.

Note: If the computer is in 256-color mode and the control displays a picture and a foreground picture that have different palettes, the palette for the foreground picture will override the palette for the picture.

If the application changes the picture, the PictureChanged event occurs.

See Also

Reference

ElementControl Class
ElementControl Members
AlignHorz Property
AlignVert Property
BackgroundImage Property
ForegroundImage Property
PictureMargin Property
PictureOrientation Property
PictureTransparencyColor Property
PictureChanged Event