Specifies the wrapping mode for rendering path objects.
Namespace: RSGdiPlusCtrls
Delphi
|
type
TRSPathWrapMode = (
pwOriginal,
pwFit,
pwStretch,
pwTile);
|
|
Name
|
Description
|
|
pwFit
|
Resize the graphical path representation (keeping image proportions--the ratio between the width and height) to best fit the area.
|
|
pwOriginal
|
Render the graphical path representation with the original path size specified in the path object.
|
|
pwStretch
|
Stretch the graphical path representation to fill the entire area.
|
|
pwTile
|
Render the graphical path representation repeatedly to tile the area. Render using the original path size specified in the path object.
|
Top
|