DataGridTextBoxColumn.PaintText 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在指定位置处绘制指定文本和周围边框。
重载
PaintText(Graphics, Rectangle, String, Boolean) |
在给定位置处依据指定的对齐方式绘制文本和边框。 |
PaintText(Graphics, Rectangle, String, Brush, Brush, Boolean) |
在指定位置用指定的颜色和对齐方式绘制文本和边框。 |
PaintText(Graphics, Rectangle, String, Boolean)
在给定位置处依据指定的对齐方式绘制文本和边框。
protected:
void PaintText(System::Drawing::Graphics ^ g, System::Drawing::Rectangle bounds, System::String ^ text, bool alignToRight);
protected void PaintText (System.Drawing.Graphics g, System.Drawing.Rectangle bounds, string text, bool alignToRight);
member this.PaintText : System.Drawing.Graphics * System.Drawing.Rectangle * string * bool -> unit
Protected Sub PaintText (g As Graphics, bounds As Rectangle, text As String, alignToRight As Boolean)
参数
- text
- String
要绘制到屏幕上的字符串。
- alignToRight
- Boolean
指示文本是否为右对齐的值。
注解
该方法 PaintText 使用 DataFormats.Format 具有属性的对象集 Format 来设置值的格式,然后再将其绘制到屏幕。
另请参阅
适用于
PaintText(Graphics, Rectangle, String, Brush, Brush, Boolean)
在指定位置用指定的颜色和对齐方式绘制文本和边框。
protected:
void PaintText(System::Drawing::Graphics ^ g, System::Drawing::Rectangle textBounds, System::String ^ text, System::Drawing::Brush ^ backBrush, System::Drawing::Brush ^ foreBrush, bool alignToRight);
protected void PaintText (System.Drawing.Graphics g, System.Drawing.Rectangle textBounds, string text, System.Drawing.Brush backBrush, System.Drawing.Brush foreBrush, bool alignToRight);
member this.PaintText : System.Drawing.Graphics * System.Drawing.Rectangle * string * System.Drawing.Brush * System.Drawing.Brush * bool -> unit
Protected Sub PaintText (g As Graphics, textBounds As Rectangle, text As String, backBrush As Brush, foreBrush As Brush, alignToRight As Boolean)
参数
- text
- String
要绘制到屏幕上的字符串。
- alignToRight
- Boolean
指示文本是否为右对齐的值。
注解
该方法 PaintText 使用 Format 属性在将值绘制到屏幕之前设置该值的格式。