Freigeben über


AnalysisRegionBase.Intersect-Methode (Int32, Int32, Int32, Int32)

Begrenzt den Bereich dieses AnalysisRegionBase auf den Bereich, der durch den Schnitt mit dem angegebenen Rechteck erstellt wird.

Namespace:  System.Windows.Ink.AnalysisCore
Assembly:  IACore (in IACore.dll)

Syntax

'Declaration
Public Sub Intersect ( _
    left As Integer, _
    top As Integer, _
    right As Integer, _
    bottom As Integer _
)
'Usage
Dim instance As AnalysisRegionBase
Dim left As Integer
Dim top As Integer
Dim right As Integer
Dim bottom As Integer

instance.Intersect(left, top, right, bottom)
public void Intersect(
    int left,
    int top,
    int right,
    int bottom
)
public:
void Intersect(
    int left, 
    int top, 
    int right, 
    int bottom
)
public void Intersect(
    int left,
    int top,
    int right,
    int bottom
)
public function Intersect(
    left : int, 
    top : int, 
    right : int, 
    bottom : int
)

Parameter

  • left
    Typ: System.Int32
    Die linke Begrenzung des Rechtecks, mit dem eine Schnittmenge gebildet werden soll, in Freihandbereichkoordinaten.
  • top
    Typ: System.Int32
    Die obere Begrenzung des Rechtecks, mit dem eine Schnittmenge gebildet werden soll, in Freihandbereichkoordinaten.
  • right
    Typ: System.Int32
    Die rechte Begrenzung des Rechtecks, mit dem eine Schnittmenge gebildet werden soll, in Freihandbereichkoordinaten.
  • bottom
    Typ: System.Int32
    Die untere Begrenzung des Rechtecks, mit dem eine Schnittmenge gebildet werden soll, in Freihandbereichkoordinaten.

Hinweise

Alle Parameter werden in Freihandbereichkoordinaten angegeben.

Wenn sich die beiden Bereiche nicht überschneiden, ist der neue Bereich leer.

Beispiele

In diesem Beispiel werden Exclude, Intersect und Union verwendet, um den Bereich eines vorhandenen AnalysisRegionBase mit dem Namen theFirstAnalysisRegionBase zu ändern.

' Extend an AnalysisRegionBase using the Union method and
' an AnalysisRegionBase.
theFirstAnalysisRegionBase.Union(theSecondAnalysisRegionBase)

' Extend an AnalysisRegionBase using the Union method and a rectangle.
theFirstAnalysisRegionBase.Union(0, 500, 3000, 3500)

' Restrict an AnalysisRegionBase using the Intersect method and
' an AnalysisRegionBase.
theFirstAnalysisRegionBase.Intersect(theSecondAnalysisRegionBase)

' Restrict an AnalysisRegionBase using the Intersect method and a rectangle.
theFirstAnalysisRegionBase.Intersect(1000, 1000, 5000, 5000)

' Restrict an AnalysisRegionBase using the Exclude method and
' an AnalysisRegionBase.
theFirstAnalysisRegionBase.Exclude(theSecondAnalysisRegionBase)

' Modify an AnalysisRegionBase using the Exclude method and a rectangle.
theFirstAnalysisRegionBase.Exclude(1500, 1500, 2500, 2500)
// Extend an AnalysisRegionBase using the Union method and
// an AnalysisRegionBase.
theFirstAnalysisRegionBase.Union(theSecondAnalysisRegionBase);

// Extend an AnalysisRegionBase using the Union method and a rectangle.
theFirstAnalysisRegionBase.Union(0, 500, 3000, 3500);

// Restrict an AnalysisRegionBase using the Intersect method and
// an AnalysisRegionBase.
theFirstAnalysisRegionBase.Intersect(theSecondAnalysisRegionBase);

// Restrict an AnalysisRegionBase using the Intersect method and a rectangle.
theFirstAnalysisRegionBase.Intersect(1000, 1000, 5000, 5000);

// Restrict an AnalysisRegionBase using the Exclude method and
// an AnalysisRegionBase.
theFirstAnalysisRegionBase.Exclude(theSecondAnalysisRegionBase);

// Modify an AnalysisRegionBase using the Exclude method and a rectangle.
theFirstAnalysisRegionBase.Exclude(1500, 1500, 2500, 2500);

Plattformen

Windows Vista, Windows XP SP2, Windows Server 2003

.NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.

Versionsinformationen

.NET Framework

Unterstützt in: 3.0

Siehe auch

Referenz

AnalysisRegionBase-Klasse

AnalysisRegionBase-Member

Intersect-Überladung

System.Windows.Ink.AnalysisCore-Namespace

AnalysisRegionBase.Exclude

AnalysisRegionBase.Union