GlyphStyle Enum
The checkbox glyph styles enumeration.
Namespace: DevExpress.XtraPrinting
Assembly: DevExpress.Printing.v24.2.Core.dll
NuGet Package: DevExpress.Printing.Core
#Declaration
#Members
Name | Description |
---|---|
Standard
|
The Standard |
Standard
|
The Standard |
Yes
|
The Yes |
Yes
|
The Yes |
Yes
|
The Yes |
Radio
|
The Radio |
Smiley
|
The Smiley checkbox glyph style |
Thumb
|
The Thumb checkbox glyph style |
Toggle
|
The Toggle checkbox glyph style |
Star
|
The Star checkbox glyph style |
Heart
|
The Heart checkbox glyph style |
#Related API Members
The following properties accept/return GlyphStyle values:
Library | Related API Members |
---|---|
Cross-Platform Class Library | Check |
.NET Reporting Tools | Check |
#Remarks
The CheckBoxBrick.GlyphStyle property provides access to the GlyphStyle enumeration values.
The following glyph styles are available:
#Example
The code sample below illustrates how to create a CheckBoxBrick object and set its glyph style to Thumb style.
using DevExpress.XtraPrinting;
using DevExpress.XtraPrinting.Drawing;
// ...
CheckBoxBrick cBrick = new CheckBoxBrick();
cBrick.GlyphStyle = GlyphStyle.Thumb;