コード例 #1
0
ファイル: SvgElement.cs プロジェクト: MelvinLervick/r3d
        protected SvgElement(SvgDocument doc)
        {
            LocalSvgDocument = doc;

            attributes = new ArrayList();

            AddAttribute(SvgAttribute.SvgAttributes.AttrCoreId, null);

            ParentElement   = null;
            ChildElement    = null;
            NextElement     = null;
            PreviousElement = null;

            ElementName  = "unsupported";
            ElementValue = "";
            HasValue     = false;
            ElementType  = SvgElementType.TypeUnsupported;
        }
コード例 #2
0
ファイル: SvgElement.cs プロジェクト: MelvinLervick/r3d
        protected SvgElement(SvgDocument doc)
        {
            LocalSvgDocument = doc;

            attributes = new ArrayList();

            AddAttribute(SvgAttribute.SvgAttributes.AttrCoreId, null);

            ParentElement = null;
            ChildElement = null;
            NextElement = null;
            PreviousElement = null;

            ElementName = "unsupported";
            ElementValue = "";
            HasValue = false;
            ElementType = SvgElementType.TypeUnsupported;
        }