AnalysisRegionBase.Intersect-Methode (AnalysisRegionBase)
Begrenzt den Bereich dieser AnalysisRegionBase auf den Bereich, der durch den Schnitt mit der angegebenen AnalysisRegionBase erstellt wird.
Namespace: System.Windows.Ink.AnalysisCore
Assembly: IACore (in IACore.dll)
Syntax
'Declaration
Public Sub Intersect ( _
regionToIntersect As AnalysisRegionBase _
)
'Usage
Dim instance As AnalysisRegionBase
Dim regionToIntersect As AnalysisRegionBase
instance.Intersect(regionToIntersect)
public void Intersect(
AnalysisRegionBase regionToIntersect
)
public:
void Intersect(
AnalysisRegionBase^ regionToIntersect
)
public void Intersect(
AnalysisRegionBase regionToIntersect
)
public function Intersect(
regionToIntersect : AnalysisRegionBase
)
Parameter
- regionToIntersect
Typ: System.Windows.Ink.AnalysisCore.AnalysisRegionBase
Der Bereich, mit dem die Schnittmenge gebildet werden soll.
Hinweise
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