public class SetTextMatrix extends TextPlaceOperator
Class representig Tm operator (set text matrix).
Constructor and Description |
---|
SetTextMatrix(double a,
double b,
double c,
double d,
double e,
double f)
Initializes operator.
|
SetTextMatrix(int index,
com.aspose.pdf.engine.commondata.pagecontent.operators.commands.ICommand command)
Initializes operator.
|
SetTextMatrix(Matrix m)
Initializes operator by matrix.
|
Modifier and Type | Method and Description |
---|---|
void |
accept(IOperatorSelector visitor)
Accepts visitor object to process operator.
|
Matrix |
getMatrix()
Matrix argument of the operator.
|
void |
setMatrix(Matrix value)
Matrix argument of the operator.
|
String |
toString()
Returns text representation of operator.
|
clear, getCommand, getCommandName, getIndex, getParameters, getTrailerable, isTextShowOperator, reset, setIndex, toString
public SetTextMatrix(int index, com.aspose.pdf.engine.commondata.pagecontent.operators.commands.ICommand command)
Initializes operator.
index
- Index of operator.command
- Operator command.public SetTextMatrix(double a, double b, double c, double d, double e, double f)
Initializes operator.
a
- A coefficientb
- B coefficientc
- C coefficientd
- D coefficiente
- E coefficientf
- F coefficientpublic SetTextMatrix(Matrix m)
Initializes operator by matrix.
m
- Transfomation matrix.public Matrix getMatrix()
Matrix argument of the operator.
public void setMatrix(Matrix value)
Matrix argument of the operator.
value
- Matrix objectpublic void accept(IOperatorSelector visitor)
Accepts visitor object to process operator.
accept
in class TextOperator
visitor
- Visitor object.