Example #1
0
        public static PathAppearance Parse(Dictionary <string, string> styles)
        {
            PathAppearance pathStyle = new PathAppearance();

            pathStyle.ParseCore(styles);
            return(pathStyle);
        }
 public RenderedPathInfo(PathAppearance appearance, PathLocationInfo pathLocationInfo = null) {
     appearanceCore = appearance;
     pathCore = new GraphicsPath();
     locationInfoCore = pathLocationInfo ?? new PathLocationInfo();
 }
Example #3
0
 public static PathAppearance Parse(Dictionary<string, string> styles) {
     PathAppearance pathStyle = new PathAppearance();
     pathStyle.ParseCore(styles);
     return pathStyle;
 }
Example #4
0
 protected virtual void ParsePathStylesCore(Dictionary<string, string> styles) {
     pathAppearanceCore = PathAppearance.Parse(styles);
 }
Example #5
0
 protected virtual void ParsePathStylesCore(Dictionary <string, string> styles)
 {
     pathAppearanceCore = PathAppearance.Parse(styles);
 }
Example #6
0
 public RenderedPathInfo(PathAppearance appearance, PathLocationInfo pathLocationInfo = null)
 {
     appearanceCore   = appearance;
     pathCore         = new GraphicsPath();
     locationInfoCore = pathLocationInfo ?? new PathLocationInfo();
 }