/// <summary> /// 复制对象 /// </summary> /// <returns>复制品</returns> object System.ICloneable.Clone() { XFontValue font = new XFontValue(); font.CopySettings(this); return(font); }
/// <summary> /// 复制对象 /// </summary> /// <returns>复制品</returns> public XFontValue Clone() { XFontValue font = new XFontValue(); font.CopySettings(this); return(font); }