共用方式為


AnalysisRegionBase.IntersectsWith 方法

判斷 AnalysisRegionBase 的區域是否與指定的矩形交集。

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

語法

'宣告
Public Function IntersectsWith ( _
    left As Integer, _
    top As Integer, _
    right As Integer, _
    bottom As Integer _
) As Boolean
'用途
Dim instance As AnalysisRegionBase
Dim left As Integer
Dim top As Integer
Dim right As Integer
Dim bottom As Integer
Dim returnValue As Boolean

returnValue = instance.IntersectsWith(left, _
    top, right, bottom)
public bool IntersectsWith(
    int left,
    int top,
    int right,
    int bottom
)
public:
bool IntersectsWith(
    int left, 
    int top, 
    int right, 
    int bottom
)
public boolean IntersectsWith(
    int left,
    int top,
    int right,
    int bottom
)
public function IntersectsWith(
    left : int, 
    top : int, 
    right : int, 
    bottom : int
) : boolean

參數

  • left
    型別:System.Int32
    要與之比較的矩形左界限,以筆墨空間座標表示。
  • top
    型別:System.Int32
    要與之比較的矩形頂端界限,以筆墨空間座標表示。
  • right
    型別:System.Int32
    要與之比較的矩形右界限,以筆墨空間座標表示。
  • bottom
    型別:System.Int32
    要與之比較的矩形底端界限,以筆墨空間座標表示。

傳回值

型別:System.Boolean
所有參數都會使用 HIMETRIC 單位。
如果 AnalysisRegionBase 的區域與指定的矩形交集,則為 True,否則為 false。

備註

比較會以筆墨空間座標表示。

範例

下列範例會測試 AnalysisRegionBase (名為 theFirstAnalysisRegionBase) 是否與指定的矩形交集。

' Test for intersection between an AnalysisRegionBase and a rectangle.
If theFirstAnalysisRegionBase.IntersectsWith(50, 50, 100, 100) Then
    ' Insert code here.
End If
            // Test for intersection between an AnalysisRegionBase and a rectangle.
            if (theFirstAnalysisRegionBase.IntersectsWith(50, 50, 100, 100))
            {
                // Insert code here.
            }

平台

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