Table of Contents

Class Dimensions

Namespace
ZXing.PDF417.Internal
Assembly
zxing.dll

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 int

The min cols.

maxCols int

The max cols.

minRows int

The min rows.

maxRows int

The max rows.

Properties

MaxCols

Gets the max cols.

public int MaxCols { get; }

Property Value

int

MaxRows

Gets the max rows.

public int MaxRows { get; }

Property Value

int

MinCols

Gets the min cols.

public int MinCols { get; }

Property Value

int

MinRows

Gets the min rows.

public int MinRows { get; }

Property Value

int