GlyphCollection Constructors

Definition

Initializes a new instance of the GlyphCollection class.

Overloads

GlyphCollection()

Initializes a new instance of the GlyphCollection class.

GlyphCollection(Glyph[])

Initializes a new instance of the GlyphCollection class with the given Glyph array.

GlyphCollection(GlyphCollection)

Initializes a new instance of the GlyphCollection class based on another GlyphCollection.

GlyphCollection()

Initializes a new instance of the GlyphCollection class.

public:
 GlyphCollection();
public GlyphCollection ();
Public Sub New ()

Applies to

GlyphCollection(Glyph[])

Initializes a new instance of the GlyphCollection class with the given Glyph array.

public:
 GlyphCollection(cli::array <System::Windows::Forms::Design::Behavior::Glyph ^> ^ value);
public GlyphCollection (System.Windows.Forms.Design.Behavior.Glyph[] value);
new System.Windows.Forms.Design.Behavior.GlyphCollection : System.Windows.Forms.Design.Behavior.Glyph[] -> System.Windows.Forms.Design.Behavior.GlyphCollection
Public Sub New (value As Glyph())

Parameters

value
Glyph[]

An array of type Glyph to populate the collection.

Applies to

GlyphCollection(GlyphCollection)

Initializes a new instance of the GlyphCollection class based on another GlyphCollection.

public:
 GlyphCollection(System::Windows::Forms::Design::Behavior::GlyphCollection ^ value);
public GlyphCollection (System.Windows.Forms.Design.Behavior.GlyphCollection value);
new System.Windows.Forms.Design.Behavior.GlyphCollection : System.Windows.Forms.Design.Behavior.GlyphCollection -> System.Windows.Forms.Design.Behavior.GlyphCollection
Public Sub New (value As GlyphCollection)

Parameters

value
GlyphCollection

A GlyphCollection to populate the collection.

Applies to