type TPaintStage = record
DsgnTime: Boolean;
RunTime: Boolean;
Stage: Cardinal; // a PST_* constant
Parameter: Cardinal; // an optional parameter
end;
type PPaintStage = ^TPaintStage;
Defines a drawing stage in TCustomImage32.
DsgnTime indicates that the stage must be executed at design-time;
RunTime indicates that the stage must be executed at run-time;
Stage is one of the Paint Stage Constants, which specifies the stage action;
Parameter is an optional parameter used in some paint stages.