![]() |
LabelFont








Public Data Item |
Declared in: NiContours.h |
Declaration
CNiFont LabelFont;
Description
Sets the label font for all contours in the collection.
Note that you must initialize a CNiFont object from an existing object. For example:
CNiFont font = contours.LabelFont; 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";