Group: GDI+ Matrix - Library: gdiplus
GpStatus WINGDIPAPI GdipSetMatrixElements(
GpMatrix *matrix,
REAL m11,
REAL m12,
REAL m21,
REAL m22,
REAL dx,
REAL dy
)
DECLARE INTEGER GdipSetMatrixElements IN gdiplus;
INTEGER matrix,;
SINGLE m11,;
SINGLE m12,;
SINGLE m21,;
SINGLE m22,;
SINGLE dx,;
SINGLE dy matrix [in] Handle to a Matrix object.
m11 [in] Real number that specifies the element in the first row, first column.
m12 [in] Real number that specifies the element in the first row, second column.
m21 [in] Real number that specifies the element in the second row, first column.
m22 [in] Real number that specifies the element in the second row, second column.
dx [in] Real number that specifies the element in the third row, first column.
dy [in] Real number that specifies the element in the third row, second column.
Returns GpStatus value; 0 means success.
See also: GdipGetMatrixElements.
Home