Interface IGDIPlus.IGPTextureBrush
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: SignalLabBasicPkg
Unit: IGDIPlus
Inherits: IGPWrapBrush
Contents |
Syntax
Delphi:
type IGPTextureBrush = interface( IGPWrapBrush )
Summary
Interface to a TGPTextureBrush object.
Description
Defines interface to a TGPTextureBrush object.
The TGPTextureBrush class defines a Brush object that contains an Image object that is used for the fill. The fill image can be transformed by using the local Matrix object contained in the Brush object.
Properties
Methods
- function SetTransform(matrix : IGPMatrix) : TGPTextureBrush - Sets the world transformation of the object.
- function ResetTransform() : TGPTextureBrush - Sets the world transformation matrix of the object to the identity matrix.
- function MultiplyTransform(matrix : IGPMatrix; order : TGPMatrixOrder) : TGPTextureBrush - Updates the world transformation matrix of the object with the product of itself and another matrix.
- function TranslateTransform(dx : Single; dy : Single; order : TGPMatrixOrder) : TGPTextureBrush - Updates the object's world transformation matrix with the product of itself and a translation matrix.
- function ScaleTransform(sx : Single; sy : Single; order : TGPMatrixOrder) : TGPTextureBrush - Sets the object's world transformation matrix equal to the product of itself and a scaling matrix.
- function RotateTransform(angle : Single; order : TGPMatrixOrder) : TGPTextureBrush - Updates the world transformation matrix of the object with the product of itself and a rotation matrix.
- function SetWrapMode(wrapMode : TGPWrapMode) : TGPTextureBrush - Sets the wrap mode of this texture brush.
- function GetImage() : IGPImage - Returns the TGPImage object that is defined by the texture brush.
- function SetImage(image : IGPImage) : TGPTextureBrush - Sets the TGPImage object that is defined by the texture brush.
- procedure SetImageProp(image : IGPImage)