Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
Previous Versions
.NET Framework 2.0
Form Class
Form Properties
 SizeGripStyle Property

  Switch on low bandwidth view
This page is specific to
Microsoft Visual Studio 2005/.Net Framework 2.0

Other versions are also available for the following:
.NET Framework Class Library
Form.SizeGripStyle Property

Gets or sets the style of the size grip to display in the lower-right corner of the form.

Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)

Visual Basic (Declaration)
Public Property SizeGripStyle As SizeGripStyle
Visual Basic (Usage)
Dim instance As Form
Dim value As SizeGripStyle

value = instance.SizeGripStyle

instance.SizeGripStyle = value
C#
public SizeGripStyle SizeGripStyle { get; set; }
C++
public:
property SizeGripStyle SizeGripStyle {
    SizeGripStyle get ();
    void set (SizeGripStyle value);
}
J#
/** @property */
public SizeGripStyle get_SizeGripStyle ()

/** @property */
public void set_SizeGripStyle (SizeGripStyle value)
JScript
public function get SizeGripStyle () : SizeGripStyle

public function set SizeGripStyle (value : SizeGripStyle)

Property Value

A SizeGripStyle that represents the style of the size grip to display. The default is SizeGripStyle.Auto
Exception typeCondition

InvalidEnumArgumentException

The value specified is outside the range of valid values.

This property enables you to determine when the sizing grip is displayed on the form. You can set this property to display the sizing grip or have it automatically displayed based on the setting of the FormBorderStyle property.

Visual Basic
Private Sub ShowMyDialogBox()
    Dim myForm As New Form()
    myForm.Text = "My Form"
    myForm.SetBounds(20, 20, 300, 300)
    myForm.FormBorderStyle = FormBorderStyle.FixedDialog

    ' Display the form with no grip since form is not resizable.
    myForm.SizeGripStyle = SizeGripStyle.Hide

    myForm.MinimizeBox = False
    myForm.MaximizeBox = False
    myForm.ShowDialog()
End Sub
C#
private void ShowMyDialogBox()
{
    Form myForm = new Form();
    myForm.Text = "My Form";
    myForm.SetBounds(20,20,300,300);
    myForm.FormBorderStyle = FormBorderStyle.FixedDialog;
    
    // Display the form with no grip since form is not resizable.
    myForm.SizeGripStyle = SizeGripStyle.Hide;

    myForm.MinimizeBox = false;
    myForm.MaximizeBox = false;
    myForm.ShowDialog();
}
C++
private:
   void ShowMyDialogBox()
   {
      Form^ myForm = gcnew Form;
      myForm->Text = "My Form";
      myForm->SetBounds( 20, 20, 300, 300 );
      myForm->FormBorderStyle = ::FormBorderStyle::FixedDialog;

      // Display the form with no grip since form is not resizable.
      myForm->SizeGripStyle = ::SizeGripStyle::Hide;
      myForm->MinimizeBox = false;
      myForm->MaximizeBox = false;
      myForm->ShowDialog();
   }
J#
private void ShowMyDialogBox()
{
    Form myForm = new Form();
    myForm.set_Text("My Form");
    myForm.SetBounds(20, 20, 300, 300);
    myForm.set_FormBorderStyle(get_FormBorderStyle().FixedDialog);

    // Display the form with no grip since form is not resizable.
    myForm.set_SizeGripStyle(get_SizeGripStyle().Hide);
    myForm.set_MinimizeBox(false);
    myForm.set_MaximizeBox(false);
    myForm.ShowDialog();
} //ShowMyDialogBox

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.

.NET Framework

Supported in: 2.0, 1.1, 1.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker