Class Dimensions
Data object to specify the minimum and maximum number of rows and columns for a PDF417 barcode. @author qwandor@google.com (Andrew Walbran)
public sealed class Dimensions
- Inheritance
-
Dimensions
- Inherited Members
Constructors
Dimensions(int, int, int, int)
Initializes a new instance of the Dimensions class.
public Dimensions(int minCols, int maxCols, int minRows, int maxRows)
Parameters
minCols
intThe min cols.
maxCols
intThe max cols.
minRows
intThe min rows.
maxRows
intThe max rows.
Properties
MaxCols
Gets the max cols.
public int MaxCols { get; }
Property Value
MaxRows
Gets the max rows.
public int MaxRows { get; }
Property Value
MinCols
Gets the min cols.
public int MinCols { get; }
Property Value
MinRows
Gets the min rows.
public int MinRows { get; }