![]() |
Font








Public Data Item |
Declared in: NiLabels3d.h |
Declaration
CNiFont Font;
Description
Specifies the font of the labels.
Note that you must initialize a CNiFont object from an existing object. For example:
CNiFont font = labels.Font; font.Name = "Courier"; font.Size = 12;
If you do not initialize a CNiFont object from an existing object, a CNiObjectNotInUsableState exception will be thrown when you attempt to manipulate the instance of the CNiFont. For example:
CNiFont font;// This will throw a CNiObjectNotInUsableState exception because // the CNiFont object was not initialized from an existing object. font.Name = "Courier";