C# Class MonoGameUi.Border

Struct zur Verwaltung von Rahmen-Informationen für Margins und Paddings.
Afficher le fichier Open project: OctoAwesome/monogameui Class Usage Examples

Méthodes publiques

Свойство Type Description
Bottom int
Left int
Right int
Top int

Méthodes publiques

Méthode Description
All ( int value ) : Border

Erstellt einen Border mit gleichem Abstand auf allen vier Seiten.

All ( int horizontal, int vertical ) : Border

Erstellt einen Border auf Basis der Angaben für horizontale und vertikale Werte.

All ( int left, int top, int right, int bottom ) : Border

Erstellt eine Border-Instanz mit den angegebenen Initialwerten.

Border ( int left, int top, int right, int bottom )

Erstellt eine Border-Instanz mit den angegebenen Initialwerten.

Equals ( object obj ) : bool

Überprüft, ob die aktuelle Border-Instanz gleich der gegebenen ist.

GetHashCode ( ) : int

Gibt einen Hashwert zurück

ToString ( ) : string

Wandelt die aktuelle Border-Instanz in einen string um.

Method Details

All() public static méthode

Erstellt einen Border mit gleichem Abstand auf allen vier Seiten.
public static All ( int value ) : Border
value int Wert für alle vier Seiten.
Résultat Border

All() public static méthode

Erstellt einen Border auf Basis der Angaben für horizontale und vertikale Werte.
public static All ( int horizontal, int vertical ) : Border
horizontal int Abstand für horizontale Seiten (links, rechts)
vertical int Abstand für vertikale Seiten (oben, unten)
Résultat Border

All() public static méthode

Erstellt eine Border-Instanz mit den angegebenen Initialwerten.
public static All ( int left, int top, int right, int bottom ) : Border
left int Abstand links
top int Abstand oben
right int Abstand rechts
bottom int Abstand unten
Résultat Border

Border() public méthode

Erstellt eine Border-Instanz mit den angegebenen Initialwerten.
public Border ( int left, int top, int right, int bottom )
left int Abstand links
top int Abstand oben
right int Abstand rechts
bottom int Abstand unten

Equals() public méthode

Überprüft, ob die aktuelle Border-Instanz gleich der gegebenen ist.
public Equals ( object obj ) : bool
obj object
Résultat bool

GetHashCode() public méthode

Gibt einen Hashwert zurück
public GetHashCode ( ) : int
Résultat int

ToString() public méthode

Wandelt die aktuelle Border-Instanz in einen string um.
public ToString ( ) : string
Résultat string

Property Details

Bottom public_oe property

Untere Seite
public int Bottom
Résultat int

Left public_oe property

Linke Seite
public int Left
Résultat int

Right public_oe property

Rechte Seite
public int Right
Résultat int

Top public_oe property

Obere Seite
public int Top
Résultat int