コード例 #1
0
        public object Clone()
        {
            SvgXRef r = new SvgXRef();

            r.Href    = Href;
            r.Type    = Type;
            r.Role    = Role;
            r.Arcrole = Arcrole;
            r.Title   = Title;
            r.Show    = Show;
            r.Actuate = Actuate;
            return(r);
        }
コード例 #2
0
ファイル: Types.cs プロジェクト: 894880010/MP
        public object Clone()
        {
            var r = new SvgXRef
            {
                Href    = Href,
                Type    = Type,
                Role    = Role,
                Arcrole = Arcrole,
                Title   = Title,
                Show    = Show,
                Actuate = Actuate
            };

            return(r);
        }
コード例 #3
0
ファイル: Types.cs プロジェクト: luizcorreia/SvgNet
 public object Clone()
 {
     SvgXRef r = new SvgXRef();
     r.Href = Href;
     r.Type = Type;
     r.Role = Role;
     r.Arcrole = Arcrole;
     r.Title = Title;
     r.Show = Show;
     r.Actuate = Actuate;
     return r;
 }
コード例 #4
0
 public SvgImageElement(SvgLength x, SvgLength y, SvgXRef xref)
 {
     XRef = xref;
     X = x;
     Y = y;
 }
コード例 #5
0
 public SvgImageElement(SvgXRef xref)
 {
     XRef = xref;
 }
コード例 #6
0
 public SvgUseElement(SvgXRef xref)
 {
     XRef = xref;
 }