共用方式為


AnalysisRegion.GetRegionScans 方法

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

命名空間:  Microsoft.Ink
組件:  Microsoft.Ink.Analysis (在 Microsoft.Ink.Analysis.dll 中)

語法

'宣告
Public Function GetRegionScans As Rectangle()
'用途
Dim instance As AnalysisRegion
Dim returnValue As Rectangle()

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

傳回值

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

備註

矩形的區域會以筆墨空間座標表示。

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

範例

這個範例示範兩種取得 AnalysisRegion (變數名稱為 theSecondAnalysisRegion) 所表示之區域的方式。

' Get an approximation of the AnalysisRegion as an array of rectangles.
Dim theArea As System.Drawing.Rectangle() = _
    theSecondAnalysisRegion.GetRegionScans()

' Get a Region object for the area of the AnalysisRegion.
Dim theRegion As System.Drawing.Region = theSecondAnalysisRegion.ToRegion()
            // Get the area of the AnalysisRegion as an array of rectangles.
            System.Drawing.Rectangle[] theArea =
                theSecondAnalysisRegion.GetRegionScans();

            // Get the area of the AnalysisRegion as a region.
            System.Drawing.Region theRegion = theSecondAnalysisRegion.ToRegion();

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求

版本資訊

.NET Framework

支援版本:3.0

請參閱

參考

AnalysisRegion 類別

AnalysisRegion 成員

Microsoft.Ink 命名空間

AnalysisRegion.GetBounds

AnalysisRegion.ToRegion