Gets or sets the mask increment. The increment is the value to be added to the value to encode on each label to be printed. Default value is an empty string

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

Syntax

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

Remarks

The default value for the increment is equivalent to a decimal value of 1 (one). The string is composed of any characters defined in the input mask. Invalid characters are assumed to be equal to a value of 0 (zero) in that characters position.

The increment value for alphabetic strings start with 'A' or 'a' as the zero placeholder. This means to increment an alphabetic character by one, a value of 'B' or 'b' must be in the increment string.

For characters that do not get incremented, the '%' character needs to be added to the increment string.

See Also