[Overview][Resource strings][Constants][Types][Classes][Index] |
Reports whether changing the value of resource type or name is allowed
Source position: resource.pp line 155
protected function TAbstractResource.ChangeDescValueAllowed( |
aDesc: TResourceDesc |
):Boolean; virtual; abstract; |
aDesc |
|
The TResourceDesc whose value should be changed |
True if the resource allows the given TResourceDesc to change value
Descendant classes must implement this method to declare if the resource allows changing the value of one of its resource description (type or name).
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 value of the description only if the description is the resource name:
Result:=aDesc=fName;
TAbstractResource.ChangDescTypeAllowed |