Defines an interface for RiverSoftAVG GDI+ controls to capture information that affects the current control and child controls.
Namespace: RSGdiPlusGraphicsTypes
Delphi
|
type
IRSGPControl = interface
['{29B77605-60C2-4986-96FD-FA0C806464DA}']
end;
|
|
Name
|
Description
|
|
AbsoluteMatrix
|
Specifies the absolute transformation matrix of the control. AbsoluteMatrix is calculated using Matrix and AbsoluteMatrix of its parent
|
|
Matrix
|
Specifies the local transformation matrix of the control
|
|
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.
|
Top
|
|
Name
|
Description
|
|
GetAbsoluteMatrix
|
Returns the absolute transformation matrix of the control. AbsoluteMatrix is calculated using Matrix and AbsoluteMatrix of its parent
|
|
GetMatrix
|
Returns the local transformation matrix of the control
|
|
GetOpacity
|
Returns the control opacity.
|
|
SetOpacity(Single)
|
Sets 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.
|
Top
|