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。

备注

比较以墨迹空间坐标进行。

示例

下面的示例测试名为 theFirstAnalysisRegionBase 的 AnalysisRegionBase 是否与指定的矩形相交。

' 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 命名空间