__declspec(property(get = GetDirty, put = SetDirty)) bool Dirty;
True after object property changes.
Read:
bool GetDirty();Write:
void SetDirty(const bool value);Remarks:
Set this to true after TMtxVec property has changed. Initially when the object is created this property is set to false. But when a change to object or it's elements is made, Dirty can be changed to true. Use this property to determine if the calling object and it's properties have changed. This property never changes automatically.
Declared in Dew::Math::TMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler