Spread Windows Forms 10.0 Product Documentation
Picture Property (FpCheckBox)
Example 


Gets or sets the array of pictures to use as the check box image.
Syntax
'Declaration
 
Public Overridable Property Picture As CheckBoxPicture
'Usage
 
Dim instance As FpCheckBox
Dim value As CheckBoxPicture
 
instance.Picture = value
 
value = instance.Picture
public virtual CheckBoxPicture Picture {get; set;}

Property Value

CheckBoxPicture object containing the picture
Remarks

If you prefer, you can use your own custom pictures for any or all of the pictures that represent the check box states. Provide the picture as a CheckBoxPicture object. The CheckBoxPicture object lets you specify different pictures for the different check box states.

Check boxes can also display background pictures. Set the BackgroundImage property to specify the background picture.

Specify the alignment for the check box picture and text using the PictureAlignH and PictureAlignV properties.

Specify how the text and the check box picture are aligned using the TextAlign property.

Set the ThreeState property to specify whether the check box has two or three states.

This property is available at run time only.

Tip: When using custom pictures to represent states, try to create a consistent look and feel for the check box cell. Also, be aware of common interface conventions used to represent states, such as using lighter shades of text or graphics to represent the grayed (indeterminate) state.

Example
control.ThreeState = true;
control.Checked = false;
control.Picture[1] = Image.FromFile("..\\check1.bmp");
control.ThreeState = True
control.Checked = False 
control.Picture(1) = Image.FromFile("..\check1.bmp")
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

FpCheckBox Class
FpCheckBox Members
PictureAlignH Property
PictureAlignV Property
CheckBoxPicture Class
TextAlign Property
ThreeState Property
BackgroundImage Property
PictureHeight Property
PictureWidth Property

 

 


Copyright © GrapeCity, inc. All rights reserved.