Control.GetStyle(ControlStyles) Método

Definição

Recupera o valor do bit de estilo do controle especificado para o controle.

protected:
 bool GetStyle(System::Windows::Forms::ControlStyles flag);
protected bool GetStyle (System.Windows.Forms.ControlStyles flag);
member this.GetStyle : System.Windows.Forms.ControlStyles -> bool
Protected Function GetStyle (flag As ControlStyles) As Boolean

Parâmetros

flag
ControlStyles

O bit ControlStyles do qual retornar o valor.

Retornos

Boolean

true se o bit de estilo do controle especificado estiver definido como true; caso contrário, false.

Exemplos

O exemplo de código a seguir retorna o valor dos bits de estilo relacionados ao buffer duplo para um Form. Este exemplo retornará true somente se todos os bits de estilo estiverem definidos como true.

public:
   bool DoubleBufferingEnabled()
   {
      
      // Get the value of the double-buffering style bits.
      return this->GetStyle( static_cast<ControlStyles>(ControlStyles::DoubleBuffer | ControlStyles::UserPaint | ControlStyles::AllPaintingInWmPaint) );
   }
public bool DoubleBufferingEnabled()
{
   // Get the value of the double-buffering style bits.
   return this.GetStyle(ControlStyles.DoubleBuffer | 
      ControlStyles.UserPaint | 
      ControlStyles.AllPaintingInWmPaint);
}
Public Function DoubleBufferingEnabled() As Boolean
   ' Get the value of the double-buffering style bits.
   Return Me.GetStyle((ControlStyles.DoubleBuffer _
     Or ControlStyles.UserPaint _
     Or ControlStyles.AllPaintingInWmPaint))
End Function

Comentários

Sinalizadores de bits de estilo de controle são usados para categorizar o comportamento com suporte. Um controle pode habilitar um estilo chamando o SetStyle método e passando o bit apropriado ControlStyles e o valor booliano para definir o bit. Para determinar o valor atribuído a um bit especificado ControlStyles , use o GetStyle método e passe o ControlStyles membro para avaliar.

Aplica-se a

Confira também