共用方式為


AnalysisRegionBase.GetBounds 方法

取得 AnalysisRegionBase 的週框 (Bounding Rectangle)。

命名空間:  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