menu

WinForms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class GridGroupingControlSchemaBrowser - WindowsForms API Reference | Syncfusion

    Show / Hide Table of Contents

    Class GridGroupingControlSchemaBrowser

    Defines a form that hosts a System.Windows.Forms.PropertyGrid and lets you browse schema information of a GridGroupingControl.

    Inheritance
    System.Object
    GridGroupingControlSchemaBrowser
    Namespace: Syncfusion.Windows.Forms.Grid.Grouping
    Assembly: Syncfusion.Grid.Grouping.Windows.dll
    Syntax
    public class GridGroupingControlSchemaBrowser : Form
    Examples

    Displaying the GridGroupingControlSchemaBrowser

        private void Form1_Load(object sender, System.EventArgs e)
        {
            GridGroupingControlSchemaBrowser schemaBrowser = new GridGroupingControlSchemaBrowser(this.gridGoupingControl1);
            schemaBrowser.Show();
        }
      Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Dim schemaBrowser As New GridGroupingControlSchemaBrowser(Me.gridGoupingControl1)
            schemaBrowser.Show()
        End Sub 'Form1_Load

    Constructors

    GridGroupingControlSchemaBrowser(GridGroupingControl)

    Initializes a new instance of the GridGroupingControlSchemaBrowser and attaches it to a GridGroupingControl

    Declaration
    public GridGroupingControlSchemaBrowser(GridGroupingControl grid)
    Parameters
    Type Name Description
    GridGroupingControl grid

    The grid grouping control.

    Properties

    AllowAutoLocation

    Gets or sets a value indicating whether to enable or disable the automatic positioning of schema browser next to the parent form of the grouping control when the schema browser is shown the first time.

    Declaration
    public bool AllowAutoLocation { get; set; }
    Property Value
    Type
    System.Boolean

    Methods

    Dispose(Boolean)

    Overrides and cleans up any resources being used.

    Declaration
    protected override void Dispose(bool disposing)
    Parameters
    Type Name Description
    System.Boolean disposing

    OnClosed(EventArgs)

    Overrides and triggered when the form gets closed.

    Declaration
    protected override void OnClosed(EventArgs e)
    Parameters
    Type Name Description
    System.EventArgs e

    The System.EventArgs contains the event data.

    OnVisibleChanged(EventArgs)

    Overrides and triggered when the visibility of the form gets changed.

    Declaration
    protected override void OnVisibleChanged(EventArgs e)
    Parameters
    Type Name Description
    System.EventArgs e

    The System.EventArgs contains the event data.

    WndProc(ref Message)

    Overrides and process the system messages.

    Declaration
    protected override void WndProc(ref Message m)
    Parameters
    Type Name Description
    System.Windows.Forms.Message m

    The message to be processed.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved