Control.GetStyle Method
Assembly: System.Windows.Forms (in system.windows.forms.dll)
protected boolean GetStyle ( ControlStyles flag )
protected function GetStyle ( flag : ControlStyles ) : boolean
Parameters
- flag
The ControlStyles bit to return the value from.
Return Value
true if the specified control style bit is set to true; otherwise, false.Control style bit flags are used to categorize supported behavior. A control can enable a style by calling the SetStyle method and passing in the appropriate ControlStyles bit and the Boolean value to set the bit to. To determine the value assigned to a specified ControlStyles bit, use the GetStyle method and pass in the ControlStyles member to evaluate.
The following code example returns the value of the double-buffering related style bits for a Form. This example returns true only if all the style bits are set to 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 boolean DoubleBufferingEnabled()
{
// Get the value of the double-buffering style bits.
return this.GetStyle(ControlStyles.DoubleBuffer | ControlStyles.
UserPaint | ControlStyles.AllPaintingInWmPaint);
} //DoubleBufferingEnabled
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.