AD
Administrator
Syncfusion Team
June 4, 2004 06:13 AM UTC
IsCloneable and IsDisposable are static properties that you can set once at start up (before you set any tags) to indicate how the grid handles tags.
GridStyleInfoStore.TagProperty.IsCloneable = false;
GridStyleInfoStore.TagProperty.IsDisposable = false;
If you need to have a mixed of cloneable and non-cloneable tags, then your objects would have to implement ICloneable for the ones you do not want cloned, and do nothing in their implementation methods.