AnalysisRegionBase.Union-Methode (Int32, Int32, Int32, Int32)
Erweitert den Bereich dieses AnalysisRegionBase auf den Bereich, der durch die Vereinigung mit dem angegebenen Rechteck erstellt wird.
Namespace: System.Windows.Ink.AnalysisCore
Assembly: IACore (in IACore.dll)
Syntax
'Declaration
Public Sub Union ( _
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.Union(left, top, right, bottom)
public void Union(
int left,
int top,
int right,
int bottom
)
public:
void Union(
int left,
int top,
int right,
int bottom
)
public void Union(
int left,
int top,
int right,
int bottom
)
public function Union(
left : int,
top : int,
right : int,
bottom : int
)
Parameter
- left
Typ: System.Int32
Die linke Begrenzung des Rechtecks, das für die Vereinigung verwendet werden soll, in Freihandbereichkoordinaten.
- top
Typ: System.Int32
Die obere Begrenzung des Rechtecks, das für die Vereinigung verwendet werden soll, in Freihandbereichkoordinaten.
- right
Typ: System.Int32
Die rechte Begrenzung des Rechtecks, das für die Vereinigung verwendet werden soll, in Freihandbereichkoordinaten.
- bottom
Typ: System.Int32
Die untere Begrenzung des Rechtecks, das für die Vereinigung verwendet werden soll, in Freihandbereichkoordinaten.
Hinweise
Alle Parameter sind in HIMETRIC-Einheiten angegeben.
Wenn einer der Bereiche unendlich ist, ist der neue Bereich ebenfalls unendlich.
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