Beispiel #1
0
 public Item(int id, int?containerId, DiagramShapeType type, string text, double x, double y, double width, double height)
 {
     ID          = id;
     ContainerID = containerId;
     Type        = type;
     Text        = text;
     X           = x;
     Y           = y;
     Width       = width;
     Height      = height;
 }
Beispiel #2
0
 public DiagramCustomShapeBuilder BaseType(DiagramShapeType value)
 {
     base.Options["baseType"] = value;
     return(this);
 }