Gets or sets a value indicating which set of predefined images is used by the preview.

Namespace:  C1.Win.C1Preview
Assembly:  C1.Win.C1Report.2 (in C1.Win.C1Report.2.dll)

Syntax

C#
[BrowsableAttribute(true)]
[DefaultValueAttribute(ImageSetEnum.XP)]
public ImageSetEnum ImageSet { get; set; }
Visual Basic
<BrowsableAttribute(True)> _
<DefaultValueAttribute(ImageSetEnum.XP)> _
Public Property ImageSet As ImageSetEnum
	Get
	Set

Remarks

The default value for this property is ImageSetEnum.XP.

Examples

The following code displays the OsX images in the toolbar:

Copy CodeVisual Basic
Me.C1PrintPreviewControl1.ImageSet = C1.Win.C1Preview.ImageSetEnum.OsX
Copy CodeC#
this.c1PrintPreviewControl1.ImageSet = C1.Win.C1Preview.ImageSetEnum.OsX;

See Also