DataMatrix
Description
Holds information about DataMatrix: its position and text which is encoded.Structure fields and default values (if defined) are described below:
- Rectangle2D Position
- String Text
- DataMatrixType Type
struct DataMatrix
{
Rectangle2D Position;
String Text;
DataMatrixType Type;
Rectangle2D Position() const { return Position; };
String Text() const { return Text; };
DataMatrixType Type() const { return Type; };
bool operator == ( const avl::DataMatrix& rhs ) const
{
return Position == rhs.Position &&
Text == rhs.Text &&
Type == rhs.Type;
}
bool operator != ( const avl::DataMatrix& rhs ) const
{
return !(operator==(rhs));
}
};
