共用方式為


AnalysisRegionBase.GetRegionScans 方法

傳回定義 AnalysisRegionBase 之區域的矩形陣列。

命名空間:  System.Windows.Ink.AnalysisCore
組件:  IACore (在 IACore.dll 中)

語法

'宣告
Public Function GetRegionScans As Integer()
'用途
Dim instance As AnalysisRegionBase
Dim returnValue As Integer()

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

傳回值

型別:array<System.Int32[]
定義 AnalysisRegionBase 之區域的矩形陣列。

備註

四個整數依序描述矩形的 x、y、寬度和高度,以筆墨空間座標表示。請注意,這個順序與程式庫中的其他傳回型別不同。

傳回之矩形的聯集會表示 AnalysisRegionBase 的區域。

範例

這個範例示範兩種取得 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.GetBounds