Hi,
Here's a sample implementation of a class you can use as a Tag property for your shapes:
[Serializable]
public class NShapeExt : ICloneable
{
public NShapeExt()
m_bMyProperty1 = true;
m_sMyProperty2 = String.Empty;
}
public bool MyProperty1
get
return m_bMyProperty1;
set
m_bMyProperty1 = value;
public string MyProperty2
return m_sMyProperty2;
m_sMyProperty2 = value;
public object Clone()
NShapeExt shapeExt = new NShapeExt();
shapeExt.m_bMyProperty1 = m_bMyProperty1;
shapeExt.m_sMyProperty2 = m_sMyProperty2;
return shapeExt;
private bool m_bMyProperty1;
private string m_sMyProperty2;
Best Regards,Nevron Support Team