示例#1
0
 internal VgPath(IVgPath path)
 {
     nativePath = path;
 }
示例#2
0
 internal VgPath()
 {
     nativePath = null;
 }
        /// <summary>
        /// Creates a new PathCommandSequence from a IHTMLElement
        /// </summary>
        /// <param name="peer">the IHTMLElement</param>
        /// <remarks>IHTMLElement should be a shape or shapetype</remarks>
        public PathCommandSequence(Interop.IHTMLElement peer)
        {
            IVgPath temp = ((IVgPath)GetAttribute(peer, "path"));

            Parse(temp.v);
        }