InkOverlayPaintingEventArgs.ClipRectangle 属性

获取 Rectangle 结构,该结构表示要在其中进行绘制的矩形。

命名空间:  Microsoft.Ink
程序集:  Microsoft.Ink(在 Microsoft.Ink.dll 中)

语法

声明
Public ReadOnly Property ClipRectangle As Rectangle
用法
Dim instance As InkOverlayPaintingEventArgs
Dim value As Rectangle

value = instance.ClipRectangle
public Rectangle ClipRectangle { get; }
public:
property Rectangle ClipRectangle {
    Rectangle get ();
}
/** @property */
public Rectangle get_ClipRectangle()
public function get ClipRectangle () : Rectangle

属性值

类型:System.Drawing.Rectangle
要在其中进行绘制的矩形。

示例

此 C# 示例为 Painting 事件 theInkOverlay_Painting 创建事件处理程序。该事件处理程序在将要放置 InkOverlay 的矩形中填充黄色。

private void theInkOverlay_Painting(object sender, InkOverlayPaintingEventArgs e)
{
    e.Graphics.FillRectangle(new SolidBrush(Color.Yellow), e.ClipRectangle);
}

此 Microsoft(R) Visual Basic(R) .NET 示例为 Painting 事件 theInkOverlay_Painting 创建事件处理程序。该事件处理程序在将要放置 InkOverlay 的矩形中填充黄色。

Private Sub theInkOverlay_Painting(ByVal sender As Object, ByVal e As Microsoft.Ink.InkOverlayPaintingEventArgs) _
Handles theInkOverlay.Painting
    e.Graphics.FillRectangle(New SolidBrush(Color.Yellow), e.ClipRectangle)
End Sub

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

InkOverlayPaintingEventArgs 类

InkOverlayPaintingEventArgs 成员

Microsoft.Ink 命名空间

InkOverlay

InkOverlay.Painting