Skip to main content

CheckBoxGlyphCollection Class

Stores a custom glyph image for each checkbox state (Checked/Unchecked/Indeterminate).

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Printing.v23.2.Core.dll

NuGet Package: DevExpress.Printing.Core

Declaration

public class CheckBoxGlyphCollection :
    Collection<CheckBoxGlyph>

The following members return CheckBoxGlyphCollection objects:

Remarks

The CheckBoxBrick.CustomGlyphs property provides access to the CheckBoxGlyphCollection class members.

Example

The code sample below illustrates how to create a CheckBoxBrick object and set custom glyphs for its states.

using DevExpress.XtraPrinting;
using DevExpress.XtraPrinting.Drawing;
// ...
public CheckBoxBrick SetCustomGlyphs(CheckBoxBrick cBrick) {
    cBrick.CustomGlyphs[CheckState.Checked] = ImageSource.FromFile("checkbox_checked.svg");
    cBrick.CustomGlyphs[CheckState.Unchecked] = ImageSource.FromFile("checkbox_unchecked.svg");
    cBrick.CustomGlyphs[CheckState.Indeterminate] = ImageSource.FromFile("checkbox_indeterminate.svg");
    return cBrick;
}

Inheritance

Object
Collection<DevExpress.XtraPrinting.CheckBoxGlyph>
CheckBoxGlyphCollection
See Also