Gets or sets the face name of this Font object.

Namespace:  Neodynamic.SDK.Printing
Assembly:  Neodynamic.SDK.ThermalLabel (in Neodynamic.SDK.ThermalLabel.dll) Version: 2.0.2000.0 (2.0.2000.0)

Syntax

C#
public string Name { get; set; }
Visual Basic (Declaration)
Public Property Name As String
Visual C++
public:
property String^ Name {
	String^ get ();
	void set (String^ value);
}

Remarks

It can be set to a printer's character designator of the font ([A-Z] or [0-9] for ZPL-based printers and [1-7] or [a-z] for EPL-based printers). For ZPL-based printers only, it can be the complete name of the font stored in any printer's storage devices (including the drive location, for example B:ARIAL.FNT). For bitmapped fonts, the name should also include the built-in char size (Height and Width) of such font. The char size (Height and Width) must follow the font name or designator separated by pipe characters. The char size values must be specified in same unit set up in the Unit property of the Font object. An example font name 'a' including char size (12 pt high and 10 pt wide): a|12|10

See Also