Esempio n. 1
0
 private void ParseDefineShapeTag(DefineShapeTag tag)
 {
     ParseShapeWithStyle(tag.Shapes);
 }
Esempio n. 2
0
        private void ParseDefineShapeTag(DefineShapeTag tag)
        {
            curSymbol = new Symbol(v.NextId());

            curSymbol.StrokeBounds = ParseRect(tag.ShapeBounds);
            curSymbol.Id = tag.ShapeId;
            v.Definitions.Add(curSymbol.Id, curSymbol);

            ParseShapeWithStyle(tag.Shapes);
        }