AnalysisRegionBase.GetBounds 方法

获取 AnalysisRegionBase 的边框。

命名空间:  System.Windows.Ink.AnalysisCore
程序集:  IACore(在 IACore.dll 中)

语法

声明
Public Function GetBounds As Integer()
用法
Dim instance As AnalysisRegionBase
Dim returnValue As Integer()

returnValue = instance.GetBounds()
public int[] GetBounds()
public:
array<int>^ GetBounds()
public int[] GetBounds()
public function GetBounds() : int[]

返回值

类型:array<System.Int32[]
AnalysisRegionBase 的左边界、上边界、右边界和下边界(采用 HIMETRIC 单位)。

备注

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

如果 AnalysisRegionBase 表示无限区域,则左边界和上边界为 System.Int32.MinValue;而右边界和下边界为 System.Int32.MaxValue

如果 AnalysisRegionBase 表示空区域,则矩形的所有边界都为 0。

示例

此示例演示获取 AnalysisRegionBase (theFirstAnalysisRegionBase) 所表示的区域的两种方式。

' Get the area of the AnalysisRegionBase as an array of rectangles.
Dim theArea As Integer() = theFirstAnalysisRegionBase.GetRegionScans()

' Get the bounds of an AnalysisRegionBase.
Dim theBounds As Integer() = theFirstAnalysisRegionBase.GetBounds()
// Get the area of the AnalysisRegionBase as an array of rectangles.
int[] theArea =
    theFirstAnalysisRegionBase.GetRegionScans();

// Get the bounds of an AnalysisRegionBase.
int[] theBounds = theFirstAnalysisRegionBase.GetBounds();

平台

Windows Vista, Windows XP SP2, Windows Server 2003

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

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

AnalysisRegionBase 类

AnalysisRegionBase 成员

System.Windows.Ink.AnalysisCore 命名空间

AnalysisRegionBase.GetRegionScans