/// <summary> /// Creates an exact copy of this <see cref='Font'/>. /// </summary> public object Clone() { int status = Gdip.GdipCloneFont(new HandleRef(this, _nativeFont), out IntPtr clonedFont); Gdip.CheckStatus(status); return(new Font(clonedFont, _gdiCharSet, _gdiVerticalFont)); }