AnalysisRegion.GetBounds 方法

获取 AnalysisRegion 的边框。

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

语法

声明
Public Function GetBounds As Rectangle
用法
Dim instance As AnalysisRegion
Dim returnValue As Rectangle

returnValue = instance.GetBounds()
public Rectangle GetBounds()
public:
Rectangle GetBounds()
public Rectangle GetBounds()
public function GetBounds() : Rectangle

返回值

类型:System.Drawing.Rectangle
AnalysisRegion 的边框,以墨迹空间坐标表示。

备注

边框以墨迹空间坐标表示。

如果 AnalysisRegion 表示无限区域,则返回的 RectangleTopLeft 属性为 MinValue / 2;WidthHeight 属性为 MaxValue

如果 AnalysisRegion 表示空区域,则矩形的 TopLeftWidthHeight 属性都为 0。

示例

此示例演示如何访问 AnalysisRegion (theFirstAnalysisRegion) 的 GetBounds 属性。

' Display the bounds of an AnalysisRegion object.
System.Windows.Forms.MessageBox.Show( _
    "The bounding rectangle of the AnalysisRegion is: " _
    + theFirstAnalysisRegion.GetBounds().ToString())
            // Display the bounds of an AnalysisRegion object.
            System.Windows.Forms.MessageBox.Show(
                "The bounding rectangle of the AnalysisRegion is: "
                + theFirstAnalysisRegion.GetBounds().ToString());

平台

Windows Vista

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

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

AnalysisRegion 类

AnalysisRegion 成员

Microsoft.Ink 命名空间

AnalysisRegion.ToRegion

AnalysisRegion.GetRegionScans