Clears all color- and grayscale-adjustment settings for all categories. Use the overload Reset method to clear settings for one category.
Namespace: RSGdiPlusGraphics
Delphi
|
public
procedure Reset; overload;
|
An Image Attributes object maintains color and grayscale settings for five adjustment categories: default, bitmap, brush, pen, and text. For example, you can specify a gamma value for the default category, a different gamma value for the bitmap category, and still a different gamma value for the pen category.
The default color- and grayscale-adjustment settings apply to all categories that don't have adjustment settings of their own. For example, if you never specify any adjustment settings for the pen category, then the default settings apply to the pen category.
As soon as you specify a color- or grayscale-adjustment setting for a certain category, the default adjustment settings no longer apply to that category. You can reinstate the default settings for that category by calling Reset method. For example, suppose you specify a gamma value for the default category. If you set the gamma value for the pen category by calling Gammas[catPen], then the default gamma value will not apply to pens. If you later pass catPen to the Reset method, the pen category will revert to the default gamma value.
|