[]
Represents the blank space around a barcode that helps scanners to detect the barcode.
public class QuietZone
Initializes a new instance of the QuietZone class with zero values.
public QuietZone()
Initializes a new instance of the QuietZone class.
public QuietZone(float left, float top, float right, float bottom)
left floatThe left value of the quiet zone.
top floatThe top value of the quiet zone.
right floatThe right value of the quiet zone.
bottom floatThe bottom value of the quiet zone.
Gets or sets the bottom value of the quiet zone.
public float Bottom { get; set; }
Gets or sets the left value of the quiet zone.
public float Left { get; set; }
Gets or sets the right value of the quiet zone.
public float Right { get; set; }
Gets or sets the top value of the quiet zone.
public float Top { get; set; }
Copies properties from another QuietZone to the current object.
public void AssignFrom(QuietZone source)
source QuietZoneThe source object to copy properties from.
Notifies of value changing
protected void NotifyChangeValue()
Returns a string that represents the current quiet zone.
public override string ToString()