|
AbsoluteMatrix
|
Specifies the absolute transformation matrix of the control. AbsoluteMatrix is calculated using Matrix and AbsoluteMatrix of its parent
(Inherited from RSGdiPlusCtrls.TRSGPShape.)
|
|
|
Canvas
|
Represents property Canvas. (Inherited from RSGdiPlusCtrls.TRSCustomTransparentGraphicControl.)
|
|
|
ClipChildren
|
Specifies whether the current control has a clipped child.
ClipChildren is True if the control has a clipped child, and False otherwise.
|
|
|
Data
|
Specifies the SVG data used to build graphic shapes.
The Data property supports only a comma-separated list of instructions defined for the d attribute of the path element in SVG 1.0.
In SVG 1.0, the d attribute contains the moveto, line, curve, arc, and closepath instructions. All instructions are expressed as one character (for example, a moveto is expressed as an M).
For more information, see Scalable Vector Graphics (SVG) 1.0 Specification.
|
|
|
Fill
|
Determines the color and pattern used to fill the shape background.
The value of Fill is an RSGdiPlusGraphics.TRSGPBrush object. It can define the gradient, brush pattern, brush color, opacity, and other parameters to fill the shape background.
(Inherited from RSGdiPlusCtrls.TRSGPShape.)
|
|
|
InterceptMouse
|
Determines whether mouse clicks should be detected for the control (Inherited from RSGdiPlusCtrls.TRSCustomTransparentGraphicControl.)
|
|
|
Matrix
|
Specifies the local transformation matrix of the control (Inherited from RSGdiPlusCtrls.TRSGPShape.)
|
|
|
OnPaint
|
Occurs when painting of the control is complete (Inherited from RSGdiPlusCtrls.TRSCustomTransparentGraphicControl.)
|
|
|
OnPainting
|
Occurs when painting of the control is starting (Inherited from RSGdiPlusCtrls.TRSCustomTransparentGraphicControl.)
|
|
|
Opacity
|
Specifies the control opacity.
Set Opacity to customize the transparency of the current control.
Opacity takes values between 0 and 1. If Opacity is 1, the control is completely opaque; if it is 0, the control is completely transparent. The values over 1 are treated as 1, and the ones under 0 are treated as 0.
Opacity applies to the control's children.
|
|
|
ShapeRect
|
Returns the rectangle for drawing the shape.
The coordinates of the upper-left corner of the rectangle are (0,0), and the coordinates of the lower-right corner are (Width, Height).
(Inherited from RSGdiPlusCtrls.TRSGPShape.)
|
|
|
Stroke
|
Determines the color and pattern used to draw lines and shape contours of the graphical primitives.
The value of Stroke is an RSGdiPlusGraphics.TRSGPPen object.
(Inherited from RSGdiPlusCtrls.TRSGPShape.)
|
|
|
Transform
|
Specifies the transformation to perform on the control.
Note
|
Unlike FMX transformed controls, VCL transformed controls will be clipped if they exceed the width or height of the control
|
|
|
|
WrapMode
|
Specifies whether and how to resize, replicate, and position the graphical path representation for painting the area.
The WrapMode property should be one of the constants defined in the TRSPathWrapMode type:
|
|
pwStretch
|
stretches the path representation to fill the entire area. Default.
|
|
|
pwOriginal
|
keeps the original path size
|
|
|
pwFit
|
resizes the path representation (keeping proportions) to best fit the area.
|
|
|
pwTile
|
renders the path representation repeatedly to tile the area.
|
|
|