VisualStyleRenderer.GetTextExtent 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回指定的字符串在用当前视觉样式元素的字体绘制时的大小和位置。
重载
GetTextExtent(IDeviceContext, String, TextFormatFlags) |
返回指定的字符串在用当前视觉样式元素的字体绘制时的大小和位置。 |
GetTextExtent(IDeviceContext, Rectangle, String, TextFormatFlags) |
返回指定的字符串当用当前视觉样式元素的字体在指定的初始边框内绘制时的大小和位置。 |
GetTextExtent(IDeviceContext, String, TextFormatFlags)
返回指定的字符串在用当前视觉样式元素的字体绘制时的大小和位置。
public:
System::Drawing::Rectangle GetTextExtent(System::Drawing::IDeviceContext ^ dc, System::String ^ textToDraw, System::Windows::Forms::TextFormatFlags flags);
public System.Drawing.Rectangle GetTextExtent (System.Drawing.IDeviceContext dc, string textToDraw, System.Windows.Forms.TextFormatFlags flags);
member this.GetTextExtent : System.Drawing.IDeviceContext * string * System.Windows.Forms.TextFormatFlags -> System.Drawing.Rectangle
Public Function GetTextExtent (dc As IDeviceContext, textToDraw As String, flags As TextFormatFlags) As Rectangle
参数
此操作将使用的 IDeviceContext。
- textToDraw
- String
要度量的字符串。
- flags
- TextFormatFlags
TextFormatFlags 值的按位组合。
返回
一个 Rectangle,它包含适应呈现的文本所需的区域。
例外
dc
为 null
。
适用于
GetTextExtent(IDeviceContext, Rectangle, String, TextFormatFlags)
返回指定的字符串当用当前视觉样式元素的字体在指定的初始边框内绘制时的大小和位置。
public:
System::Drawing::Rectangle GetTextExtent(System::Drawing::IDeviceContext ^ dc, System::Drawing::Rectangle bounds, System::String ^ textToDraw, System::Windows::Forms::TextFormatFlags flags);
public System.Drawing.Rectangle GetTextExtent (System.Drawing.IDeviceContext dc, System.Drawing.Rectangle bounds, string textToDraw, System.Windows.Forms.TextFormatFlags flags);
member this.GetTextExtent : System.Drawing.IDeviceContext * System.Drawing.Rectangle * string * System.Windows.Forms.TextFormatFlags -> System.Drawing.Rectangle
Public Function GetTextExtent (dc As IDeviceContext, bounds As Rectangle, textToDraw As String, flags As TextFormatFlags) As Rectangle
参数
此操作将使用的 IDeviceContext。
- textToDraw
- String
要度量的字符串。
- flags
- TextFormatFlags
TextFormatFlags 值的按位组合。
返回
一个 Rectangle,它包含适应呈现的文本所需的区域。
例外
dc
为 null
。