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); }
public object Clone() { var r = new SvgXRef { Href = Href, Type = Type, Role = Role, Arcrole = Arcrole, Title = Title, Show = Show, Actuate = Actuate }; return(r); }
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; }
public SvgImageElement(SvgLength x, SvgLength y, SvgXRef xref) { XRef = xref; X = x; Y = y; }
public SvgImageElement(SvgXRef xref) { XRef = xref; }
public SvgUseElement(SvgXRef xref) { XRef = xref; }