BoundsSpecified Enumeração

Definição

Especifica os limites do controle a serem usados ao definir o tamanho e a posição do controle.

Essa enumeração dá suporte a uma combinação bit a bit dos valores de membro.

public enum class BoundsSpecified
[System.Flags]
public enum BoundsSpecified
[<System.Flags>]
type BoundsSpecified = 
Public Enum BoundsSpecified
Herança
BoundsSpecified
Atributos

Campos

All 15

Especifica que os valores de propriedade Location e Size estão definidos.

Height 8

Especifica que a altura do controle está definida.

Location 3

Especifica que as coordenadas X e Y do controle estão definidas.

None 0

Não há limites especificados.

Size 12

Especifica que os valores de propriedade Width e Height do controle estão definidos.

Width 4

Especifica que a largura do controle está definida.

X 1

Especifica que a borda esquerda do controle está definida.

Y 2

Especifica que a borda superior do controle está definida.

Exemplos

private:
   void MyForm_Layout( Object^ /*sender*/, System::Windows::Forms::LayoutEventArgs^ /*e*/ )
   {
      // Center the Form on the user's screen everytime it requires a Layout.
      this->SetBounds( (Screen::GetBounds( this ).Width / 2) - (this->Width / 2), (Screen::GetBounds( this ).Height / 2) - (this->Height / 2), this->Width, this->Height, BoundsSpecified::Location );
   }
private void MyForm_Layout(object sender, System.Windows.Forms.LayoutEventArgs e)
{
   // Center the Form on the user's screen everytime it requires a Layout.
   this.SetBounds((Screen.GetBounds(this).Width/2) - (this.Width/2),
       (Screen.GetBounds(this).Height/2) - (this.Height/2),
       this.Width, this.Height, BoundsSpecified.Location);	
}

Private Sub MyForm_Layout(ByVal sender As Object, _
    ByVal e As System.Windows.Forms.LayoutEventArgs) Handles MyBase.Layout

    ' Center the Form on the user's screen everytime it requires a Layout.
    Me.SetBounds((System.Windows.Forms.Screen.GetBounds(Me).Width / 2) - (Me.Width / 2), _
        (System.Windows.Forms.Screen.GetBounds(Me).Height / 2) - (Me.Height / 2), _
        Me.Width, Me.Height, System.Windows.Forms.BoundsSpecified.Location)
End Sub

Comentários

Use os membros dessa enumeração ao chamar os SetBoundsCore métodos e SetBounds da Control classe .

Aplica-se a

Confira também