[Overview][Resource strings][Constants][Types][Classes][Index] |
Reports whether changing the type of resource type or name is allowed
Source position: resource.pp line 154
protected function TAbstractResource.ChangeDescTypeAllowed( |
aDesc: TResourceDesc |
):Boolean; virtual; abstract; |
aDesc |
|
The TResourceDesc whose type should be changed |
True if the resource allows the given TResourceDesc to change type
Descendant classes must implement this method to declare if the resource allows changing the type of one of its resource description (type or name): that is, if it allows one of its descriptions type to change from dtName to dtID or vice versa.
Example:
A certain resource class allows its name only to be changed: e.g. a TBitmapResource doesn't want its type to be anything else than RT_BITMAP. It then allows changing the type of the description only if the description is the resource name:
Result:=aDesc=fName;
TAbstractResource.ChangDescValueAllowed |