<?xml version="1.0"?>
<doc>
    <assembly>
        <name>DevComponents.DotNetBar.SuperGrid</name>
    </assembly>
    <members>
        <member name="T:DevComponents.SuperGrid.TextMarkup.BlockLayoutManager">
            <summary>
            Represents block layout manager responsible for sizing the content blocks.
            </summary>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.BlockLayoutManager.Layout(DevComponents.SuperGrid.TextMarkup.IBlock,System.Drawing.Size)">
            <summary>
            Resizes the content block and sets it's Bounds property to reflect new size.
            </summary>
            <param name="block">Content block to resize.</param>
            <param name="availableSize">Content size available for the block in the given line.</param>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.BlockLayoutManager.FinalizeLayout(System.Drawing.Rectangle,System.Drawing.Rectangle,System.Collections.ArrayList)">
            <summary>
            Performs layout finalization
            </summary>
            <param name="containerBounds"></param>
            <param name="blocksBounds"></param>
            <param name="lines"></param>
            <returns></returns>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.BlockLayoutManager.Graphics">
            <summary>
            Gets or sets the graphics object used by layout manager.
            </summary>
        </member>
        <member name="T:DevComponents.SuperGrid.TextMarkup.eContentOrientation">
            <summary>
            Specifies orientation of content.
            </summary>
        </member>
        <member name="F:DevComponents.SuperGrid.TextMarkup.eContentOrientation.Horizontal">
            <summary>
            Indicates Horizontal orientation of the content.
            </summary>
        </member>
        <member name="F:DevComponents.SuperGrid.TextMarkup.eContentOrientation.Vertical">
            <summary>
            Indicates Vertical orientation of the content.
            </summary>
        </member>
        <member name="T:DevComponents.SuperGrid.TextMarkup.eContentAlignment">
            <summary>
            Specifies content horizontal alignment.
            </summary>
        </member>
        <member name="F:DevComponents.SuperGrid.TextMarkup.eContentAlignment.Left">
            <summary>
            Content is left aligned.UI
            </summary>
        </member>
        <member name="F:DevComponents.SuperGrid.TextMarkup.eContentAlignment.Right">
            <summary>
            Content is right aligned.
            </summary>
        </member>
        <member name="F:DevComponents.SuperGrid.TextMarkup.eContentAlignment.Center">
            <summary>
            Content is centered.
            </summary>
        </member>
        <member name="T:DevComponents.SuperGrid.TextMarkup.eContentVerticalAlignment">
            <summary>
            Specifies content vertical alignment.
            </summary>
        </member>
        <member name="F:DevComponents.SuperGrid.TextMarkup.eContentVerticalAlignment.Top">
            <summary>
            Content is top aligned.
            </summary>
        </member>
        <member name="F:DevComponents.SuperGrid.TextMarkup.eContentVerticalAlignment.Bottom">
            <summary>
            Content is bottom aligned.
            </summary>
        </member>
        <member name="F:DevComponents.SuperGrid.TextMarkup.eContentVerticalAlignment.Middle">
            <summary>
            Content is in the middle.
            </summary>
        </member>
        <member name="T:DevComponents.SuperGrid.TextMarkup.IBlock">
            <summary>
            Represents a content block interface.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.IBlock.Bounds">
            <summary>
            Gets or sets the bounds of the content block.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.IBlock.Visible">
            <summary>
            Gets or sets whether content block is visible.
            </summary>
        </member>
        <member name="T:DevComponents.SuperGrid.TextMarkup.IBlockExtended">
            <summary>
            Represents a extended content block interface for advanced layout information.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.IBlockExtended.IsBlockElement">
            <summary>
            Gets whether element is block level element.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.IBlockExtended.IsNewLineAfterElement">
            <summary>
            Gets whether new line is required after the element.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.IBlockExtended.CanStartNewLine">
            <summary>
            Gets whether element can be on new line.
            </summary>
        </member>
        <member name="T:DevComponents.SuperGrid.TextMarkup.IContentLayout">
            <summary>
            Represents interface for block layout.
            </summary>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.IContentLayout.Layout(System.Drawing.Rectangle,DevComponents.SuperGrid.TextMarkup.IBlock[],DevComponents.SuperGrid.TextMarkup.BlockLayoutManager)">
            <summary>
            Performs layout of the content block.
            </summary>
            <param name="containerBounds">Container bounds to layout content blocks in.</param>
            <param name="contentBlocks">Content blocks to layout.</param>
            <param name="blockLayout">Block layout manager that resizes the content blocks.</param>
            <returns>The bounds of the content blocks within the container bounds.</returns>
        </member>
        <member name="T:DevComponents.SuperGrid.TextMarkup.SerialContentLayoutManager">
            <summary>
            Represents the serial content layout manager that arranges content blocks in series next to each other.
            </summary>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.SerialContentLayoutManager.Layout(System.Drawing.Rectangle,DevComponents.SuperGrid.TextMarkup.IBlock[],DevComponents.SuperGrid.TextMarkup.BlockLayoutManager)">
            <summary>
            Performs layout of the content block.
            </summary>
            <param name="containerBounds">Container bounds to layout content blocks in.</param>
            <param name="contentBlocks">Content blocks to layout.</param>
            <param name="blockLayout">Block layout manager that resizes the content blocks.</param>
            <returns>The bounds of the content blocks within the container bounds.</returns>
        </member>
        <member name="E:DevComponents.SuperGrid.TextMarkup.SerialContentLayoutManager.NextPosition">
            <summary>
            Occurs when X, Y position of next block is calcualted.
            </summary>
        </member>
        <member name="E:DevComponents.SuperGrid.TextMarkup.SerialContentLayoutManager.BeforeNewBlockLayout">
            <summary>
            Occurs before new block is layed out.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.SerialContentLayoutManager.BlockSpacing">
            <summary>
            Gets or sets the spacing in pixels between content blocks. Default value is 0.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.SerialContentLayoutManager.FitContainerOversize">
            <summary>
            Gets or sets whether content blocks are forced to fit the container bounds if they 
            occupy more space than it is available by container. Default value is false.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.SerialContentLayoutManager.FitContainer">
            <summary>
            Gets or sets whether content blocks are resized to fit the container bound if they
            occupy less space than it is available by container. Default value is false.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.SerialContentLayoutManager.VerticalFitContainerWidth">
            <summary>
            Gets or sets whether content blocks are resized (Width) to fit container bounds if they
            occupy less space than the actual container width. Applies to the Vertical orientation only. Default value is false.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.SerialContentLayoutManager.HorizontalFitContainerHeight">
            <summary>
            Gets or sets whether content blocks are resized (Height) to fit container bounds if they
            occupy less space than the actual container height. Applies to the Horizontal orientation only. Default value is false.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.SerialContentLayoutManager.ContentOrientation">
            <summary>
            Gets or sets the content orientation. Default value is Horizontal.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.SerialContentLayoutManager.ContentVerticalAlignment">
            <summary>
            Gets or sets the content vertical alignment. Default value is Middle.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.SerialContentLayoutManager.BlockLineAlignment">
            <summary>
            Gets or sets the block line vertical alignment. Default value is Middle.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.SerialContentLayoutManager.ContentAlignment">
            <summary>
            Gets or sets the content horizontal alignment. Default value is Left.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.SerialContentLayoutManager.EvenHeight">
            <summary>
            Gets or sets whether all content blocks are resized so they have same height which is height of the tallest content block. Default value is false.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.SerialContentLayoutManager.OversizeDistribute">
            <summary>
            Gets or sets whether oversized blocks are resized based on the percentage reduction instead of based on equal pixel distribution. Default value is false.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.SerialContentLayoutManager.MultiLine">
            <summary>
            Gets or sets whether content is wrapped into new line if it exceeds the width of the container.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.SerialContentLayoutManager.RightToLeft">
            <summary>
            Gets or sets whether layout is right-to-left.
            </summary>
        </member>
        <member name="T:DevComponents.SuperGrid.TextMarkup.LayoutManagerPositionEventArgs">
            <summary>
            Represents event arguments for SerialContentLayoutManager.NextPosition event.
            </summary>
        </member>
        <member name="F:DevComponents.SuperGrid.TextMarkup.LayoutManagerPositionEventArgs.Block">
            <summary>
            Gets or sets the block that is layed out.
            </summary>
        </member>
        <member name="F:DevComponents.SuperGrid.TextMarkup.LayoutManagerPositionEventArgs.CurrentPosition">
            <summary>
            Gets or sets the current block position.
            </summary>
        </member>
        <member name="F:DevComponents.SuperGrid.TextMarkup.LayoutManagerPositionEventArgs.NextPosition">
            <summary>
            Gets or sets the calculated next block position.
            </summary>
        </member>
        <member name="F:DevComponents.SuperGrid.TextMarkup.LayoutManagerPositionEventArgs.Cancel">
            <summary>
            Cancels default position calculation.
            </summary>
        </member>
        <member name="T:DevComponents.SuperGrid.TextMarkup.LayoutManagerLayoutEventArgs">
            <summary>
            Represents event arguments for the SerialContentLayoutManager layout events.
            </summary>
        </member>
        <member name="F:DevComponents.SuperGrid.TextMarkup.LayoutManagerLayoutEventArgs.Block">
            <summary>
            Gets or sets the reference block object.
            </summary>
        </member>
        <member name="F:DevComponents.SuperGrid.TextMarkup.LayoutManagerLayoutEventArgs.CurrentPosition">
            <summary>
            Gets or sets the position block will assume.
            </summary>
        </member>
        <member name="F:DevComponents.SuperGrid.TextMarkup.LayoutManagerLayoutEventArgs.CancelLayout">
            <summary>
            Cancel the layout of the block, applies only to BeforeXXX layout event.
            </summary>
        </member>
        <member name="F:DevComponents.SuperGrid.TextMarkup.LayoutManagerLayoutEventArgs.BlockVisibleIndex">
            <summary>
            Gets or sets the visibility index of the block.
            </summary>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.LayoutManagerLayoutEventArgs.#ctor(DevComponents.SuperGrid.TextMarkup.IBlock,System.Drawing.Point,System.Int32)">
            <summary>
            Creates new instance of the class and initializes it with default values.
            </summary>
        </member>
        <member name="T:DevComponents.SuperGrid.TextMarkup.LayoutManagerPositionEventHandler">
            <summary>
            Delegate for SerialContentLayoutManager.NextPosition event.
            </summary>
        </member>
        <member name="T:DevComponents.SuperGrid.TextMarkup.LayoutManagerLayoutEventHandler">
            <summary>
            Delegate for the SerialContentLayoutManager layout events.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.ColorHelpers">
            <summary>
            Provides helpers when working with colors.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.ColorHelpers.GetColor(System.String)">
            <summary>
            Converts hex string to Color type.
            </summary>
            <param name="rgbHex">Hexadecimal color representation.</param>
            <returns>Reference to Color object.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.ColorHelpers.GetColor(System.Int32)">
            <summary>
            Converts hex string to Color type.
            </summary>
            <param name="rgb">Color representation as 32-bit RGB value.</param>
            <returns>Reference to Color object.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.ColorHelpers.GetColor(System.Int32,System.Int32)">
            <summary>
            Converts hex string to Color type.
            </summary>
            <param name="alpha">Alpha component for color.</param>
            <param name="rgb">Color representation as 32-bit RGB value.</param>
            <returns>Reference to Color object.</returns>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.ConvertValue">
            <summary>
             ConvertValue
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.ConvertValue.ConvertTo(System.Object,System.Type)">
            <summary>
             ConvertTo
            </summary>
            <param name="o"></param>
            <param name="type"></param>
            <returns></returns>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.TextHelper">
            <summary>
            Provides helpers when working with text.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.TextHelper.MeasureText(System.Drawing.Graphics,System.String,System.Drawing.Font,System.Drawing.Size,DevComponents.DotNetBar.SuperGrid.eTextFormat)">
            <summary>
            MeasureText always adds about 1/2 em width of white space on the right,
            even when NoPadding is specified. It returns zero for an empty string.
            To get the precise string width, measure the width of a string containing a
            single period and subtract that from the width of our original string plus a period.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.TextHelper.TextMarkupCultureSpecificPadding">
            <summary>
            Get or sets the text-markup padding for text
            measurement when running on Japanese version of Windows.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Properties.Resources">
            <summary>
              A strongly-typed resource class, for looking up localized strings, etc.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Properties.Resources.ResourceManager">
            <summary>
              Returns the cached ResourceManager instance used by this class.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Properties.Resources.Culture">
            <summary>
              Overrides the current thread's CurrentUICulture property for all
              resource lookups using this strongly typed resource class.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl">
            <summary>
             GridColorPickerEditControl
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl">
            <summary>
             IGridCellEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
              Called to initiate the actual rendering of the editor
             value into the grid cell.  In most cases this can be (and is)
             handled by a simple call to EditorCell.CellRender(this, graphics).
             If additional rendering is required by the editor, then the editor
             can completely render the cell contents itself (and never even call
             Editor.CellRender) or optionally perform additional rendering before
             or after the default cell rendering.
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             Called when a KeyDown occurs and the
             CellEditMode is InPlace (otherwise the key event is
             automatically directed straight to the editor control).
             
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.BeginEdit(System.Boolean)">
            <summary>
             Called when a Modal cell edit is about to be initiated.
            </summary>
            <param name="selectAll">Signifies whether to select all editable content</param>
            <returns>true to cancel the edit operation</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.EndEdit">
            <summary>
             Called when the edit operation is about to end. 
            </summary>
            <returns>true to cancel the operation.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.CancelEdit">
            <summary>
             Called when the edit operation is being cancelled.
            </summary>
            <returns>true to cancel the operation.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             Called to retrieve the editors proposed size
             for the given cell, using the provided effective
             style and size constraint.
            </summary>
            <param name="g">Graphics object</param>
            <param name="cell">Associated grid cell</param>
            <param name="style">Cell's effective style</param>
            <param name="constraintSize">The constraining cell size</param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             Called to initialize the editor's context
             environment (value, properties, style, etc)
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             Called when a MouseMove event occurs and the
             CellEditMode is InPlace (otherwise the event is
             automatically directed straight to the editor control).
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
            Called when a MouseEnter event occurs and the
            CellEditMode is InPlace (otherwise the event is
            automatically directed straight to the editor control).
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             Called when a MouseLeave event occurs and the
             CellEditMode is InPlace (otherwise the event is
             automatically directed straight to the editor control).
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Called when a MouseUp event occurs and the
            CellEditMode is InPlace (otherwise the event is
            automatically directed straight to the editor control).
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Called when a MouseDown event occurs and the
            CellEditMode is InPlace (otherwise the event is
            automatically directed straight to the editor control).
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
             Called to determine if the editor wants to process and
             handle the given key
            </summary>
            <param name="key">Key in question</param>
            <param name="gridWantsKey">Whether the grid, by default, wants the key</param>
            <returns>true is the control wants the key</returns>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.CanInterrupt">
            <summary>
             Specifies whether the Grid can automatically interrupt the
             current NonModal cell edit operation when the mouse leaves the cell.
             
             This is utilized in cases, such as the ButtonX editor, where multilevel
             controls may be involved. In the ButtonX case this specifically enables
             the mouse to to leave the main cell window and not be interrupted by the
             grid until the current operation is complete by the editor itself.
             
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.CellEditMode">
            <summary>
             Specifies the cell editor activation mode. There are three modes
             available for choice, and their usage depends upon the desired
             editor presentation, as well as how well the given underlying
             control interacts with the grid control.
             
             The modes are as follows:
             
             InPlace:
             Edit operations occur 'in place', always live, always
             in a state of interaction with the user. The CheckBoxEx,
             and ButtonX editors are examples of this.
             
             Modal:
             Edit operations will be performed as a modal, widowed edit 
             controlled via calls to BeginEdit, EndEdit, and CancelEdit.
             The TextBoxEx and IntegerInput editors are examples of this.
             
             NonModal:
             Edit operation will be performed as a nonNodal, windowed edit
             automatically invoked upon entry to the cell. The ButtonEx,
             BubbleBar, and TrackBar are examples of this. 
             
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.EditorCell">
            <summary>
             Specifies the editor's current associated grid cell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.EditorCellBitmap">
            <summary>
             Called to get or set the editor's
             associated cell bitmap (internal use only)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.EditorFormattedValue">
            <summary>
             Called to get the formatted editor value
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.EditorPanel">
            <summary>
             Called to get or set the editor's
             associated cell panel (internal use only)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.EditorValue">
            <summary>
             Called to get or set the editor value
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.EditorValueChanged">
            <summary>
             Called to get or set whether the editor value has changed
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.EditorValueType">
            <summary>
             Called to get the editor's default value data type
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.StretchBehavior">
            <summary>
             Called to get the editor's desired 'stretch' behavior.
             
             The StretchBehavior defines whether the editor wants to
             automatically have it's size stretched to fill the given cell.
             
             Editors, such as ButtonX, want to fill the cell horizontally and
             vertically, whereas other editors, such as the Slider, may only
             want to stretch horizontally (or potentially not at all).
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.SuspendUpdate">
            <summary>
             Called to get or set whether updates to the grid
             state is suspended
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.IGridCellEditControl.ValueChangeBehavior">
            <summary>
             Called to get the behavior
             needed when a value changes in the editor.
             
             For instance, CheckBoxEx value changes result in only requiring
             the cell to be redisplayed with the new state, whereas editors such
             as the TextBoxEx editor, may result in a new layout when the text changes.
             
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.#ctor">
            <summary>
             GridColorPickerEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.SetSelectedColorImage">
            <summary>
            Creates and sets the Image and SelectedColorImageRectangle.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)">
            <summary>
            OnInvalidated processing.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.Dispose(System.Boolean)">
            <summary>
            Dispose
            </summary>
            <param name="disposing"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColorPickerEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl">
            <summary>
             GridComboTreeEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.#ctor">
            <summary>
             GridComboTreeEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.Dispose(System.Boolean)">
            <summary>
            Dispose
            </summary>
            <param name="disposing"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.OnTextChanged(System.EventArgs)">
            <summary>
            OnTextChanged
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.OnSelectedIndexChanged(System.EventArgs)">
            <summary>
            OnSelectedIndexChanged
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)">
            <summary>
            OnInvalidated
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.GetValue(System.Object)">
            <summary>
            GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboTreeEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl">
            <summary>
             GridButtonXEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.#ctor">
            <summary>
             GridRadialMenuEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.GridRadialMenuEditControl_ItemClick(System.Object,System.EventArgs)">
            <summary>
            RadialMenu item click handler
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.OnGridRadialMenuEditControl_ItemClick(DevComponents.DotNetBar.RadialMenuItem)">
            <summary>
            RadialMenu item click handler
            </summary>
            <param name="item"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)">
            <summary>
            OnInvalidated
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.FindItemByText(DevComponents.DotNetBar.SubItemsCollection,System.String)">
            <summary>
            Finds the RadialMenuItem based upon the given item Text.
            </summary>
            <param name="items"></param>
            <param name="text"></param>
            <returns>RadialMenuItem or null</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.Dispose(System.Boolean)">
            <summary>
            Dispose
            </summary>
            <param name="disposing"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRadialMenuEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl">
            <summary>
             GridRatingStarEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.OnRatingChanged(System.EventArgs)">
            <summary>
            OnRatingChanged
            </summary>
            <param name="eventArgs"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)">
            <summary>
            OnInvalidated
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.OnPaint(System.Windows.Forms.PaintEventArgs)">
            <summary>
            OnPaint
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRatingStarEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridImageEditControl">
            <summary>
             GridImageEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)">
            <summary>
            OnInvalidated
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
            <summary>
            OnPaintBackground
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.Dispose(System.Boolean)">
            <summary>
            Dispose
            </summary>
            <param name="disposing"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.SetValue(System.Object)">
            <summary>
             SetValue
            </summary>
            <param name="value"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.Image">
            <summary>
             Image
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.ImageData">
            <summary>
             ImageData
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.ImageIndex">
            <summary>
             ImageKey
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.ImageKey">
            <summary>
             ImageKey
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.ImageList">
            <summary>
             ImageList
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.ImageLocation">
            <summary>
             ImageLocation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.ImageSizeMode">
            <summary>
             ImageSizeMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridImageEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.ImageSizeMode">
            <summary>
             ImageSizeMode
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ImageSizeMode.Normal">
            <summary>
             The image is placed in the upper-left
             corner of the cell and is clipped if needed to fit.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ImageSizeMode.StretchImage">
            <summary>
             The image is stretched or shrunk to fit the cell.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ImageSizeMode.CenterImage">
            <summary>
             The image is displayed in the center of the cell if
             the cell is larger than the image. If the image is larger
             than the cell, the image is placed in the center of the 
             cell and the outside edges are clipped.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ImageSizeMode.Zoom">
            <summary>
             The size of the image is increased or decreased to fit the
             cell, maintaining the size ratio.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl">
            <summary>
             GridComboBoxExEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.#ctor">
            <summary>
             GridComboBoxExEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.OnDataSourceChanged(System.EventArgs)">
            <summary>
            OnDataSourceChanged
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.DataManagerListChanged(System.Object,System.ComponentModel.ListChangedEventArgs)">
            <summary>
            DataManager_ListChanged
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.OnTextChanged(System.EventArgs)">
            <summary>
            OnTextChanged
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.OnSelectedIndexChanged(System.EventArgs)">
            <summary>
            OnSelectedIndexChanged
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)">
            <summary>
            OnInvalidated
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.GetValue(System.Object)">
            <summary>
            GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.Dispose(System.Boolean)">
            <summary>
            Dispose
            </summary>
            <param name="disposing"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.CacheDisplayMembers">
            <summary>
            Informs the control to cache DataRowView 
            ValueMember/DisplayMember information (default is true).
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridComboBoxExEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl">
            <summary>
             GridCheckBoxEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.#ctor">
            <summary>
             GridBubbleBarEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)">
            <summary>
            OnInvalidated
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.OnPaint(System.Windows.Forms.PaintEventArgs)">
            <summary>
            OnPaint
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns>false</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns>false</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.ShowTooltips">
            <summary>
             ShowTooltips
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridBubbleBarEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl">
            <summary>
             GridTextBoxDropDownControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.#ctor">
            <summary>
             GridTextBoxDropDownEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.OnTextChanged(System.EventArgs)">
            <summary>
            OnTextChanged
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxDropDownEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl">
            <summary>
             GridMaskedTextBoxEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.OnTextChanged(System.EventArgs)">
            <summary>
            OnTextChanged
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMaskedTextBoxEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl">
            <summary>
             GridIpAddressInputEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.OnValueChanged(System.EventArgs)">
            <summary>
            OnValueChanged
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIpAddressInputEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl">
            <summary>
             GridLabelEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)">
            <summary>
            OnInvalidated
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.OnPaint(System.Windows.Forms.PaintEventArgs)">
            <summary>
            OnPaint
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelXEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl">
            <summary>
             GridProgressBarXEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)">
            <summary>
            OnInvalidated
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.OnPaint(System.Windows.Forms.PaintEventArgs)">
            <summary>
            OnPaint
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridProgressBarXEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl">
            <summary>
             GridCheckBoxEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.#ctor">
            <summary>
             GridCheckBoxEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)">
            <summary>
            OnInvalidated
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
            <exception cref="T:System.Exception"></exception>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.CheckValueChecked">
            <summary>
             CheckValueChecked
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.CheckValueUnchecked">
            <summary>
             CheckValueUnchecked
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl">
            <summary>
             GridButtXEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.#ctor">
            <summary>
             GridTrackBarEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.OnValueChanged(System.EventArgs)">
            <summary>
            OnValueChanged
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)">
            <summary>
            OnInvalidated
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTrackBarEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl">
            <summary>
             GridNumericUpDownEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.#ctor">
            <summary>
             GridNumericUpDownEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.OnTextChanged(System.EventArgs)">
            <summary>
            OnTextChanged
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridNumericUpDownEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl">
            <summary>
             GridLabelEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)">
            <summary>
            OnInvalidated
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
            <summary>
            OnPaintBackground
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridLabelEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl">
            <summary>
             GridDateTimePickerEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.#ctor">
            <summary>
            GridDateTimePickerEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.OnValueChanged(System.EventArgs)">
            <summary>
            OnValueChanged
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.GetValue(System.Object)">
            <summary>
            GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimePickerEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl">
            <summary>
             GridSwitchButtonEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.#ctor">
            <summary>
             GridSwitchButtonEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.OnValueChanged(System.EventArgs)">
            <summary>
            OnValueChanged
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)">
            <summary>
            OnInvalidated
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
            <exception cref="T:System.Exception"></exception>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.OnValue">
            <summary>
             OnValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.OffValue">
            <summary>
             OffValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSwitchButtonEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl">
            <summary>
             GridGaugeEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.#ctor">
            <summary>
             GridGaugeEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.OnValueChanged(System.Object,DevComponents.Instrumentation.PointerChangedEventArgs)">
            <summary>
            Pointer Value changed
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)">
            <summary>
            OnInvalidated
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
            <summary>
            OnPaintBackground
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.Dispose(System.Boolean)">
            <summary>
            Dispose
            </summary>
            <param name="disposing"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.PointerName">
            <summary>
             PointerName
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGaugeEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl">
            <summary>
             GridButtonXEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.#ctor">
            <summary>
             GridButtXEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)">
            <summary>
            OnInvalidated
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.Dispose(System.Boolean)">
            <summary>
            Dispose
            </summary>
            <param name="disposing"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.AutoCheckOnClick">
            <summary>
             AutoCheckOnClick
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.FocusCuesEnabled">
            <summary>
            FocusCuesEnabled
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.UseCellValueAsButtonText">
            <summary>
             UseCellValueAsButtonText
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonXEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl">
            <summary>
             GridButtonXEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.#ctor">
            <summary>
             GridButtonEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)">
            <summary>
            OnInvalidated
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.UseCellValueAsButtonText">
            <summary>
             UseCellValueAsButtonText
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridButtonEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl">
            <summary>
             GridMicroChartEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.#ctor">
            <summary>
             GridMicroChartEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)">
            <summary>
            OnInvalidated
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.OnPaint(System.Windows.Forms.PaintEventArgs)">
            <summary>
            OnPaint
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridMicroChartEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.IGridCellConvertTo">
            <summary>
            IGridCellConvertTo
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.IGridCellConvertTo.TryConvertTo(System.Object,System.Type,System.Object@)">
            <summary>
            TryConvertTo
            </summary>
            <param name="value">Value to convert</param>
            <param name="dataType">Data type to convert to</param>
            <param name="result">Converted value</param>
            <returns></returns>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.IGridCellEditorFocus">
            <summary>
            IGridCellEditorFocus
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.IGridCellEditorFocus.FocusEditor">
            <summary>
            Gives the editor the input focus
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.IGridCellEditorFocus.IsEditorFocused">
            <summary>
            Indicates whether the editor has the input focus
            </summary>
            <returns></returns>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.CellEditMode">
            <summary>
             Specifies the mode of cell editor activation
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CellEditMode.Modal">
            <summary>
             Edit operation will be performed as a modal, widowed
             edit controlled via BeginEdit, EndEdit, and CancelEdit.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CellEditMode.NonModal">
            <summary>
             Edit operation will be performed as a nonNodal, windowed
             edit automatically invoked upon entry to the cell.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CellEditMode.InPlace">
            <summary>
             Edit operation will be performed in-place, as a non-windowed
             edit automatically invoked upon entry to the cell.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.StretchBehavior">
            <summary>
            Defines how the editor is stretched to
            have it's size fill the given cell.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.StretchBehavior.None">
            <summary>
             No stretching to fill the cell
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.StretchBehavior.HorizontalOnly">
            <summary>
             Auto stretch horizontally only
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.StretchBehavior.VerticalOnly">
            <summary>
             Auto stretch vertically only
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.StretchBehavior.Both">
            <summary>
             Auto stretch both horizontally and vertically
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.ValueChangeBehavior">
            <summary>
            Defines how the grid should respond to
            editor content / value changes
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ValueChangeBehavior.None">
            <summary>
             No action needed
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ValueChangeBehavior.InvalidateLayout">
            <summary>
             Grid layout needs invalidated
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ValueChangeBehavior.InvalidateRender">
            <summary>
             Cell needs rendered
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl">
            <summary>
             GridTextBoxEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.#ctor">
            <summary>
             GridDateTimeInputEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.OnValueChanged(System.EventArgs)">
            <summary>
            OnValueChanged
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.GetValue(System.Object)">
            <summary>
            GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDateTimeInputEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl">
            <summary>
             GridSliderEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.OnValueChanged(System.EventArgs)">
            <summary>
            OnValueChanged
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)">
            <summary>
            OnInvalidated
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.OnPaint(System.Windows.Forms.PaintEventArgs)">
            <summary>
            OnPaint
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSliderEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl">
            <summary>
             GridDoubleInputEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.#ctor">
            <summary>
             GridIntegerInputEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.InitInputControl(System.Boolean)">
            <summary>
            InitInputControl
            </summary>
            <param name="isIntegral"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.OnValueChanged(System.EventArgs)">
            <summary>
            OnValueChanged
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.FocusEditor">
            <summary>
            Gives focus to the editor
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDoubleInputEditControl.IsEditorFocused">
            <summary>
            Gets whether editor has the focus
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridDoubleIntInputEditControl">
            <summary>
             GridDoubleIntInputEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDoubleIntInputEditControl.#ctor">
            <summary>
             GridDoubleIntInputEditControl
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl">
            <summary>
             GridIntegerInputEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.#ctor">
            <summary>
             GridIntegerInputEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.OnValueChanged(System.EventArgs)">
            <summary>
            OnValueChanged
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.FocusEditor">
            <summary>
            Gives focus to the editor
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridIntegerInputEditControl.IsEditorFocused">
            <summary>
            Gets whether editor has the focus
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl">
            <summary>
             GridCheckBoxEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.#ctor">
            <summary>
             GridCheckBoxXEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)">
            <summary>
            OnInvalidated
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.OnPaint(System.Windows.Forms.PaintEventArgs)">
            <summary>
            OnPaint
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
            <exception cref="T:System.Exception"></exception>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.Dispose(System.Boolean)">
            <summary>
            Dispose
            </summary>
            <param name="disposing"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.Text">
            <summary>
            Text
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCheckBoxXEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl">
            <summary>
             GridTextBoxEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.#ctor">
            <summary>
             GridTextBoxXEditControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.OnTextChanged(System.EventArgs)">
            <summary>
            OnTextChanged
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
            <summary>
            OnPaintBackground
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.GetValue(System.Object)">
            <summary>
             GetValue
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.InitializeContext(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             InitializeContext
            </summary>
            <param name="cell"></param>
            <param name="style"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.GetProposedSize(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle,System.Drawing.Size)">
            <summary>
             GetProposedSize
            </summary>
            <param name="g"></param>
            <param name="cell"></param>
            <param name="style"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.BeginEdit(System.Boolean)">
            <summary>
            BeginEdit
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.EndEdit">
            <summary>
            EndEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.CancelEdit">
            <summary>
            CancelEdit
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.CellRender(System.Drawing.Graphics)">
            <summary>
            CellRender
            </summary>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.CellKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
             CellKeyDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            WantsInputKey
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.OnCellMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.OnCellMouseEnter(System.EventArgs)">
            <summary>
             OnCellMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.OnCellMouseLeave(System.EventArgs)">
            <summary>
             OnCellMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.OnCellMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.OnCellMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
             OnCellMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.Dispose(System.Boolean)">
            <summary>
            Dispose
            </summary>
            <param name="disposing"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.CanInterrupt">
            <summary>
            CanInterrupt
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.CellEditMode">
            <summary>
            CellEditMode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.EditorCell">
            <summary>
            EditorCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.EditorCellBitmap">
            <summary>
             EditorCellBitmap
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.EditorFormattedValue">
            <summary>
             EditorFormattedValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.EditorPanel">
            <summary>
            EditorPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.EditorValue">
            <summary>
            EditorValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.EditorValueChanged">
            <summary>
            EditorValueChanged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.EditorValueType">
            <summary>
             EditorValueType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.StretchBehavior">
            <summary>
            StretchBehavior
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.SuspendUpdate">
            <summary>
            SuspendUpdate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextBoxXEditControl.ValueChangeBehavior">
            <summary>
            ValueChangeBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.EditorPanel">
            <summary>
             EditorPanel
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EditorPanel.#ctor">
            <summary>
             Constructor
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EditorPanel.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
            <summary>
            Background painting
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.EditorPanel.GridCell">
            <summary>
             GridCell
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.FloatWindow">
            <summary>
             FloatWindow
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FloatWindow.#ctor">
            <summary>
            Constructor
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FloatWindow.components">
            <summary>
            Required designer variable.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FloatWindow.Dispose(System.Boolean)">
            <summary>
            Clean up any resources being used.
            </summary>
            <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FloatWindow.InitializeComponent">
            <summary>
            Required method for Designer support - do not modify
            the contents of this method with the code editor.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FloatWindow.CreateParams">
            <summary>
            CreateParams
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FloatWindow.ShowWithoutActivation">
            <summary>
            ShowWithoutActivation
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CellInfoWindow.components">
            <summary>
            Required designer variable.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.CellInfoWindow.Dispose(System.Boolean)">
            <summary>
            Clean up any resources being used.
            </summary>
            <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.CellInfoWindow.InitializeComponent">
            <summary>
            Required method for Designer support - do not modify
            the contents of this method with the code editor.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.SortableBindingList`1">
            <summary>
            SortableBindingList
            </summary>
            <typeparam name="T"></typeparam>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SortableBindingList`1.#ctor">
            <summary>
            SortableBindingList
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SortableBindingList`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
            <summary>
            SortableBindingList
            </summary>
            <param name="enumeration"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SortableBindingList`1.ApplySortCore(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)">
            <summary>
            ApplySortCore
            </summary>
            <param name="property"></param>
            <param name="direction"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SortableBindingList`1.RemoveSortCore">
            <summary>
            RemoveSortCore
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SortableBindingList`1.FindCore(System.ComponentModel.PropertyDescriptor,System.Object)">
            <summary>
            FindCore
            </summary>
            <param name="property"></param>
            <param name="key"></param>
            <returns></returns>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SortableBindingList`1.Comparers">
            <summary>
            Comparers
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SortableBindingList`1.IsSorted">
            <summary>
            IsSortedCore
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SortableBindingList`1.IsSortedCore">
            <summary>
            IsSortedCore
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SortableBindingList`1.SortDirectionCore">
            <summary>
            SortDirectionCore
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SortableBindingList`1.SortPropertyCore">
            <summary>
            SortPropertyCore
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SortableBindingList`1.SupportsSearchingCore">
            <summary>
            SupportsSearchingCore
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SortableBindingList`1.SupportsSortingCore">
            <summary>
            SupportsSortingCore
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.SortableBindingList`1.PropertyComparer`1">
            <summary>
            PropertyComparer
            </summary>
            <typeparam name="T"></typeparam>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SortableBindingList`1.PropertyComparer`1.#ctor(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)">
            <summary>
            PropertyComparer
            </summary>
            <param name="property"></param>
            <param name="direction"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SortableBindingList`1.PropertyComparer`1.Compare(`1,`1)">
            <summary>
            Compare
            </summary>
            <param name="x"></param>
            <param name="y"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SortableBindingList`1.PropertyComparer`1.SetPropertyAndDirection(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)">
            <summary>
            SetPropertyAndDirection
            </summary>
            <param name="descriptor"></param>
            <param name="direction"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.MultipleSortableBindingList`1">
            <summary>
            MultipleSortableBindingList
            </summary>
            <typeparam name="T"></typeparam>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.MultipleSortableBindingList`1.#ctor">
            <summary>
            MultipleSortableBindingList
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.MultipleSortableBindingList`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
            <summary>
            MultipleSortableBindingList
            </summary>
            <param name="enumeration"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.MultipleSortableBindingList`1.ApplySort(System.ComponentModel.ListSortDescriptionCollection)">
            <summary>
            Sorts the list based on the given System.ComponentModel.ListSortDescriptionCollection.
            </summary>
            <param name="sorts">The System.ComponentModel.ListSortDescriptionCollection to sort by.</param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.MultipleSortableBindingList`1.Filter">
            <summary>
            IsSortedCore
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.MultipleSortableBindingList`1.SortDescriptions">
            <summary>
            SortDescriptions
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.MultipleSortableBindingList`1.SupportsAdvancedSorting">
            <summary>
            SupportsAdvancedSorting
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.MultipleSortableBindingList`1.SupportsFiltering">
            <summary>
            SupportsFiltering
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.DataBinder">
            <summary>
             DataBinding helper class
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.DataBinder.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
             DataBinding
            </summary>
            <param name="panel"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.DataBinder.Dispose">
            <summary>
            Data Binder Dispose
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.EEval">
            <summary>
            Expression evaluator
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,System.String)">
            <summary>
             Expression evaluator constructor
            </summary>
            <param name="gridPanel">Associated GridPanel</param>
            <param name="source">'Excel-like' expression (eg. =d4+d5)</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.Expr(System.Text.RegularExpressions.MatchCollection)">
            <summary>
            Main expression entry routine
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.Term1(System.Text.RegularExpressions.MatchCollection)">
            <summary>
            Handles the ^ operator
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.Term2(System.Text.RegularExpressions.MatchCollection)">
            <summary>
            Handles the Ampersand operator
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.Term3(System.Text.RegularExpressions.MatchCollection)">
            <summary>
            Handles the shift left and right operators
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.Term4(System.Text.RegularExpressions.MatchCollection)">
            <summary>
            Handles %, *, and / operators
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.Term5(System.Text.RegularExpressions.MatchCollection)">
            <summary>
            Handles %, *, and / operators
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.Factor(System.Text.RegularExpressions.MatchCollection)">
            <summary>
            Handles factor processing
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.Function(System.Text.RegularExpressions.MatchCollection,DevComponents.DotNetBar.SuperGrid.ETokens)">
            <summary>
            Handles function parsing
            </summary>
            <param name="mc"></param>
            <param name="e"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.GetFunction(System.Text.RegularExpressions.MatchCollection,System.String)">
            <summary>
            Determines whether the parsed string
            is a one of our function keywords
            </summary>
            <param name="mc"></param>
            <param name="s"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.ParameterList(System.Text.RegularExpressions.MatchCollection,DevComponents.DotNetBar.SuperGrid.ETokens)">
            <summary>
            Handles function parameters
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.GetToken(System.Text.RegularExpressions.MatchCollection)">
            <summary>
            Gets the next parsed token
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.PutToken(DevComponents.DotNetBar.SuperGrid.ETokens)">
            <summary>
            Saves the given token for future use
            </summary>
            <param name="t"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.Evaluate">
            <summary>
            Evaluates the previously tokenized code
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.EvalFunction(System.Collections.Stack,System.Int32)">
            <summary>
            Evaluates the current function
            </summary>
            <param name="myStack"></param>
            <param name="count"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.Avg(System.Collections.Generic.IEnumerable{System.Object})">
            <summary>
            Calculates the average of the given set of values
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.Ceiling(System.Object[])">
            <summary>
            Returns the smallest whole value
            greater than or equal to the given value.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.Floor(System.Object[])">
            <summary>
            Returns the largest whole value
            less than or equal to the given value.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.Min(System.Collections.Generic.ICollection{System.Object})">
            <summary>
            Calculates the minimum from the given set of values
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.Max(System.Collections.Generic.ICollection{System.Object})">
            <summary>
            Calculates the maximum from the given set of values
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.Round(System.Object[])">
            <summary>
            Returns the largest whole value
            less than or equal to the given value.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.Sum(System.Collections.Generic.IEnumerable{System.Object})">
            <summary>
            Calculates the sum of the given set of values
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.User(System.Object[])">
            <summary>
            Calculates the sum of the given set of values
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.ProcessValue(System.Object)">
            <summary>
            Process the given object value
            </summary>
            <param name="o"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.ProcessMinMaxValue(System.Object,System.Boolean)">
            <summary>
            Processes the given MinMax object value
            </summary>
            <param name="o"></param>
            <param name="min"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.ProcessCellValue(DevComponents.DotNetBar.SuperGrid.GridCell,System.Object@)">
            <summary>
            Processes the given cell reference value
            </summary>
            <param name="cell"></param>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EEval.GetValue(System.String)">
            <summary>
            Gets the double value from the given string
            </summary>
            <param name="s"></param>
            <returns></returns>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.EEval.Cell">
            <summary>
             Gets the associated Grid Cell, if any
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.EEval.GridPanel">
            <summary>
             Gets the associated Grid Panel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.EEval.Source">
            <summary>
             Gets or sets the expression source
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.EEval.Tag">
            <summary>
             Gets or sets user-defined data associated with the object
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.ETokens">
            <summary>
             ETokens
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridCaption">
            <summary>
             GridCaption
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridTextRow">
            <summary>
            Defines the grid column header
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridElement">
            <summary>
            Represents the base grid item.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.#ctor">
            <summary>
            GridElement
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.ArrangeOverride(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Rectangle)">
            <summary>
            Performs the arrange pass layout of the item when
            the final position and size of the item has been set.
            </summary>
            <param name="layoutInfo">Layout information.</param>
            <param name="stateInfo"></param>
            <param name="layoutBounds"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.MeasureOverride(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Size)">
            <summary>
            Performs the layout of the item
            and sets the Size property to size that item will take.
            </summary>
            <param name="layoutInfo">Layout information.</param>
            <param name="stateInfo"></param>
            <param name="constraintSize"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.RenderOverride(DevComponents.DotNetBar.SuperGrid.GridRenderInfo)">
            <summary>
            Performs drawing of the item and its children.
            </summary>
            <param name="renderInfo">Holds contextual rendering information.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.OnLayoutInvalid(System.EventArgs)">
            <summary>
            Raises LayoutInvalid event.
            </summary>
            <param name="e">Provides event arguments.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.OnParentChanged(DevComponents.DotNetBar.SuperGrid.GridElement,DevComponents.DotNetBar.SuperGrid.GridElement)">
            <summary>
            Called after parent of the item has changed.
            </summary>
            <param name="oldParent">Reference to old parent.</param>
            <param name="newParent">Reference to new parent.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.OnParentChanged(System.EventArgs)">
            <summary>
            Raises ParentChanged event.
            </summary>
            <param name="e">Provides event arguments.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.OnRenderInvalid(System.EventArgs)">
            <summary>
            Raises RenderInvalid event.
            </summary>
            <param name="e">Provides event arguments.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.Measure(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Size)">
            <summary>
            This method is used by the items internally to invoke the measure pass to
            get item size. Override MeasureOverride method to perform actual measuring.
            </summary>
            <param name="layoutInfo">Holds contextual layout information.</param>
            <param name="stateInfo"></param>
            <param name="constraintSize"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.Arrange(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Rectangle)">
            <summary>
            This method is used by the items internally to invoke the arrange pass after
            location and size of the item has been set. Override ArrangeOverride method
            to perform internal arranging.
            </summary>
            <param name="layoutInfo"></param>
            <param name="stateInfo"></param>
            <param name="layoutBounds"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.Render(DevComponents.DotNetBar.SuperGrid.GridRenderInfo)">
            <summary>
            This method is used by the items internally to invoke the rendering
            for the item. Override RenderOverride method to perform actual rendering.
            </summary>
            <param name="renderInfo">Holds contextual rendering information.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.InvalidateLayout">
            <summary>
            Invalidates the layout for the item.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.InvalidateRender">
            <summary>
            Invalidates the display state of the item
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.InvalidateRender(System.Drawing.Rectangle)">
            <summary>
            Invalidates the display state of the item
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.InternalMouseEnter(System.EventArgs)">
            <summary>
            Called by top-level control to pass message into the grid
            element. To handle it override corresponding On - virtual method.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.OnMouseEnter(System.EventArgs)">
            <summary>
            Called when mouse enter the element.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.InternalMouseLeave(System.EventArgs)">
            <summary>
            Called by top-level control to pass message into the grid
            element. To handle it override corresponding On - virtual method.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.OnMouseLeave(System.EventArgs)">
            <summary>
            Called when mouse leaves the element.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.InternalMouseHover(System.EventArgs)">
            <summary>
            Called by top-level control to pass message into the grid
            element. To handle it override corresponding On - virtual method.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.OnMouseHover(System.EventArgs)">
            <summary>
            Called when mouse hovers over the element.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.InternalMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Called by top-level control to pass message into the grid
            element. To handle it override corresponding On - virtual method.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Called when mouse button is pressed over the element.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.InternalMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Called by top-level control to pass message into the grid
            element. To handle it override corresponding On - virtual method.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Called when mouse button is released over the element.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.InternalMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Called by top-level control to pass message into the grid
            element. To handle it override corresponding On - virtual method.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Called when mouse is moved over the element.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.InternalMouseClick(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Called by top-level control to pass message into the grid
            element. To handle it override corresponding On - virtual method.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.OnMouseClick(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Called when mouse is clicked on the element.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.InternalMouseDoubleClick(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Called by top-level control to pass message into the grid
            element. To handle it override corresponding On - virtual method.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.OnMouseDoubleClick(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Called when mouse is double clicked on the element.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.InternalKeyDown(System.Windows.Forms.Keys)">
            <summary>
            Called by top-level control to pass message into the grid
            element. To handle it override corresponding On - virtual method.
            </summary>
            <param name="keyData"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.OnKeyDown(System.Windows.Forms.Keys)">
            <summary>
            Called when mouse button is pressed over the element.
            </summary>
            <param name="keyData"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.EnsureVisible">
            <summary>
             EnsureVisible
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.EnsureVisible(System.Boolean)">
            <summary>
             EnsureVisible
            </summary>
            <param name="center"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.CancelCapture">
            <summary>
             Cancels any inprogress operations that may
             have the mouse captured (resize, reorder).
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
            <summary>
            Raises the PropertyChanged event.
            </summary>
            <param name="e">Event arguments</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.OnPropertyChanged(System.String)">
            <summary>
            Default PropertyChanged processing
            </summary>
            <param name="s"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridElement.OnPropertyChangedEx(System.String,DevComponents.DotNetBar.SuperGrid.Style.VisualChangeType)">
            <summary>
            Default PropertyChanged processing
            </summary>
            <param name="s"></param>
            <param name="changeType">invalidate</param>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.GridElement.RenderInvalid">
            <summary>
            Occurs when display/rendering of the item is invalidated.
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.GridElement.LayoutInvalid">
            <summary>
            Occurs when layout of the item is invalidated.
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.GridElement.ParentChanged">
            <summary>
            Occurs when parent of the item has changed.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.CViewRect">
            <summary>
            Client View Rectangle
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.HScrollBounds">
            <summary>
            Horizontal Scroll Bounds
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.IsMouseDown">
            <summary>
            Gets whether mouse is down
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.IsVFrozen">
            <summary>
             IsFrozen
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.MouseDownPoint">
            <summary>
            Gets the mouse down Point
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.NeedsMeasured">
            <summary>
            Get or sets whether item needs measured
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.ScrollBounds">
            <summary>
            Horizontal and Vertical Scroll Bounds
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.SViewRect">
            <summary>
            Scrollable View Rectangle
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.ViewRect">
            <summary>
            View Rectangle
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.VScrollBounds">
            <summary>
            Vertical Scroll Bounds
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.AllowSelection">
            <summary>
            Gets or sets whether the element can be selected
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.Bounds">
            <summary>
             Gets the scroll adjusted bounds
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.BoundsRelative">
            <summary>
            Gets or sets the relative bounds of the item.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.GridPanel">
            <summary>
            Gets the parent GridPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.IsLayoutValid">
            <summary>
            Gets whether layout for the item is valid.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.IsMouseOver">
            <summary>
            Gets whether mouse is over the element.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.LocationRelative">
            <summary>
            Gets or sets the relative location of the item.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.Parent">
            <summary>
            Gets or sets the parent of the item.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.Size">
            <summary>
            Gets or sets the Size of the item.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.SuperGrid">
            <summary>
            Gets the parent super grid control.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.Tag">
            <summary>
             Gets or sets user-defined data associated with the object
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridElement.Visible">
            <summary>
            Get or sets whether the item is visible
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.GridElement.PropertyChanged">
            <summary>
            Occurs when property value has changed.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRow.#ctor">
            <summary>
             GridHeader
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRow.#ctor(System.String)">
            <summary>
             GridHeader
            </summary>
            <param name="text"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRow.MeasureOverride(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Size)">
            <summary>
            Performs the layout of the item and sets the Size property to size that item will take.
            </summary>
            <param name="layoutInfo">Layout information.</param>
            <param name="stateInfo"></param>
            <param name="constraintSize"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRow.MeasureRow(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Size)">
            <summary>
            MeasureRow
            </summary>
            <param name="layoutInfo"></param>
            <param name="stateInfo"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRow.GetSizingStyle(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            GetSizingStyle
            </summary>
            <param name="panel"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRow.ArrangeOverride(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Rectangle)">
            <summary>
            Performs the arrange pass layout of the item
            when final position and size of the item has been set
            </summary>
            <param name="layoutInfo">Layout information.</param>
            <param name="stateInfo"></param>
            <param name="layoutBounds">Layout bounds</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRow.ArrangeRow(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Rectangle)">
            <summary>
            ArrangeRow
            </summary>
            <param name="layoutInfo"></param>
            <param name="stateInfo"></param>
            <param name="layoutBounds"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRow.RenderOverride(DevComponents.DotNetBar.SuperGrid.GridRenderInfo)">
            <summary>
            Performs drawing of the item and its children.
            </summary>
            <param name="renderInfo">Holds contextual rendering information.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRow.RenderRow(DevComponents.DotNetBar.SuperGrid.GridRenderInfo,DevComponents.DotNetBar.SuperGrid.GridPanel,System.Drawing.Rectangle)">
            <summary>
            RenderRow
            </summary>
            <param name="renderInfo"></param>
            <param name="panel"></param>
            <param name="r"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRow.RenderRowBackground(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyle,System.Drawing.Rectangle)">
            <summary>
            RenderRowBackground
            </summary>
            <param name="g"></param>
            <param name="style"></param>
            <param name="r"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRow.RenderBorder(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle,System.Drawing.Rectangle)">
            <summary>
            RenderBorder
            </summary>
            <param name="g"></param>
            <param name="panel"></param>
            <param name="pstyle"></param>
            <param name="r"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRow.RenderRowBorder(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyle,System.Drawing.Rectangle)">
            <summary>
            RenderRowBorder
            </summary>
            <param name="g"></param>
            <param name="style"></param>
            <param name="r"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRow.RenderRowText(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyle,System.Drawing.Rectangle)">
            <summary>
            RenderRowText
            </summary>
            <param name="g"></param>
            <param name="style"></param>
            <param name="r"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRow.RenderRowHeader(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle,System.Drawing.Rectangle)">
            <summary>
            RenderRowHeader
            </summary>
            <param name="g"></param>
            <param name="panel"></param>
            <param name="pstyle"></param>
            <param name="r"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRow.CanShowRowHeader(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            CanShowRowHeader
            </summary>
            <param name="panel"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRow.GetHitArea(System.Drawing.Point)">
            <summary>
             GetHitArea
            </summary>
            <param name="pt"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRow.GetNewVisualStyle">
            <summary>
            GetNewVisualStyle
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRow.ApplyStyleEx(DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyle,DevComponents.DotNetBar.SuperGrid.Style.StyleType[])">
            <summary>
            ApplyStyleEx
            </summary>
            <param name="style"></param>
            <param name="css"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRow.InvalidateRender">
            <summary>
            InvalidateRender
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRow.ToString">
            <summary>
            ToString
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRow.TextMarkupLinkClick(System.Object,System.EventArgs)">
            <summary>
            Occurs when a text markup link is clicked
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextRow.BackgroundImage">
            <summary>
            Gets or sets the Background Image
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextRow.BackgroundImageLayout">
            <summary>
            Gets or sets the layout of the Background Image
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextRow.Bounds">
            <summary>
             Gets the scroll adjusted bounds
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextRow.EnableMarkup">
            <summary>
            Gets or sets whether text-markup support is enabled
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextRow.ImageBounds">
            <summary>
            Gets whether the item is empty
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextRow.IsEmpty">
            <summary>
            Gets whether the item is empty
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextRow.RowHeight">
            <summary>
            Gets or sets the row height (0 to auto-size)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextRow.RowHeaderVisibility">
            <summary>
            Gets or sets whether the RowHeader is displayed
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextRow.Text">
            <summary>
            Gets or sets the Text
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextRow.PlainText">
            <summary>
            Gets plain text without text-markup (if text-markup is used in Text)
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCaption.#ctor">
            <summary>
             GridCaption
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCaption.#ctor(System.String)">
            <summary>
             GridCaption
            </summary>
            <param name="text"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCaption.RenderBorder(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle,System.Drawing.Rectangle)">
            <summary>
            RenderBorder
            </summary>
            <param name="g"></param>
            <param name="panel"></param>
            <param name="pstyle"></param>
            <param name="r"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCaption.CanShowRowHeader(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            CanShowRowHeader
            </summary>
            <param name="panel"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCaption.ApplyStyleEx(DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyle,DevComponents.DotNetBar.SuperGrid.Style.StyleType[])">
            <summary>
            ApplyStyleEx
            </summary>
            <param name="style"></param>
            <param name="css"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCaption.RowHeaderVisibility">
            <summary>
            RowHeaderVisibility
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridColumn">
            <summary>
            Defines the grid column header
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumn.#ctor">
            <summary>
             GridColumn
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumn.#ctor(System.String)">
            <summary>
             GridColumn
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumn.OnDisplayIndexChanged(System.EventArgs)">
            <summary>
            Raises DisplayIndexChanged event.
            </summary>
            <param name="e">Provides event arguments.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumn.MeasureOverride(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Size)">
            <summary>
            Performs the layout of the item and sets the Size property to size that item will take.
            </summary>
            <param name="layoutInfo">Layout information.</param>
            <param name="stateInfo"></param>
            <param name="constraintSize"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumn.ArrangeOverride(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Rectangle)">
            <summary>
            Performs the arrange pass layout of the item when final position and size of the item has been set.
            </summary>
            <param name="layoutInfo">Layout information.</param>
            <param name="stateInfo"></param>
            <param name="layoutBounds">Layout bounds</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumn.RenderOverride(DevComponents.DotNetBar.SuperGrid.GridRenderInfo)">
            <summary>
            Performs drawing of the item and its children.
            </summary>
            <param name="renderInfo">Holds contextual rendering information.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumn.GetMaximumCellSize(DevComponents.DotNetBar.SuperGrid.RowScope,System.Boolean)">
            <summary>
             This routine calculates and returns the maximum cell
             size from each cell in the column, as limited by the
             given row scope ('AllRows' or 'OnScreenRows').
             If 'includeHeader' is true, then the width of the header
             is included in the max calculation.
            </summary>
            <returns>Maximum cell size.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumn.GetSelectedCells">
            <summary>
             GetSelectedCells
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumn.EnsureVisible(System.Boolean)">
            <summary>
             EnsureVisible
            </summary>
            <param name="center"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumn.ToggleSort">
            <summary>
             ToggleSort
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumn.StyleChanged(System.Object,System.ComponentModel.PropertyChangedEventArgs)">
            <summary>
            Occurs when one of element visual styles has property changes.
            Default implementation invalidates visual appearance of element.
            </summary>
            <param name="sender">VisualStyle that changed.</param>
            <param name="e">Event arguments.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumn.GetHeaderStyle(DevComponents.DotNetBar.SuperGrid.Style.StyleType)">
            <summary>
            Gets the effective header style for the given StyleType.
            </summary>
            <param name="e">StyleType</param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumn.GetEffectiveCellStyle(DevComponents.DotNetBar.SuperGrid.Style.StyleType)">
            <summary>
            Get the default Effective CellStyle for the given StyleType.
            </summary>
            <param name="type"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumn.InvalidateStyle">
            <summary>
            Invalidates the cached Style
            definition for all defined StyleTypes
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumn.InvalidateStyle(DevComponents.DotNetBar.SuperGrid.Style.StyleType)">
            <summary>
            Invalidate the cached Style
            definition for the given StyleType
            </summary>
            <param name="type"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumn.HeaderTextMarkupLinkClick(System.Object,System.EventArgs)">
            <summary>
            Occurs when a header text markup link is clicked
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumn.ActivateFilterPopup">
            <summary>
            Activates the column's FilterPopup
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumn.DeactivateFilterPopup">
            <summary>
            Deactivates the column's FilterPopup
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumn.ToString">
            <summary>
            ToString
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumn.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.GridColumn.DisplayIndexChanged">
            <summary>
            Occurs after column header DisplayIndex has changed.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.AdjustSortImagePositionByMargin">
            <summary>
             Gets or sets whether the Column Header sort image
             position is adjusted by the header margin
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.AllowEdit">
            <summary>
            Gets or sets whether column cells can be edited by the user. 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.AllowNullCellMerge">
            <summary>
            Gets or sets whether cells with null/empty values are allowed to be merged. 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.AutoSizeMode">
            <summary>
            Gets or sets how column auto-sizing is performed
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.Bounds">
            <summary>
             Gets the scroll adjusted bounds of the Column
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.CellHighlightMode">
            <summary>
            Gets or sets the type of highlighting
            to perform when a cell is selected
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.CellMergeMode">
            <summary>
            Gets or sets the type of cell merging
            that is supported by each cell in the column
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.CellStyles">
            <summary>
            Gets or sets the default visual styles assigned to the column cells
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.ColumnIndex">
            <summary>
            Gets the panel level, Columns collection index of the column
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.ColumnSortMode">
            <summary>
            Gets or sets how column sorting is performed
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.DataPropertyName">
            <summary>
             Gets or sets the name of the data source property
             or database column to which the column is bound
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.DataType">
            <summary>
            Gets or sets the underlying data type
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.DefaultNewRowCellValue">
            <summary>
            Gets or sets the default cell value used when a new row is added
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.DisplayIndex">
            <summary>
            Gets or sets display index of the column.
            </summary>
            <remarks>
            A lower display index means a column will appear first (to the left) of columns with a higher display index. 
            Allowable values are from 0 to num columns - 1. (-1 is legal only as the default value). SuperGrid enforces
            that no two columns have the same display index, ie. changing the display index of a column will cause the index
            of other columns to adjust as well.
            </remarks>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.EditControl">
            <summary>
             Gets the default Edit Control used for each cell in the column.
             The column level edit control is a shared control, created and
             based upon the column level EditorType and EditorParams properties.
             Each cell in the column, that does not define its own EditorType,
             will utilize the column level EditorControl.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.EditorParams">
            <summary>
            Gets or sets an array of arguments that match in number,
            order, and type the parameters of the EditControl constructor
            to invoke. If empty or null, the default constructor is invoked.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.EditorType">
            <summary>
             Gets or sets the default cell editor type. This is the default
             control type used to perform the actual modification of the cell value
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.EffectiveCellMergeMode">
            <summary>
            Gets the "effective" CellMergeMode for the column (ie. returns
            the GridPanel CellMergeMode if column CellMergeMode is NotSet)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.EnableFiltering">
            <summary>
            Gets or sets whether filtering is enabled for the column
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.EnableGroupHeaderMarkup">
            <summary>
            Gets or sets whether text-markup support is enabled for the Group Header Text
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.EnableHeaderMarkup">
            <summary>
            Gets or sets whether text-markup support is enabled for the HeaderText
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.FilterAutoScan">
            <summary>
            Gets or sets whether the column's FilterPopup
            is filled by auto-scanning the column contents.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.FilterDisplayValue">
            <summary>
            Gets or sets the value used to filter grid rows.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.FilterEditType">
            <summary>
            Gets or sets the filter edit type
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.FilterExpr">
            <summary>
            Gets or sets the value used to filter grid rows.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.FilterMatchType">
            <summary>
            Gets or sets the filter data match type (how data elements are matched)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.FilterPopupMaxItems">
            <summary>
            Gets or sets the filter popup maximum number of drop-down items
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.FilterPopupSize">
            <summary>
            Gets or sets the filter popup size
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.FilterRowStyles">
            <summary>
            Gets or sets the visual styles assigned to the Filter Row
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.FilterValue">
            <summary>
            Gets or sets the current filter value (the value that is
            loaded into, or retrieved from, the editing filter control
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.FillWeight">
            <summary>
            Gets or sets a value which, when AutoSizeMode is Fill,
            represents the width of the column relative to the widths
            of other fill-mode columns (default value is 100).
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.GroupBoxEffects">
            <summary>
            Gets or sets how the column interacts with the GroupBox
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.GroupDirection">
            <summary>
            Gets or sets the grouping sort direction (ie. ascending or descending).
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.HeaderText">
            <summary>
            Gets or sets the column header text. If the HeaderText is null
            then the Name of the columns is used in its place.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.HeaderStyles">
            <summary>
            Gets or sets the visual styles assigned to the Column Header
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.InfoImage">
            <summary>
            Gets or sets the default cell informational Image
            (the image to display when InfoText is non-empty).
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.InfoImageAlignment">
            <summary>
             Gets or sets how the InfoImage is aligned within the cell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.IsDataBound">
            <summary>
             Gets whether the column is data bound.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.IsFilteringEnabled">
            <summary>
             Gets whether filtering is enabled for the column
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.IsGroupColumn">
            <summary>
             Gets whether the column is a Grouping column
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.IsHFrozen">
            <summary>
             Gets whether the column is horizontally frozen
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.IsOnScreen">
            <summary>
             Gets whether the column is visibly on screen.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.IsPrimaryColumn">
            <summary>
             Gets whether the column is the Primary column
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.IsSelectable">
            <summary>
             Gets whether the column can be selected.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.IsSelected">
            <summary>
             Gets or sets whether the column is selected
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.IsSortColumn">
            <summary>
             Gets whether the column is a Sort column
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.MarkRowDirtyOnCellValueChange">
            <summary>
            Gets or sets whether cell Value changes within this column
            will result in the associated Row being marked as 'dirty'
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.MinimumWidth">
            <summary>
            Gets or sets the minimum column width (default value is 5)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.Name">
            <summary>
            Gets or sets the Column name.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.NextVisibleColumn">
            <summary>
             Gets the next visible column
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.NullString">
            <summary>
            Gets or sets the default text to display for null values. 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.PrevVisibleColumn">
            <summary>
             Gets the previous visible column
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.ReadOnly">
            <summary>
            Gets or sets whether the user can change column cell contents
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.RenderControl">
            <summary>
             Gets the default render control for the column cells
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.RenderParams">
            <summary>
            Gets or sets an array of arguments that match in number,
            order, and type the parameters of the RenderControl constructor
            to invoke. If empty or null, the default constructor is invoked.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.RenderType">
            <summary>
             Gets or sets the cell render control type (defaults to EditorType, when not set)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.ResizeMode">
            <summary>
            Gets or sets how the column is resized by the user
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.SelectedCellCount">
            <summary>
             Gets the current count of selected cells in the column.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.ShowPanelFilterExpr">
            <summary>
             Gets or sets whether the filter expression is displayed in the panel area
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.SortCycle">
            <summary>
            Gets or sets how the sort direction cycles
            when the column header is clicked to sort.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.SortDirection">
            <summary>
            Gets or sets the Sorting direction (ascending or descending)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.SortIndicator">
            <summary>
            Gets or sets the sort indicator
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.ToolTip">
            <summary>
             Gets or sets the ToolTip text for the column header.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.Width">
            <summary>
            Gets or sets the column width.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumn.PlainHeaderText">
            <summary>
            Gets plain Header text without text-markup (if text-markup is used in Text)
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.ColumnAutoSizeMode">
            <summary>
            Defines columns auto-sizing mode.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ColumnAutoSizeMode.NotSet">
            <summary>
            The sizing behavior of the column is inherited
            from the GridPanel.AutoSizeColumnsMode property.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ColumnAutoSizeMode.None">
            <summary>
            Auto-sizing does not take place.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ColumnAutoSizeMode.Fill">
            <summary>
            The column width adjusts so that the widths of all columns
            exactly fills the display area of the control, requiring
            horizontal scrolling only to keep column widths above the
            ColumnHeader.MinimumWidth property values. Relative column widths
            are determined by the relative Column.FillWeight property values.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ColumnAutoSizeMode.DisplayedCellsExceptHeader">
            <summary>
            The column width adjusts to fit the contents of all cells in the column
            that are in rows currently displayed on screen, excluding the header cell. 
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ColumnAutoSizeMode.DisplayedCells">
            <summary>
            The column width adjusts to fit the contents of all cells in the column
            that are in rows currently displayed on screen, including the header cell. 
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ColumnAutoSizeMode.ColumnHeader">
            <summary>
            The column width adjusts to fit the contents of the column header cell. 
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ColumnAutoSizeMode.AllCellsExceptHeader">
            <summary>
            The column width adjusts to fit the contents of all
            cells in the column, excluding the header cell. 
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ColumnAutoSizeMode.AllCells">
            <summary>
            The column width adjusts to fit the contents of all
            cells in the column, including the header cell. 
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.ColumnSortMode">
            <summary>
             Indicates the column sorting mode
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ColumnSortMode.None">
            <summary>
             No sorting permitted
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ColumnSortMode.Single">
            <summary>
             Can participate in Single column sorts only
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ColumnSortMode.Multiple">
            <summary>
             Can participate in Single and Multiple column sorts
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.ColumnResizeMode">
            <summary>
             ColumnResizeMode
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ColumnResizeMode.None">
            <summary>
             The element cannot be resized by the user
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ColumnResizeMode.MaintainTotalWidth">
            <summary>
             The size of the element plus that of its adjacent element
             is changed so that the total size of the elements is maintained
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ColumnResizeMode.MoveFollowingElements">
            <summary>
             When the element size is changed, all following
             elements are offset accordingly
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.SortIndicator">
            <summary>
             SortIndicator
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SortIndicator.None">
            <summary>
             No indicator is displayed
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SortIndicator.Ascending">
            <summary>
             Ascending indicator is displayed
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SortIndicator.Descending">
            <summary>
             Descending indicator is displayed
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SortIndicator.Auto">
            <summary>
             Set automatically based on current
             column sort criteria
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.RowScope">
            <summary>
             RowScope
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowScope.AllRows">
            <summary>
             All Rows
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowScope.OnScreenRows">
            <summary>
             Only On Screen rows
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.EditTypeConverter">
            <summary>
             EditTypeConverter
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.EditTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
            <summary>
             ConvertTo
            </summary>
            <param name="context"></param>
            <param name="culture"></param>
            <param name="value"></param>
            <param name="destinationType"></param>
            <returns></returns>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridColumnCollection">
            <summary>
            Defines the collection of grid columns
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.CollectionChanged">
            <summary>
            Occurs when the collection has changed
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.Add(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
            Adds new object to the collection.
            </summary>
            <param name="value">Object to add.</param>
            <returns>Index of newly added object.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.Insert(System.Int32,DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
            Inserts new object into the collection.
            </summary>
            <param name="index">Position of the object.</param>
            <param name="value">Object to insert.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.IndexOf(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
            Returns index of the object inside of the collection.
            </summary>
            <param name="value">Reference to the object.</param>
            <returns>Index of the object.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.Contains(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
            Returns whether collection contains specified object.
            </summary>
            <param name="value">Object to look for.</param>
            <returns>true if object is part of the collection, otherwise false.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.Contains(System.String)">
            <summary>
            Returns whether collection contains specified object.
            </summary>
            <param name="name">Name of the object to look for.</param>
            <returns>true if object is part of the collection, otherwise false.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.Remove(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
            Removes specified object from the collection.
            </summary>
            <param name="value"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.OnRemoveComplete(System.Int32,System.Object)">
            <summary>
            Called when remove of an item is completed.
            </summary>
            <param name="index">Index of removed item</param>
            <param name="value">Removed item.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.Clear">
            <summary>
            Clears all objects from the collection.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.OnClearComplete">
            <summary>
            OnClearComplete
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.OnInsertComplete(System.Int32,System.Object)">
            <summary>
            Called when insertion of an item is completed.
            </summary>
            <param name="index">Insert index.</param>
            <param name="value">Inserted item.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.InvalidateDisplayIndexes">
            <summary>
            Invalidates the display indexes and
            causes them to be re-evaluated on next layout.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.CopyTo(DevComponents.DotNetBar.SuperGrid.GridColumn[],System.Int32)">
            <summary>
            Copies collection into the specified array.
            </summary>
            <param name="array">Array to copy collection to.</param>
            <param name="index">Starting index.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.CopyTo(DevComponents.DotNetBar.SuperGrid.GridColumn[])">
            <summary>
            Copies contained items to the ColumnHeader array.
            </summary>
            <param name="array">Array to copy to.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.OnClear">
            <summary>
            Called when collection is cleared.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.GetDisplayIndex(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
            Gets the display index for specified column.
            </summary>
            <param name="column">Column that is part of ColumnHeaderCollection</param>
            <returns>Display index or -1 column is not part of this collection.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.GetDisplayIndex(System.Int32)">
            <summary>
             Gets the display index for specified column.
            </summary>
            <param name="index">Column index</param>
            <returns>Display index or -1 column is not part of this collection.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.ColumnAtDisplayIndex(System.Int32)">
            <summary>
            Returns the column that is displayed at specified display index.
            </summary>
            <param name="displayIndex">0 based display index.</param>
            <returns>ColumnHeader</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.GetNextVisibleColumn(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
            Gets reference to next visible column
            or null if there is no next visible column
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.GetPrevVisibleColumn(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
            Gets reference to previous visible column
            or null if there is no last visible previous column
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.GetLastVisibleFrozenColumn">
            <summary>
            Gets reference to the last visible frozen column
            or null if there is none
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.FirstSelectableColumn">
            <summary>
            Gets reference to first selectable column
            or null if there is no first selectable column.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.FirstVisibleColumn">
            <summary>
            Gets reference to first visible column
            or null if there is no first visible column.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.Item(System.Int32)">
            <summary>
            Returns reference to the object in collection based on it's index.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.Item(System.String)">
            <summary>
             Name indexer
            </summary>
            <param name="name"></param>
            <exception cref="T:System.Exception"></exception>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.LastSelectableColumn">
            <summary>
            Gets reference to last selectable column
            or null if there is no last selectable column.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.LastVisibleColumn">
            <summary>
            Gets reference to last visible column
            or null if there is no last visible column.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.ParentItem">
            <summary>
            Gets or sets the node this collection is associated with.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnCollection.DisplayIndexMap">
            <summary>
            A map of display index (key) to index in the column collection
            (value). Used to quickly find a column from its display index.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeaderCollection">
            <summary>
            ColumnGroupHeaderCollection
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeaderCollection.OnCollectionChanged(DevComponents.DotNetBar.Primitives.NotifyCollectionChangedEventArgs)">
            <summary>
            Handles CollectionChange notifications
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeaderCollection.PropertyValueChanged(System.Object,System.ComponentModel.PropertyChangedEventArgs)">
            <summary>
            Occurs when one of element visual styles has property changes.
            Default implementation invalidates visual appearance of element.
            </summary>
            <param name="sender">VisualStyle that changed.</param>
            <param name="e">Event arguments.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeaderCollection.OnPropertyChangedEx(System.String,DevComponents.DotNetBar.SuperGrid.Style.VisualChangeType)">
            <summary>
            Default PropertyChanged processing
            </summary>
            <param name="s"></param>
            <param name="changeType">invalidate</param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeaderCollection.Item(System.String)">
            <summary>
             Name indexer
            </summary>
            <param name="name"></param>
            <exception cref="T:System.Exception"></exception>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeaderCollection.Parent">
            <summary>
             Parent
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader">
            <summary>
            Column GroupHeader
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.#ctor">
            <summary>
            ColumnGroupHeader
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.HeaderTextMarkupLinkClick(System.Object,System.EventArgs)">
            <summary>
            Occurs when a header text markup link is clicked
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.PropertyValueChanged(System.Object,System.ComponentModel.PropertyChangedEventArgs)">
            <summary>
            Occurs when one of element visual styles has property changes.
            Default implementation invalidates visual appearance of element.
            </summary>
            <param name="sender">VisualStyle that changed.</param>
            <param name="e">Event arguments.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
            <summary>
            Raises the PropertyChanged event.
            </summary>
            <param name="e">Event arguments</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.OnPropertyChanged(System.String)">
            <summary>
            Default PropertyChanged processing
            </summary>
            <param name="s"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.OnPropertyChangedEx(System.String,DevComponents.DotNetBar.SuperGrid.Style.VisualChangeType)">
            <summary>
            Default PropertyChanged processing
            </summary>
            <param name="s"></param>
            <param name="changeType">invalidate</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.AllowSelection">
            <summary>
            Gets or sets whether the element can be selected
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.AutoApplyGroupColors">
            <summary>
             Gets or sets whether Group Header color properties
             (ie. Background and TextColor) are automatically
             applied to group Column Headers
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.Collection">
            <summary>
            The collection the item is contained within
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.DisplayCount">
            <summary>
             Gets the count of displayed columns
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.EnableHeaderMarkup">
            <summary>
            Gets or sets whether text-markup support is enabled for the HeaderText
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.EndDisplayIndex">
            <summary>
             Gets or sets the end column display index
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.GroupHeaders">
            <summary>
            Gets or sets the GroupHeaders contained under the given header
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.HeaderStyles">
            <summary>
            Gets or sets the visual styles assigned to the Column Header
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.HeaderText">
            <summary>
             Gets or sets the Header Text
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.IsReadOnly">
            <summary>
            Returns whether the given GroupHeader is ReadOnly (ie. all
            visible columns/headers it encompasses must be ReadOnly)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.IsSelected">
            <summary>
            Returns whether the given GroupHeader is selected (ie. all
            visible columns/headers it encompasses must be selected)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.MinRowHeight">
            <summary>
             Gets or sets the minimum height of the Header row
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.Name">
            <summary>
             Gets or sets the GroupHeader Name
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.Parent">
            <summary>
            The Parent the item
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.RowHeight">
            <summary>
             Gets or sets the fixed height of the header
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.ShowColumnHeaders">
            <summary>
             Gets or sets whether the column headers are shown
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.StartDisplayIndex">
            <summary>
             Gets or sets the start column display index
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.ToolTip">
            <summary>
             Gets or sets the ToolTip text for the sub header.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.Visible">
            <summary>
            Get or sets whether the item is visible
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.PlainHeaderText">
            <summary>
            Gets plain Header text without text-markup (if text-markup is used in Text)
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader.PropertyChanged">
            <summary>
            Occurs when property value has changed.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GroupHeaderMarkupLinkClickEventArgs">
            <summary>
            GroupHeaderMarkupLinkClickEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GroupHeaderMarkupLinkClickEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader,DevComponents.SuperGrid.TextMarkup.HyperLink)">
            <summary>
             GroupHeaderMarkupLinkClickEventArgs
            </summary>
            <param name="groupHeader"></param>
            <param name="hyperLink"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GroupHeaderMarkupLinkClickEventArgs.GroupHeader">
            <summary>
            Gets the associated GroupHeader
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GroupHeaderMarkupLinkClickEventArgs.HyperLink">
            <summary>
            Gets the associated HyperLink
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridColumnHeader">
            <summary>
            Represents a layout of column headers
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.MeasureOverride(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Size)">
            <summary>
            Performs the layout of the item and sets
            the Size property to size that item will take.
            </summary>
            <param name="layoutInfo">Layout information.</param>
            <param name="stateInfo"></param>
            <param name="constraintSize"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.ArrangeOverride(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Rectangle)">
            <summary>
            Performs the arrange pass layout of the item
            when final position and size of the item has been set.
            </summary>
            <param name="layoutInfo">Layout information.</param>
            <param name="stateInfo"></param>
            <param name="layoutBounds">Layout bounds</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.RenderOverride(DevComponents.DotNetBar.SuperGrid.GridRenderInfo)">
            <summary>
            Performs drawing of the item and its children.
            </summary>
            <param name="renderInfo">Holds contextual rendering information.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.GetHitArea(System.Drawing.Point,DevComponents.DotNetBar.SuperGrid.GridColumn@)">
            <summary>
             Returns the ColumnHeader hit area
             and column for the given Point
            </summary>
            <param name="pt"></param>
            <param name="column"></param>
            <returns>HeaderArea</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.GetHitArea(System.Drawing.Point,System.Object@)">
            <summary>
             Returns the ColumnHeader hit area
             and hit object for the given Point
            </summary>
            <param name="pt"></param>
            <param name="hitItem"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.GetHitColumn(System.Int32,System.Int32)">
            <summary>
             Gets the associated column at the given location
            </summary>
            <param name="x"></param>
            <param name="y"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.GetHitColumn(System.Drawing.Point)">
            <summary>
             Gets the associated column at the given point
            </summary>
            <param name="pt"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.GetParent(System.Object)">
            <summary>
            Gets the object that is the "parent" of the given item
            (either a GridColumn or ColumnGroupHeader).
            </summary>
            <param name="item"></param>
            <returns>Parent or null</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.GetParentHeader(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
            Gets the object that is the "parent" of the given column.
            </summary>
            <param name="column"></param>
            <returns>parent or null</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.GetParentHeader(System.Int32)">
            <summary>
            Gets the ColumnGroupHeader that is the "parent" of the column at
            the given DISPLAY index.
            </summary>
            <param name="displayIndex">DISPLAY INDEX</param>
            <returns>parent object or null</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.InvalidateStyle">
            <summary>
            Invalidates the cached Style
            definition for all defined StyleTypes
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.InvalidateStyle(DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader)">
            <summary>
            Invalidates the cached Style
            definition for all GroupHeader defined StyleTypes
            </summary>
            <param name="cgh"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.InvalidateStyle(DevComponents.DotNetBar.SuperGrid.Style.StyleType)">
            <summary>
            Invalidate the cached Style
            definition for the given StyleType
            </summary>
            <param name="type"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.InvalidateStyle(DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader,DevComponents.DotNetBar.SuperGrid.Style.StyleType)">
            <summary>
            Invalidate the cached Style
            definition for the given GroupHeader StyleType
            </summary>
            <param name="cgh"></param>
            <param name="type"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.GetEffectiveStyle(DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader)">
            <summary>
             GetEffectiveStyle
            </summary>
            <param name="cgh"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.GetEffectiveStyle(DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader,DevComponents.DotNetBar.SuperGrid.Style.StyleState)">
            <summary>
            Gets the EffectiveStyle for the given StyleState
            </summary>
            <param name="cgh"></param>
            <param name="cellState"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.GetEffectiveStyle(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
             GetEffectiveStyle
            </summary>
            <param name="column"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.GetEffectiveStyle(DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.Style.StyleState)">
            <summary>
            Gets the EffectiveStyle for the given StyleState
            </summary>
            <param name="column"></param>
            <param name="cellState"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.IsGroupHeaderSelected(DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader)">
            <summary>
            Returns whether the given GroupHeader is selected (ie. all
            visible columns/headers it encompasses must be selected)
            </summary>
            <param name="cgh">GroupHeader</param>
            <returns>true, if all selected</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.IsGroupHeaderReadOnly(DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader)">
             <summary>
            Returns whether the given GroupHeader is ReadOnly (ie. all
            visible columns/headers it encompasses must be ReadOnly)
             </summary>
             <param name="cgh"></param>
             <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.GetImageBounds(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
            Gets the bounding rectangle for the
            given column header image
            </summary>
            <param name="column"></param>
            <returns>Bounding rectangle</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.CancelCapture">
            <summary>
            Cancels any in progress operations (resize, reorder)
            that may have the mouse captured.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.AscendingSortImage">
            <summary>
            Gets or sets the Ascending sort image
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.AscendingSortImageIndex">
            <summary>
            Gets or sets the Ascending Sort Image index
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.AutoApplyGroupColors">
            <summary>
            Gets or sets whether Group Header color properties
            (ie. Background and TextColor) are automatically
            applied to group Column Headers.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.Bounds">
            <summary>
             Gets the scroll adjusted bounds
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.DescendingSortImage">
            <summary>
            Gets or sets the Descending sort image
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.DescendingSortImageIndex">
            <summary>
            Gets or sets the Descending Sort Image index
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.FilterImage">
            <summary>
            Gets or sets the default
            image to display in the column header.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.FilterImageAlignment">
            <summary>
            Gets or sets the alignment of the filter Image
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.FilterImageIndex">
            <summary>
            Gets or sets the Filter image index
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.FilterImageVisibility">
            <summary>
            Gets or sets the visibility of the header filter image
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.GroupHeaders">
            <summary>
            Gets a reference to the collection of grid columns
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.MinRowHeight">
            <summary>
             Gets or sets the minimum height of the ColumnHeader row
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.RowHeaderText">
            <summary>
             Gets or sets the associated row header text (only
             displayed if TopLeftHeaderSelectBehavior is set to NoSelection).
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.RowHeight">
            <summary>
             Gets or sets the height of the ColumnHeader row
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.ShowFilterToolTips">
            <summary>
            Gets or sets whether tooltips are shown when over the filter image
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.ShowHeaderImages">
            <summary>
            Gets or sets whether Column Header images are displayed
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.ShowGroupColumnHeaders">
            <summary>
             Gets or sets whether column headers are shown
             by default when the columns are within a grouped header
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.ShowToolTips">
            <summary>
            Gets or sets whether tooltips are shown for the column header
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeader.SortImageAlignment">
            <summary>
            Gets or sets the alignment of the Sort Images
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.HeaderArea">
            <summary>
             HeaderArea
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.HeaderArea.NoWhere">
            <summary>
             NoWhere
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.HeaderArea.InContent">
            <summary>
             InContent
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.HeaderArea.InResize">
            <summary>
             InResize
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.HeaderArea.InRowHeader">
            <summary>
             InRowHeader
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.HeaderArea.InRowHeaderResize">
            <summary>
             InRowHeaderResize
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.HeaderArea.InWhitespace">
            <summary>
             InWhitespace
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.HeaderArea.InMarkup">
            <summary>
             InMarkup
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.HeaderArea.InFilterMenu">
            <summary>
             InFilterMenu
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.HeaderArea.InGroupBox">
            <summary>
             InGroupBox
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.ImageVisibility">
            <summary>
             ImageVisibility
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ImageVisibility.NotSet">
            <summary>
             NotSet
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ImageVisibility.Auto">
            <summary>
             Auto
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ImageVisibility.Always">
            <summary>
             Always
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ImageVisibility.Never">
            <summary>
             Never
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.CustomFilter">
            <summary>
             CustomFilter
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.CustomFilter.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
             CustomFilter
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.CustomFilter.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,System.String)">
            <summary>
             CustomFilter
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.CustomFilter.OnResize(System.EventArgs)">
            <summary>
            Handles filter resize
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.CustomFilter.OnLocationChanged(System.EventArgs)">
            <summary>
            LocationChanged processing
            </summary>
            <param name="e"></param>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CustomFilter.Se">
            <summary>
            Sample Expr variable
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CustomFilter.components">
            <summary>
            Required designer variable.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.CustomFilter.Dispose(System.Boolean)">
            <summary>
            Clean up any resources being used.
            </summary>
            <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.CustomFilter.InitializeComponent">
            <summary>
            Required method for Designer support - do not modify
            the contents of this method with the code editor.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.CustomFilter.FilterExpr">
            <summary>
            FilterExpr
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.CustomFilterEx">
            <summary>
             CustomFilter
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.CustomFilterEx.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
             CustomFilter
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.CustomFilterEx.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,System.String)">
            <summary>
             CustomFilter
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CustomFilterEx.components">
            <summary>
            Required designer variable.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.CustomFilterEx.Dispose(System.Boolean)">
            <summary>
            Clean up any resources being used.
            </summary>
            <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.CustomFilterEx.InitializeComponent">
            <summary>
            Required method for Designer support - do not modify
            the contents of this method with the code editor.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.CustomFilterEx.CurrentFilter">
            <summary>
            Gets or sets the current UserFilterData filter
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.CustomFilterEx.FilterData">
            <summary>
            Gets or sets the list of UserFilterData
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.CustomFilterEx.FilterExpr">
            <summary>
            FilterExpr
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.CustomFilterEx.ShowInPopupVisible">
            <summary>
            ShowInPopupVisible
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.DataFilter">
            <summary>
             DataBinding helper class
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.DataFilter.FilterData(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
             FilterData
            </summary>
            <param name="panel"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.FilterDateTimePicker">
            <summary>
             FilterDateTimePicker
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterDateTimePicker.#ctor(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
            FilterDateTimePicker
            </summary>
            <param name="gridColumn"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterDateTimePicker.GetFilterExpr">
            <summary>
            GetFilterExpr
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterDateTimePicker.ProcessTabKey(System.Boolean)">
            <summary>
            ProcessTabKey
            </summary>
            <param name="forward"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterDateTimePicker.ProcessDialogKey(System.Windows.Forms.Keys)">
            <summary>
            ProcessDialogKey
            </summary>
            <param name="keyData"></param>
            <returns></returns>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterDateTimePicker.components">
            <summary> 
            Required designer variable.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterDateTimePicker.Dispose(System.Boolean)">
            <summary> 
            Clean up any resources being used.
            </summary>
            <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterDateTimePicker.InitializeComponent">
            <summary> 
            Required method for Designer support - do not modify 
            the contents of this method with the code editor.
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.FilterDateTimePicker.ValueChanged">
            <summary>
            Occurs when the DateTimePicker value has changed
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterDateTimePicker.AcceptButton">
            <summary>
             AcceptButton
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterDateTimePicker.Cancel">
            <summary>
             Cancel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterDateTimePicker.CurrentMonth">
            <summary>
             CurrentMonth
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterDateTimePicker.CurrentYear">
            <summary>
             CurrentYear
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterDateTimePicker.CustomFilter">
            <summary>
             CustomFilter
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterDateTimePicker.LastMonthPeriod">
            <summary>
             LastMonthPeriod
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterDateTimePicker.Last3MonthPeriod">
            <summary>
             Last3MonthPeriod
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterDateTimePicker.Last6MonthPeriod">
            <summary>
             Last6MonthPeriod
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterDateTimePicker.Last9MonthPeriod">
            <summary>
             Last9MonthPeriod
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterDateTimePicker.LastYear">
            <summary>
             LastYear
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterDateTimePicker.Last5YearPeriod">
            <summary>
             Last5YearPeriod
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterDateTimePicker.Last10YearPeriod">
            <summary>
             Last10YearPeriod
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.RelativeFilter">
            <summary>
            RelativeFilter
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RelativeFilter.CurrentMonth">
            <summary>
            CurrentMonth
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RelativeFilter.CurrentYear">
            <summary>
            CurrentYear
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RelativeFilter.LastMonthPeriod">
            <summary>
            LastMonthPeriod
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RelativeFilter.Last3MonthPeriod">
            <summary>
            Last3MonthPeriod
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RelativeFilter.Last6MonthPeriod">
            <summary>
            Last6MonthPeriod
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RelativeFilter.Last9MonthPeriod">
            <summary>
            Last9MonthPeriod
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RelativeFilter.LastYear">
            <summary>
            LastYear,
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RelativeFilter.Last5YearPeriod">
            <summary>
            Last5YearPeriod
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RelativeFilter.Last10YearPeriod">
            <summary>
            Last10YearPeriod
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.FilterEval">
            <summary>
            Filter Expression evaluator
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.FilterMatchType,System.String)">
            <summary>
             Expression evaluator constructor
            </summary>
            <param name="gridPanel">Associated GridPanel</param>
            <param name="gridColumn"></param>
            <param name="matchType"></param>
            <param name="source"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Expr">
            <summary>
            Handles conditional Or operator
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Term0">
            <summary>
            Handles Conditional And operator
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Term1">
            <summary>
            Handles the Logical Or operator
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Term2">
            <summary>
            Handles Logical Xor operator
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Term3">
            <summary>
            Handles the Logical And operator
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Term4">
            <summary>
            Handles the Comparison operators
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Term5">
            <summary>
            Handles Like, Is, and Between operators
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Term6">
            <summary>
            Handles the Shift Left and Right operators
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Term7">
            <summary>
            Handles +, - operators
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Term8">
            <summary>
            Handles %, *, and / operators
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Factor">
            <summary>
            Handles factor processing
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Function(DevComponents.DotNetBar.SuperGrid.FToken)">
            <summary>
            Handles function parsing
            </summary>
            <param name="e"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.GetFunction(System.String)">
            <summary>
            Determines whether the parsed string
            is a one of our function keywords
            </summary>
            <param name="s"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.ParameterList(DevComponents.DotNetBar.SuperGrid.FToken)">
            <summary>
            Handles function parameters
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.GetToken">
            <summary>
            Gets the next parsed token
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.GetValue(System.String)">
            <summary>
            Gets the 'value' from the given string
            </summary>
            <param name="s"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.PutToken(DevComponents.DotNetBar.SuperGrid.FToken)">
            <summary>
            Saves the given token for future use
            </summary>
            <param name="t"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Evaluate(DevComponents.DotNetBar.SuperGrid.GridRow)">
            <summary>
            Evaluates the previously tokenized code
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.EvalFunction(System.Collections.Stack,System.Int32)">
            <summary>
            Evaluates the current function
            </summary>
            <param name="myStack"></param>
            <param name="count"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.ConvertTo(System.Object[])">
            <summary>
            Converts the given arg to the
            specified .Net System data type.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.AddMonths(System.Object[])">
            <summary>
            Adds Months to the given DateTime.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.AddDays(System.Object[])">
            <summary>
            Adds Days to the given DateTime.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.AddHours(System.Object[])">
            <summary>
            Adds Days to the given DateTime.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.AddMinutes(System.Object[])">
            <summary>
            Adds Minutes to the given DateTime.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.AddYears(System.Object[])">
            <summary>
            Adds Years to the given DateTime.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.AddSeconds(System.Object[])">
            <summary>
            Adds Seconds to the given DateTime.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Date(System.Object[])">
            <summary>
            Returns the Date portion of the given DateTime.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Day(System.Object[])">
            <summary>
            Returns the Day of the given DateTime.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Dow(System.Object[])">
            <summary>
            Returns the DayOfWeek of the given DateTime.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Doy(System.Object[])">
            <summary>
            Returns the DayOfYear of the given DateTime.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.EndOfMonth(System.Object[])">
            <summary>
            Returns the EndOfMonth of the given DateTime.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.FirstOfMonth(System.Object[])">
            <summary>
            Returns the FirstOfMonth of the given DateTime.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Hour(System.Object[])">
            <summary>
            Returns the Hour of the given DateTime.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Minute(System.Object[])">
            <summary>
            Returns the Minute of the given DateTime.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Month(System.Object[])">
            <summary>
            Returns the Month of the given DateTime.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Now(System.Object[])">
            <summary>
            Returns the current DateTime
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Year(System.Object[])">
            <summary>
            Returns the Year of the given DateTime.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Second(System.Object[])">
            <summary>
            Returns the Minute of the given DateTime.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.TimeOfDay(System.Object[])">
            <summary>
            Returns the TimeOfDay of the given DateTime.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.TotalDays(System.Object[])">
            <summary>
            Returns the TotalDays of the given TimeSpan.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.TotalHours(System.Object[])">
            <summary>
            Returns the TotalHours of the given TimeSpan.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.TotalMinutes(System.Object[])">
            <summary>
            Returns the TotalMinutes of the given TimeSpan.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.TotalSeconds(System.Object[])">
            <summary>
            Returns the TotalSeconds of the given TimeSpan.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.TotalYears(System.Object[])">
            <summary>
            Returns the TotalDays of the given TimeSpan.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Ceiling(System.Object[])">
            <summary>
            Returns the smallest whole value
            greater than or equal to the given value.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Floor(System.Object[])">
            <summary>
            Returns the largest whole value
            less than or equal to the given value.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Round(System.Object[])">
            <summary>
            Returns the largest whole value
            less than or equal to the given value.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.IndexOf(System.Object[])">
            <summary>
            Returns the index of the given
            string within the alternate specified string.
            </summary>
            <param name="args"></param>
            <returns>-1 if not found</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Left(System.Object[])">
            <summary>
            Returns the left part of the given character
            string with the specified number of characters.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Length(System.Object[])">
            <summary>
            Returns the length the given string.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.LTrim(System.Object[])">
            <summary>
            Removes all leading
            whitespace characters from the given string.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Raw(System.Object[])">
            <summary>
            Returns the raw unevaluated cell text (if the cell
            contains an expression '=123', it is not evaluated as such).
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Right(System.Object[])">
            <summary>
            Returns the right part of the given character
            string with the specified number of characters.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.RTrim(System.Object[])">
            <summary>
            Removes all trailing
            whitespace characters from the given string.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Substring(System.Object[])">
            <summary>
            Returns a substring of the given string.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.ToLower(System.Object[])">
            <summary>
            Returns a lower cased copy of the given string
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.ToString(System.Object[])">
            <summary>
            Returns the ToString of the given object.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.ToUpper(System.Object[])">
            <summary>
            Returns an upper cased copy of the given string
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.Trim(System.Object[])">
            <summary>
            Removes all leading and trailing
            whitespace characters from the given string.
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.User(System.Object[])">
            <summary>
            Calculates the sum of the given set of values
            </summary>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.ProcessValue(System.Object)">
            <summary>
            Process the given object value
            </summary>
            <param name="o"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.ProcessRawValue(System.Object)">
            <summary>
            Process the given object value
            </summary>
            <param name="o"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.GetInfix(System.Boolean)">
            <summary>
            GetInfix
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.InfixFunction(System.Collections.Stack,System.Int32)">
            <summary>
            Evaluates the current function
            </summary>
            <param name="myStack"></param>
            <param name="count"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterEval.InfixValue(System.Object)">
            <summary>
            Process the given object value
            </summary>
            <param name="o"></param>
            <returns></returns>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterEval.GridColumn">
            <summary>
             Gets the associated Grid GridColumn, if any
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterEval.GridPanel">
            <summary>
             Gets the associated Grid Panel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterEval.Source">
            <summary>
             Gets or sets the expression source
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterEval.Tag">
            <summary>
             Gets or sets user-defined data associated with the object
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.FToken">
            <summary>
             Filter Tokens
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.EmptyFilterOp">
            <summary>
             Empty Filter Operand
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.ExpressionColors">
            <summary>
             Expression syntax Colors
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.ExpressionColors.#ctor">
            <summary>
             Expression syntax Colors
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ExpressionColors.Default">
            <summary>
             Default text color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ExpressionColors.Dim">
            <summary>
             Dim text color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ExpressionColors.Column">
            <summary>
             Column Name text color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ExpressionColors.Operator">
            <summary>
             Operator text color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ExpressionColors.String">
            <summary>
             String text color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ExpressionColors.SysFunction">
            <summary>
             System Function text color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ExpressionColors.UserFunction">
            <summary>
             User Function text color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.ExpressionColors.Error">
            <summary>
             Error text color
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.ExpressionColorsConverter">
            <summary>
             ExpressionColorsConverter
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.ExpressionColorsConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
            <summary>
            ConvertTo
            </summary>
            <param name="context"></param>
            <param name="culture"></param>
            <param name="value"></param>
            <param name="destinationType"></param>
            <returns></returns>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.FilterExprEdit">
            <summary>
             FilterExprEdit
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterExprEdit.#ctor">
            <summary>
             FilterExprEdit
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterExprEdit.components">
            <summary> 
            Required designer variable.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterExprEdit.Dispose(System.Boolean)">
            <summary> 
            Clean up any resources being used.
            </summary>
            <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterExprEdit.InitializeComponent">
            <summary> 
            Required method for Designer support - do not modify 
            the contents of this method with the code editor.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.FilterPanel">
            <summary>
             FilterPanel
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterPanel.#ctor">
            <summary>
             Constructor
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterPanel.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
            <summary>
            OnPaintBackground
            </summary>
            <param name="e">PaintEventArgs</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterPanel.WantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
            <summary>
            </summary>
            <param name="key"></param>
            <param name="gridWantsKey"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterPanel.Select">
            <summary>
             Activates the control
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterPanel.Control">
            <summary>
             Control
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterPanel.GridColumn">
            <summary>
             GridColumn
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterPanel.GridFilter">
            <summary>
             GridFilter
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterPanel.Style">
            <summary>
             Style
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.FilterEditType">
            <summary>
            FilterEditType
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterEditType.Auto">
            <summary>
            Auto
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterEditType.None">
            <summary>
             None
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterEditType.CheckBox">
            <summary>
             CheckBox
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterEditType.ComboBox">
            <summary>
             ComboBox
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterEditType.DateTime">
            <summary>
             DateTime
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterEditType.TextBox">
            <summary>
             TextBox
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.FilterPopup">
            <summary>
             Constructor
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterPopup.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Constructor
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterPopup.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterPopup.Control">
            <summary>
            Control
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterPopup.GripSize">
            <summary>
            GripSize
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterPopup.Margin">
            <summary>
            Margin
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterPopup.Padding">
            <summary>
            Padding
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterPopup.PopupControl">
            <summary>
            Gets the PopupControl
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterPopup.ResizeMode">
            <summary>
            Type of resize mode
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.FilterPopup.PfnReset">
            <summary>
             PfnReset
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.FilterPopupItem">
            <summary>
             FilterPopupItem
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterPopupItem.#ctor(System.String,System.String,DevComponents.DotNetBar.SuperGrid.FilterItemType)">
            <summary>
             FilterPopupItem
            </summary>
            <param name="name"></param>
            <param name="text"></param>
            <param name="filterItemType"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterPopupItem.#ctor(System.String,System.String,DevComponents.DotNetBar.SuperGrid.FilterItemType,System.Object)">
            <summary>
             FilterPopupItem
            </summary>
            <param name="name"></param>
            <param name="text"></param>
            <param name="filterItemType"></param>
            <param name="value"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterPopupItem.Value">
            <summary>
             Associated Value
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterPopupItem.FilterItemType">
            <summary>
             Associated FilterItem type
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.FilterItemType">
            <summary>
             FilterItemType
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterItemType.All">
            <summary>
            All
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterItemType.Null">
            <summary>
             Null
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterItemType.NotNull">
            <summary>
             NotNull
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterItemType.Custom">
            <summary>
             Custom
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterItemType.ComboBoxEntry">
            <summary>
             ComboBoxEntry
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterItemType.CheckBoxEntry">
            <summary>
             ComboBoxEntry
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterItemType.ScanTextEntry">
            <summary>
             ScanTextEntry
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterItemType.ScanDateEntry">
            <summary>
             ScanDateEntry
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterItemType.UserEntry">
            <summary>
             UserEntry
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.FilterScan">
            <summary>
             FilterScan
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterScan.#ctor(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
             FilterScan
            </summary>
            <param name="gridColumn"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterScan.BeginScan">
            <summary>
             BeginScan
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterScan.EndScan">
            <summary>
             BeginScan
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.FilterScan.ScanComplete">
            <summary>
             ScanComplete
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.FilterScan.ScanItems">
            <summary>
             ScanItems
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.FilterUserData">
            <summary>
             FilterUserData
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterUserData.GetFilterData(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
             GetFilterData
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterUserData.LoadFilterData(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
             LoadFilterData
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.FilterUserData.StoreFilterData(DevComponents.DotNetBar.SuperGrid.GridPanel,System.Collections.Generic.List{DevComponents.DotNetBar.SuperGrid.UserFilterData})">
            <summary>
             StoreFilterData
            </summary>
            <param name="gridPanel"></param>
            <param name="filterData"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.UserFilterData">
            <summary>
             User Filter expression data
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.UserFilterData.Description">
            <summary>
             Description
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.UserFilterData.Expression">
            <summary>
             Expression
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.UserFilterData.Name">
            <summary>
             Name
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.UserFilterData.ReferNames">
            <summary>
             ReferNames
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.UserFilterData.ReferNamesString">
            <summary>
             ReferNamesString
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFilter">
            <summary>
            Represents a Grid Filter row
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilter.MeasureOverride(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Size)">
            <summary>
            Performs the layout of the item and sets
            the Size property to size that item will take.
            </summary>
            <param name="layoutInfo">Layout information.</param>
            <param name="stateInfo"></param>
            <param name="constraintSize"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilter.ArrangeOverride(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Rectangle)">
            <summary>
            Performs the arrange pass layout of the item
            when final position and size of the item has been set.
            </summary>
            <param name="layoutInfo">Layout information.</param>
            <param name="stateInfo"></param>
            <param name="layoutBounds">Layout bounds</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilter.RenderOverride(DevComponents.DotNetBar.SuperGrid.GridRenderInfo)">
            <summary>
            Performs drawing of the item and its children.
            </summary>
            <param name="renderInfo">Holds contextual rendering information.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilter.GetHitColumn(System.Int32,System.Int32)">
            <summary>
             Gets the associated column at the given location
            </summary>
            <param name="x"></param>
            <param name="y"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilter.GetHitColumn(System.Drawing.Point)">
            <summary>
             Gets the associated column at the given point
            </summary>
            <param name="pt"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilter.GetEffectiveStyle(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
             GetEffectiveStyle
            </summary>
            <param name="column"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilter.ActivateFilterEdit(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
            Activates the filter edit control for the given column
            </summary>
            <param name="column"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilter.DeactivateFilterEdit">
            <summary>
            Deactivates the current active filter edit
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilter.Bounds">
            <summary>
             Gets the scroll adjusted bounds
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilter.FilterImage">
            <summary>
            Gets or sets the default image to display
            in the filter row header.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilter.FilterImageIndex">
            <summary>
            Gets or sets the Filter image index
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilter.ShowPanelFilterExpr">
            <summary>
             Gets or sets whether filter
             expressions are displayed in the panel area
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilter.RowHeight">
            <summary>
             Gets or sets the height of the ColumnHeader row
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilter.ShowToolTips">
            <summary>
            Gets or sets whether tooltips are shown for FilterPanel expressions
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilter.Visible">
            <summary>
            Visible
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.PopupControl">
            <summary>
             PopupControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupControl.#ctor">
            <summary>
            Constructor
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupControl.InitializeDropDown">
            <summary>
            InitializeDropDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupControl.Show(System.Windows.Forms.Control,System.Drawing.Point,DevComponents.DotNetBar.SuperGrid.PopupAnchor,System.Windows.Forms.Form)">
            <summary>
            Shows the PopupControl
            </summary>
            <param name="control"></param>
            <param name="pt"></param>
            <param name="anchor"></param>
            <param name="form"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupControl.InitializeHost(System.Windows.Forms.Control)">
            <summary>
            InitializeHost
            </summary>
            <param name="control"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupControl.Hide">
            <summary>
            Hides / closes the PopupControl
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupControl.Reset">
            <summary>
            Resets / disposes of the Host control
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupControl.DisposeHost">
            <summary>
            DisposeHost
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.PopupControl.Closed">
            <summary>
            Closed event handler
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.PopupControl.Closing">
            <summary>
            Closing event handler
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.PopupControl.Opened">
            <summary>
            Opened event handler
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.PopupControl.Opening">
            <summary>
            Opening event handler
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.PopupControl.PostRenderGripBar">
            <summary>
            Opening event handler
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.PopupControl.PreRenderGripBar">
            <summary>
            Opening event handler
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.PopupControl.UserResize">
            <summary>
            UserResize event handler
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.PopupControl.AutoResetWhenClosed">
            <summary>
            AutoResetWhenClosed
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.PopupControl.Background">
            <summary>
            Background
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.PopupControl.Control">
            <summary>
            Associated drop down Control
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.PopupControl.GripSize">
            <summary>
            GripSize
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.PopupControl.Margin">
            <summary>
            Margin
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.PopupControl.Padding">
            <summary>
            Padding
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.PopupControl.ResizeMode">
            <summary>
            Type of resize mode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.PopupControl.Visible">
            <summary>
            Visible
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.PopupDropDown">
            <summary>
            PopupDropDown
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupDropDown.#ctor(System.Boolean)">
            <summary>
            PopupDropDown
            </summary>
            <param name="autoSize"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupDropDown.Show(System.Drawing.Point)">
            <summary>
            Shows the popup drop down
            </summary>
            <param name="pt"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupDropDown.Show(System.Int32,System.Int32)">
            <summary>
            Shows the popup drop down
            </summary>
            <param name="x"></param>
            <param name="y"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupDropDown.Hide">
            <summary>
            Hide
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupDropDown.ResizeFromContent">
            <summary>
            ResizeFromContent
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupDropDown.SizeFromContent">
            <summary>
            SizeFromContent
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupDropDown.RecalculateHostedControlLayout">
            <summary>
            RecalculateHostedControlLayout
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupDropDown.GetHostedControl">
            <summary>
            Gets the hosted control
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupDropDown.CompareResizeMode(DevComponents.DotNetBar.SuperGrid.PopupResizeMode)">
            <summary>
            CompareResizeMode
            </summary>
            <param name="resizeMode"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupDropDown.OnClosing(System.Windows.Forms.ToolStripDropDownClosingEventArgs)">
            <summary>
            OnClosing
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupDropDown.OnPaint(System.Windows.Forms.PaintEventArgs)">
            <summary>
            OnPaint
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupDropDown.OnSizeChanged(System.EventArgs)">
            <summary>
            OnSizeChanged
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupDropDown.ProcessDialogKey(System.Windows.Forms.Keys)">
            <summary>
            ProcessDialogKey
            </summary>
            <param name="keyData"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupDropDown.HostedControlSizeChanged(System.Object,System.EventArgs)">
            <summary>
            HostedControlSizeChanged
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PopupDropDown.WndProc(System.Windows.Forms.Message@)">
            <summary>
            WndProc
            </summary>
            <param name="m"></param>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.PopupDropDown.PostRenderGripBar">
            <summary>
            Occurs when the popup grip bar has been rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.PopupDropDown.PreRenderGripBar">
            <summary>
            Occurs when the popup grip bar is about to be rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.PopupDropDown.UserResize">
            <summary>
            Occurs when the user has resized the control
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.PopupDropDown.Background">
            <summary>
            Background
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.PopupDropDown.GripAlignMode">
            <summary>
            Grip align mode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.PopupDropDown.GripSize">
            <summary>
            Size of the grip box
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.PopupDropDown.PopupAnchor">
            <summary>
            PopupAnchor
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.PopupDropDown.ResizeMode">
            <summary>
            Type of resize mode
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.PopupDropDown.GripBounds">
            <summary>
            Bounds of active grip box position
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.PopupDropDown.IsGripShown">
            <summary>
            Indicates when a grip box is shown.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GripRenderer">
            <summary>
            Grip Renderer
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GripRenderer.RefreshGrip(System.Drawing.Graphics,System.Drawing.Size)">
            <summary>
            Refreshes the Grip
            </summary>
            <param name="g"></param>
            <param name="size"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GripRenderer.Render(System.Drawing.Graphics,System.Drawing.Point,DevComponents.DotNetBar.SuperGrid.GripAlignMode)">
            <summary>
            Grip renderer
            </summary>
            <param name="g"></param>
            <param name="location"></param>
            <param name="mode"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GripRenderer.Render(System.Drawing.Graphics,System.Drawing.Point,System.Drawing.Size,DevComponents.DotNetBar.SuperGrid.GripAlignMode)">
            <summary>
            Grip renderer
            </summary>
            <param name="g"></param>
            <param name="location"></param>
            <param name="size"></param>
            <param name="mode"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GripAlignMode">
            <summary>
            GripAlignMode
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GripAlignMode.None">
            <summary>
            None
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GripAlignMode.TopLeft">
            <summary>
            TopLeft
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GripAlignMode.TopRight">
            <summary>
            TopRight
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GripAlignMode.BottomLeft">
            <summary>
            BottomLeft
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GripAlignMode.BottomRight">
            <summary>
            BottomRight
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.PopupAnchor">
            <summary>
             PopupAnchor
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.PopupAnchor.Left">
            <summary>
             Left
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.PopupAnchor.Right">
            <summary>
             Right
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.PopupResizeMode">
            <summary>
             PopupResizeMode
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.PopupResizeMode.None">
            <summary>
             None
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.PopupResizeMode.Left">
            <summary>
            Left
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.PopupResizeMode.Top">
            <summary>
            Top
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.PopupResizeMode.Right">
            <summary>
            Right
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.PopupResizeMode.Bottom">
            <summary>
            Bottom
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.PopupResizeMode.All">
            <summary>
            All
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.PopupResizeMode.TopLeft">
            <summary>
            TopLeft
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.PopupResizeMode.TopRight">
            <summary>
            TopRight
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.PopupResizeMode.BottomLeft">
            <summary>
            BottomLeft
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.PopupResizeMode.BottomRight">
            <summary>
            BottomRight
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.PostRenderGripBarEventArgs">
            <summary>
            PostRenderGripBarEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PostRenderGripBarEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle)">
            <summary>
             PostRenderGripBarEventArgs
            </summary>
            <param name="graphics"></param>
            <param name="bounds"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.PostRenderGripBarEventArgs.Bounds">
            <summary>
            Gets the bounding rectangle
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.PostRenderGripBarEventArgs.Graphics">
            <summary>
            Gets the Graphics object
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.PreRenderGripBarEventArgs">
            <summary>
            PreRenderGripBarEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.PreRenderGripBarEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle)">
            <summary>
             PreRenderGripBarEventArgs
            </summary>
            <param name="graphics"></param>
            <param name="bounds"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.PreRenderGripBarEventArgs.Cancel">
            <summary>
            Gets or sets whether the operation is canceled
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf">
            <summary>
             Constructor
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.#ctor(System.String[],System.Drawing.Color[])">
            <summary>
            This constructor accepts the Rtf font and
            color arrays, and initializes the Rtf buffer
            </summary>
            <param name="sFonts"></param>
            <param name="cColors"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.InitRtf(System.String[],System.Drawing.Color[])">
            <summary>
            Initializes our Rtf engine
            </summary>
            <param name="sFonts"></param>
            <param name="cColors"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.Close">
            <summary>
            Closes and finalizes the Rtf document
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.BeginGroup(System.Boolean)">
            <summary>
            This routine begins a new RTF group
            </summary>
            <param name="fParagraph"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.EndGroup">
            <summary>
            This routine ends the current open group
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.PushGroup">
            <summary>
            This routine saves all the current group settings
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.PopGroup">
            <summary>
            This routine restores all the current
            group settings
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.Clear">
            <summary>
            This routine clears the accumulated text
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.WriteText(System.Char)">
            <summary>
            This routine writes a given char to the rtf buffer
            </summary>
            <param name="c"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.WriteText(System.String)">
            <summary>
            This routine writes a given string to the rtf buffer
            </summary>
            <param name="s"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.WriteLine">
            <summary>
            This routine writes a new line to the rtf buffer
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.WriteLine(System.String)">
            <summary>
            This routine writes a given string followed
            by a new line to the rtf buffer
            </summary>
            <param name="s"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.WriteTab">
            <summary>
            This routine writes a tab to the rtf buffer
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.WriteHex(System.UInt32)">
            <summary>
            This routine writes hex chars to the rtf buffer
            </summary>
            <param name="x"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.CenterAlignText">
            <summary>
            This routine causes the test to be center aligned
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.LeftAlignText">
            <summary>
            This routine causes the test to be left aligned
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.GroupCount">
            <summary>
            Stack group count
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.FontSize">
            <summary>
            This routine gets or sets the current
            group level font size
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.Font">
            <summary>
            This routine gets or sets the current
            group level font setting
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.SuperScript">
            <summary>
            This routine gets or sets the current
            group level superscript setting
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.SmallCaps">
            <summary>
            This routine gets or sets the current
            group level smallCaps setting
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.Bold">
            <summary>
            This routine gets or sets the current
            group level font Bold setting
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.Italicize">
            <summary>
            This routine gets or sets the current
            group level font Italics setting
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.Strikeout">
            <summary>
            This routine gets or sets the current
            group level font Strikeout setting
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.Underline">
            <summary>
            This routine gets or sets the current
            group level font Underline setting
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.ForeColor">
            <summary>
            This routine gets or sets the current
            group level foreColor value
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.BackColor">
            <summary>
            This routine gets or sets the current
            group level backColor setting
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.LeftMargin">
            <summary>
            This routine gets or sets the current
            group level left margin setting
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.FirstIndent">
            <summary>
            This routine gets or sets the current
            group level first indent setting
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.LeftIndent">
            <summary>
            This routine gets or sets the current
            group level left indent setting
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.KeepText">
            <summary>
            This property tells the rtf code whether to
            keep a running accumulation of plain text
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.Text">
            <summary>
            This read-only property returns the current plain
            text - if the 'KeepText' property was set to true
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.RtfText">
            <summary>
            This read-only property returns the current
            rtf accumulated control text
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGrid.Rtf.TextLength">
            <summary>
            This property get/sets the current
            rtf plain text length
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.SampleExpr">
            <summary>
            SampleExpr
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SampleExpr.#ctor(DevComponents.DotNetBar.SuperGrid.SuperGridControl)">
            <summary>
             SampleExpr
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SampleExpr.components">
            <summary>
            Required designer variable.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SampleExpr.Dispose(System.Boolean)">
            <summary>
            Clean up any resources being used.
            </summary>
            <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SampleExpr.InitializeComponent">
            <summary>
            Required method for Designer support - do not modify
            the contents of this method with the code editor.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SampleExpr.RichTextBoxEx">
            <summary>
            The associated help RichTextBoxEx
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFooter">
            <summary>
             GridFooter
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFooter.#ctor">
            <summary>
             GridFooter
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFooter.#ctor(System.String)">
            <summary>
             GridFooter
            </summary>
            <param name="text"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFooter.ApplyStyleEx(DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyle,DevComponents.DotNetBar.SuperGrid.Style.StyleType[])">
            <summary>
            ApplyStyleEx
            </summary>
            <param name="style"></param>
            <param name="css"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGroupByRow">
            <summary>
            Defines the grid GridGroupBy Row
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.#ctor">
            <summary>
             GridHeader
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.#ctor(System.String)">
            <summary>
             GridHeader
            </summary>
            <param name="text"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.MeasureRow(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Size)">
            <summary>
            MeasureRow
            </summary>
            <param name="layoutInfo"></param>
            <param name="stateInfo"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.ArrangeRow(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Rectangle)">
            <summary>
            ArrangeRow
            </summary>
            <param name="layoutInfo"></param>
            <param name="stateInfo"></param>
            <param name="layoutBounds"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.RenderRow(DevComponents.DotNetBar.SuperGrid.GridRenderInfo,DevComponents.DotNetBar.SuperGrid.GridPanel,System.Drawing.Rectangle)">
            <summary>
            RenderRow
            </summary>
            <param name="renderInfo"></param>
            <param name="panel"></param>
            <param name="r"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.GetHitArea(System.Drawing.Point)">
            <summary>
            GetHitArea
            </summary>
            <param name="pt"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.GetGroupBoxAt(System.Drawing.Point)">
            <summary>
             Gets the GroupBox containing the given point
            </summary>
            <param name="pt"></param>
            <returns>GroupBox, or null</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.CancelCapture">
            <summary>
            CancelCapture
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.GetNewVisualStyle">
            <summary>
            GetNewVisualStyle
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.ApplyStyleEx(DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyle,DevComponents.DotNetBar.SuperGrid.Style.StyleType[])">
            <summary>
            ApplyStyleEx
            </summary>
            <param name="style"></param>
            <param name="css"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.AllowUserSort">
            <summary>
             Gets or sets whether the user can change the group
             sort direction by clicking on the associated GroupBox
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.CornerRadius">
            <summary>
             Gets or sets the corner radius to
             use when GroupBoxStyle is RoundedRectangular
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.FilterImageVisibility">
            <summary>
            Gets or sets the visibility of the header filter image
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.GroupBoxEffects">
            <summary>
            Gets or sets the default for how columns interact with the GroupBox
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.GroupBoxLayout">
            <summary>
            Gets or sets the group box layout (Flat, Hierarchical) 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.GroupBoxStyle">
            <summary>
            Gets or sets the group box Style (Rectangular, RoundedRect) 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.IsEmpty">
            <summary>
            Gets whether the item is empty
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.MaxGroupBoxWidth">
            <summary>
            Gets or sets the maximum GroupBox width, in pixels 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.RemoveGroupOnDoubleClick">
            <summary>
             Gets or sets whether the grouping column is removed
             when the user double clicks on the associated GroupBox
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.Visible">
            <summary>
            Visible
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.UseColumnHeaderColors">
            <summary>
             Gets or sets whether Column Header color definitions are used
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupByRow.WatermarkText">
            <summary>
            Gets or sets the Watermark text to use when no Grouping is active 
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGroupBox">
            <summary>
             GroupBox definition
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupBox.Bounds">
            <summary>
             Gets the associated Bounds
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupBox.Column">
            <summary>
             Gets the associated GridColumn
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupBox.ContentSize">
            <summary>
             Gets the associated Content Size
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupBox.CornerRadius">
            <summary>
             Gets or sets the corner radius to
             use when GroupBoxStyle is RoundedRectangular
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupBox.GridGroupBy">
            <summary>
             Gets the associated GridGroupBy object
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupBox.GroupBoxStyle">
            <summary>
             GroupBox Style
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupBox.Padding">
            <summary>
             Content padding
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GroupBoxEffects">
            <summary>
             GroupBoxEffects
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupBoxEffects.NotSet">
            <summary>
             Not set.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupBoxEffects.None">
            <summary>
             The Column will not interact with the GroupBox.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupBoxEffects.Copy">
            <summary>
             The Column presentation will be copied to and
             from the grid and associated GroupBox.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupBoxEffects.Move">
            <summary>
             The Column presentation will be moved to and
             from the grid and associated GroupBox.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GroupBoxLayout">
            <summary>
             GroupBox Layout
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupBoxLayout.Flat">
            <summary>
             Group boxes are Flat, all on the same layout row
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupBoxLayout.Hierarchical">
            <summary>
             Group boxes are oriented Hierarchically
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GroupBoxStyle">
            <summary>
             GroupBox Style
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupBoxStyle.Rectangular">
            <summary>
             Group boxes are drawn Rectangular
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupBoxStyle.RoundedRectangular">
            <summary>
             Group boxes are drawn Rounded Rectangular
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridHeader">
            <summary>
            Defines the grid header
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridHeader.#ctor">
            <summary>
             GridHeader
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridHeader.#ctor(System.String)">
            <summary>
             GridHeader
            </summary>
            <param name="text"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridHeader.ApplyStyleEx(DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyle,DevComponents.DotNetBar.SuperGrid.Style.StyleType[])">
            <summary>
            ApplyStyleEx
            </summary>
            <param name="style"></param>
            <param name="css"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.CellRange">
            <summary>
             Defines a merged cell range, comprised
             of a starting and ending row,column index pair.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.DisplayRange">
            <summary>
            Row/Column display index range
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.DisplayRange.IsRangeEqualTo(DevComponents.DotNetBar.SuperGrid.DisplayRange)">
            <summary>
            Returns whether the display range is
            logically equal to the given item's display range.
            </summary>
            <param name="dr"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.DisplayRange.ToString">
            <summary>
            ToString
            </summary>
            <returns></returns>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.DisplayRange.ColumnCount">
            <summary>
            Number of columns
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.DisplayRange.ColumnEnd">
            <summary>
            Ending column display index (exclusive)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.DisplayRange.ColumnStart">
            <summary>
            Starting column display index
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.DisplayRange.RowCount">
            <summary>
            Number of rows
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.DisplayRange.RowEnd">
            <summary>
            Ending row index (exclusive)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.DisplayRange.RowStart">
            <summary>
            Starting row index
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.CellRange.#ctor">
            <summary>
             Defines a merged cell range, comprised
             of a starting and ending row,column index pair.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.CellRange.#ctor(System.Int32,System.Int32)">
            <summary>
             Defines a merged cell range, comprised
             of a starting and ending row,column index pair.
            </summary>
            <param name="rowIndex">Initial start and end row index</param>
            <param name="columnIndex">Initial start and end column index</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.CellRange.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
             Defines a merged cell range, comprised
             of a starting and ending row,column index pair.
            </summary>
            <param name="startRowIndex">Starting row index</param>
            <param name="startColumnIndex">Starting column index</param>
            <param name="rowCount">Row count</param>
            <param name="columnCount">Column count</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.CellRange.InvalidateStyle">
            <summary>
            Invalidates the cached Style
            definition for all defined StyleTypes
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.CellRange.InvalidateStyle(DevComponents.DotNetBar.SuperGrid.Style.StyleType)">
            <summary>
            Invalidate the cached Style
            definition for the given StyleType
            </summary>
            <param name="type"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.CellRange.AllowSelection">
            <summary>
             Gets or sets whether the range can be selected
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.CellRange.AllowSuspend">
            <summary>
             Gets or sets whether the merged cell range can be temporarily
             suspended when either the user double clicks the displayed range
             or the application initiates a cell.SuspendMerge().
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.CellRange.AlwaysDisplayFormattedValue">
            <summary>
             Gets or sets whether the 'FormattedValue' value will be
             displayed for all cell types when merged, or only for Modal Cells.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.CellRange.BackBounds">
            <summary>
             Gets the range display bounds
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.CellRange.CellStyles">
            <summary>
            Gets or sets the visual styles assigned to the cell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.CellRange.FormattedValue">
            <summary>
             Gets or sets the formatted value for the range display.  This value will
             be displayed by default for all Modal Cells - all other cells will
             have their default cell rendering displayed when merged 
             (unless 'AlwaysDisplayFormattedValue' is set to true).
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.CellRange.Tag">
            <summary>
             Gets or sets user-defined data associated with the object
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.CellRange.ToolTip">
            <summary>
             Gets or sets the ToolTip text for the cell range.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.CellRange.EffectiveStyles">
            <summary>
            Gets or sets the 'effective' visual styles assigned to the range
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.MergeScan.#ctor(DevComponents.DotNetBar.SuperGrid.GridContainer)">
            <summary>
             MergeScan
            </summary>
            <param name="gridContainer"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.MergeScan.ScanItems">
            <summary>
             ScanItems
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridBackgroundImageLayout">
            <summary>
             Background Image Layout
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridBackgroundImageLayout.TopLeft">
            <summary>
             Image is Top Left aligned and unscaled
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridBackgroundImageLayout.TopRight">
            <summary>
             Image is Top Right aligned and unscaled
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridBackgroundImageLayout.BottomLeft">
            <summary>
             Image is Bottom Left aligned and unscaled
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridBackgroundImageLayout.BottomRight">
            <summary>
             Image is Bottom Right aligned and unscaled
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridBackgroundImageLayout.Center">
            <summary>
             Image is Centered and unscaled
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridBackgroundImageLayout.Stretch">
            <summary>
             Image is Stretched to fill the area
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridBackgroundImageLayout.Tile">
            <summary>
             Image is unscaled and tiled
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridBackgroundImageLayout.Zoom">
            <summary>
             Image is proportionally scaled to fit
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.RowHeaderVisibility">
            <summary>
             RowHeaderVisibility
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowHeaderVisibility.Always">
            <summary>
             Always visible
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowHeaderVisibility.Never">
            <summary>
             Never visible
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowHeaderVisibility.PanelControlled">
            <summary>
             Controlled via Panel.ShowRowHeaders
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridTitle">
            <summary>
            Defines the grid title
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTitle.#ctor">
            <summary>
             GridHeader
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTitle.#ctor(System.String)">
            <summary>
             GridHeader
            </summary>
            <param name="text"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTitle.ApplyStyleEx(DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyle,DevComponents.DotNetBar.SuperGrid.Style.StyleType[])">
            <summary>
            ApplyStyleEx
            </summary>
            <param name="style"></param>
            <param name="css"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTitle.RowHeaderVisibility">
            <summary>
            Gets or sets whether the RowHeader is displayed
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.SelectedElementCollection">
            <summary>
             SelectedElementCollection
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1">
            <summary>
            Represents custom collection with INotifyPropertyChanged and INotifyCollectionChanged interface support.
            </summary>
            <typeparam name="T"></typeparam>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Primitives.INotifyCollectionChanged">
            <summary>
            Represents collection changed notification interface.
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.Primitives.INotifyCollectionChanged.CollectionChanged">
            <summary>
            Occurs when collection changed.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.#ctor">
            <summary>
            Creates new instance of object.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.#ctor(System.Int32)">
            <summary>
            Creates new instance of object.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.#ctor(System.Collections.Generic.IList{`0})">
            <summary>
            Creates new instance of object.
            </summary>
            <param name="list">List to initialize collection with.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.Add(`0)">
            <summary>
            Add item to collection.
            </summary>
            <param name="item">Item to add.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.AddRange(System.Collections.Generic.IEnumerable{`0})">
            <summary>
            Add range of items to collection.
            </summary>
            <param name="collection"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.Clear">
            <summary>
            Remove all items from collection.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.ClearItems">
            <summary>
            Remove all items from collection.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.Contains(`0)">
            <summary>
            Checks whether collection contains item.
            </summary>
            <param name="item">Item to look for.</param>
            <returns>true if item is in collection.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.CopyTo(`0[],System.Int32)">
            <summary>
            Copy collection to array.
            </summary>
            <param name="array">Array to copy to.</param>
            <param name="index">Index to copy from.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.GetEnumerator">
            <summary>
            Gets enumerator for collection.
            </summary>
            <returns>Enumerator.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.IndexOf(`0)">
            <summary>
            Returns index of an item.
            </summary>
            <param name="item">Reference to item.</param>
            <returns>Index of item.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.Insert(System.Int32,`0)">
            <summary>
            Insert item at specified location.
            </summary>
            <param name="index">Index to insert item in.</param>
            <param name="item">Item to insert.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.InsertItem(System.Int32,`0)">
            <summary>
            Inserts item.
            </summary>
            <param name="index">Index to insert item at.</param>
            <param name="item">Reference to item.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.Remove(`0)">
            <summary>
            Removes item from collection.
            </summary>
            <param name="item">Item to remove.</param>
            <returns>true if item was removed.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.RemoveAt(System.Int32)">
            <summary>
            Remove item at specified location.
            </summary>
            <param name="index">Index of item to remove.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.RemoveItem(System.Int32)">
            <summary>
            Remove item at specified location.
            </summary>
            <param name="index">Index of item to remove.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.SetItem(System.Int32,`0)">
            <summary>
            Set item on location.
            </summary>
            <param name="index">Index</param>
            <param name="item">Item to assign.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.GetItemsDirect">
            <summary>
            Returns items directly without checks.
            </summary>
            <returns>List of items.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.OnCollectionReadAccess">
            <summary>
            Occurs when collection is read.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
            <summary>
            Occurs when collection property has changed.
            </summary>
            <param name="e">Event arguments.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.OnPropertyChanged(System.String)">
            <summary>
            Default PropertyChanged processing
            </summary>
            <param name="s"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.CheckReentrancy">
            <summary>
            Checks whether call creates reentrancy.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.OnCollectionChanged(DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedEventArgs)">
            <summary>
            Called when collection has changed.
            </summary>
            <param name="e">Event arguments.</param>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.PropertyChanged">
            <summary>
            Occurs when property value has changed.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.Count">
            <summary>
            Returns number of items in collection.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.Item(System.Int32)">
            <summary>
            Returns item at index.
            </summary>
            <param name="index">Index of item.</param>
            <returns>Item at index.</returns>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.Items">
            <summary>
            Returns the IList interface for items in collection.
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.Primitives.CustomCollection`1.CollectionChanged">
            <summary>
            Occurs when collection has changed.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SelectedElementCollection.#ctor">
            <summary>
             SelectedElementCollection
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SelectedElementCollection.#ctor(System.Int32)">
            <summary>
             SelectedElementCollection
            </summary>
            <param name="capacity"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SelectedElementCollection.GetCells">
            <summary>
             GetCells
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SelectedElementCollection.Select(System.Boolean)">
            <summary>
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.SelectedElements">
            <summary>
             SelectedElements
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SelectedElements.#ctor">
            <summary>
             SelectedElements
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SelectedElements.#ctor(DevComponents.DotNetBar.SuperGrid.SelectedElementType)">
            <summary>
             SelectedElements
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SelectedElements.FindRange(System.Int32,DevComponents.DotNetBar.SuperGrid.SelectedRange@)">
            <summary>
             FindRange
            </summary>
            <param name="index"></param>
            <param name="selRange"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SelectedElements.AddItem(System.Int32)">
            <summary>
             AddItem
            </summary>
            <param name="index"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SelectedElements.AddRange(System.Int32,System.Int32)">
            <summary>
            </summary>
            <param name="startIndex"></param>
            <param name="endIndex"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SelectedElements.RemoveItem(System.Int32)">
            <summary>
             RemoveItem
            </summary>
            <param name="index"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SelectedElements.RemoveItem(System.Int32,DevComponents.DotNetBar.SuperGrid.SelectedRange)">
            <summary>
             RemoveItem
            </summary>
            <param name="index"></param>
            <param name="range"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SelectedElements.RemoveRange(System.Int32,System.Int32)">
            <summary>
            </summary>
            <param name="startIndex"></param>
            <param name="endIndex"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SelectedElements.Clear">
            <summary>
             Clear
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SelectedElements.OffsetIndices(System.Int32,System.Int32)">
            <summary>
             OffsetIndices
            </summary>
            <param name="index"></param>
            <param name="count"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SelectedElements.GetNextIndex(System.Int32@)">
            <summary>
             GetNextIndex
            </summary>
            <param name="index"></param>
            <returns></returns>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SelectedElements.Count">
            <summary>
             Count
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SelectedElements.ElementType">
            <summary>
            Element Type
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SelectedElements.FirstIndex">
            <summary>
             FirstIndex
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SelectedElements.LastIndex">
            <summary>
             LastIndex
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SelectedElements.Ranges">
            <summary>
             Items
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.SelectedRange">
            <summary>
             SelectedRange
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SelectedRange.#ctor(System.Int32,System.Int32)">
            <summary>
            </summary>
            <param name="startIndex"></param>
            <param name="endIndex"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SelectedRange.Contains(System.Int32)">
            <summary>
             Contains
            </summary>
            <param name="index"></param>
            <returns></returns>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SelectedRange.Count">
            <summary>
             Count
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SelectedRange.EndIndex">
            <summary>
             EndIndex
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SelectedRange.StartIndex">
            <summary>
             StartIndex
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SelectedElementType.Unknown">
            <summary>
            Unknown range type
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SelectedElementType.SelectedCells">
            <summary>
            Selected Cells
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SelectedElementType.SelectedColumns">
            <summary>
            Selected Columns
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SelectedElementType.SelectedRows">
            <summary>
            Selected Rows
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SelectedElementType.DeletedRows">
            <summary>
            Deleted Rows
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.BackColorBlend">
            <summary>
             BackColorBlend
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BackColorBlend.Copy">
            <summary>
            Creates an exact copy of the BackColorBlend.
            </summary>
            <returns>Copy of the BackColorBlend.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BackColorBlend.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
            <summary>
            Raises the PropertyChanged event.
            </summary>
            <param name="e">Event arguments</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BackColorBlend.OnPropertyChangedEx(System.String)">
            <summary>
            Raises the PropertyChanged event.
            </summary>
            <param name="s">Event arguments</param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BackColorBlend.Colors">
            <summary>
            Gets or sets the ColorBlend Color array
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BackColorBlend.Positions">
            <summary>
            Gets or sets the ColorBlend Color Positions
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BackColorBlend.IsEmpty">
            <summary>
            IsEmpty
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.Style.BackColorBlend.PropertyChanged">
            <summary>
            Occurs when property value has changed.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.BackColorBlendConvertor">
            <summary>
            BackColorBlendConvertor
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BackColorBlendConvertor.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
            <summary>
            ConvertTo
            </summary>
            <param name="context"></param>
            <param name="culture"></param>
            <param name="value"></param>
            <param name="destinationType"></param>
            <returns></returns>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.BaseRowHeaderVisualStyle">
            <summary>
            Represents the visual style of a Row.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.BaseVisualStyle">
            <summary>
            Represents the base visual style.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseVisualStyle.ApplyStyle(DevComponents.DotNetBar.SuperGrid.Style.BaseVisualStyle)">
            <summary>
            Applies the style to instance of this style.
            </summary>
            <param name="style">Style to apply.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseVisualStyle.Copy">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseVisualStyle.CopyTo(DevComponents.DotNetBar.SuperGrid.Style.BaseVisualStyle)">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseVisualStyle.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
            <summary>
            Raises the PropertyChanged event.
            </summary>
            <param name="e">Event arguments</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseVisualStyle.OnPropertyChanged(System.String)">
            <summary>
            Default PropertyChanged processing
            </summary>
            <param name="s"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseVisualStyle.OnPropertyChangedEx(System.String,DevComponents.DotNetBar.SuperGrid.Style.VisualChangeType)">
            <summary>
            Default PropertyChanged processing
            </summary>
            <param name="s"></param>
            <param name="changeType">invalidate</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseVisualStyle.UpdateChangeHandler(System.ComponentModel.INotifyPropertyChanged,System.ComponentModel.INotifyPropertyChanged)">
            <summary>
            UpdateChangeHandler
            </summary>
            <param name="oldValue"></param>
            <param name="newValue"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseVisualStyle.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BaseVisualStyle.Class">
            <summary>
            Gets or sets the class style belongs to. 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BaseVisualStyle.IsEmpty">
            <summary>
            Gets whether the style is logically Empty.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BaseVisualStyle.Tag">
            <summary>
            Gets or sets the user defined reference Tag.
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.Style.BaseVisualStyle.PropertyChanged">
            <summary>
            Occurs when property value has changed.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseRowHeaderVisualStyle.ShouldSerializeBackground">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseRowHeaderVisualStyle.ResetBackground">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseRowHeaderVisualStyle.ShouldSerializeBorderHighlightColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseRowHeaderVisualStyle.ResetBorderHighlightColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseRowHeaderVisualStyle.ShouldSerializeTextColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseRowHeaderVisualStyle.ResetTextColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseRowHeaderVisualStyle.ApplyStyle(DevComponents.DotNetBar.SuperGrid.Style.BaseRowHeaderVisualStyle)">
            <summary>
            Applies the style to instance of this style.
            </summary>
            <param name="style">Style to apply.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseRowHeaderVisualStyle.Copy">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseRowHeaderVisualStyle.CopyTo(DevComponents.DotNetBar.SuperGrid.Style.BaseRowHeaderVisualStyle)">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseRowHeaderVisualStyle.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BaseRowHeaderVisualStyle.Empty">
            <summary>
             Empty
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BaseRowHeaderVisualStyle.AllowWrap">
            <summary>
            Gets or sets whether text wrapping is permitted
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BaseRowHeaderVisualStyle.Background">
            <summary>
            Gets or sets the style background.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BaseRowHeaderVisualStyle.BorderHighlightColor">
            <summary>
            Gets or sets the border Highlight color.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BaseRowHeaderVisualStyle.Font">
            <summary>
            Gets or sets the style Font.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BaseRowHeaderVisualStyle.IsEmpty">
            <summary>
             IsEmpty
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BaseRowHeaderVisualStyle.TextAlignment">
            <summary>
            Gets or sets the alignment of the header text
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BaseRowHeaderVisualStyle.TextColor">
            <summary>
            Gets or sets the Text color
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.Alignment">
            <summary>
             Alignment of the content
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.Alignment.NotSet">
            <summary>
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.Alignment.TopLeft">
            <summary>
             TopLeft
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.Alignment.TopCenter">
            <summary>
             TopCenter
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.Alignment.TopRight">
            <summary>
             TopRight
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.Alignment.MiddleLeft">
            <summary>
             MiddleLeft
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.Alignment.MiddleCenter">
            <summary>
             MiddleCenter
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.Alignment.MiddleRight">
            <summary>
            MiddleRight
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.Alignment.BottomLeft">
            <summary>
            BottomLeft
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.Alignment.BottomCenter">
            <summary>
            BottomCenter
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.Alignment.BottomRight">
            <summary>
            BottomRight
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.CellHighlightMode">
            <summary>
             Specifies the mode of cell highlighting
             to employ when a grid cell is selected
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.CellHighlightMode.None">
            <summary>
             No highlighting
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.CellHighlightMode.Full">
            <summary>
             Entire cell will be Highlighted
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.CellHighlightMode.Partial">
            <summary>
             Partial cell will be Highlighted
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.CellHighlightMode.Content">
            <summary>
             Cell content only will be Highlighted
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.ImageHighlightMode">
            <summary>
             ImageHighlightMode
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.ImageHighlightMode.NotSet">
            <summary>
             NotSet
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.ImageHighlightMode.Default">
            <summary>
             Default
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.ImageHighlightMode.Always">
            <summary>
             Always
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.ImageHighlightMode.Never">
            <summary>
             Never
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.ImageOverlay">
            <summary>
             How to Overlay the Image with
             respect to the content
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.ImageOverlay.NotSet">
            <summary>
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.ImageOverlay.None">
            <summary>
             None
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.ImageOverlay.Top">
            <summary>
             Top
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.ImageOverlay.Bottom">
            <summary>
             Bottom
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.Tbool">
            <summary>
             TBool - Three state boolean
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.Tbool.NotSet">
            <summary>
             NotSet
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.Tbool.True">
            <summary>
             True
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.Tbool.False">
            <summary>
             False
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.VisualChangeType">
            <summary>
            Defines visual property change type.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.VisualChangeType.Layout">
            <summary>
            Visual style has changed so layout is impacted
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.VisualChangeType.Render">
            <summary>
            Visual style has changed so visuals are impacted, but not layout
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.BorderPattern">
            <summary>
            Defines Thickness class.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderPattern.#ctor(DevComponents.DotNetBar.SuperGrid.Style.LinePattern,DevComponents.DotNetBar.SuperGrid.Style.LinePattern,DevComponents.DotNetBar.SuperGrid.Style.LinePattern,DevComponents.DotNetBar.SuperGrid.Style.LinePattern)">
            <summary>
            Creates new instance of the object.
            </summary>
            <param name="left">Left BorderPatternStyle.</param>
            <param name="top">Top BorderPatternStyle.</param>
            <param name="right">Right BorderPatternStyle.</param>
            <param name="bottom">Bottom BorderPatternStyle.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderPattern.#ctor(DevComponents.DotNetBar.SuperGrid.Style.LinePattern)">
            <summary>
            Creates new instance of the object.
            </summary>
            <param name="all">Specifies uniform Thickness.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderPattern.#ctor">
            <summary>
             Creates new instance of the object.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderPattern.Equals(System.Object)">
            <summary>
            Gets whether two instances are equal.
            </summary>
            <param name="obj">Instance to compare to.</param>
            <returns>true if equal otherwise false.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderPattern.Equals(DevComponents.DotNetBar.SuperGrid.Style.BorderPattern)">
            <summary>
            Gets whether two instances are equal.
            </summary>
            <param name="borderPattern">Instance to compare to</param>
            <returns>true if equal otherwise false</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderPattern.GetHashCode">
            <summary>
            Returns hash-code.
            </summary>
            <returns>hash-code</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderPattern.op_Equality(DevComponents.DotNetBar.SuperGrid.Style.BorderPattern,DevComponents.DotNetBar.SuperGrid.Style.BorderPattern)">
            <summary>
            Implements == operator.
            </summary>
            <param name="t1">Object 1</param>
            <param name="t2">Object 2</param>
            <returns>true if equals</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderPattern.op_Inequality(DevComponents.DotNetBar.SuperGrid.Style.BorderPattern,DevComponents.DotNetBar.SuperGrid.Style.BorderPattern)">
            <summary>
            Implements != operator
            </summary>
            <param name="t1">Object 1</param>
            <param name="t2">Object 2</param>
            <returns>true if different</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderPattern.ApplyPattern(DevComponents.DotNetBar.SuperGrid.Style.BorderPattern)">
            <summary>
            Applies the pattern to instance of this pattern.
            </summary>
            <param name="pattern">Pattern to apply.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderPattern.Copy">
            <summary>
            Creates an exact copy of the BorderPattern.
            </summary>
            <returns>Copy of the BorderPattern.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderPattern.OnPropertyChanged(DevComponents.DotNetBar.SuperGrid.Style.VisualPropertyChangedEventArgs)">
            <summary>
            Raises the PropertyChanged event.
            </summary>
            <param name="e">Event arguments</param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BorderPattern.Empty">
            <summary>
            Returns Empty instance of BorderPattern.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BorderPattern.All">
            <summary>
            Gets or sets the thickness of all sides.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BorderPattern.Bottom">
            <summary>
            Gets or sets the bottom Border Pattern
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BorderPattern.Left">
            <summary>
            Gets or sets the left Border Pattern
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BorderPattern.Right">
            <summary>
            Gets or sets the Right Border Pattern
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BorderPattern.Top">
            <summary>
            Gets or sets the Top Border Pattern
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BorderPattern.IsEmpty">
            <summary>
            Gets whether the item is empty
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.Style.BorderPattern.PropertyChanged">
            <summary>
            Occurs when property value has changed.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.LinePattern">
            <summary>
             LinePattern
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.LinePattern.None">
            <summary>
             None
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.LinePattern.NotSet">
            <summary>
             NotSet
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.LinePattern.Solid">
            <summary>
             Solid
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.LinePattern.Dash">
            <summary>
             Dash
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.LinePattern.Dot">
            <summary>
             Dot
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.LinePattern.DashDot">
            <summary>
             DashDot
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.LinePattern.DashDotDot">
            <summary>
             DashDotDot
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyles">
            <summary>
             ColumnHeaderRowVisualStyles
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.VisualStyles`1">
            <summary>
             VisualStyles
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyles`1.#ctor">
            <summary>
             Constructor
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyles`1.StyleChanged(System.Object,System.ComponentModel.PropertyChangedEventArgs)">
            <summary>
            Occurs when one of element visual styles has property changes.
            Default implementation invalidates visual appearance of element.
            </summary>
            <param name="sender">VisualStyle that changed.</param>
            <param name="e">Event arguments.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyles`1.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
            <summary>
            Raises the PropertyChanged event.
            </summary>
            <param name="e">Event arguments</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyles`1.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.VisualStyles`1.Item(DevComponents.DotNetBar.SuperGrid.Style.StyleType)">
            <summary>
            Gets or sets the visual style
            assigned to the element. Default value is null.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.VisualStyles`1.Default">
            <summary>
             The normal, default style
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.VisualStyles`1.Empty">
            <summary>
             Style to use when a cell item is empty
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.VisualStyles`1.MouseOver">
            <summary>
             MouseOver
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.VisualStyles`1.NotSelectable">
            <summary>
             Style to use for non-selectable items
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.VisualStyles`1.Selected">
            <summary>
             Style to use for selected items.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.VisualStyles`1.SelectedMouseOver">
            <summary>
             Style to use for MouseOver selected items
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.VisualStyles`1.ReadOnly">
            <summary>
             Style to use for ReadOnly items
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.VisualStyles`1.ReadOnlyMouseOver">
            <summary>
             Style to use for ReadOnly, MouseOver items
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.VisualStyles`1.ReadOnlySelected">
            <summary>
             ReadOnlySelected
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.VisualStyles`1.ReadOnlySelectedMouseOver">
            <summary>
             Style to use for ReadOnly, Selected, MouseOver items
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.VisualStyles`1.Styles">
            <summary>
             Styles array
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.Style.VisualStyles`1.PropertyChanged">
            <summary>
            Occurs when property value has changed.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle">
            <summary>
             ColumnHeaderRowVisualStyle
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.ShouldSerializeFilterBackground">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.ResetFilterBackground">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.ShouldSerializeFilterBorderColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.ResetFilterBorderColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.ShouldSerializeIndicatorBackground">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.ResetIndicatorBackground">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.ShouldSerializeIndicatorBorderColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.ResetIndicatorBorderColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.ShouldSerializeSortIndicatorColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.ResetSortIndicatorColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.ShouldSerializeWhiteSpaceBackground">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.ResetWhiteSpaceBackground">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.ApplyStyle(DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle)">
            <summary>
            Applies the style to instance of this style.
            </summary>
            <param name="style">Style to apply.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.Copy">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.CopyTo(DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle)">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.FilterBackground">
            <summary>
            Gets or sets the filter indicator background
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.FilterBorderColor">
            <summary>
            Gets or sets the Filter border color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.IndicatorBackground">
            <summary>
            Gets or sets the RowHeader indicator background
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.IndicatorBorderColor">
            <summary>
            Gets or sets the RowHeader indicator border color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.RowHeader">
            <summary>
            Gets or sets the visual style of the ColumnHeader RowHeader
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.SortIndicatorColor">
            <summary>
            Gets or sets the Sort indicator color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle.WhiteSpaceBackground">
            <summary>
            Gets or sets the WhiteSpace Background
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderVisualStyles">
            <summary>
             ColumnHeaderVisualStyles
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderVisualStyles.Empty">
            <summary>
            Empty
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderVisualStyles.NotSelectable">
            <summary>
            NotSelectable
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderVisualStyle">
            <summary>
             ColumnHeaderVisualStyle
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle">
            <summary>
            Represents the visual style of an element.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle">
            <summary>
            Represents the visual style of a Row.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.ShouldSerializeBackground">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.ResetBackground">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.ShouldSerializeBorderColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.ResetBorderColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.ShouldSerializeBorderPattern">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.ResetBorderPattern">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.ShouldSerializeBorderThickness">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.ResetBorderThickness">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.ShouldSerializeMargin">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.ResetMargin">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.ShouldSerializePadding">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.ResetPadding">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.ShouldSerializeTextColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.ResetTextColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.ApplyStyle(DevComponents.DotNetBar.SuperGrid.Style.VisualStyle)">
            <summary>
            Applies the style to instance of this style.
            </summary>
            <param name="style">Style to apply.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.Copy">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.CopyTo(DevComponents.DotNetBar.SuperGrid.Style.VisualStyle)">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.Background">
            <summary>
            Gets or sets the style background.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.BorderColor">
            <summary>
            Gets or sets the style border color.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.BorderPattern">
            <summary>
            Gets or sets the style border pattern (Solid, Dash, ...)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.BorderThickness">
            <summary>
            Gets or sets the style border thickness.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.Font">
            <summary>
            Gets or sets the style Font
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.IsEmpty">
            <summary>
            Gets whether the style is logically Empty.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.Margin">
            <summary>
            Gets or sets the spacing between the border and outside content.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.Padding">
            <summary>
            Gets or sets spacing between the content and edges of the element.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.VisualStyle.TextColor">
            <summary>
            Gets or sets the Text color
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle.ShouldSerializeImagePadding">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle.ResetImagePadding">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle.ApplyStyle(DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
            Applies the style to instance of this style.
            </summary>
            <param name="style">Style to apply.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle.Copy">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle.CopyTo(DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle.Alignment">
            <summary>
            Gets or sets the alignment of the content within the cell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle.AllowWrap">
            <summary>
            Gets or sets whether text wrapping is permitted
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle.Image">
            <summary>
            Gets or sets the element Image
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle.ImageAlignment">
            <summary>
            Gets or sets the alignment of the Image within the cell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle.ImageHighlightMode">
            <summary>
            Gets or sets how cell images are
            highlighted when the cell is selected
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle.ImageIndex">
            <summary>
            Gets or sets the image index
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle.ImageOverlay">
            <summary>
            Gets or sets how to overlay the cell image with respect to cell content
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle.ImagePadding">
            <summary>
            Gets or sets the spacing between content and edges of the Image
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle.IsEmpty">
            <summary>
            Gets whether the style is logically Empty.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderVisualStyle.Copy">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyles">
            <summary>
             FilterColumnHeaderVisualStyle
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle">
            <summary>
             FilterRowVisualStyle
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.ShouldSerializeBackground">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.ResetBackground">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.ShouldSerializeErrorBackground">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.ResetErrorBackground">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.ShouldSerializeErrorTextColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.ResetErrorTextColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.ShouldSerializeGripBarBackground">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.ResetGripBarBackground">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.ShouldSerializeMargin">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.ResetMargin">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.ShouldSerializeTextColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.ResetTextColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.ApplyStyle(DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle)">
            <summary>
            Applies the style to the instance of this style.
            </summary>
            <param name="style">Style to apply.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.Copy">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.CopyTo(DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle)">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.Alignment">
            <summary>
            Gets or sets the content alignment
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.AllowWrap">
            <summary>
            Gets or sets whether text wrapping is permitted
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.Background">
            <summary>
            Gets or sets the style background.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.ErrorBackground">
            <summary>
            Gets or sets the style error background.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.ErrorTextColor">
            <summary>
            Gets or sets the error Text color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.Font">
            <summary>
            Gets or sets the style Font
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.GripBarBackground">
            <summary>
            Gets or sets the GripBar style background.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.Margin">
            <summary>
            Gets or sets the spacing between the border and outside content.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle.TextColor">
            <summary>
            Gets or sets the Text color
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.FilterRowVisualStyles">
            <summary>
             FilterRowVisualStyles
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.FilterRowVisualStyle">
            <summary>
             FilterRowVisualStyle
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterRowVisualStyle.ShouldSerializeFilterBackground">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterRowVisualStyle.ResetFilterBackground">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterRowVisualStyle.ShouldSerializeFilterBorderColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterRowVisualStyle.ResetFilterBorderColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterRowVisualStyle.ShouldSerializeWhiteSpaceBackground">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterRowVisualStyle.ResetWhiteSpaceBackground">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterRowVisualStyle.ApplyStyle(DevComponents.DotNetBar.SuperGrid.Style.FilterRowVisualStyle)">
            <summary>
            Applies the style to instance of this style.
            </summary>
            <param name="style">Style to apply.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterRowVisualStyle.Copy">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterRowVisualStyle.CopyTo(DevComponents.DotNetBar.SuperGrid.Style.FilterRowVisualStyle)">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.FilterRowVisualStyle.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.FilterRowVisualStyle.FilterBackground">
            <summary>
            Gets or sets the filter indicator background
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.FilterRowVisualStyle.FilterBorderColor">
            <summary>
            Gets or sets the Filter border color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.FilterRowVisualStyle.RowHeader">
            <summary>
            Gets or sets the visual style of the RowHeader
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.FilterRowVisualStyle.WhiteSpaceBackground">
            <summary>
            Gets or sets the WhiteSpace Background
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyles">
            <summary>
             FilterRowVisualStyles
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle">
            <summary>
             FilterRowVisualStyle
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyle">
            <summary>
             TextRowVisualStyle
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyle.ApplyStyle(DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyle)">
            <summary>
            Applies the style to instance of this style.
            </summary>
            <param name="style">Style to apply.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyle.Copy">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyle.CopyTo(DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyle)">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyle.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyle.RowHeaderStyle">
            <summary>
            Gets or sets the RowHeader Style
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.ShouldSerializeGroupBoxBorderColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.ResetGroupBoxBorderColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.ShouldSerializeGroupBoxConnectorColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.ResetGroupBoxConnectorColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.ShouldSerializeGroupBoxBackground">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.ResetGroupBoxBackground">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.ShouldSerializeGroupBoxTextColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.ResetGroupBoxTextColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.ShouldSerializeInsertMarkerBackground">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.ResetInsertMarkerBackground">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.ShouldSerializeInsertMarkerBorderColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.ResetInsertMarkerBorderColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.ShouldSerializeWatermarkTextColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.ResetWatermarkTextColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.ApplyStyle(DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle)">
            <summary>
            Applies the style to instance of this style.
            </summary>
            <param name="style">Style to apply.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.Copy">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.CopyTo(DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle)">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.GroupBoxBorderColor">
            <summary>
            Gets or sets the GroupBox border color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.GroupBoxConnectorColor">
            <summary>
            Gets or sets the GroupBox connector color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.GroupBoxBackground">
            <summary>
            Gets or sets the GroupBox indicator background
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.GroupBoxTextColor">
            <summary>
            Gets or sets the GroupBox Text color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.InsertMarkerBackground">
            <summary>
            Gets or sets the Insert Marker background color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.InsertMarkerBorderColor">
            <summary>
            Gets or sets the Insert Marker border color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.WatermarkFont">
            <summary>
            Gets or sets the style Watermark Font
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GroupByVisualStyle.WatermarkTextColor">
            <summary>
            Gets or sets the Watermark Text color
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyles">
            <summary>
             GroupHeaderVisualStyles
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle">
            <summary>
             RowHeaderVisualStyle
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle.ShouldSerializeBackground">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle.ResetBackground">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle.ShouldSerializePadding">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle.ResetPadding">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle.ShouldSerializeTextColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle.ResetTextColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle.ShouldSerializeUnderlineColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle.ResetUnderlineColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle.ApplyStyle(DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle)">
            <summary>
            Applies the style to instance of this style.
            </summary>
            <param name="style">Style to apply.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle.Copy">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle.CopyTo(DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle)">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle.Empty">
            <summary>
             Empty
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle.Alignment">
            <summary>
            Gets or sets the alignment of the content within the cell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle.AllowWrap">
            <summary>
            Gets or sets whether text wrapping is permitted
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle.Background">
            <summary>
            Gets or sets the style background.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle.Font">
            <summary>
            Gets or sets the style Font.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle.Padding">
            <summary>
            Gets or sets the spacing between the content and edges of the element
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle.RowHeaderStyle">
            <summary>
            Gets or sets the GroupHeader RowHeader Style
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle.TextColor">
            <summary>
            Gets or sets the Text color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle.UnderlineColor">
            <summary>
            Gets or sets the text Underline Color
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle">
            <summary>
             GridPanelVisualStyle
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.ShouldSerializeHeaderLineColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.ResetHeaderLineColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.ShouldSerializeHorizontalLineColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.ResetHorizontalLineColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.ShouldSerializeTreeLineColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.ResetTreeLineColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.ShouldSerializeVerticalLineColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.ResetVerticalLineColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.ApplyStyle(DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle)">
            <summary>
            Applies the style to instance of this style.
            </summary>
            <param name="style">Style to apply.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.Copy">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.CopyTo(DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle)">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.BorderThickness">
            <summary>
             Margin
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.Margin">
            <summary>
             Margin
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.Padding">
            <summary>
             Padding
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.Alignment">
            <summary>
            Gets or sets the alignment of the NoRowText within the panel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.AllowWrap">
            <summary>
            Gets or sets whether text wrapping is permitted
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.CircleTreeButtonStyle">
            <summary>
            Gets or sets the Circle TreeButton Style
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.HeaderLineColor">
            <summary>
            Gets or sets the Header Line Color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.HeaderHLinePattern">
            <summary>
            Gets or sets the Header Horizontal Line pattern
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.HeaderVLinePattern">
            <summary>
            Gets or sets the Header Vertical Line pattern
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.HorizontalLineColor">
            <summary>
            Gets or sets the Horizontal Line Color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.HorizontalLinePattern">
            <summary>
            Gets or sets the Horizontal Line pattern
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.SquareTreeButtonStyle">
            <summary>
            Gets or sets the Square TreeButton Style
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.TreeLineColor">
            <summary>
            Gets or sets the Tree Line Color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.TreeLinePattern">
            <summary>
            Gets or sets the Tree Line pattern
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.TriangleTreeButtonStyle">
            <summary>
            Gets or sets the Triangle TreeButton Style
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.VerticalLineColor">
            <summary>
            Gets or sets the Vertical Line color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle.VerticalLinePattern">
            <summary>
            Gets or sets the Vertical Line pattern
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle">
            <summary>
             RowHeaderVisualStyle
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle.ShouldSerializeActiveRowBackground">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle.ResetActiveRowBackground">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle.ShouldSerializeActiveRowIndicatorColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle.ResetActiveRowIndicatorColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle.ShouldSerializeDirtyMarkerBackground">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle.ResetDirtyMarkerBackground">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle.ApplyStyle(DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle)">
            <summary>
            Applies the style to instance of this style.
            </summary>
            <param name="style">Style to apply.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle.Copy">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle.CopyTo(DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle)">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle.Empty">
            <summary>
             Empty
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle.ActiveRowBackground">
            <summary>
            Gets or sets the ActiveRow background
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle.ActiveRowImage">
            <summary>
            Gets or sets the Active Row Image
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle.ActiveRowImageIndex">
            <summary>
            Gets or sets the Active Row image index
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle.ActiveRowIndicatorColor">
            <summary>
            Gets or sets the Active Row Indicator color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle.DirtyMarkerBackground">
            <summary>
            Gets or sets the DirtyRow marker background
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle.EditingRowImage">
            <summary>
            Gets or sets the Editing Row Image
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle.EditingRowImageIndex">
            <summary>
            Gets or sets the Editing Row image index
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle.InfoRowImage">
            <summary>
            Gets or sets the Info Row Image
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle.InfoRowImageIndex">
            <summary>
            Gets or sets the Info Row image index
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.RowVisualStyles">
            <summary>
             RowVisualStyles
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.RowVisualStyle">
            <summary>
             RowVisualStyle
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.RowVisualStyle.ShouldSerializeBackground">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.RowVisualStyle.ResetBackground">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.RowVisualStyle.ApplyStyle(DevComponents.DotNetBar.SuperGrid.Style.RowVisualStyle)">
            <summary>
            Applies the style to instance of this style.
            </summary>
            <param name="style">Style to apply.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.RowVisualStyle.Copy">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.RowVisualStyle.CopyTo(DevComponents.DotNetBar.SuperGrid.Style.RowVisualStyle)">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.RowVisualStyle.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.RowVisualStyle.Background">
            <summary>
            Gets or sets the style background.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.RowVisualStyle.RowHeaderStyle">
            <summary>
            Gets or sets the RowHeader Style
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyles">
            <summary>
             TextRowVisualStyles
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyles.Empty">
            <summary>
            Empty
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyles.NotSelectable">
            <summary>
            NotSelectable
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle">
            <summary>
            Represents the visual style of a Row.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.ShouldSerializeBackground">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.ResetBackground">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.ShouldSerializeHotBackground">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.ResetHotBackground">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.ShouldSerializeBorderColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.ResetBorderColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.ShouldSerializeHotBorderColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.ResetHotBorderColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.ShouldSerializeLineColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.ResetLineColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.ShouldSerializeHotLineColor">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.ResetHotLineColor">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.ApplyStyle(DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle)">
            <summary>
            Applies the style to instance of this style.
            </summary>
            <param name="style">Style to apply.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.Copy">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.CopyTo(DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle)">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.Empty">
            <summary>
             Empty
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.Background">
            <summary>
            Gets or sets the TreeButton background.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.HotBackground">
            <summary>
            Gets or sets the  Hot background.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.BorderColor">
            <summary>
            Gets or sets the border Color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.HotBorderColor">
            <summary>
            Gets or sets the Hot border Color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.LineColor">
            <summary>
            Gets or sets the button interior line Color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.HotLineColor">
            <summary>
            Gets or sets the Hot button interior line Color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BaseTreeButtonVisualStyle.IsEmpty">
            <summary>
             IsEmpty
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.TreeButtonVisualStyle">
            <summary>
            Represents the visual style of a Row.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.TreeButtonVisualStyle.ShouldSerializeCollapseButton">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.TreeButtonVisualStyle.ResetCollapseButton">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.TreeButtonVisualStyle.ShouldSerializeExpandButton">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.TreeButtonVisualStyle.ResetExpandButton">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.TreeButtonVisualStyle.ApplyStyle(DevComponents.DotNetBar.SuperGrid.Style.TreeButtonVisualStyle)">
            <summary>
            Applies the style to instance of this style.
            </summary>
            <param name="style">Style to apply.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.TreeButtonVisualStyle.Copy">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.TreeButtonVisualStyle.CopyTo(DevComponents.DotNetBar.SuperGrid.Style.TreeButtonVisualStyle)">
            <summary>
            Returns the copy of the style.
            </summary>
            <returns>Copy of the style.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.TreeButtonVisualStyle.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.TreeButtonVisualStyle.Empty">
            <summary>
             Empty
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.TreeButtonVisualStyle.CollapseButton">
            <summary>
            Gets or sets the CollapseButton.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.TreeButtonVisualStyle.ExpandButton">
            <summary>
            Gets or sets the ExpandButton.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.TreeButtonVisualStyle.IsEmpty">
            <summary>
             IsEmpty
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.StyleType">
            <summary>
             StyleType
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.StyleType.NotSet">
            <summary>
             CellStyle is Not Set
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.StyleType.Default">
            <summary>
             Default
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.StyleType.MouseOver">
            <summary>
             MouseOver
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.StyleType.Selected">
            <summary>
             Selected
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.StyleType.SelectedMouseOver">
            <summary>
             SelectedMouseOver
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.StyleType.ReadOnly">
            <summary>
             ReadOnly
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.StyleType.ReadOnlyMouseOver">
            <summary>
             ReadOnlyMouseOver
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.StyleType.ReadOnlySelected">
            <summary>
             ReadOnlySelected
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.StyleType.ReadOnlySelectedMouseOver">
            <summary>
             ReadOnlySelectedMouseOver
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.StyleType.Empty">
            <summary>
             Empty, non-populated cell
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.StyleType.EmptyMouseOver">
            <summary>
             Empty, mouseOver non-populated cell
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.StyleType.EmptyMouseOverSelected">
            <summary>
             Empty, MouseOver, Selected, non-populated cell
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.StyleType.NotSelectable">
            <summary>
             Not Selectable cell
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.StyleState">
            <summary>
             StyleState
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.StyleState.Default">
            <summary>
             Default
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.StyleState.MouseOver">
            <summary>
             MouseOver
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.StyleState.Selected">
            <summary>
             Selected
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.StyleState.ReadOnly">
            <summary>
             ReadOnly
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.VisualStylesConverter">
            <summary>
             VisualStylesConverter
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStylesConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
            <summary>
            ConvertTo
            </summary>
            <param name="context"></param>
            <param name="culture"></param>
            <param name="value"></param>
            <param name="destinationType"></param>
            <returns></returns>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles">
            <summary>
            Defines set of default visual styles that are defined on the container control.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles.StyleChanged(System.Object,System.ComponentModel.PropertyChangedEventArgs)">
            <summary>
            Occurs when one of element visual styles has property changes.
            Default implementation invalidates visual appearance of element.
            </summary>
            <param name="sender">VisualStyle that changed.</param>
            <param name="e">Event arguments.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
            <summary>
            Raises the PropertyChanged event.
            </summary>
            <param name="e">Event arguments</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles.AlternateColumnCellStyles">
            <summary>
            Gets or sets the visual styles to be used on
            alternating columns (UseAlternateColumnStyle must be enabled)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles.AlternateRowCellStyles">
            <summary>
            Gets or sets the visual styles to be used on 
            alternating rows (UseAlternateRowStyle must be enabled)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles.CaptionStyles">
            <summary>
            Gets or sets the visual styles to be used for the grid Caption 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles.CellStyles">
            <summary>
            Gets or sets visual styles to be used for the grid Cells
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles.ColumnHeaderStyles">
            <summary>
            Gets or sets visual styles to be used for the grid ColumnHeader 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles.ColumnHeaderRowStyles">
            <summary>
            Gets or sets visual styles
            to be used for the grid ColumnHeader Row 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles.FilterColumnHeaderStyles">
            <summary>
            Gets or sets visual styles to
            be used for the grid Filter column headers 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles.FilterRowStyles">
            <summary>
            Gets or sets visual styles to be used for the grid Filter Row 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles.FooterStyles">
            <summary>
            Gets or sets the visual styles to be used for the grid Footer 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles.GridPanelStyle">
            <summary>
            Gets or sets the visual styles to be used for the main grid panel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles.GroupByStyles">
            <summary>
            Gets or sets the visual styles to be used for the grid GroupBy Row 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles.GroupHeaderStyles">
            <summary>
            Gets or sets the visual styles to be used for the Group Header
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles.HeaderStyles">
            <summary>
            Gets or sets the visual styles to be used for the grid Header 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles.MergedCellStyles">
            <summary>
            Gets or sets visual styles to be used for merged grid Cells
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles.RowStyles">
            <summary>
            Gets or sets the visual styles to be used for the grid rows
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles.TitleStyles">
            <summary>
            Gets or sets the visual styles to be used for the grid Title 
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles.PropertyChanged">
            <summary>
            Occurs when property value has changed.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridCell">
            <summary>
            Represents grid cell.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.#ctor">
            <summary>
             GridCell
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.#ctor(System.Object)">
            <summary>
             GridCell
            </summary>
            <param name="value"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.GetValue(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            GetValue
            </summary>
            <param name="panel"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.SetValue(System.Object)">
            <summary>
            SetValue
            </summary>
            <param name="value"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.MeasureOverride(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Size)">
            <summary>
            Performs the layout of the item and sets
            the Size property to size that item will take.
            </summary>
            <param name="layoutInfo">Layout information.</param>
            <param name="stateInfo"></param>
            <param name="constraintSize"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.ArrangeOverride(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Rectangle)">
            <summary>
            Performs the arrange pass layout of the item
            when final position and size of the item has been set.
            </summary>
            <param name="layoutInfo">Layout information.</param>
            <param name="stateInfo"></param>
            <param name="layoutBounds"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.RenderOverride(DevComponents.DotNetBar.SuperGrid.GridRenderInfo)">
            <summary>
            Performs drawing of the item and its children.
            </summary>
            <param name="renderInfo">Holds contextual rendering information.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.GetCellRange">
            <summary>
            Gets the CellRange, if any, that the cell is a member of.
            </summary>
            <returns>CellRange or null.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.SuspendMerge(System.Boolean)">
            <summary>
            If the cell is currently participating in a merged range of
            cells, then the merge will be suspended until the user clicks
            away from the merged range (or ResumeMerge is called for the cell).
            </summary>
            <param name="activate">If true, cell will be made the active cell.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.ResumeMerge(DevComponents.DotNetBar.SuperGrid.GridCell)">
            <summary>
            Resumes the suspended merge where the cell is a participant
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.GetCellAreaAt(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Returns element at specified mouse coordinates
            </summary>
            <param name="e">Mouse event arguments</param>
            <returns>Reference to child Cell element or null
            if no element at specified coordinates</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.GetCellAreaAt(System.Int32,System.Int32)">
            <summary>
            Returns element at specified mouse coordinates
            </summary>
            <param name="x">Horizontal position</param>
            <param name="y">Vertical position</param>
            <returns>Reference to child element or null
            if no element at specified coordinates</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.EnsureVisible(System.Boolean)">
            <summary>
             Ensures that the given cell is visibly centered
             (as much as possible) in the grid display.
            </summary>
            <param name="center"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.SetActive">
            <summary>
             Sets the given cell as Active
            </summary>
            <returns>true - if successful</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.SetActive(System.Boolean)">
            <summary>
             Makes the given cell active and
             optionally selects the given cell
            </summary>
            <returns>true, if successful</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.BeginEdit(System.Boolean)">
            <summary>
             Begins a Modal cell edit operation using
             the defined column or cell Modal EditControl.
            </summary>
            <param name="selectAll"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.BeginEdit(System.Boolean,System.Windows.Forms.KeyEventArgs)">
            <summary>
             Begins a Modal cell edit operation using the defined column
             or cell Modal EditControl.  If a KeyEvent is provided then
             the event will be presented to the editor control. 
            </summary>
            <returns>Cell edit control</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.EndEdit">
            <summary>
             This routine ends an in-progress Modal cell edit operation.
            </summary>
            <returns>true if ended</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.UpdateCellValue(DevComponents.DotNetBar.SuperGrid.IGridCellEditControl)">
            <summary>
            Used by IGridCellEditControl editors to update the
            cell Value from the EditorValue, performing any needed
            data conversions for proper data typing.
            </summary>
            <param name="editor"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.CancelEdit">
            <summary>
             Cancels the current in-progress Modal cell edit operation.
            </summary>
            <returns>true if canceled</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.PostCellKeyDown(System.Windows.Forms.Keys)">
            <summary>
             PostCellKeyDown
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.PositionEditControl(DevComponents.DotNetBar.SuperGrid.IGridCellEditControl)">
            <summary>
             PositionEditControl
            </summary>
            <param name="editor"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.CellRender(DevComponents.DotNetBar.SuperGrid.IGridCellEditControl,System.Drawing.Graphics)">
            <summary>
             This routine can be called by a cell editor / renderer to
             perform default cell rendering provided by the grid.
            </summary>
            <param name="editor"></param>
            <param name="g"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.GetExpValue(System.String)">
            <summary>
             Gets the resultant value of the evaluated Cell Expression, if
             applicable. Otherwise returns the given value.
            </summary>
            <param name="source"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.GetCellBitmap(DevComponents.DotNetBar.SuperGrid.IGridCellEditControl,System.Drawing.Rectangle)">
            <summary>
            Gets the cell paint bitmap
            </summary>
            <param name="editor"></param>
            <param name="r"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.PaintButtonContent(DevComponents.DotNetBar.SuperGrid.IGridCellEditControl,System.Drawing.Bitmap,System.Drawing.Rectangle,System.Drawing.Rectangle)">
            <summary>
            Paints the button background and content
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.PaintEditorBackground(System.Windows.Forms.PaintEventArgs,DevComponents.DotNetBar.SuperGrid.IGridCellEditControl)">
            <summary>
             Performs default cell background painting for the cell.
            </summary>
            <param name="e"></param>
            <param name="editor"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.ExtendSelection(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
             ExtendSelection
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.SetEditorDirty(DevComponents.DotNetBar.SuperGrid.IGridCellEditControl)">
            <summary>
             Called by the cell editor to conditionally set
             the cells row level EditorDirty state.
            </summary>
            <param name="editor"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.EditorValueChanged(DevComponents.DotNetBar.SuperGrid.IGridCellEditControl)">
            <summary>
             This routine is called by cell editors to signal to the grid
             that the editor has changed the cell Value.
            </summary>
            <param name="editor"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.GetBackBounds(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Gets the scroll adjusted background bounding rectangle
            </summary>
            <param name="panel"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.GetBounds(DevComponents.DotNetBar.SuperGrid.GridPanel,System.Drawing.Rectangle)">
            <summary>
            Gets the scroll adjusted bounding rectangle
            </summary>
            <param name="panel"></param>
            <param name="backBounds"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.GetCellBounds(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Gets the SViewRect clipped Bounds
            </summary>
            <param name="panel"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.GetContentBounds(DevComponents.DotNetBar.SuperGrid.GridPanel,System.Drawing.Rectangle)">
            <summary>
            Gets the cell content (excludes image) bounding rectangle
            </summary>
            <param name="panel"></param>
            <param name="bounds"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.GetEditBounds(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Gets 
            </summary>
            <param name="panel"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.GetCellEditBounds(DevComponents.DotNetBar.SuperGrid.IGridCellEditControl)">
            <summary>
             Get the CellEditBounds for the cell.
            </summary>
            <param name="editor"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.GetEffectiveStyle">
            <summary>
             Gets the EffectiveStyle for the cell. The effective
             style is the cached, composite style definition for the
             given cell, composed from panel, row, column, and cell styles.
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.GetEffectiveStyle(DevComponents.DotNetBar.SuperGrid.Style.StyleType)">
            <summary>
             Gets the EffectiveStyle for the cell- for the given StyleType.
             The effective style is the cached, composite style definition for the
             given cell, composed from panel, row, column, and cell styles.
            </summary>
            <param name="type"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.StyleChanged(System.Object,System.ComponentModel.PropertyChangedEventArgs)">
            <summary>
            Occurs when one of element visual styles has property changes.
            Default implementation invalidates visual appearance of element.
            </summary>
            <param name="sender">VisualStyle that changed.</param>
            <param name="e">Event arguments.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.InvalidateStyle">
            <summary>
            Invalidates the cached Style
            definition for all defined StyleTypes
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.InvalidateStyle(DevComponents.DotNetBar.SuperGrid.Style.StyleType)">
            <summary>
            Invalidate the cached Style
            definition for the given StyleType
            </summary>
            <param name="type"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.InvalidateRender">
            <summary>
            InvalidateRender
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.CompareTo(DevComponents.DotNetBar.SuperGrid.GridCell)">
            <summary>
            CompareTo
            </summary>
            <param name="other"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.ToString">
            <summary>
            ToString
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCell.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.AllowEdit">
            <summary>
            Gets or sets whether the cell can be edited by the user. 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.BackBounds">
            <summary>
             Gets the scroll adjusted background bounds of the cell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.Bounds">
            <summary>
             Gets the scroll adjusted bounds of the cell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.BoundsRelative">
            <summary>
            Gets or sets the relative bounds of the cell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.CellBounds">
            <summary>
             Gets the clipped, scroll adjusted, bounding rectangle of the cell 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.CellStyles">
            <summary>
            Gets or sets the visual styles assigned to the cell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.ColumnIndex">
            <summary>
            Gets the associated Column index for the cell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.ContentBounds">
            <summary>
             Gets the scroll adjusted, content only, bounding rectangle of the cell 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.EditBounds">
            <summary>
             Gets the clipped, scroll adjusted, edit bounding rectangle of the cell 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.EditControl">
            <summary>
             Gets the Edit Control used for the cell. The cell level
             edit control is a non-shared control, created and based
             upon the cell level EditorType and EditorParams properties.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.EditorDirty">
            <summary>
             Gets or sets whether the value
             being edited has been changed in the editor 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.EditorParams">
            <summary>
            Gets or sets an array of arguments that match in number,
            order, and type the parameters of the EditControl constructor
            to invoke. If empty or null, the default constructor is invoked.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.EditorType">
            <summary>
             Indicates the cell editor type. This is the control type
             used to perform the actual modification of the cell value
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.ExpValue">
            <summary>
             Gets the last evaluated expression value for the cell.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.FormattedValue">
            <summary>
            Gets the associated Formatted Value for the cell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.GridColumn">
            <summary>
            Gets the GridColumn associated with the cell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.GridRow">
            <summary>
             Gets the GridRow associated with the cell.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.HighLightBounds">
            <summary>
             Gets the scroll adjusted, bounding rectangle used
             to highlight the cell contents when selected.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.InfoImage">
            <summary>
            Gets or sets the cell informational Image (the image
            to display when InfoText is non-empty)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.InfoImageBounds">
            <summary>
             Gets the scroll adjusted, bounding
             rectangle for the current set info image
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.InfoText">
            <summary>
             Gets or sets the informational text associated with
             the cell.  If the InfoText is non-null, then the cells
             associated InfoImage is displayed in the cell, with the
             InfoText being displayed as the ToolTip for the InfoImage.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.IsActiveCell">
            <summary>
             Gets whether the cell is the Active cell.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.IsCellVisible">
            <summary>
             Gets whether the cell is visible (taking row visibility,
             column visibility, and expanded row state into account).
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.IsDataError">
            <summary>
             Gets whether setting the cell Value has caused a Data Error
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.IsEditorCell">
            <summary>
             Gets whether the cell is the cell being edited.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.IsEmptyCell">
            <summary>
             Gets whether the cell is an Empty cell.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.IsHFrozen">
            <summary>
             Gets whether the cell is horizontally frozen
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.IsPrimaryCell">
            <summary>
             Gets whether the cell is the defined PrimaryCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.IsReadOnly">
            <summary>
             Gets whether the cell is ReadOnly due to 
             row, column, or cell ReadOnly property status.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.IsSelectable">
            <summary>
             Gets whether the cell is selectable due to
             row, column, or cell AllowSelection property status.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.IsSelected">
            <summary>
             Gets or sets whether the cell is selected.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.IsValueExpression">
            <summary>
             Gets whether the cell Value is an expression.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.IsValueNull">
            <summary>
             Gets whether the cell Value is null.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.Merged">
            <summary>
            Gets whether the cell is merged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.MergedBottom">
            <summary>
            Gets or sets whether the cell is Merged at the Bottom
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.MergedLeft">
            <summary>
            Gets or sets whether the cell is Merged to the Left
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.MergedRight">
            <summary>
            Gets or sets whether the cell is Merged to the Right
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.MergedTop">
            <summary>
            Gets or sets whether the cell is Merged at the Top
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.MergeSuspended">
            <summary>
            Gets whether the cell is merged and suspended.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.NullString">
            <summary>
            Gets how null values are displayed 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.ReadOnly">
            <summary>
            Gets or sets whether the user can change cell contents
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.RenderControl">
            <summary>
             Gets the current set Render Control for the cell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.RenderParams">
            <summary>
            Gets or sets an array of arguments that match in number,
            order, and type the parameters of the RenderControl constructor
            to invoke. If empty or null, the default constructor is invoked.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.RenderType">
            <summary>
             Gets or sets the cell render type. This is the control
             type used to perform the default rendering of the cell value
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.RowIndex">
            <summary>
            Gets the associated Row index for the cell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.UnMergedBounds">
            <summary>
             Gets the scroll adjusted un-merged bounds of the cell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCell.Value">
            <summary>
            Gets or sets the cell value
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.CellArea">
            <summary>
             CellArea
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CellArea.NoWhere">
            <summary>
             NoWhere
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CellArea.InContent">
            <summary>
             InContent
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CellArea.InExpandButton">
            <summary>
             InExpandButton
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CellArea.InCheckBox">
            <summary>
             InCheckBox
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CellArea.InCellInfo">
            <summary>
             InCellInfo
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.CellMergeMode">
            <summary>
             Specifies the type of merging that is permitted
             for cells in the given row or column
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CellMergeMode.NotSet">
            <summary>
             Not set
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CellMergeMode.None">
            <summary>
             No merging
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CellMergeMode.HorizontalLeft">
            <summary>
             Cells can merge horizontally Left
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CellMergeMode.HorizontalRight">
            <summary>
             Cells can merge horizontally Right
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CellMergeMode.Horizontal">
            <summary>
             Cells can merge horizontally (both left and right)
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CellMergeMode.Vertical">
            <summary>
             Cells can merge vertically
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CellMergeMode.HorizontalAndVertical">
            <summary>
             Cells can merge both horizontally and vertically
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.CellMergeOrder">
            <summary>
             Specifies the type of merging that is permitted
             for cells in the given row or column
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CellMergeOrder.HorizontalThenVertical">
            <summary>
             Cells can merge horizontally, then vertically
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CellMergeOrder.VerticalThenHorizontal">
            <summary>
             Cells can merge vertically, then horizontally (this is the default
             if CellMergeMode enables both vertical and horizontal merging)
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.ValueTypeConverter">
            <summary>
             ValueTypeConverter
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.ValueTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
            <summary>
            CanConvertTo
            </summary>
            <param name="context"></param>
            <param name="destinationType"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.ValueTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
            <summary>
            ConvertTo
            </summary>
            <param name="context"></param>
            <param name="culture"></param>
            <param name="value"></param>
            <param name="destinationType"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.ValueTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
            <summary>
            CanConvertFrom
            </summary>
            <param name="context"></param>
            <param name="sourceType"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.ValueTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
            <summary>
            ConvertFrom
            </summary>
            <param name="context"></param>
            <param name="culture"></param>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridCellCollection">
            <summary>
            Represents the collection of grid cells.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCellCollection.Item(System.String)">
            <summary>
            Gets or sets item at ColumnName index
            </summary>
            <param name="columnName">Name of Column containing the cell</param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCellCollection.Item(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
            Gets or sets item at Column index
            </summary>
            <param name="column">Column containing the cell</param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridContainer">
            <summary>
            Defines Grid element with Items collection
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.CreateItemsCollection">
            <summary>
            Creates the GridItemsCollection that hosts the items.
            </summary>
            <returns>New instance of GridItemsCollection.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.DisposeItemsCollection(DevComponents.DotNetBar.SuperGrid.GridItemsCollection)">
            <summary>
            Disposes of the GridItemsCollection that hosts the items.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.#ctor">
            <summary>
            GridContainer
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.FindGridPanel(System.String)">
            <summary>
             Finds the GridPanel with the given Name.
             Only the root Rows collection is searched.
            </summary>
            <returns>GridPanel, or null if not found.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.FindGridPanel(System.String,System.Boolean)">
            <summary>
             Finds the GridPanel with the given Name.
             Nested Rows are searched if 'includeNested' is true.
            </summary>
            <param name="name">Name to search</param>
            <param name="includeNested">Whether to include nested rows in the search.</param>
            <returns>GridPanel, or null if not found.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.ExpandItemTree">
            <summary>
            Expands the entire tree, as necessary, to display the given row.
            </summary>
            <returns>'true' if any expanding was actually performed</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.ExpandAll">
            <summary>
             Expands all rows in the Rows collection.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.ExpandAll(System.Int32)">
            <summary>
             Expands all rows in the Rows collection to the provided depth.
             
             If a depth is provided, then rows will be expanded only to the given depth.
             In other words, to expand only the first level of rows in the container, you would
             call ExpandAll(0). To expand the first level – as well as 2 levels under it,
             you would call ExpandAll(2).
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.CollapseAll">
            <summary>
             Collapses all expanded rows.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.CollapseAll(System.Int32)">
            <summary>
             Collapses all rows in the Rows collection to the provided depth.
             
             If a depth is provided, then rows will be collapsed only to the given depth.
             In other words, to collapse only the first level of rows in the container, you would
             call CollapseAll(0). To collapse the first level – as well as 2 levels under it,
             you would call CollapseAll(2).
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.SetActive">
            <summary>
             Makes the given row active
            </summary>
            <returns>true, if successful</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.SetActive(System.Boolean)">
            <summary>
             Makes the given row active and
             optionally selects the given row
            </summary>
            <returns>true, if successful</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.EnsureVisible(System.Boolean)">
            <summary>
             This routine will ensure that the row is visible on
             the screen.  If the row is not visible on screen, the
             view window will be scrolled to make it visible.  
            </summary>
            <param name="center">If 'true', the row will be centered on screen</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.ScrollToTop">
            <summary>
            Scrolls the row to the 'logical' top of the grid display.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.ScrollToBottom">
            <summary>
            Scrolls the row to the 'logical' bottom of the grid display.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.MeasureSubItems(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Size)">
            <summary>
            MeasureSubItems
            </summary>
            <param name="layoutInfo"></param>
            <param name="stateInfo"></param>
            <param name="constraintSize"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.ArrangeSubItems(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Rectangle)">
            <summary>
            ArrangeSubItems
            </summary>
            <param name="layoutInfo"></param>
            <param name="stateInfo"></param>
            <param name="layoutBounds"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.GetRowIndent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            GetRowIndent
            </summary>
            <param name="panel"></param>
            <param name="ipanel"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.GetParentPanel">
            <summary>
             Gets the Parent GridPanel for the item.
            </summary>
            <returns>GridPanel or null</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.InvalidateMerge">
            <summary>
            Invalidates the merge state of the container.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.InternalMouseLeave(System.EventArgs)">
            <summary>
            Called by top-level control to pass message into the grid
            element. To handle it override corresponding On - virtual method.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.InternalMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Called by top-level control to pass message into the grid
            element. To handle it override corresponding On - virtual method.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.InternalMouseHover(System.EventArgs)">
            <summary>
            Called by top-level control to pass message into the grid
            element. To handle it override corresponding On - virtual method.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.InternalMouseClick(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Called by top-level control to pass message into the grid
            element. To handle it override corresponding On - virtual method.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.InternalMouseDoubleClick(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Called by top-level control to pass message into the grid
            element. To handle it override corresponding On - virtual method.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.InternalMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Called by top-level control to pass message into the grid
            element. To handle it override corresponding On - virtual method.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.InternalMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Called by top-level control to pass message into the grid
            element. To handle it override corresponding On - virtual method.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.GetElementAt(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Returns element at specified mouse coordinates.
            </summary>
            <param name="e">Mouse event arguments</param>
            <returns>Reference to child element or null if no element at specified coordinates</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.GetElementAt(System.Int32,System.Int32)">
            <summary>
            Returns element at specified mouse coordinates.
            </summary>
            <param name="x">Horizontal position</param>
            <param name="y">Vertical position</param>
            <returns>Reference to child element or null if no element at specified coordinates</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.PurgeDeletedRows">
            <summary>
             Purges all rows marked as 'deleted'. Once rows are purged
             they cannot be restored.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.PurgeDeletedRows(System.Boolean)">
            <summary>
             Purges all rows marked as 'deleted'. Once rows are purged
             they cannot be restored.
            </summary>
            <param name="includeNestedRows">Determines whether nested rows are also purged.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.SuspendMerge(DevComponents.DotNetBar.SuperGrid.CellRange)">
            <summary>
            Temporarily suspends the merged display of the
            cells in the given CellRange.
            </summary>
            <param name="cr">CellRange to temporarily suspend</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.ResumeMerge">
            <summary>
            Resumes merged display of any current, temporarily
            suspended CellRange.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.ResolveRow">
            <summary>
            Resolves the row if marked as RowsUnresolved.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.ResolveRow(System.Boolean)">
            <summary>
            Resolves the row if marked as RowsUnresolved.  If includeNested
            is true, then all RowsUnresolved sub-Rows are also resolved.
            </summary>
            <param name="includeNested"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.ResolveRows(System.Boolean)">
            <summary>
            Resolves all rows marked as RowsUnresolved.
            </summary>
            <param name="includeNested"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.StyleChanged(System.Object,System.ComponentModel.PropertyChangedEventArgs)">
            <summary>
            StyleChanged
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.GetEffectiveRowStyle">
            <summary>
             Gets the 'Effective' row style for the row. The
             'Effective' Style is the cached summation of SuperGrid,
             Panel, Row, and Alternate Row styles.  It is the Style
             that is used to render each row element for the row.
            </summary>
            <returns>RowVisualStyle</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.InvalidateStyle">
            <summary>
            Invalidates the cached Style
            definition for all defined StyleTypes
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.InvalidateStyle(DevComponents.DotNetBar.SuperGrid.Style.StyleType)">
            <summary>
            Invalidate the cached Style
            definition for the given StyleType
            </summary>
            <param name="type"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.IsParentOf(DevComponents.DotNetBar.SuperGrid.GridContainer)">
            <summary>
             Determines whether the row is
             a parent row of the given container row.
            </summary>
            <param name="row"></param>
            <returns>true if the row is a parent of the given row.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.IsChildOf(DevComponents.DotNetBar.SuperGrid.GridContainer)">
            <summary>
             Determines whether the row is
             a child row of the given container row.
            </summary>
            <param name="row"></param>
            <returns>true if the row is a child of the given row.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.GetCell(System.Int32,System.Int32)">
            <summary>
             Gets the GridCell for the given row and column index
            </summary>
            <param name="rowIndex"></param>
            <param name="columnIndex"></param>
            <returns>GridCell, or null if not a valid cell</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridContainer.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.Bounds">
            <summary>
             Gets the scroll adjusted bounds
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.CellStyles">
            <summary>
            Gets or sets the default Cell visual styles
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.Checked">
            <summary>
             Gets or sets the row CheckBox checked state
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.DisplayedRowCount">
            <summary>
             Gets the count of visible rows on screen
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.Expanded">
            <summary>
             Gets or sets whether the row is
             expanded, permitting its child rows to be visible
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.FirstOnScreenRow">
            <summary>
             Gets the first visible row on screen
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.FirstOnScreenRowIndex">
            <summary>
             Gets the first visible on screen row index
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.FirstSelectableRow">
            <summary>
             Gets the first selectable row
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.FirstVisibleRow">
            <summary>
             Gets the first visible row
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.FullIndex">
            <summary>
             Gets the sequential index for the row
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.GridIndex">
            <summary>
             Gets the sequential index for the visible, expanded row
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.Index">
            <summary>
             Gets the sequential, visible, local container index for the item
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.IsActive">
            <summary>
             Gets or sets whether the item is Active
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.IsDeleted">
            <summary>
             Gets whether the item is deleted
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.IsExpandedVisible">
            <summary>
             Gets whether the item is visible
             and its parental hierarchy is expanded
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.IsOnScreen">
            <summary>
             Gets whether the item is visible on screen
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.IsSelectable">
            <summary>
             Gets whether the row can be selected by the user.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.IsSelected">
            <summary>
             Gets or sets whether the item is selected
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.LastOnScreenRow">
            <summary>
             Gets the last visible on screen row
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.LastOnScreenRowIndex">
            <summary>
             Gets the last visible on screen row index
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.LastSelectableRow">
            <summary>
             Gets the last user selectable row
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.LastVisibleRow">
            <summary>
             Gets the last visible row
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.NextVisibleRow">
            <summary>
             Gets the next visible row, or null if no
             subsequent rows are defined
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.PrevVisibleRow">
            <summary>
             Gets the previous visible row, or null if
             no previous rows are defined
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.ReadOnly">
            <summary>
            Gets or sets whether the user can change the row contents
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.RowHeaderText">
            <summary>
             Gets or sets the associated row header text.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.RowIndex">
            <summary>
             Gets the sequential, parental index of the item
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.Rows">
            <summary>
            Gets the reference to the Rows collection
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.RowsUnresolved">
            <summary>
             Gets or sets whether the rows collection is unknown and has not
             been resolved (presumes there are rows until set to false)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.RowStyles">
            <summary>
            Gets or sets the visual styles assigned to the row elements
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.ShowCheckBox">
            <summary>
            Get or sets whether the row CheckBox is shown (Panel.CheckBoxes must also be true)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.ShowTreeButton">
            <summary>
            Gets or sets whether expand / collapse
            buttons are shown if the row contains nested items 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.FixedHeaderHeight">
            <summary>
            Get or sets the FixedHeaderHeight
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.FixedRowHeight">
            <summary>
            Get or sets the FixedRowHeight
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.IndentLevel">
            <summary>
            Get or sets the panel indent level
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridContainer.SuspendedRange">
            <summary>
            Get or sets the current suspended range
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.ExpandSource">
            <summary>
             Operation source resulting in the Expand call
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ExpandSource.Expand">
            <summary>
             Expand operation
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ExpandSource.ExpandAll">
            <summary>
             ExpandAll operation
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGroup">
            <summary>
             GridGroup
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroup.MeasureOverride(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Size)">
            <summary>
            MeasureOverride
            </summary>
            <param name="layoutInfo"></param>
            <param name="stateInfo"></param>
            <param name="constraintSize"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroup.ArrangeOverride(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Rectangle)">
            <summary>
            ArrangeOverride
            </summary>
            <param name="layoutInfo"></param>
            <param name="stateInfo"></param>
            <param name="layoutBounds"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroup.RenderOverride(DevComponents.DotNetBar.SuperGrid.GridRenderInfo)">
            <summary>
            RenderOverride
            </summary>
            <param name="renderInfo"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroup.CanShowRowHeader(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            CanShowRowHeader
            </summary>
            <param name="panel"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroup.InternalMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
            InternalMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroup.GetGroupAreaAt(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Returns element at specified mouse coordinates
            </summary>
            <param name="e">Mouse event arguments</param>
            <returns>Reference to child Group element or null
            if no element at specified coordinates</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroup.GetGroupAreaAt(System.Int32,System.Int32)">
            <summary>
            Returns element at specified mouse coordinates
            </summary>
            <param name="x">Horizontal position</param>
            <param name="y">Vertical position</param>
            <returns>Reference to child element or null
            if no element at specified coordinates</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroup.InvalidateRender">
            <summary>
            InvalidateRender
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroup.GetEffectiveStyle">
            <summary>
             GetEffectiveStyle
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroup.CreateItemsCollection">
            <summary>
            Creates the GridItemsCollection that hosts the items.
            </summary>
            <returns>New instance of GridItemsCollection.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroup.DisposeItemsCollection(DevComponents.DotNetBar.SuperGrid.GridItemsCollection)">
            <summary>
            DisposeItemsCollection
            </summary>
            <param name="items"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroup.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroup.Bounds">
            <summary>
             Bounds
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroup.Cell">
            <summary>
             Gets the Group's associated grid cell.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroup.Column">
            <summary>
             Gets the Group's associated grid Column.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroup.GroupHeaderVisualStyles">
            <summary>
            Gets or sets the visual styles
            assigned to the element. Default value is null.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroup.GroupValue">
            <summary>
             GroupValue
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroup.PlainText">
            <summary>
             Gets the "Plain" header Text (MiniMarkup stripped)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroup.Text">
            <summary>
             Text
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GroupArea">
            <summary>
             GroupArea
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupArea.Content">
            <summary>
             Content
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupArea.ExpandButton">
            <summary>
             ExpandButton
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupArea.RowHeader">
            <summary>
            Row Header
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupArea.NoWhere">
            <summary>
             NoWhere
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridLayoutInfo">
            <summary>
            Provides the layout information for grid layout pass
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridLayoutInfo.Graphics">
            <summary>
            Gets or sets the Graphics object of the control.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridLayoutInfo.RightToLeft">
            <summary>
            Gets or sets whether right-to-left layout is in effect.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridLayoutInfo.ClientBounds">
            <summary>
            Gets the client bounds for the layout i.e. client bounds of SuperGridControl.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridLayoutInfo.DefaultVisualStyles">
            <summary>
            Gets the default visual styles for grid elements.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLayoutInfo.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle)">
            <summary>
            Initializes a new instance of the GridLayoutInfo class.
            </summary>
            <param name="graphics"></param>
            <param name="clientBounds"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo">
            <summary>
            Provides the layout state information for grid layout pass
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo.GridPanel">
            <summary>
            Gets or sets the layout GridPanel
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo.IndentLevel">
            <summary>
            Gets or sets the IndentLevel
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,System.Int32)">
            <summary>
            Initializes a new instance of the GridLayoutStateInfo class
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridPanel">
            <summary>
            Represents a grid panel which lays out the grid rows.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.#ctor">
            <summary>
            GridPanel
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.ShouldSerializeCheckBoxSize">
            <summary>
            Gets whether property should be serialized
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.ResetCheckBoxSize">
            <summary>
            Resets property to its default value
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.ShouldSerializeLevelIndentSize">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.ResetLevelIndentSize">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.MeasureOverride(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Size)">
            <summary>
            Performs the layout of the item and sets
            the Size property to size that item will take.
            </summary>
            <param name="layoutInfo">Layout information.</param>
            <param name="stateInfo"></param>
            <param name="constraintSize"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.ArrangeOverride(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Rectangle)">
            <summary>
            Performs the arrange pass layout of the item when
            final position and size of the item has been set.
            </summary>
            <param name="layoutInfo">Layout information.</param>
            <param name="stateInfo"></param>
            <param name="layoutBounds"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.RenderOverride(DevComponents.DotNetBar.SuperGrid.GridRenderInfo)">
            <summary>
            Performs drawing of the item and its children.
            </summary>
            <param name="renderInfo">Holds contextual rendering information.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.InternalMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
            InternalMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.GetElementAt(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Gets the current panel element at the given location.
            </summary>
            <param name="e"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.GetElementAt(System.Int32,System.Int32)">
            <summary>
            Gets the current panel element at the given location.
            </summary>
            <param name="x"></param>
            <param name="y"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.GetColumnAt(System.Drawing.Point)">
            <summary>
             Gets the GridColumn containing the specified location.
            </summary>
            <param name="pt">Point to test</param>
            <returns>Column or null</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.InvalidateRender">
            <summary>
            Invalidates the display state of the panel.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetActiveRow(DevComponents.DotNetBar.SuperGrid.GridContainer)">
            <summary>
             Sets the current Active Row
            </summary>
            <param name="row">Row to make active.</param>
            <returns>true is successful</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.FlushActiveRow">
            <summary>
            Should be called when bound rows have been inserted, to make sure
            they have been flushed to the data source prior to issuing an Update
            </summary>
            <returns>true if successful</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetActiveCell(DevComponents.DotNetBar.SuperGrid.GridCell)">
            <summary>
             Sets the given cell as Active
            </summary>
            <param name="cell">Cell to make active</param>
            <returns>true - if successful</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.ActivateFilterPopup(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
            Activates the given column's FilterPopup
            </summary>
            <param name="column"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.DeactivateFilterPopup">
            <summary>
            Deactivates the the current FilterPopup
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.ClearDirtyRowMarkers">
            <summary>
             Clears all dirty row markers.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.AddSort(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
             This routine is used to add a single column to the
             list of columns used to sort grid data rows.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.AddSort(DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.SortDirection)">
            <summary>
             This routine is used to add a single column, and
             its associated sorting direction, to the list of
             columns used to sort grid data rows.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.AddSort(DevComponents.DotNetBar.SuperGrid.GridColumn[])">
            <summary>
             This routine is used to add an array of column to the
             list of columns used to sort grid data rows.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.AddSort(DevComponents.DotNetBar.SuperGrid.GridColumn[],DevComponents.DotNetBar.SuperGrid.SortDirection)">
            <summary>
             This routine is used to add an array of columns and
             a specified sort direction to the list of columns
             used to sort grid data rows.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.AddSort(DevComponents.DotNetBar.SuperGrid.GridColumn[],DevComponents.DotNetBar.SuperGrid.SortDirection[])">
            <summary>
             This routine is used to add an array of columns, and
             their respective sort directions, to the list of columns
             used to sort grid data rows.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetSort">
            <summary>
             Sets the current list of sorting columns to empty.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetSort(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
             Sets a single column to use for sorting the grid data.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetSort(DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.SortDirection)">
            <summary>
             Sets a single column, and its associated sort
             direction (ascending or descending) to use for sorting the grid data.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetSort(DevComponents.DotNetBar.SuperGrid.GridColumn[])">
            <summary>
             Sets an array of columns to use for sorting the grid data.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetSort(DevComponents.DotNetBar.SuperGrid.GridColumn[],DevComponents.DotNetBar.SuperGrid.SortDirection)">
            <summary>
             Sets an array of columns, and an associated sort
             direction (ascending or descending) to use for sorting the grid data.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetSort(DevComponents.DotNetBar.SuperGrid.GridColumn[],DevComponents.DotNetBar.SuperGrid.SortDirection[])">
            <summary>
             Sets an array of columns, and their respective sort
             direction (ascending or descending) to use for sorting the grid data.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.ClearSort">
            <summary>
             Clears the currently set column sorting list.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.ToggleMultiColumnSort">
            <summary>
             This routine toggles the current sort direction for the current
             list of sort columns. 
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.AddGroup(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
             This routine is used to add a single column to the
             list of columns used to group grid data rows together.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.AddGroup(DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.SortDirection)">
            <summary>
             This routine is used to add a single column, and
             its associated sorting direction, to the list of
             columns used to group grid data rows together.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.AddGroup(DevComponents.DotNetBar.SuperGrid.GridColumn[])">
            <summary>
             This routine is used to add an array of column to the
             list of columns used to group grid data rows together.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.AddGroup(DevComponents.DotNetBar.SuperGrid.GridColumn[],DevComponents.DotNetBar.SuperGrid.SortDirection)">
            <summary>
             This routine is used to add an array of columns and
             a specified sort direction to the list of columns
             used to group grid data rows together.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.AddGroup(DevComponents.DotNetBar.SuperGrid.GridColumn[],DevComponents.DotNetBar.SuperGrid.SortDirection[])">
            <summary>
             This routine is used to add an array of columns, and
             their respective sort directions, to the list of columns
             used to group grid data rows together.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.InsertGroup(DevComponents.DotNetBar.SuperGrid.GridColumn,System.Int32)">
            <summary>
             This routine is used to insert a single column to the
             list of columns used to group grid data rows together.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.InsertGroup(DevComponents.DotNetBar.SuperGrid.GridColumn,System.Int32,DevComponents.DotNetBar.SuperGrid.SortDirection)">
            <summary>
             This routine is used to insert a single column, and
             its associated sorting direction, to the list of
             columns used to group grid data rows together.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetGroup">
            <summary>
             Resets the Group list to its default empty state.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetGroup(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
             Sets the Group list to the given Column.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetGroup(DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.SortDirection)">
            <summary>
             Sets the Group list to the given Column and sort direction.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetGroup(DevComponents.DotNetBar.SuperGrid.GridColumn[])">
            <summary>
             Sets the Group list to the given Column list.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetGroup(DevComponents.DotNetBar.SuperGrid.GridColumn[],DevComponents.DotNetBar.SuperGrid.SortDirection)">
            <summary>
             Sets the Group list to the
             given Column list and sort direction.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetGroup(DevComponents.DotNetBar.SuperGrid.GridColumn[],DevComponents.DotNetBar.SuperGrid.SortDirection[])">
            <summary>
             Sets the Group list to the
             given Column list and sort direction.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.ClearGroup">
            <summary>
             Clears all currently set Column Groups.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.RemoveGroup(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
             Removes an individual set Column Group.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.GetSelectedElements">
            <summary>
             Gets a SelectedElementCollection containing
             a list of currently selected rows, columns, and cells.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.GetSelectedRows">
            <summary>
             Gets a SelectedElementCollection
             containing a list of currently selected rows.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.GetSelectedColumns">
            <summary>
             Gets a SelectedElementCollection
             containing a list of currently selected columns.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.GetSelectedCells">
            <summary>
             Gets a SelectedElementCollection
             containing a list of currently selected cells.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.Select(DevComponents.DotNetBar.SuperGrid.GridContainer)">
            <summary>
             Selects the given Row.
            </summary>
            <param name="row"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.Select(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
             Selects the given Column.
            </summary>
            <param name="column"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.Select(DevComponents.DotNetBar.SuperGrid.GridCell)">
            <summary>
             Selects the given Cell.
            </summary>
            <param name="cell"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SelectAll">
            <summary>
             Selects all cells, columns, or rows based upon
             the current TopLeftHeaderSelectBehavior property setting.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetSelected(DevComponents.DotNetBar.SuperGrid.GridContainer,System.Boolean)">
            <summary>
             This routine is used to set an individual row as either
             selected or unselected, based upon the provided 'selected' value.
            </summary>
            <param name="row"></param>
            <param name="selected"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetSelected(DevComponents.DotNetBar.SuperGrid.GridContainer,System.Int32,System.Boolean)">
            <summary>
             This routine is used to set a range of rows as either
             selected or unselected, based upon the provided 'selected' value.
            </summary>
            <param name="row"></param>
            <param name="count"></param>
            <param name="selected"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetSelectedRows(System.Int32,System.Int32,System.Boolean)">
            <summary>
             This routine is used to set a range of rows as either
             selected or unselected, based upon the provided 'selected' value.
            </summary>
            <param name="startIndex"></param>
            <param name="count"></param>
            <param name="selected"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetSelected(DevComponents.DotNetBar.SuperGrid.GridColumn,System.Boolean)">
            <summary>
             This routine is used to set an individual column as either
             selected or unselected, based upon the provided 'selected' value.
            </summary>
            <param name="column"></param>
            <param name="selected"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetSelected(DevComponents.DotNetBar.SuperGrid.GridColumn,System.Int32,System.Boolean)">
            <summary>
             This routine is used to set a range of columns as either
             selected or unselected, based upon the provided 'selected' value.
            </summary>
            <param name="column"></param>
            <param name="count"></param>
            <param name="selected"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetSelectedColumns(System.Int32,System.Int32,System.Boolean)">
            <summary>
             This routine sets a range of columns as selected
             or unselected, based upon the provided 'selected' value.
            </summary>
            <param name="startIndex"></param>
            <param name="count"></param>
            <param name="selected"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetSelected(DevComponents.DotNetBar.SuperGrid.GridCell,System.Boolean)">
            <summary>
            This routine is used to set an individual cell as either
            selected or unselected, based upon the provided 'selected' value.
            </summary>
            <param name="cell"></param>
            <param name="selected"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetSelectedCells(System.Int32,System.String,System.Int32,System.Int32,System.Boolean)">
            <summary>
             This routine is used to set a range of cells as either
             selected or unselected, based upon the provided 'selected' value.
            </summary>
            <param name="startRowIndex"></param>
            <param name="startColumnName"></param>
            <param name="rowCount"></param>
            <param name="columnCount"></param>
            <param name="selected"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetSelectedCells(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
            <summary>
             This routine is used to set a range of cells as either
             selected or unselected, based upon the provided 'selected' value.
            </summary>
            <param name="startRowIndex"></param>
            <param name="startColumnIndex"></param>
            <param name="rowCount"></param>
            <param name="columnCount"></param>
            <param name="selected"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.IsItemSelected(DevComponents.DotNetBar.SuperGrid.GridContainer)">
            <summary>
             Retrieves whether the given item is selected.
            </summary>
            <param name="row"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.IsItemSelected(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
             Retrieves whether the given item is selected.
            </summary>
            <param name="column"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.IsItemSelected(DevComponents.DotNetBar.SuperGrid.GridCell)">
            <summary>
             Retrieves whether the given item is selected.
            </summary>
            <param name="cell"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.IsRowSelected(System.Int32)">
            <summary>
             IsRowSelected
            </summary>
            <param name="rowIndex"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.IsColumnSelected(System.Int32)">
            <summary>
             Retrieves whether the given column (as
             specified by the given column index) is selected.
            </summary>
            <param name="colIndex"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.IsCellSelected(System.Int32,System.Int32)">
            <summary>
             Retrieves whether the given cell (as specified by the
             given row and column index) is selected.
            </summary>
            <param name="rowIndex"></param>
            <param name="colIndex"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.ClearAll">
            <summary>
             Clears all cells, rows, and columns
             from their associated selection lists.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.ClearSelectedRows">
            <summary>
             Clears all currently selected Rows.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.ClearSelectedColumns">
            <summary>
             Clears all currently selected Columns.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.ClearSelectedCells">
            <summary>
             Clears all currently selected Cells.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.FlushSelected">
            <summary>
             Flushes any pending Selections (raises the SelectionChanged event
             if selections have changed and the event has not been previously raised).
            </summary>
            <returns>true, if event raised.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.NewRow">
            <summary>
            Creates a new GridRow, allocating all associated cells
            and initializing them to their column's default value.
            The row is not added to the GridPanel.
            </summary>
            <returns>New GridRow</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.NewRow(System.Boolean)">
            <summary>
            Creates and optionally appends a new GridRow, allocating all
            associated cells and initializing them to their column's default value.
            </summary>
            <returns>New GridRow</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.NewRow(System.Int32)">
            <summary>
            Creates and insert a new GridRow at the given index, allocating all
            associated cells and initializing them to their column's default value.
            </summary>
            <param name="index"></param>
            <returns>New GridRow</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.GetDeletedRows">
            <summary>
             Gets a SelectedElementCollection of the
             current list of Deleted Rows.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.DeleteAll">
            <summary>
             This routine marks each data rows as Deleted.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.UnDeleteAll">
            <summary>
             Undeletes (or restores) all previously deleted grid rows.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetDeleted(DevComponents.DotNetBar.SuperGrid.GridContainer,System.Boolean)">
            <summary>
             Sets the deleted state for the given row.
            </summary>
            <param name="row"></param>
            <param name="deleted"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetDeleted(DevComponents.DotNetBar.SuperGrid.GridContainer,System.Int32,System.Boolean)">
            <summary>
             Sets the deleted state, beginning at the given row, and
             continuing for the specified count.
            </summary>
            <param name="row"></param>
            <param name="count"></param>
            <param name="deleted"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.SetDeletedRows(System.Int32,System.Int32,System.Boolean)">
            <summary>
             Sets the deleted state, beginning at the given row
             index, and continuing for the specified count.
            </summary>
            <param name="startIndex"></param>
            <param name="count"></param>
            <param name="deleted"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.IsRowDeleted(DevComponents.DotNetBar.SuperGrid.GridContainer)">
            <summary>
             IsRowDeleted
            </summary>
            <param name="row"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.IsRowDeleted(System.Int32)">
            <summary>
             IsRowDeleted
            </summary>
            <param name="index"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.InsertRow(System.Int32)">
            <summary>
             Inserts a new row at the given index.
            </summary>
            <param name="index"></param>
            <exception cref="T:System.Exception"></exception>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.GetRowFromIndex(System.Int32)">
            <summary>
             Gets the Row from the given GridIndex
            </summary>
            <param name="gridIndex"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.CreateItemsCollection">
            <summary>
            Creates the GridItemsCollection that hosts the items.
            </summary>
            <returns>New instance of GridItemsCollection.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.DisposeItemsCollection(DevComponents.DotNetBar.SuperGrid.GridItemsCollection)">
            <summary>
            DisposeItemsCollection
            </summary>
            <param name="items"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.PointToGrid(System.Drawing.Point)">
            <summary>
             Converts the given Point
             into a Grid relative Point.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.CopySelectedCellsToClipboard">
            <summary>
             Copies the currently selected list of tab delimited cells to the system
             ClipBoard.  This routine takes all cell, column, and row selections into
             account when determining what cell data to write to the clipboard. 
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.CopySelectedCellsToClipboard(System.Boolean)">
            <summary>
             Copies the currently selected list of tab delimited cells to the system
             ClipBoard.  This routine takes all cell, column, and row selections into
             account when determining what cell data to write to the clipboard. 
            </summary>
            <param name="formatValue">Whether to copy cell FormattedValue instead of cell Value</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.CopySelectedCellsToClipboard(System.Boolean,System.Boolean)">
            <summary>
             Copies the currently selected list of tab delimited cells to the
             system ClipBoard.  This routine takes all cell, column, and row
             selections into account when determining what cell data to write
             to the clipboard. 
            </summary>
            <param name="includeColumnHeaders">If true, the column header text is written.</param>
            <param name="includeGridIndex">If true, the row GridIndex is written.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.CopySelectedCellsToClipboard(System.Boolean,System.Boolean,System.Boolean)">
            <summary>
             Copies the currently selected list of tab delimited cells to the system
             ClipBoard.  This routine takes all cell, column, and row selections into
             account when determining what cell data to write to the clipboard. 
            </summary>
            <param name="includeColumnHeaders">If true, the column header text is written.</param>
            <param name="includeGridIndex">If true, the row GridIndex is written.</param>
            <param name="formatValue">Whether to copy cell FormattedValue instead of cell Value</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.CopySelectedCellsToClipboard(System.Boolean,System.Boolean,System.Char)">
            <summary>
             Copies the currently selected list of tab delimited cells to the system
             ClipBoard.  This routine takes all cell, column, and row selections into
             account when determining what cell data to write to the clipboard. 
            </summary>
            <param name="includeColumnHeaders">If true, the column header text is written.</param>
            <param name="includeGridIndex">If true, the row GridIndex is written.</param>
            <param name="delimiter">Field delimiter</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.CopySelectedCellsToClipboard(System.Boolean,System.Boolean,System.Char,System.Boolean)">
            <summary>
             Copies the currently selected list of tab delimited cells to the system
             ClipBoard.  This routine takes all cell, column, and row selections into
             account when determining what cell data to write to the clipboard. 
            </summary>
            <param name="includeColumnHeaders">If true, the column header text is written.</param>
            <param name="includeGridIndex">If true, the row GridIndex is written.</param>
            <param name="delimiter">Field delimiter</param>
            <param name="fullCopy">Whether to copy all leading columns</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.CopySelectedCellsToClipboard(System.Boolean,System.Boolean,System.Char,System.Boolean,System.Boolean)">
            <summary>
             Copies the currently selected list of tab delimited cells to the system
             ClipBoard.  This routine takes all cell, column, and row selections into
             account when determining what cell data to write to the clipboard. 
            </summary>
            <param name="includeColumnHeaders">If true, the column header text is written.</param>
            <param name="includeGridIndex">If true, the row GridIndex is written.</param>
            <param name="delimiter">Field delimiter</param>
            <param name="fullCopy">Whether to copy all leading columns</param>
            <param name="formatValue">Whether to copy cell FormattedValue instead of cell Value</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.BeginDataUpdate">
            <summary>
             Calling the BeginDataUpdate routine informs the grid
             that an extended data update phase has begun. The SuperGrid
             will suspend all data notification and updates
             until the corresponding EndDataUpdate routine is called.
             
             BeginDataUpdate / EndDataUpdate can be nested and must be
             called in pairs – every BeginDataUpdate must have a
             matching EndDataUpdate call.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.EndDataUpdate">
            <summary>
             Calling the EndDataUpdate routine informs the grid
             that an extended data update phase has ended.
             
             BeginDataUpdate / EndDataUpdate can be nested and must be
             called in pairs – every BeginDataUpdate must have a
             matching EndDataUpdate call.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.ClearAllFilters">
            <summary>
             Clears all panel and column level filters
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.ClearAllFilters(System.Boolean,System.Boolean)">
            <summary>
             Clears all panel and column level filters, as specified.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.DetachDataSource(System.Boolean)">
            <summary>
             Detaches the grid from the bound DataSource.
             If 'keepData' is true, then the data is kept (but no longer bound) 
            </summary>
            <param name="keepData"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.GetEffectiveStyle">
            <summary>
            Gets the Effective style used for the panel.
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.InvalidateStyle">
            <summary>
            Invalidates the cached Style definition
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.NoRowsMarkupLinkClick(System.Object,System.EventArgs)">
            <summary>
            Occurs when a text markup link is clicked
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.GenerateColumns">
            <summary>
            Generates base column definitions from the associated DataSource.
            Note that all previous column definitions are left unaltered.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.GenerateColumns(DevComponents.DotNetBar.SuperGrid.GetNewGridColumn)">
            <summary>
            Generates column definitions from the associated DataSource, utilizing
            the provided callback to perform the actual creation of the associated GridColumn.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.ToString">
            <summary>
            ToString
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPanel.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.Expanded">
            <summary>
            Expanded
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.CellStyles">
            <summary>
            Style
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.RowHeaderText">
            <summary>
            Style
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.RowStyles">
            <summary>
            RowVisualStyles
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ActiveCell">
            <summary>
            Gets the current Active Cell (or null)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ActiveRow">
            <summary>
            Gets the current Active Row. This row will have the
            "Active Row" image presented in the row header (if
            ActiveRowImage is non-null).
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ActiveRowIndicatorStyle">
            <summary>
             Gets or sets how the Active Row
             is visually indicated in the RowHeader.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.AllowEdit">
            <summary>
            Gets or sets whether grid cells can be edited by the user. 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.AllowEmptyCellSelection">
            <summary>
            Gets or sets whether empty cells can be
            selected and interacted with by the user
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.AllowNullCellMerge">
            <summary>
            Gets or sets whether cells with null/empty values
            are allowed to be merged.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.AllowRowDelete">
            <summary>
            Gets or sets whether grid rows can be deleted by the user. 
            Selected rows are deleted by pressing the 'delete' key, and can
            be restored by pressing the 'shift-delete' key.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.AllowRowHeaderResize">
            <summary>
            Gets or sets whether grid row headers can be resized by the user.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.AllowRowInsert">
            <summary>
            Gets or sets whether grid rows can be inserted
            by the user. Rows can be inserted by selecting
            a row and pressing the 'insert' key.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.AllowRowResize">
            <summary>
            Gets or sets whether grid rows can be resized by the user
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.AutoExpandSetGroup">
            <summary>
             Gets or sets whether new SetGroups are automatically Expanded
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.AutoGenerateColumns">
            <summary>
            Gets or sets a whether columns are created automatically
            at run-time when the DataSource property is set
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.AutoHideDeletedRows">
            <summary>
            Gets or sets whether newly deleted rows are automatically hidden.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.AutoSelectDeleteBoundRows">
            <summary>
            Gets or sets whether the grid will automatically select the
            next positionally available row following a bound data row deletion.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.AutoSelectNewBoundRows">
            <summary>
            Gets or sets whether newly added rows
            (when bound to a data source) are automatically selected.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.Bounds">
            <summary>
             Gets the scroll adjusted bounds of the Grid Panel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.CanDeleteRow">
            <summary>
             Gets whether row deletes are permitted
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.CanInsertRow">
            <summary>
             Gets whether row inserts are permitted
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.CanMoveRow">
            <summary>
             Gets whether row moves are permitted
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.Caption">
            <summary>
             Gets or sets the Caption, which is displayed at the
             very top of the panel.  The Caption is fixed
             and it does not move as grid rows are scrolled.
            </summary>
            <exception cref="T:System.ArgumentException"></exception>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.CellDragBehavior">
            <summary>
            Gets or sets the behavior when a cell is clicked and dragged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.CellMergeMode">
            <summary>
            Gets or sets the default type of cell
            merging that is supported by each cell in the panel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.CellMergeOrder">
            <summary>
            Gets or sets the default cell merging order that is supported by each
            cell in the panel (i.e. horizontal then vertical or vertical then horizontal)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.CheckBoxes">
            <summary>
            Get or sets whether CheckBoxes are present in the grid rows.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.CheckBoxSize">
            <summary>
             Gets or sets the CheckBox size
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.CollapseImage">
            <summary>
            Gets or sets the default TreeButton collapse image
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ColumnAutoSizeMode">
            <summary>
            Gets or sets a value indicating the default mode for determining column widths
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ColumnHeader">
            <summary>
            Gets the column header for the grid. The Column Header
            is the container object responsible for the definition
            and control of the Column Header row (container each
            column header text, etc).
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ColumnHeaderClickBehavior">
            <summary>
            Gets or sets the behavior when a column header is clicked.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ColumnDragBehavior">
            <summary>
            Gets or sets the behavior when a column header is dragged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.Columns">
            <summary>
            Gets a reference to the collection of grid columns
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ColumnGroupHeaderClickBehavior">
            <summary>
            Gets or sets the behavior when a column GroupHeader is clicked.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.DataMember">
            <summary>
             Gets or sets the name of the list or table
             in the data source that the grid is bound to.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.DataSource">
            <summary>
             Gets or sets the data source that the grid is bound to
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.DefaultPostDetailRowHeight">
            <summary>
             Gets or sets the default post-detail row height (default is 0)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.DefaultPreDetailRowHeight">
            <summary>
             Gets or sets the default pre-detail row height (default is 0)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.DefaultRowHeight">
            <summary>
             Gets or sets the default row height (default is 20, 0 to autoSize)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.DefaultVisualStyles">
            <summary>
             Gets or sets the Default Visual Styles for each grid element
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.DeletedRowCount">
            <summary>
             Gets the current number of deleted rows.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.DeletedRows">
            <summary>
             IEnumerable that can be used to enumerate through
             all root level deleted rows
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.EnableCellExpressions">
            <summary>
            Gets or sets whether cell expression evaluation is enabled.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.EnableCellMerging">
            <summary>
            Gets or sets whether cell merging is enabled.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.EnableCellRangeMarkup">
            <summary>
            Gets or sets whether text-markup support is enabled for
            merged cell text display (CellRange FormattedValue text).
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.EnableColumnFiltering">
            <summary>
            Gets or sets whether column level filtering is enabled.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.EnableDiscreteBoundRows">
            <summary>
            Gets or sets whether discrete bound row suport is enabled.
            This property permits each bound row to be a separate object type.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.EnableFiltering">
            <summary>
            Gets or sets whether filtering in general is enabled.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.EnableNoRowsMarkup">
            <summary>
            Gets or sets whether text-markup support is enabled for the NoRowsText
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.EnableRowFiltering">
            <summary>
            Gets or sets whether row level filtering is enabled.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.EnableSelectionBuffering">
            <summary>
            Gets or sets whether selection buffering is enabled, such
            that only one SelectionChange event is raised per output refresh.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.EnsureVisibleAfterGrouping">
            <summary>
            Gets or sets whether EnsureVisible will be called
            for the current ActiveRow following a grouping operation.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.EnsureVisibleAfterSort">
            <summary>
            Gets or sets whether EnsureVisible will be called
            for the current ActiveRow following a sort operation.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.EnterKeySelectsNextRow">
            <summary>
            Gets or sets whether the EnterKey selects the
            next available row, or stays on the current row
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ExpandButtonType">
            <summary>
            Gets or sets the ExpandButton Type
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ExpandImage">
            <summary>
            Gets or sets the default TreeButton expand image
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.Filter">
            <summary>
            Gets or sets the Filter item which is displayed just below
            the Column Header. The Filter area is fixed and it does
            not move as grid rows are scrolled.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.FilterExpr">
            <summary>
            Gets or sets the Filter expression.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.FilterIgnoreMatchCase">
            <summary>
            Gets or sets the filter data match ignores string case
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.FilterLevel">
            <summary>
            Gets or sets the column Filtering level. 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.FilterMatchType">
            <summary>
            Gets or sets the filter data match type (how data elements are matched)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.FirstFrozenColumn">
            <summary>
            Gets a reference to the first Frozen column
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.FirstOnScreenColumn">
            <summary>
            Gets a reference to the first on-screen column
            (after frozen columns)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.FirstVisibleColumn">
            <summary>
            Gets a reference to the first visible column
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.FlatCheckedRows">
            <summary>
             IEnumerable that can be used to enumerate through
             all levels of checked rows as though they were at
             the root level
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.FlatCheckedExpandedRows">
            <summary>
             IEnumerable that can be used to enumerate through
             all levels of checked, expanded rows as though they
             were at the root level
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.FlatDeletedRows">
            <summary>
             IEnumerable that can be used to enumerate through
             all levels of deleted rows as though they were at
             the root level
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.FlatDirtyRows">
            <summary>
             IEnumerable that can be used to enumerate through
             all levels of dirty rows as though they were at
             the root level
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.FlatDirtyExpandedRows">
            <summary>
             IEnumerable that can be used to enumerate through
             all levels of dirty, expanded rows as though they were at
             the root level
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.FlatExpandedRows">
            <summary>
             IEnumerable that can be used to enumerate through
             all levels of expanded rows as though they were at
             the root level
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.FlatRows">
            <summary>
             IEnumerable that can be used to enumerate through
             all levels of rows as though they were at the root level
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.FlatSelectedRows">
            <summary>
             IEnumerable that can be used to enumerate through
             all levels of selected rows as though they were at
             the root level
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.FlatSelectedExpandedRows">
            <summary>
             IEnumerable that can be used to enumerate through
             all levels of selected, expanded rows as though they
             were at the root level
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.FlatVisibleExpandedRows">
            <summary>
             IEnumerable that can be used to enumerate through
             all levels of visible, expanded rows as though they
             were at the root level
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.FlatVisibleRows">
            <summary>
             IEnumerable that can be used to enumerate through
             all levels of visible rows as though they
             were at the root level
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.FocusCuesEnabled">
            <summary>
            Gets or sets whether focus cues are displayed on the focused element
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.Footer">
            <summary>
            Gets or sets the Footer, which is displayed at the
            very bottom of the panel.  The Footer is fixed
            and it does not move as grid rows are scrolled.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.FrozenColumnCount">
            <summary>
            Gets or sets the number of columns that are frozen, counted
            from the left. Frozen columns are always visible regardless
            of the horizontal scroll position.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.FrozenRowCount">
            <summary>
            Gets or sets the number of rows that are frozen, counted
            from the top. Frozen rows are always visible regardless
            of the vertical scroll position.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.GridLines">
            <summary>
            Gets or sets which grid lines (horizontal and vertical) are displayed in the grid
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.GroupByRow">
            <summary>
            Gets or sets the row which is displayed just above
            the Column Header, and is used to permit display and user control
            of column grouping. The GroupByRow is fixed and it does
            not move as grid rows are scrolled.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.GroupColumns">
            <summary>
            Gets or sets the panel Group columns
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.GroupHeaderClickBehavior">
            <summary>
            Gets or sets the behavior when a Group header is clicked
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.GroupHeaderKeyBehavior">
            <summary>
            Gets or sets the behavior when a Group header
            is encountered during keyboard navigation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.GroupHeaderHeight">
            <summary>
            Gets or sets the height of the Group header 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.GroupRowHeaderVisibility">
            <summary>
            Gets or sets whether the Group RowHeader is displayed
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.GroupSortElement">
            <summary>
            Gets or sets the group element used to sort panel groups. 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.Header">
            <summary>
            Gets or sets the Header item, which is displayed 
            just below the column header. The Header item is fixed
            and does not move as grid rows are scrolled.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ImageList">
            <summary>
            Gets or sets the ImageList used by the Grid elements
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ImmediateResize">
            <summary>
             Gets or sets whether resizing panel columns
             and rows occurs immediately
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.IndentGroups">
            <summary>
            Gets or sets whether Nested Groups are indented
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.InitialActiveRow">
            <summary>
            Gets or sets the initial Active Row
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.InitialSelection">
            <summary>
            Gets or sets the initial relative row / cell selection
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.InsertRowImage">
            <summary>
            Gets or sets the default image to display
            in the row header to denote the Insertion Row.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.InsertRowImageIndex">
            <summary>
            Gets or sets the Insert Row image index
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.InsertTempRowImage">
            <summary>
            Gets or sets the default image to display
            in the row header to denote a temporary insert Row.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.InsertTempRowImageIndex">
            <summary>
            Gets or sets the Insert Temp Row image index
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.IsColumnFiltered">
            <summary>
            Gets whether the GridPanel has column-level filtering
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.IsFiltered">
            <summary>
            Gets whether the GridPanel is being filtered
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.IsGrouped">
            <summary>
            Gets whether the GridPanel is currently Grouped
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.IsRowFiltered">
            <summary>
            Gets whether the GridPanel has row-level filtering
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.IsSortable">
            <summary>
            Gets whether the GridPanel is able to be sorted
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.IsSubPanel">
            <summary>
            Gets whether the GridPanel is a subordinate / nested grid.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.KeepRowsSorted">
            <summary>
            Gets or sets whether grid rows are kept sorted
            on row deactivation, following a cell's Value change
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.KeyboardEditMode">
            <summary>
            Gets or sets how cell editing is initiated by the keyboard
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.LastFrozenColumn">
            <summary>
            Gets a reference to the last Frozen column
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.LastOnScreenColumn">
            <summary>
            Gets a reference to the last on-screen column
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.LastVisibleColumn">
            <summary>
            Gets a reference to the last visible column
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.LevelIndentSize">
            <summary>
            Gets or sets the amount to indent the grid data when
            a new grid level is encountered
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.MaxRowHeight">
            <summary>
            Gets or sets the maximum row height
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.MinRowHeight">
            <summary>
            Gets or sets the minimum row height
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.MouseEditMode">
            <summary>
            Gets or sets how cell editing is initiated by the mouse
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.MultiSelect">
            <summary>
             Gets or sets whether multiple items can be selected by the user
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.Name">
            <summary>
            Gets or sets the Grid Panel name
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.NestedListScanTypes">
            <summary>
            Gets or sets what IList "types" are scanned by the SuperGrid 
            when looking for possible "child" sub-panels in a bound IList data source.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.NoRowsText">
            <summary>
            Gets or sets the text to show when there are no visible data Rows in the grid
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.NullString">
            <summary>
            Gets or sets how null values are displayed 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.NullValue">
            <summary>
            Gets or sets how null values are interpreted 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.OnlySendFinalRowActivatedEvents">
            <summary>
            Gets or sets whether RowActivated events are sent for all rows
            in the given parent chain, or only for the final active row.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.OnScreenColumns">
            <summary>
             IEnumerable that can be used to enumerate through
             the current on-screen columns
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.OnScreenRows">
            <summary>
             IEnumerable that can be used to enumerate through
             the current on-screen rows
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.PrimaryColumn">
            <summary>
            Gets the primary column. The Primary Columns will
            contain (if enabled) the row checkbox and Tree lines
            and expand / collapse button.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.PrimaryColumnIndex">
            <summary>
            Gets or sets the index of the primary column
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ProcessChildRelations">
            <summary>
            Gets or sets how the SuperGrid processes child relations
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.RowDoubleClickBehavior">
            <summary>
            Gets or sets the behavior when a row is double clicked
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.RowDragBehavior">
            <summary>
            Gets or sets the behavior when a row header is clicked and dragged
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.RowEditMode">
            <summary>
            Gets or sets whether editing is initiated on the primary cell
            or the cell under the mouse when row level editing is enabled.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.RowFocusMode">
            <summary>
            Gets or sets what portion of the row is "focused" when active.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.RowHeaderIndexOffset">
            <summary>
            Gets or sets the offset value used
            to adjust the Index displayed in the row header.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.RowHeaderWidth">
            <summary>
            Gets or sets the width of the row header
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.RowHighlightType">
            <summary>
            Gets or sets the type of highlighting
            to use  when a row is selected
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.RowWhitespaceClickBehavior">
            <summary>
            Gets or sets the behavior when the user
            clicks the mouse in the row whitespace
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.SelectedCellCount">
            <summary>
             Gets the current selected cell count
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.SelectedCells">
            <summary>
             IEnumerable that can be used
             to enumerate through all currently selected cells
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.SelectedColumnCount">
            <summary>
             Gets the current selected column count
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.SelectedColumns">
            <summary>
             IEnumerable that can be used
             to enumerate through all currently selected columns
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.SelectedRowCount">
            <summary>
             Gets the current selected row count
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.SelectedRows">
            <summary>
             IEnumerable that can be used
             to enumerate through all currently selected rows
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.SelectionGranularity">
            <summary>
            Gets or sets whether element selection
            is at the row or cell level
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ShowCellInfo">
            <summary>
            Gets or sets whether to show  Cell Info Image and Text (if defined).
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ShowColumnHeader">
            <summary>
            Gets or sets whether the Column Header is displayed
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ShowDropShadow">
            <summary>
            Gets or sets whether nested Grid Panels display a drop shadow
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ShowEditingImage">
            <summary>
            Gets or sets whether the EditingRowImage is
            displayed in the row header of the cell being edited. 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ShowGroupExpand">
            <summary>
            Gets or sets whether the expand button is shown in group headers 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ShowGroupUnderline">
            <summary>
            Gets or sets whether the Group header text is underlined 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ShowInsertRow">
            <summary>
            Gets or sets whether the insert row is displayed
            at the bottom of the panel for users to add new rows
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ShowInsertRowImage">
            <summary>
            Gets or sets whether the InsertRowImage is
            displayed in the row header of the Insert Row. 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ShowRowInfo">
            <summary>
            Gets or sets whether to show Row Info Image and  (if defined)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ShowRowHeaders">
            <summary>
            Gets or sets whether row headers are displayed
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ShowRowGridIndex">
            <summary>
            Gets or sets whether row
            GridIndex values are displayed in the row headers.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ShowRowDirtyMarker">
            <summary>
            Gets or sets whether the DirtyRow marker is displayed,
            signifying that the row data has been changed by the user
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ShowToolTips">
            <summary>
            Gets or sets whether tooltips are shown
            for cell data that is truncated by the display
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ShowTreeButtons">
            <summary>
            Gets or sets whether expand / collapse
            buttons are shown for rows containing nested rows 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ShowTreeLines">
            <summary>
            Gets or sets whether hierarchical tree-lines
            are shown connecting grid rows 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.ShowWhitespaceRowLines">
            <summary>
            Gets or sets whether the row lines are displayed in the Whitespace
            area following the last visible column in the grid
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.SizingStyle">
            <summary>
            Gets or sets which Visual Display Style to use for element sizing
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.SortCycle">
            <summary>
            Gets or sets how each column sort direction cycles
            when the column header is clicked to sort.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.SortColumns">
            <summary>
            Gets a reference to the list of columns to use for sorting the grid data.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.SortLevel">
            <summary>
            Gets or sets the column sorting level. 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.SortUsingHiddenColumns">
            <summary>
             Gets or sets whether hidden Columns
             are used when sorting the grid data
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.Title">
            <summary>
            Gets or sets the item which is displayed just above
            the Column Header. The Title area is fixed and it does
            not move as grid rows are scrolled.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.TopLeftHeaderSelectBehavior">
            <summary>
            Gets or sets the behavior that occurs when
            the top left header is selected by the user
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.UseAlternateColumnStyle">
            <summary>
            Gets or sets whether the AlternateColumn Style is used
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.UseAlternateRowStyle">
            <summary>
            Gets or sets whether the AlternateRow Style is used
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.VirtualMode">
            <summary>
             Gets or sets whether the grid data is virtualized (i.e. external to the grid)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.VirtualRowCount">
            <summary>
             Gets or sets the number of virtual grid rows
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.VirtualRowHeight">
            <summary>
             Gets or sets the height of every virtual row
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.VirtualRows">
            <summary>
             Gets the Virtual Mode rows collection object
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.VisibleColumnCount">
            <summary>
             Gets the current visible column count
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.VisibleRowCount">
            <summary>
             Gets the current visible row count
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.WhitespaceClickBehavior">
            <summary>
            Gets or sets the behavior when the user
            clicks the mouse in the grid panel whitespace
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.InternalDeletedRows">
            <summary>
             InternalDeletedRows
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPanel.NoRowsPlainText">
            <summary>
            Gets plain text without text-markup (if text-markup is used in NoRowsText)
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.IsVisibleToSuperGrid">
            <summary>
            Attribute to control the visibility of individual fields
            or properties in an IList data source to the SuperGrid.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.IsVisibleToSuperGrid.#ctor(System.Boolean)">
            <summary>
            IsVisibleToSuperGrid
            </summary>
            <param name="visible"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.IsVisibleToSuperGrid.Visible">
            <summary>
            Visible
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.ActiveRowIndicatorStyle">
            <summary>
             ActiveRowIndicatorStyle
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ActiveRowIndicatorStyle.None">
            <summary>
             No indicator will be displayed.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ActiveRowIndicatorStyle.Image">
            <summary>
             An image will be displayed.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ActiveRowIndicatorStyle.Highlight">
            <summary>
             The Row Header will be highlighted.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ActiveRowIndicatorStyle.Both">
            <summary>
             An image will be displayed and the
             Row Header will be highlighted.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.CellDragBehavior">
            <summary>
             Specifies the resultant behavior
             of clicking and dragging on a grid cell
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CellDragBehavior.None">
            <summary>
             Dragging will have no effect
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.CellDragBehavior.ExtendSelection">
            <summary>
             Dragging will extend the selection
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.ColumnHeaderClickBehavior">
            <summary>
             Specifies the resultant behavior
             of clicking on a column header
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ColumnHeaderClickBehavior.None">
            <summary>
             Clicking on a column header will have no effect
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ColumnHeaderClickBehavior.Select">
            <summary>
             Clicking on a column header will select the
             column, and dragging will extend the selection
             if ColumnDragBehavior is set to ExtendClickBehavior
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ColumnHeaderClickBehavior.SortAndReorder">
            <summary>
             Clicking on a column header will sort the grid using
             that column, or will reorder the column if ColumnDragBehavior
             is set to ExtendClickBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.ColumnDragBehavior">
            <summary>
             Specifies the resultant behavior
             of dragging a column header
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ColumnDragBehavior.None">
            <summary>
             Dragging on a column header will have no effect
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ColumnDragBehavior.ExtendClickBehavior">
            <summary>
             Dragging a column header will
             extend the set ColumnHeaderClickBehavior
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.FilterLevel">
            <summary>
            FilterLevel
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterLevel.None">
            <summary>
            No data filtered
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterLevel.Root">
            <summary>
            Root level data filtered
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterLevel.RootConditional">
            <summary>
            Root level data filtered
            conditional upon Rows collection being empty
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterLevel.Expanded">
            <summary>
            Expanded level data filtered
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterLevel.All">
            <summary>
            All data filtered
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterLevel.AllConditional">
            <summary>
            All data filtered, Root Level data filtered
            conditional upon Rows collection being empty
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.FilterMatchType">
            <summary>
             Specifies what match style to use when filtering data elements
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterMatchType.NotSet">
            <summary>
             Not set
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterMatchType.None">
            <summary>
             No special matching
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterMatchType.RegularExpressions">
            <summary>
             Regular Expression matching
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.FilterMatchType.Wildcards">
            <summary>
             Wildcard matching
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridLines">
            <summary>
             Specifies which grid lines are displayed
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridLines.None">
            <summary>
             No grid lines are displayed
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridLines.Horizontal">
            <summary>
             Only horizontal grid lines are displayed
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridLines.Vertical">
            <summary>
             Only vertical grid lines are displayed
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridLines.Both">
            <summary>
             Both horizontal and vertical grid lines are displayed
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GroupChangedAction">
            <summary>
             Specifies how the panel grouping has changed
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupChangedAction.Add">
            <summary>
             Group added
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupChangedAction.Remove">
            <summary>
             Group removed
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupChangedAction.Reset">
            <summary>
             Reset - all items cleared
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GroupHeaderClickBehavior">
            <summary>
             Specifies the behavior when a user
             clicks on a group header
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupHeaderClickBehavior.None">
            <summary>
             Clicking on a group header will have no effect
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupHeaderClickBehavior.ExpandCollapse">
            <summary>
             Clicking on a header will
             expand or collapse the group
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupHeaderClickBehavior.Select">
            <summary>
             Clicking on a group heading will select the header
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupHeaderClickBehavior.SelectAll">
            <summary>
             Clicking on a group heading will
             select all the first-level rows contained in the group
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GroupHeaderKeyBehavior">
            <summary>
             Specifies the behavior when a user
             moves via the keyboard onto a group header
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupHeaderKeyBehavior.Skip">
            <summary>
             Header will be skipped
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupHeaderKeyBehavior.Select">
            <summary>
             Header will be selected
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GroupSortElement">
            <summary>
             Specifies the group element used to sort panel groups.
            </summary>
        </member>
        <!-- Badly formed XML comment ignored for member "F:DevComponents.DotNetBar.SuperGrid.GroupSortElement.GroupId" -->
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupSortElement.GroupText">
            <summary>
             Sort by Group Text
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GroupSortElement.CellValue">
            <summary>
             Sort by associated cell Value
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.KeyboardEditMode">
            <summary>
             Which keyboard actions will start a cell edit operation
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.KeyboardEditMode.None">
            <summary>
             No keyboard action will initiate an edit
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.KeyboardEditMode.EditOnKeystroke">
            <summary>
             Edit initiated when any alphanumeric key
             is pressed while the cell has focus
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.KeyboardEditMode.EditOnF2">
            <summary>
             Edit initiated when F2 is pressed while the cell
             has focus. This mode places the selection point at
             the end of the cell contents
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.KeyboardEditMode.EditOnKeystrokeOrF2">
            <summary>
             Editing begins when any alphanumeric key
             or F2 is pressed while the cell has focus
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.KeyboardEditMode.EditOnEntry">
            <summary>
             Editing begins on entry to a cell
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.MouseEditMode">
            <summary>
             Which mouse actions will start a cell edit operation
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.MouseEditMode.None">
            <summary>
             No mouse action will initiate an edit
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.MouseEditMode.SingleClick">
            <summary>
             Single clicking a cell will initiate an edit
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.MouseEditMode.DoubleClick">
            <summary>
             Double clicking a cell will initiate an edit
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.NestedListScanTypes">
            <summary>
             Specifies what IList "types" are scanned when looking
             for possible "child" sub-panel IList entries.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.NestedListScanTypes.None">
            <summary>
             No IList "types" are scanned
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.NestedListScanTypes.Fields">
            <summary>
             IList "Fields" are scanned
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.NestedListScanTypes.Properties">
            <summary>
             IList "Properties" are scanned
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.NestedListScanTypes.FieldsAndProperties">
            <summary>
             Both IList "Fields" and "Properties" are scanned
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.NullValue">
            <summary>
             Specifies how null values are interpreted 
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.NullValue.NullReference">
            <summary>
             A null is interpreted to be a null object reference
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.NullValue.DBNull">
            <summary>
             A null is interpreted to be an instance of DBNull.Value
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.PanelArea">
            <summary>
             PanelArea
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.PanelArea.InContent">
            <summary>
             In Content
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.PanelArea.InWhiteSpace">
            <summary>
             In WhiteSpace
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.ProcessChildRelations">
            <summary>
             Specifies the conditions under which
             encountered child relations will be processed 
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ProcessChildRelations.Always">
            <summary>
             Always
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ProcessChildRelations.Never">
            <summary>
             Never
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ProcessChildRelations.WhenDataPresent">
            <summary>
             Only when data present
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.RelativeRow">
            <summary>
             Relative row (cardinality)
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RelativeRow.None">
            <summary>
             No Row
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RelativeRow.FirstRow">
            <summary>
             First Row
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RelativeRow.InsertionRow">
            <summary>
             Insertion Row
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RelativeRow.LastRow">
            <summary>
             Last Row
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.RelativeSelection">
            <summary>
             RelativeSelection
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RelativeSelection.None">
            <summary>
             None
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RelativeSelection.FirstCell">
            <summary>
             FirstCell
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RelativeSelection.LastCell">
            <summary>
             LastCell
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RelativeSelection.PrimaryCell">
            <summary>
             PrimaryCell
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RelativeSelection.Row">
            <summary>
             Row
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.RowDragBehavior">
            <summary>
             Specifies the resultant behavior
             of clicking and dragging on a row header
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowDragBehavior.None">
            <summary>
             Dragging on a row header will have no effect
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowDragBehavior.ExtendSelection">
            <summary>
             Dragging a row header will extend the selection
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowDragBehavior.Move">
            <summary>
             Dragging a row header will initiate a row move that
             will be constrained to stay within the current group.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowDragBehavior.GroupMove">
            <summary>
             Dragging a row header will initiate a row move that
             can cross group row boundaries
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.RowEditMode">
            <summary>
             Defines whether editing is initiated on the primary cell
             or the cell under the mouse when row level editing is enabled
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowEditMode.PrimaryCell">
            <summary>
             Initiate edit on PrimaryCell
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowEditMode.ClickedCell">
            <summary>
             Initiate edit on clicked cell
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.RowFocusMode">
            <summary>
             Defines what portion of the row is "focused".
             Default is "FullRow"
             
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowFocusMode.FullRow">
            <summary>
             Full row will be focused
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowFocusMode.CellsOnly">
            <summary>
             Only cells will be focused
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.RowHighlightType">
            <summary>
             Specifies the type of highlighting
             to employ when a grid row is selected
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowHighlightType.None">
            <summary>
             No highlighting
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowHighlightType.Full">
            <summary>
             Entire row will be Highlighted
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowHighlightType.PrimaryColumnOnly">
            <summary>
             Only the PrimaryColumn
             cell contents will be Highlighted
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.RowWhitespaceClickBehavior">
            <summary>
             Specifies the resultant behavior
             of clicking in the row whitespace area
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowWhitespaceClickBehavior.None">
            <summary>
             No effect
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowWhitespaceClickBehavior.ClearSelection">
            <summary>
             Current selection is cleared
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowWhitespaceClickBehavior.ExtendSelection">
            <summary>
             Extends the row selection
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.SelectionGranularity">
            <summary>
             Determines whether row or cell selection is permitted with in the grid
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SelectionGranularity.Cell">
            <summary>
             Individual cells may be selected
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SelectionGranularity.Row">
            <summary>
             Only entire rows may be selected
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SelectionGranularity.RowWithCellHighlight">
            <summary>
             Only entire rows may be selected, but individual
             cells will be highlighted when mouse is over cell.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.SortCycle">
            <summary>
            SortCycle
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SortCycle.NotSet">
            <summary>
            Not Set (default is AscDesc)
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SortCycle.AscDesc">
            <summary>
            Cycles between Ascending and Descending
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SortCycle.AscDescNone">
            <summary>
            Cycles between Ascending, Descending, and None
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.SortDirection">
            <summary>
            SortDirection
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SortDirection.None">
            <summary>
            No sorting
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SortDirection.Ascending">
            <summary>
            Ascending
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SortDirection.Descending">
            <summary>
            Descending
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.SortLevel">
            <summary>
            SortLevel
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SortLevel.None">
            <summary>
            No data sorting
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SortLevel.Root">
            <summary>
            Root level data
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SortLevel.Expanded">
            <summary>
            Expanded level data
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.SortLevel.All">
            <summary>
            All data
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.TopLeftHeaderSelectBehavior">
            <summary>
             TopLeftHeaderSelectBehavior
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.TopLeftHeaderSelectBehavior.NoSelection">
            <summary>
             No selection
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.TopLeftHeaderSelectBehavior.SelectAllCells">
            <summary>
             No selection
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.TopLeftHeaderSelectBehavior.SelectAllColumns">
            <summary>
             All columns will be selected
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.TopLeftHeaderSelectBehavior.SelectAllRows">
            <summary>
             All rows will be selected
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.TopLeftHeaderSelectBehavior.Deterministic">
            <summary>
             Element selection will be determined by
             the current set SelectionGranularity
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.WhitespaceClickBehavior">
            <summary>
             Specifies the resultant behavior
             of clicking in the grid panel whitespace area
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.WhitespaceClickBehavior.None">
            <summary>
             No effect
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.WhitespaceClickBehavior.ClearSelection">
            <summary>
             Current selection is cleared
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.BlankExpandableObjectConverter">
            <summary>
             BlankExpandableObjectConverter
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.BlankExpandableObjectConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
            <summary>
             ConvertTo
            </summary>
            <param name="context"></param>
            <param name="culture"></param>
            <param name="value"></param>
            <param name="destinationType"></param>
            <returns></returns>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRenderInfo">
            <summary>
            Provides the rendering information for grid render pass.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridRenderInfo.Graphics">
            <summary>
            Gets or sets the reference to Graphics object used for rendering.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridRenderInfo.ClipRectangle">
            <summary>
            Gets or sets the clip rectangle.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.GridRenderInfo.RightToLeft">
            <summary>
            Gets or sets whether right-to-left layout is in effect.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRenderInfo.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle)">
            <summary>
            Initializes a new instance of the GridRenderInfo class.
            </summary>
            <param name="graphics">Graphics object</param>
            <param name="clipRectangle">Control clip rectangle</param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRow">
            <summary>
            Represents a grid row consisting of one or more grid cells.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.#ctor">
            <summary>
            Creates a new GridRow
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.#ctor(System.String)">
            <summary>
            Creates a new GridRow
            </summary>
            <param name="text"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.#ctor(System.Collections.Generic.IEnumerable{DevComponents.DotNetBar.SuperGrid.GridCell})">
            <summary>
            Creates a new GridRow
            </summary>
            <param name="cells"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.#ctor(System.Collections.Generic.IEnumerable{System.Object})">
            <summary>
            Creates a new GridRow
            </summary>
            <param name="values"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.#ctor(System.Object[])">
            <summary>
            Creates a new GridRow
            </summary>
            <param name="values"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.MeasureOverride(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Size)">
            <summary>
            Performs the layout of the item
            and sets the Size property to size that item will take.
            </summary>
            <param name="layoutInfo">Layout information.</param>
            <param name="stateInfo"></param>
            <param name="constraintSize"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.ArrangeOverride(DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,DevComponents.DotNetBar.SuperGrid.GridLayoutStateInfo,System.Drawing.Rectangle)">
            <summary>
            Performs the arrange pass layout of the
            item when final position and size of the item has been set.
            </summary>
            <param name="layoutInfo">Layout information.</param>
            <param name="stateInfo"></param>
            <param name="layoutBounds">Layout bounds</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.RenderOverride(DevComponents.DotNetBar.SuperGrid.GridRenderInfo)">
            <summary>
            Performs drawing of the item and its children
            </summary>
            <param name="renderInfo">Holds contextual rendering information.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.RenderRowHeader(DevComponents.DotNetBar.SuperGrid.GridRenderInfo,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle,System.Drawing.Rectangle)">
            <summary>
            RenderRowHeader
            </summary>
            <param name="renderInfo"></param>
            <param name="panel"></param>
            <param name="item"></param>
            <param name="pstyle"></param>
            <param name="r"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.RenderSubItems(DevComponents.DotNetBar.SuperGrid.GridRenderInfo,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle,System.Boolean,System.Boolean)">
            <summary>
            RenderSubItems
            </summary>
            <param name="renderInfo"></param>
            <param name="panel"></param>
            <param name="pstyle"></param>
            <param name="isSubPanel"></param>
            <param name="isFrozen"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.RenderRowBackground(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridContainer,System.Drawing.Rectangle)">
            <summary>
            RenderRowBackground
            </summary>
            <param name="g"></param>
            <param name="item"></param>
            <param name="r"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.RenderRowCheckBox(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            RenderRowCheckBox
            </summary>
            <param name="g"></param>
            <param name="panel"></param>
            <param name="ipanel"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.RenderRowBorder(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,System.Drawing.Rectangle)">
            <summary>
            RenderRowBorder
            </summary>
            <param name="g"></param>
            <param name="panel"></param>
            <param name="r"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.GetCell(System.Int32)">
            <summary>
             Gets the Row Cell for the given column index. If
             the cell does not exist,then null will be returned.
            </summary>
            <param name="columnIndex"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.GetCell(System.String)">
            <summary>
             Gets the Row Cell for the given column name. If
             the cell does not exist, null will be returned.
            </summary>
            <param name="name"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.GetCell(System.Int32,System.Boolean)">
            <summary>
             Gets the Row Cell for the given column index. If
             "includeEmpty" is true, and the cell does not exist
             (i.e. is empty) then a dummy empty cell will be created
             and returned.
            </summary>
            <param name="columnIndex"></param>
            <param name="includeEmpty"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.InternalMouseEnter(System.EventArgs)">
            <summary>
            InternalMouseEnter
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.InternalMouseLeave(System.EventArgs)">
            <summary>
            InternalMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.InternalMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
            InternalMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.InternalMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
            InternalMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.InternalMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
            InternalMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.GetHitArea(System.Drawing.Point)">
            <summary>
             This routine gets the RowArea 'HitArea' containing the
             given point (e.g. InCellCheckBox, InCellExpand, InRowHeader, etc).
            </summary>
            <param name="pt"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.GetElementAt(System.Int32,System.Int32)">
            <summary>
            Gets the row element containing the given coordinates.
            </summary>
            <param name="x"></param>
            <param name="y"></param>
            <returns>Element or null</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.GetCellAt(DevComponents.DotNetBar.SuperGrid.GridPanel,System.Int32,System.Int32)">
            <summary>
            Returns element at specified mouse coordinates
            </summary>
            <param name="panel"></param>
            <param name="x">Horizontal position</param>
            <param name="y">Vertical position</param>
            <returns>Reference to child element or null
            if no element at specified coordinates</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.CreateItemsCollection">
            <summary>
            Creates the GridItemsCollection that hosts the items.
            </summary>
            <returns>New instance of GridItemsCollection.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.DisposeItemsCollection(DevComponents.DotNetBar.SuperGrid.GridItemsCollection)">
            <summary>
            DisposeItemsCollection
            </summary>
            <param name="items"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.GetNextVisibleCell(DevComponents.DotNetBar.SuperGrid.GridCell)">
            <summary>
             This routine returns the next visible cell in the
             row, after the given cell.  If the given cell is null,
             the first visible cell in the row will be returned.
            </summary>
            <param name="cell"></param>
            <returns>Next cell, or null</returns>
            <exception cref="T:System.Exception"></exception>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.GetPrevVisibleCell(DevComponents.DotNetBar.SuperGrid.GridCell)">
            <summary>
             This routine returns the previous visible cell in the
             row, prior to the given cell.  If the given cell is null,
             the last visible cell in the row will be returned.
            </summary>
            <param name="cell"></param>
            <returns>Previous cell, or null</returns>
            <exception cref="T:System.Exception"></exception>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.GetMaximumRowHeight">
            <summary>
             This routine calculates and returns the maximum
             row height based upon the individual measured heights
             of each visible cell in the row.
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.GetMaximumRowHeight(DevComponents.DotNetBar.SuperGrid.GridColumn[])">
            <summary>
             This routine calculates and returns the maximum
             row height based upon the individual measured heights
             of each cell in the row, based upon the given array of
             columns to included in the calculation process.
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.CancelCapture">
            <summary>
            Cancels any inprogress operations (resize, reorder)
            that may have the mouse captured.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.InvalidateCellStyle">
            <summary>
            Invalidates the cached Style
            definition for all defined StyleTypes
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.InvalidateCellStyle(DevComponents.DotNetBar.SuperGrid.Style.StyleType)">
            <summary>
            Invalidate the cached Style
            definition for the given StyleType
            </summary>
            <param name="type"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.InvalidateRender">
            <summary>
            InvalidateRender
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.InvalidateRender(System.Drawing.Rectangle)">
            <summary>
            InvalidateRender
            </summary>
            <param name="bounds"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.ToString">
            <summary>
            ToString
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRow.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.AllowEdit">
            <summary>
            Gets or sets whether the row cells can be edited by the user. 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.Bounds">
            <summary>
             Gets the scroll adjusted bounds of the row
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.Checked">
            <summary>
             Gets or sets the row CheckBox checked state
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.Cells">
            <summary>
            Gets a reference to the Cells collection. Cells in the
            Cells member are not allocated by default, but are only
            done so if the cell Values are provided to the GridRow
            constructor at row allocation time. Row cells can be allocated
            later, and assigned (or added) to the current Cells collection.
            Cells are sequentially allocated, thus you can not allocate and
            assign Cell 10 without also having allocated and assigned cells 0 - 9.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.DataItem">
            <summary>
             Gets the object to which the row is bound.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.EditorDirty">
            <summary>
             Gets or sets whether the value being edited has changed.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.EffectivePreDetailRowHeight">
            <summary>
             Gets the effective height of the "pre detail" portion of the
             row (the area at the bottom of the row).
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.EffectivePostDetailRowHeight">
            <summary>
             Gets the effective height of the "post detail" portion of the
             row (the area at the bottom of the row).
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.FirstFrozenCell">
            <summary>
            Gets a reference to the first Frozen cell
            or null if there is none.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.FirstOnScreenCell">
            <summary>
            Gets a reference to the first on-screen cell
            (after frozen columns) or null if there is none.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.FirstSelectableCell">
            <summary>
            Gets a reference to the first selectable cell
            or null if there is none defined.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.FirstVisibleCell">
            <summary>
            Gets a reference to the first visible cell
            or null if there is none defined.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.Item(DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
            Gets or sets Cell item at the given Column
            </summary>
            <param name="column">Column containing the cell</param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.Item(System.Int32)">
            <summary>
            Gets or sets Cell item at the given Column
            </summary>
            <param name="columnIndex">Column containing the cell</param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.Item(System.String)">
            <summary>
            Gets or sets Cell item at ColumnName index
            </summary>
            <param name="columnName">Name of Column containing the cell</param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.InfoImageBounds">
            <summary>
             Gets the bounds of the InfoImage
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.InfoText">
            <summary>
             Gets or sets the informational text associated with
             the row. If the InfoText is non-null, then the rows
             associated InfoImage is displayed in the RowHeader, with
             the InfoText being displayed as the ToolTip for the InfoImage.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.IsDeleted">
            <summary>
             Gets or sets whether the row has been marked as deleted.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.IsDetailRow">
            <summary>
             Gets whether the row is marked as a Group Detail row.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.IsInsertRow">
            <summary>
             Gets whether the row is the Insert Row.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.LastFrozenCell">
            <summary>
            Gets a reference to the last Frozen cell
            or null if there is none.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.LastOnScreenCell">
            <summary>
            Gets a reference to the last on-screen cell
            or null if there is none.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.LastSelectableCell">
            <summary>
            Gets a reference to the last selectable cell
            or null if there is none defined.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.LastVisibleCell">
            <summary>
            Gets a reference to the last visible cell
            or null if there is none defined.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.RowDirty">
            <summary>
             Gets or sets whether the row state has changed.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.IsRowFilteredOut">
            <summary>
             Gets whether the row has been filtered out.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.RowHeight">
            <summary>
             Gets or sets the height of the row (0 denotes AutoSize, -1 denotes NotSet).
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.PostDetailRowHeight">
            <summary>
             Gets or sets the height of the "post detail" portion of the
             row (the area at the bottom of the row). -1 denotes NotSet.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.RowPreDetailHeight">
            <summary>
             Gets or sets the height of the "pre detail" portion of the
             row (the area at the bottom of the row). -1 denotes NotSet.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.SelectedCells">
            <summary>
             Gets an array of the currently Selected Cells.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.Visible">
            <summary>
            Gets or sets whether the row is visible.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.WhiteSpaceBounds">
            <summary>
             Gets the row WhiteSpace Bounds (the area
             past the end of the last defined column).
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.RowNeedsGrouped">
            <summary>
             RowNeedsGrouped
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.RowNeedsSorted">
            <summary>
             RowNeedsSorted
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRow.RowNeedsStored">
            <summary>
             RowNeedsStored
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.RowArea">
            <summary>
             RowArea
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowArea.NoWhere">
            <summary>
             NoWhere
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowArea.InCellCheckBox">
            <summary>
             InCellCheckBox
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowArea.InCellExpand">
            <summary>
             InCellExpand
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowArea.InRowCheckBox">
            <summary>
             InRowCheckBox
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowArea.InRowHeader">
            <summary>
             InRowHeader
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowArea.InRowInfo">
            <summary>
             InRowInfo
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowArea.InRowResize">
            <summary>
             InRowResize
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowArea.InContent">
            <summary>
             InContent
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowArea.InSubItem">
            <summary>
             InSubItem
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowArea.InWhiteSpace">
            <summary>
             InWhiteSpace
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.RowDoubleClickBehavior">
            <summary>
             Indicates what happens when a row is double clicked
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowDoubleClickBehavior.Activate">
            <summary>
             The row is activated
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RowDoubleClickBehavior.ExpandCollapse">
            <summary>
             The row is expanded or collapsed
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridVirtualRows">
            <summary>
            Defines the collection of Virtual Rows
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridVirtualRows.#ctor(DevComponents.DotNetBar.SuperGrid.GridContainer)">
            <summary>
             GridVirtualRowList
            </summary>
            <param name="container"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridVirtualRows.FreeRow(System.Int32)">
            <summary>
             FreeRow
            </summary>
            <param name="index"></param>
            <returns></returns>
            <exception cref="T:System.Exception"></exception>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridVirtualRows.IsCachedRow(System.Int32)">
            <summary>
             Gets whether the row is currently cached
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridVirtualRows.Clear">
            <summary>
             Clear
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridVirtualRows.MaxRowIndex">
            <summary>
             MaxRowIndex
            </summary>
            <exception cref="T:System.Exception"></exception>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridVirtualRows.Item(System.Int32)">
            <summary>
             Row indexer
            </summary>
            <param name="index"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridVirtualRows.VPageBucket.Item(System.Int32)">
            <summary>
             Row indexer
            </summary>
            <param name="index"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedAction">
            <summary>
            Defines change actions.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedAction.Add">
            <summary>
            Items were added.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedAction.Remove">
            <summary>
            Items were removed.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedAction.Replace">
            <summary>
            Items were replaced.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedAction.Move">
            <summary>
            Items were moved.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedAction.Reset">
            <summary>
            Collection was reset.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedEventHandler">
            <summary>
            Defines delegate for collection notification events.
            </summary>
            <param name="sender">Event sender.</param>
            <param name="e">Event arguments.</param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedEventArgs">
            <summary>
            Defines collection change notification event arguments.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedAction)">
            <summary>
            Create new instance of object.
            </summary>
            <param name="action">Action</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedAction,System.Collections.IList)">
            <summary>
            Creates new instance of object.
            </summary>
            <param name="action">Specifies action.</param>
            <param name="changedItems">List of changed items.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedAction,System.Object)">
            <summary>
            Creates new instance of object.
            </summary>
            <param name="action">Specifies action.</param>
            <param name="changedItem">Item that was changed.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedAction,System.Collections.IList,System.Collections.IList)">
            <summary>
            Creates new instance of object.
            </summary>
            <param name="action">Action.</param>
            <param name="newItems">New items in collection.</param>
            <param name="oldItems">Old items in collection.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedAction,System.Collections.IList,System.Int32)">
            <summary>
            Creates new instance of object.
            </summary>
            <param name="action">Action.</param>
            <param name="changedItems">List of changed items.</param>
            <param name="startingIndex">Starting index of change.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedAction,System.Object,System.Int32)">
            <summary>
            Creates new instance of object.
            </summary>
            <param name="action">Action</param>
            <param name="changedItem">Changed item</param>
            <param name="index">Index of change</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedAction,System.Object,System.Object)">
            <summary>
            Creates new instance of object.
            </summary>
            <param name="action">Action</param>
            <param name="newItem">New item</param>
            <param name="oldItem">Old item</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedAction,System.Collections.IList,System.Collections.IList,System.Int32)">
            <summary>
            Creates new instance of object.
            </summary>
            <param name="action">Action</param>
            <param name="newItems">New items.</param>
            <param name="oldItems">Removed items.</param>
            <param name="startingIndex">Starting index of change.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedAction,System.Collections.IList,System.Int32,System.Int32)">
            <summary>
            Creates new instance of object.
            </summary>
            <param name="action">Action</param>
            <param name="changedItems">Changed items</param>
            <param name="index">New index</param>
            <param name="oldIndex">Old index</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedAction,System.Object,System.Int32,System.Int32)">
            <summary>
            Creates new instance of object.
            </summary>
            <param name="action">Action</param>
            <param name="changedItem">Changed item</param>
            <param name="index">New index</param>
            <param name="oldIndex">Old index</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedAction,System.Object,System.Object,System.Int32)">
            <summary>
            Creates new instance of object.
            </summary>
            <param name="action">Action.</param>
            <param name="newItem">New item</param>
            <param name="oldItem">Old item</param>
            <param name="index">New index</param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedEventArgs.Action">
            <summary>
            Gets the type of the collection change action.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedEventArgs.NewItems">
            <summary>
            Gets list of newly added items.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedEventArgs.NewStartingIndex">
            <summary>
            Gets new starting index.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedEventArgs.OldItems">
            <summary>
            Gets list of removed items.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Primitives.NotifyCollectionChangedEventArgs.OldStartingIndex">
            <summary>
            Old starting index.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.Background">
            <summary>
            Represents background of visual style.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Background.#ctor">
            <summary>
            Creates new instance of the object.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Background.#ctor(System.Drawing.Color)">
            <summary>
            Creates new instance of the object.
            </summary>
            <param name="color1">Start color.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Background.#ctor(System.Drawing.Color,System.Drawing.Color)">
            <summary>
            Creates new instance of the object.
            </summary>
            <param name="color1">Start color.</param>
            <param name="color2">End color.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Background.#ctor(System.String,System.String)">
            <summary>
            Creates new instance of the object.
            </summary>
            <param name="color1">Start color in hexadecimal representation like FFFFFF.</param>
            <param name="color2">End color in hexadecimal representation like FFFFFF.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Background.#ctor(System.Int32,System.Int32)">
            <summary>
            Creates new instance of the object.
            </summary>
            <param name="color1">Start color in 32-bit RGB representation.</param>
            <param name="color2">End color in 32-bit RGB representation.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Background.#ctor(System.Int32,System.Int32,System.Int32)">
            <summary>
            Creates new instance of the object.
            </summary>
            <param name="color1">Start color in 32-bit RGB representation.</param>
            <param name="color2">End color in 32-bit RGB representation.</param>
            <param name="gradientAngle">Gradient angle.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Background.#ctor(System.Drawing.Color,System.Drawing.Color,System.Int32)">
            <summary>
            Creates new instance of the object.
            </summary>
            <param name="color1">Start color.</param>
            <param name="color2">End color.</param>
            <param name="gradientAngle">Gradient angle.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Background.#ctor(System.Drawing.Color,System.Drawing.Color,DevComponents.DotNetBar.SuperGrid.Style.BackFillType)">
            <summary>
            Creates new instance of the object.
            </summary>
            <param name="color1">Start color.</param>
            <param name="color2">End color.</param>
            <param name="fillType">Gradient angle.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Background.IsEqualTo(DevComponents.DotNetBar.SuperGrid.Style.Background)">
            <summary>
            Determines if the Background is equal to the given one
            </summary>
            <param name="background">Background to compare</param>
            <returns>true if equal</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Background.GetBrush(System.Drawing.Rectangle)">
            <summary>
             GetBrush
            </summary>
            <param name="r"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Background.Copy">
            <summary>
            Creates an exact copy of the background.
            </summary>
            <returns>Copy of the background.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Background.OnPropertyChanged(DevComponents.DotNetBar.SuperGrid.Style.VisualPropertyChangedEventArgs)">
            <summary>
            Raises the PropertyChanged event.
            </summary>
            <param name="e">Event arguments</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Background.OnPropertyChangedEx(System.String)">
            <summary>
            Raises the PropertyChanged event.
            </summary>
            <param name="s">Event arguments</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Background.StyleChanged(System.Object,System.ComponentModel.PropertyChangedEventArgs)">
            <summary>
            StyleChanged
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Background.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.Background.Empty">
            <summary>
             Empty
            </summary>
             <summary>
             Returns Empty instance of BorderPattern.
             </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.Background.Color1">
            <summary>
            Gets or sets the start color.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.Background.Color2">
            <summary>
            Gets or sets the Ending Gradient Color
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.Background.BackColorBlend">
            <summary>
            Gets or sets the BackColorBlend.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.Background.GradientAngle">
            <summary>
            Gets or sets the gradient angle (default is 90)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.Background.BackFillType">
            <summary>
            Gets or sets the Gradient BackFillType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.Background.IsEmpty">
            <summary>
            Gets whether both colors assigned are empty.
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.Style.Background.PropertyChanged">
            <summary>
            Occurs when property value has changed.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.BackFillType">
            <summary>
             BackFillType
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.BackFillType.Angle">
            <summary>
             Angle
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.BackFillType.Center">
            <summary>
             Center
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.BackFillType.HorizontalCenter">
            <summary>
             HorizontalCenter
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.BackFillType.VerticalCenter">
            <summary>
             VerticalCenter
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.BackFillType.ForwardDiagonal">
            <summary>
             ForwardDiagonal
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.BackFillType.BackwardDiagonal">
            <summary>
             BackwardDiagonal
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.BackFillType.ForwardDiagonalCenter">
            <summary>
             ForwardDiagonalCenter
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.BackFillType.BackwardDiagonalCenter">
            <summary>
             BackwardDiagonalCenter
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.BackFillType.Radial">
            <summary>
             Radial
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.BackgroundConvertor">
            <summary>
             BackgroundConvertor
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BackgroundConvertor.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
            <summary>
            ConvertTo
            </summary>
            <param name="context"></param>
            <param name="culture"></param>
            <param name="value"></param>
            <param name="destinationType"></param>
            <returns></returns>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.BackgroundEditor">
            <summary>
             BackgroundEditor
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BackgroundEditor.GetPaintValueSupported(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            GetPaintValueSupported
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BackgroundEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)">
            <summary>
            PaintValue
            </summary>
            <param name="e"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.BorderColor">
            <summary>
            Represents style border color.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color)">
            <summary>
            Initializes a new instance of the BorderColor object.
            </summary>
            <param name="left"></param>
            <param name="top"></param>
            <param name="right"></param>
            <param name="bottom"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.#ctor(System.Drawing.Color)">
            <summary>
            Initializes a new instance of the BorderColor object.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.#ctor">
            <summary>
            Initializes a new instance of the BorderColor object.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.ShouldSerializeBottom">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.ResetBottom">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.ShouldSerializeLeft">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.ResetLeft">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.ShouldSerializeRight">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.ResetRight">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.ShouldSerializeTop">
            <summary>
            Gets whether property should be serialized.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.ResetTop">
            <summary>
            Resets property to its default value.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.op_Equality(DevComponents.DotNetBar.SuperGrid.Style.BorderColor,DevComponents.DotNetBar.SuperGrid.Style.BorderColor)">
            <summary>
            Compares two instances.
            </summary>
            <param name="t1">Instance 1</param>
            <param name="t2">Instance 2</param>
            <returns>true if same</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.op_Inequality(DevComponents.DotNetBar.SuperGrid.Style.BorderColor,DevComponents.DotNetBar.SuperGrid.Style.BorderColor)">
            <summary>
            Compares two instances.
            </summary>
            <param name="t1">Instance 1</param>
            <param name="t2">Instance 2</param>
            <returns>true if different.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.GetHashCode">
            <summary>
            Returns hash-code for object.
            </summary>
            <returns>Hash-code value.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.Equals(System.Object)">
            <summary>
            Compares object to this instance.
            </summary>
            <param name="obj">Object to compare.</param>
            <returns>true if same.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.Equals(DevComponents.DotNetBar.SuperGrid.Style.BorderColor)">
            <summary>
            Compares object to this instance.
            </summary>
            <param name="borderColor">Border color</param>
            <returns>true if same</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.Copy">
            <summary>
            Creates an exact copy of the BorderColor.
            </summary>
            <returns>Copy of the BorderColor.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
            <summary>
            Raises the PropertyChanged event.
            </summary>
            <param name="e">Event arguments</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.OnPropertyChanged(System.String)">
            <summary>
            Default PropertyChanged processing
            </summary>
            <param name="s"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.OnVisualPropertyChanged(System.String)">
            <summary>
            Default PropertyChanged processing
            </summary>
            <param name="s"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.Empty">
            <summary>
             Empty
            </summary>
             <summary>
             Returns Empty instance of BorderColor.
             </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.All">
            <summary>
            Gets or sets the color of all borders.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.Bottom">
            <summary>
            Gets or sets the color of the bottom border
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.Left">
            <summary>
            Gets or sets the color of the left border
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.Right">
            <summary>
            Gets or sets the color of the right border
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.Top">
            <summary>
            Gets or sets the color of the top border
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.Style.BorderColor.PropertyChanged">
            <summary>
            Occurs when property value has changed.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.BorderColorConverter">
            <summary>
            BorderColorConverter
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.BorderColorConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
            <summary>
            ConvertTo
            </summary>
            <param name="context"></param>
            <param name="culture"></param>
            <param name="value"></param>
            <param name="destinationType"></param>
            <returns></returns>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.CheckDisplay">
            <summary>
             CheckDisplay
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.CheckDisplay.RenderCheckbox(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.CheckBoxState,System.Windows.Forms.ButtonState)">
            <summary>
             RenderCheckbox
            </summary>
            <param name="g"></param>
            <param name="bounds"></param>
            <param name="cstate"></param>
            <param name="bstate"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.ExpandDisplay">
            <summary>
             CheckDisplay
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.ExpandDisplay.RenderButton(System.Drawing.Graphics,System.Drawing.Image,System.Drawing.Rectangle,System.Drawing.Rectangle)">
            <summary>
             RenderButton
            </summary>
            <param name="g"></param>
            <param name="image"></param>
            <param name="buttonBounds"></param>
            <param name="clipBounds"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.Padding">
            <summary>
             Padding
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.Thickness">
            <summary>
            Defines Thickness class.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Thickness.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Creates new instance of the object.
            </summary>
            <param name="left">Left thickness in pixels.</param>
            <param name="top">Top thickness in pixels.</param>
            <param name="right">Right thickness in pixels.</param>
            <param name="bottom">Bottom thickness in pixels.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Thickness.#ctor(System.Int32)">
            <summary>
            Creates new instance of the object.
            </summary>
            <param name="all">Specifies uniform Thickness.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Thickness.#ctor">
            <summary>
            Creates new instance of the object.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Thickness.Equals(System.Object)">
            <summary>
            Gets whether two instances are equal.
            </summary>
            <param name="obj">Instance to compare to.</param>
            <returns>true if equal otherwise false.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Thickness.Equals(DevComponents.DotNetBar.SuperGrid.Style.Thickness)">
            <summary>
            Gets whether two instances are equal.
            </summary>
            <param name="thickness">Instance to compare to</param>
            <returns>true if equal otherwise false</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Thickness.GetHashCode">
            <summary>
            Returns hash-code.
            </summary>
            <returns>hash-code</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Thickness.op_Equality(DevComponents.DotNetBar.SuperGrid.Style.Thickness,DevComponents.DotNetBar.SuperGrid.Style.Thickness)">
            <summary>
            Implements == operator.
            </summary>
            <param name="t1">Object 1</param>
            <param name="t2">Object 2</param>
            <returns>true if equals</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Thickness.op_Inequality(DevComponents.DotNetBar.SuperGrid.Style.Thickness,DevComponents.DotNetBar.SuperGrid.Style.Thickness)">
            <summary>
            Implements != operator
            </summary>
            <param name="t1">Object 1</param>
            <param name="t2">Object 2</param>
            <returns>true if different</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Thickness.Copy">
            <summary>
            Creates an exact copy of the Thickness.
            </summary>
            <returns>Copy of the Thickness.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Thickness.OnPropertyChanged(DevComponents.DotNetBar.SuperGrid.Style.VisualPropertyChangedEventArgs)">
            <summary>
            Raises the PropertyChanged event.
            </summary>
            <param name="e">Event arguments</param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.Thickness.Empty">
            <summary>
            Returns Empty instance of Thickness.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.Thickness.All">
            <summary>
            Gets or sets the thickness of all sides
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.Thickness.Bottom">
            <summary>
            Gets or sets the Bottom thickness in pixels.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.Thickness.Horizontal">
            <summary>
            Gets horizontal thickness (Left + Right)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.Thickness.IsEmpty">
            <summary>
            Gets whether the item is empty.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.Thickness.Left">
            <summary>
            Gets or sets the left thickness in pixels
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.Thickness.Right">
            <summary>
            Gets or sets the Right thickness in pixels
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.Thickness.Top">
            <summary>
            Gets or sets the Top thickness in pixels
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.Thickness.Vertical">
            <summary>
            Gets vertical thickness (Top + Bottom)
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.Style.Thickness.PropertyChanged">
            <summary>
            Occurs when property value has changed.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Padding.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Creates new instance of the class and initializes it.
            </summary>
            <param name="left">Left padding</param>
            <param name="right">Right padding</param>
            <param name="top">Top padding</param>
            <param name="bottom">Bottom padding</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Padding.#ctor(System.Int32)">
            <summary>
            Initializes a new instance of the Padding class.
            </summary>
            <param name="all">Uniform padding.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Padding.#ctor">
            <summary>
            Initializes a new instance of the Padding class.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Padding.Copy">
            <summary>
            Creates an exact copy of the Padding.
            </summary>
            <returns>Copy of the Padding.</returns>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.Style.Padding.Empty">
            <summary>
            Returns Empty instance of Thickness.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.PaddingTypeConverter">
            <summary>
             PaddingTypeConverter
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.PaddingTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
            <summary>
            CanConvertTo
            </summary>
            <param name="context"></param>
            <param name="destinationType"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.PaddingTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
            <summary>
            ConvertTo
            </summary>
            <param name="context"></param>
            <param name="culture"></param>
            <param name="value"></param>
            <param name="destinationType"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.PaddingTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
            <summary>
            CanConvertFrom
            </summary>
            <param name="context"></param>
            <param name="sourceType"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.PaddingTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
            <summary>
            ConvertFrom
            </summary>
            <param name="context"></param>
            <param name="culture"></param>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.PaddingTypeConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            GetCreateInstanceSupported
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.PaddingTypeConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)">
            <summary>
            CreateInstance
            </summary>
            <param name="context"></param>
            <param name="propertyValues"></param>
            <returns></returns>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyles">
            <summary>
             CellVisualStyles
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.VisualPropertyChangedEventArgs">
            <summary>
            Represents visual property changed event arguments.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.VisualPropertyChangedEventArgs.ChangeType">
            <summary>
            Gets the change type.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualPropertyChangedEventArgs.#ctor(System.String)">
            <summary>
            Initializes a new instance of the VisualPropertyChangedEventArgs class.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualPropertyChangedEventArgs.#ctor(System.String,DevComponents.DotNetBar.SuperGrid.Style.VisualChangeType)">
            <summary>
            Initializes a new instance of the VisualPropertyChangedEventArgs class.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.ThicknessTypeConverter">
            <summary>
             ThicknessTypeConverter
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ThicknessTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
            <summary>
            CanConvertTo
            </summary>
            <param name="context"></param>
            <param name="destinationType"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ThicknessTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
            <summary>
            ConvertTo
            </summary>
            <param name="context"></param>
            <param name="culture"></param>
            <param name="value"></param>
            <param name="destinationType"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ThicknessTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
            <summary>
            CanConvertFrom
            </summary>
            <param name="context"></param>
            <param name="sourceType"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ThicknessTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
            <summary>
            ConvertFrom
            </summary>
            <param name="context"></param>
            <param name="culture"></param>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ThicknessTypeConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            GetCreateInstanceSupported
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.ThicknessTypeConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)">
            <summary>
            CreateInstance
            </summary>
            <param name="context"></param>
            <param name="propertyValues"></param>
            <returns></returns>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.SuperGridControl">
            <summary>
            Represents a Super Grid Control.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.#ctor">
            <summary>
            Initializes a new instance of the SuperGridControl class.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.OnEnabledChanged(System.EventArgs)">
            <summary>
            OnEnabledChanged
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
            <summary>
            Called by StyleManager to notify control that style on
            manager has changed and that control should refresh its
            appearance if its style is controlled by StyleManager.
            </summary>
            <param name="newStyle">New active style.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.OnPaint(System.Windows.Forms.PaintEventArgs)">
            <summary>
            Renders the control.
            </summary>
            <param name="e">Paint arguments.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.OnHandleCreated(System.EventArgs)">
            <summary>
            OnHandleCreated
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ArrangeGrid">
            <summary>
            Performs grid layout.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ArrangeGrid(System.Boolean)">
             <summary>
             Performs grid layout.
             </summary>
            <param name="force">Whether to force operation even if layout is valid.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.InvalidateRender(DevComponents.DotNetBar.SuperGrid.GridElement)">
            <summary>
            Invalidates render of the grid element.
            </summary>
            <param name="gridElement">Element to invalidate rendering for.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.OnMouseLeave(System.EventArgs)">
            <summary>
            OnMouseLeave
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
            <summary>
            OnMouseMove
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
            OnMouseDown
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
            OnMouseUp
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.OnMouseClick(System.Windows.Forms.MouseEventArgs)">
            <summary>
            OnMouseClick
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.OnMouseDoubleClick(System.Windows.Forms.MouseEventArgs)">
            <summary>
            OnMouseDoubleClick
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.IsInputChar(System.Char)">
            <summary>
            IsInputChar
            </summary>
            <param name="charCode"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
            <summary>
            Handles KeyDown events
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)">
            <summary>
            Handles KeyPress events
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PressKeyDown(System.UInt16)">
            <summary>
             Sends the given input scanCode to the
             current active edit control
            </summary>
            <param name="scanCode"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoActiveGridChangedEvent(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Handles invocation of ActiveGridChanged events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoCellActivatedEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.GridCell)">
            <summary>
            Handles invocation of CellActivated events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoCellActivatingEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.GridCell)">
            <summary>
            Handles invocation of CellActivating events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoCellClickEvent(DevComponents.DotNetBar.SuperGrid.GridCell,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of CellClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoCellDoubleClickEvent(DevComponents.DotNetBar.SuperGrid.GridCell,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of CellDoubleClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoCellInfoClickEvent(DevComponents.DotNetBar.SuperGrid.GridCell,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of CellInfoClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoCellInfoDoubleClickEvent(DevComponents.DotNetBar.SuperGrid.GridCell,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of CellInfoDoubleClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoCellInfoEnterEvent(DevComponents.DotNetBar.SuperGrid.GridCell,System.Drawing.Point)">
            <summary>
            Handles invocation of CellInfoEnter events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoCellInfoLeaveEvent(DevComponents.DotNetBar.SuperGrid.GridCell)">
            <summary>
            Handles invocation of CellInfoLeave events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoCellMouseDownEvent(DevComponents.DotNetBar.SuperGrid.GridCell,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of CellMouseDown events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoCellMouseEnterEvent(DevComponents.DotNetBar.SuperGrid.GridCell)">
            <summary>
            Handles invocation of CellMouseEnter events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoCellMouseLeaveEvent(DevComponents.DotNetBar.SuperGrid.GridCell)">
            <summary>
            Handles invocation of CellMouseLeave events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoCellMouseMoveEvent(DevComponents.DotNetBar.SuperGrid.GridCell,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of CellMouseMove events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoCellMouseUpEvent(DevComponents.DotNetBar.SuperGrid.GridCell,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of CellMouseUp events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoCellUserFunctionEvent(DevComponents.DotNetBar.SuperGrid.GridCell,System.Object[],System.Object@)">
            <summary>
            Handles invocation of CellUserFunction events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoCellValidatingEvent(DevComponents.DotNetBar.SuperGrid.GridCell,System.Object@,System.Object)">
            <summary>
            Handles invocation of CellValidating events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoCellValidatedEvent(DevComponents.DotNetBar.SuperGrid.GridCell)">
            <summary>
            Handles invocation of CellValidated events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoCellValueChangedEvent(DevComponents.DotNetBar.SuperGrid.GridCell,System.Object,System.Object,DevComponents.DotNetBar.SuperGrid.DataContext)">
            <summary>
            Handles invocation of CellValueChanged events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoAfterCheckEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridElement)">
            <summary>
            Handles invocation of AfterCheckEvent events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoBeforeCheckEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridElement)">
            <summary>
            Handles invocation of BeforeCheck events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoAfterCollapseEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.ExpandSource)">
            <summary>
            Handles invocation of AfterCollapse events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoBeforeCollapseEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.ExpandSource)">
            <summary>
            Handles invocation of BeforeCollapse events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoColumnGroupedEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.GridGroup)">
            <summary>
            Handles invocation of ColumnGrouped events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoColumnHeaderClickEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of ColumnHeaderClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoColumnHeaderDoubleClickEvent(DevComponents.DotNetBar.SuperGrid.GridColumn,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of ColumnHeaderDoubleClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoColumnHeaderMarkupLinkClickEvent(DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.SuperGrid.TextMarkup.HyperLink)">
            <summary>
            Handles invocation of ColumnHeaderMarkupLinkClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoColumnHeaderMouseDownEvent(DevComponents.DotNetBar.SuperGrid.GridColumnHeader,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of ColumnHeaderMouseDown events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoColumnHeaderMouseEnterEvent(DevComponents.DotNetBar.SuperGrid.GridColumnHeader)">
            <summary>
            Handles invocation of ColumnHeaderMouseEnter events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoColumnHeaderMouseLeaveEvent(DevComponents.DotNetBar.SuperGrid.GridColumnHeader)">
            <summary>
            Handles invocation of ColumnHeaderMouseLeave events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoColumnHeaderMouseMoveEvent(DevComponents.DotNetBar.SuperGrid.GridColumnHeader,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of ColumnHeaderMouseMove events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoColumnHeaderMouseUpEvent(DevComponents.DotNetBar.SuperGrid.GridColumnHeader,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of CellMouseUp events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoColumnGroupHeaderClickEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumnHeader,DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of ColumnGroupHeaderClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoColumnGroupHeaderDoubleClickEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumnHeader,DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of ColumnGroupHeaderDoubleClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoColumnGroupHeaderMarkupLinkClickEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumnHeader,DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader,DevComponents.SuperGrid.TextMarkup.HyperLink)">
            <summary>
            Handles invocation of ColumnGroupHeaderMarkupLinkClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoColumnGroupHeaderResizedEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader,System.Drawing.Size)">
            <summary>
            Handles invocation of ColumnGroupHeaderResized events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoColumnRowHeaderClickEvent(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Handles invocation of ColumnRowHeaderClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoColumnRowHeaderDoubleClickEvent(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Handles invocation of ColumnRowHeaderDoubleClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoColumnMovedEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
            Handles invocation of ColumnMoved events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoColumnResizedEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
            Handles invocation of ColumnResized events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoCompareElementsEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridElement,DevComponents.DotNetBar.SuperGrid.GridElement,System.Int32@)">
            <summary>
            Handles invocation of CompareElementsEvent events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoDataBindingStartEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridRow,System.String,System.Boolean@,DevComponents.DotNetBar.SuperGrid.ProcessChildRelations@)">
            <summary>
            Handles invocation of DataBindingStart events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoDataBindingCompleteEvent(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Handles invocation of DataBindingComplete events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoDataErrorEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,System.Exception,DevComponents.DotNetBar.SuperGrid.DataContext,System.Object@,System.Boolean@,System.Boolean@)">
            <summary>
            Handles invocation of DataError events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoDataFilteringStartEvent(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Handles invocation of DataFilteringStart events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoDataFilteringCompleteEvent(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Handles invocation of DataFilteringCompleteEvent events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoItemDragEvent(DevComponents.DotNetBar.SuperGrid.GridElement,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles ItemDrag events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoBeginEditEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.IGridCellEditControl)">
            <summary>
            Handles invocation of BeginEdit events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoCancelEditEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.IGridCellEditControl)">
            <summary>
            Handles invocation of CancelEdit events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoCloseEditEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell)">
            <summary>
            Handles invocation of CloseEdit events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoEditorValueChangedEvent(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.IGridCellEditControl)">
            <summary>
            Handles invocation of EditorValueChanged events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoEndEditEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.IGridCellEditControl)">
            <summary>
            Handles invocation of EndEdit events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetEditorEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,System.Type@,System.Object[]@)">
            <summary>
            Handles invocation of GetEditor events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetRendererEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,System.Type@,System.Object[]@)">
            <summary>
            Handles invocation of GetRenderer events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoAfterExpandEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.ExpandSource)">
            <summary>
            Handles invocation of AfterExpand events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoBeforeExpandEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.ExpandSource)">
            <summary>
            Handles invocation of BeforeExpand events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoFilterBeginEditEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.FilterPanel)">
            <summary>
            Handles invocation of FilterBeginEdit events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoFilterCancelEditEvent(DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.FilterPanel)">
            <summary>
            Handles invocation of FilterCancelEdit events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoFilterColumnErrorEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridRow,DevComponents.DotNetBar.SuperGrid.GridColumn,System.Exception,System.Boolean@,System.Boolean@)">
            <summary>
            Handles invocation of FilterColumnError events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoFilterEditValueChangedEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.FilterPanel,System.Object,System.Object@,System.Object@,System.String@)">
            <summary>
            Handles invocation of FilterEditValueChanged events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoFilterEndEditEvent(DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.FilterPanel)">
            <summary>
            Handles invocation of FilterEndEdit events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoFilterHeaderClickEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of FilterHeaderClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoFilterHelpClosingEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.SampleExpr)">
            <summary>
            Handles invocation of FilterHelpClosing events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoFilterHelpOpeningEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.SampleExpr)">
            <summary>
            Handles invocation of FilterHelpOpening events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoFilterItemsLoadedEvent(DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.Controls.ComboBoxEx)">
            <summary>
            Handles invocation of FilterItemsLoaded events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoFilterLoadItemsEvent(DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.Controls.ComboBoxEx)">
            <summary>
            Handles invocation of FilterLoadItems events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoFilterLoadUserDataEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,System.String@,System.Collections.Generic.List{DevComponents.DotNetBar.SuperGrid.UserFilterData}@)">
            <summary>
            Handles invocation of FilterLoadUserData events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoFilterPopupClosingEvent(DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.FilterPopup)">
            <summary>
            Handles invocation of FilterPopupClosing events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoFilterPopupLoadEvent(DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.FilterPopup)">
            <summary>
            Handles invocation of FilterPopupLoad events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoFilterPopupLoadedEvent(DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.FilterPopup)">
            <summary>
            Handles invocation of FilterPopupLoaded events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoFilterPopupOpeningEvent(DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.FilterPopup)">
            <summary>
            Handles invocation of FilterPopupOpening events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoFilterPopupValueChangedEvent(DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.FilterItemType,System.Object@,System.Object@,System.String@)">
            <summary>
            Handles invocation of FilterPopupValueChanged events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoFilterRowErrorEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridRow,System.Exception,System.Boolean@,System.Boolean@)">
            <summary>
            Handles invocation of FilterRowError events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoFilterRowHeaderClickEvent(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Handles invocation of FilterRowHeaderClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoFilterStoreUserDataEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,System.String@,System.Collections.Generic.List{DevComponents.DotNetBar.SuperGrid.UserFilterData}@)">
            <summary>
            Handles invocation of FilterStoreUserData events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoFilterUserFunctionEvent(DevComponents.DotNetBar.SuperGrid.GridRow,System.Object[],System.Object@)">
            <summary>
            Handles invocation of FilterUserFunction events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetFilterColumnHeaderStyleEvent(DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle@)">
            <summary>
            Handles invocation of GetFilterColumnHeaderStyle events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetFilterEditTypeEvent(DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.FilterEditType@)">
            <summary>
            Handles invocation of GetFilterEditType events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetFilterRowStyleEvent(DevComponents.DotNetBar.SuperGrid.GridFilter,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.FilterRowVisualStyle@)">
            <summary>
            Handles invocation of GetFilterRowStyle events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetCellRangesEvent(DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.DisplayRange,System.Collections.Generic.List{DevComponents.DotNetBar.SuperGrid.CellRange}@)">
            <summary>
            Handles invocation of GetCellRanges events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetCellFormattedValueEvent(DevComponents.DotNetBar.SuperGrid.GridCell,System.String@)">
            <summary>
            Handles invocation of GetCellFormattedValue events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetCellRangeFormattedValueEvent(DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.CellRange,System.String@)">
            <summary>
            Handles invocation of GetCellRangeFormattedValue events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetCellStyleEvent(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle@)">
            <summary>
            Handles invocation of GetCellStyle events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetCellToolTipEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,System.String@)">
            <summary>
            Handles invocation of GetCellToolTipEvent events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetCellValueEvent(DevComponents.DotNetBar.SuperGrid.GridCell,System.Object@)">
            <summary>
            Handles invocation of GetCellValue events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetColumnGroupHeaderToolTipEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader,DevComponents.DotNetBar.SuperGrid.HeaderArea,System.String@)">
            <summary>
            Handles invocation of GetColumnGroupHeaderToolTip events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetColumnGroupHeaderStyleEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderVisualStyle@)">
            <summary>
            Handles invocation of GetColumnGroupHeader events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetColumnHeaderRowHeaderStyleEvent(DevComponents.DotNetBar.SuperGrid.GridColumnHeader,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle@)">
            <summary>
            Handles invocation of GetColumnHeader RowHeader events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetColumnHeaderStyleEvent(DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderVisualStyle@)">
            <summary>
            Handles invocation of GetColumnHeader events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetColumnHeaderToolTipEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.HeaderArea,System.String@)">
            <summary>
            Handles invocation of GetColumnHeaderToolTip events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetDisplayRangesEvent(DevComponents.DotNetBar.SuperGrid.GridContainer,System.Collections.Generic.List{DevComponents.DotNetBar.SuperGrid.DisplayRange}@)">
            <summary>
            Handles invocation of GetDisplayRanges events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoConfigureGroupBoxEvent(DevComponents.DotNetBar.SuperGrid.GridGroupByRow,DevComponents.DotNetBar.SuperGrid.GridGroupBox)">
            <summary>
            Handles invocation of ConfigureGroupBox events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetGroupedDetailRowsEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.GridGroup,System.Collections.Generic.List{DevComponents.DotNetBar.SuperGrid.GridRow}@,System.Collections.Generic.List{DevComponents.DotNetBar.SuperGrid.GridRow}@)">
            <summary>
            Handles invocation of GetGroupedDetailRows events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetGroupHeaderStyleEvent(DevComponents.DotNetBar.SuperGrid.GridGroup,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle@)">
            <summary>
            Handles invocation of GetGroupHeaderStyle events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetGroupIdEvent(DevComponents.DotNetBar.SuperGrid.GridElement,DevComponents.DotNetBar.SuperGrid.GridColumn,System.Object@)">
            <summary>
            Handles invocation of GetGroupId events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetMergedCellStyleEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.CellRange,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle@)">
            <summary>
            Handles invocation of GetMergedCellStyle events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetPanelStyleEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle@)">
            <summary>
            Handles invocation of GetPanelStyle events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetRowCellStyleEvent(DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle@)">
            <summary>
            Handles invocation of GetRowCellStyle events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetRowHeaderStyleEvent(DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle@)">
            <summary>
            Handles invocation of GetRowHeader events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetRowStyleEvent(DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.RowVisualStyle@)">
            <summary>
            Handles invocation of GetRowStyle events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetRowHeaderTextEvent(DevComponents.DotNetBar.SuperGrid.GridContainer,System.String@)">
            <summary>
            Handles invocation of GetRowHeaderText events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGetTextRowStyleEvent(DevComponents.DotNetBar.SuperGrid.GridTextRow,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyle@)">
            <summary>
            Handles invocation of GetTextRowStyle events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGroupChangedEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GroupChangedAction,DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
            Handles invocation of GroupChanged events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGroupHeaderClickEvent(DevComponents.DotNetBar.SuperGrid.GridGroup,DevComponents.DotNetBar.SuperGrid.GroupArea,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of GroupHeaderClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGroupHeaderDoubleClickEvent(DevComponents.DotNetBar.SuperGrid.GridGroup,DevComponents.DotNetBar.SuperGrid.GroupArea,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of GroupHeaderDoubleClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGroupSortingEvent(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Handles invocation of GroupSorting events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoGroupSortedEvent(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Handles invocation of GroupSorted events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoInitEditContextEvent(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.IGridCellEditControl)">
            <summary>
            Handles invocation of InitEditContext events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoLayoutOrderUpdatingEvent(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Handles invocation of LayoutOrderUpdating events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoLayoutOrderUpdatedEvent(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Handles invocation of LayoutOrderUpdated events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoNoRowsMarkupLinkClickEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.SuperGrid.TextMarkup.HyperLink)">
            <summary>
            Handles invocation of NoRowsTextMarkupLinkClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPostRenderCellEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
            Handles invocation of PostRenderCell events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPreRenderCellEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
            Handles invocation of PreRenderCell events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPostRenderColumnHeaderEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridColumnHeader,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
            Handles invocation of PostRenderColumnHeader events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPreRenderColumnHeaderEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridColumnHeader,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
            Handles invocation of PreRenderColumnHeaderEvent events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPostRenderColumnGroupHeaderEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridColumnHeader,DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
            Handles invocation of PostRenderColumnGroupHeader events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPreRenderColumnGroupHeaderEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridColumnHeader,DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
            Handles invocation of PreRenderColumnGroupHeader events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPostRenderFilterPopupGripBarEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.FilterPopup,DevComponents.DotNetBar.SuperGrid.GridColumn,System.Drawing.Rectangle)">
            <summary>
            Handles invocation of PostRenderFilterPopupGripBar events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPreRenderFilterPopupGripBarEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.FilterPopup,DevComponents.DotNetBar.SuperGrid.GridColumn,System.Drawing.Rectangle)">
            <summary>
            Handles invocation of PreRenderFilterPopupGripBar events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPostRenderFilterRowEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridFilter,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
            Handles invocation of PostRenderFilterRow events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPreRenderFilterRowEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridFilter,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
            Handles invocation of PreRenderFilterRowEvent events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPostRenderGroupBoxConnectorEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridGroupByRow,DevComponents.DotNetBar.SuperGrid.GridGroupBox,DevComponents.DotNetBar.SuperGrid.GridGroupBox)">
            <summary>
            Handles invocation of PostRenderGroupBoxConnector events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPreRenderGroupBoxConnectorEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridGroupByRow,DevComponents.DotNetBar.SuperGrid.GridGroupBox,DevComponents.DotNetBar.SuperGrid.GridGroupBox)">
            <summary>
            Handles invocation of PreRenderGroupBoxConnector events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPostRenderGroupBoxEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridGroupByRow,DevComponents.DotNetBar.SuperGrid.GridGroupBox,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
            Handles invocation of PostRenderGroupBox events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPreRenderGroupBoxEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridGroupByRow,DevComponents.DotNetBar.SuperGrid.GridGroupBox,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
            Handles invocation of PreRenderGroupBox events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPostRenderGroupHeaderEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridGroup,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
            Handles invocation of PostRenderGroupHeader events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPreRenderGroupHeaderEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridGroup,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
            Handles invocation of PreRenderGroupHeader events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPostRenderPanelRowEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
            Handles invocation of PostRenderPanelRow events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPreRenderPanelRowEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
            Handles invocation of PreRenderPanelRow events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPostRenderRowEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridRow,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
            Handles invocation of PostRenderRow events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPreRenderRowEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridRow,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
            Handles invocation of PreRenderRow events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPostRenderTextRowEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridTextRow,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
            Handles invocation of PostRenderTextRow events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoPreRenderTextRowEvent(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridTextRow,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
            Handles invocation of PreRenderTextRow events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowActivatedEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.GridContainer)">
            <summary>
            Handles invocation of RowActivated events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowActivatingEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.GridContainer)">
            <summary>
            Handles invocation of RowActivating events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowAddedEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,System.Int32)">
            <summary>
            Handles invocation of RowAdded events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowAddingEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,System.Int32@)">
            <summary>
            Handles invocation of DoRowAdding events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowClickEvent(DevComponents.DotNetBar.SuperGrid.GridRow,DevComponents.DotNetBar.SuperGrid.RowArea,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of RowClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowDeletedEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.SelectedElements)">
            <summary>
            Handles invocation of RowDeleted events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowDeletingEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.SelectedElements)">
            <summary>
            Handles invocation of RowDeleting events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowDoubleClickEvent(DevComponents.DotNetBar.SuperGrid.GridRow,DevComponents.DotNetBar.SuperGrid.RowArea,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of RowDoubleClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowGetDetailHeightEvent(DevComponents.DotNetBar.SuperGrid.GridRow,DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,System.Drawing.Size,System.Int32@,System.Int32@)">
            <summary>
            Handles invocation of RowGetDetailHeight events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowHeaderClickEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of RowHeaderClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowHeaderDoubleClickEvent(DevComponents.DotNetBar.SuperGrid.GridContainer,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of RowHeaderDoubleClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowHeaderResizedEvent(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Handles invocation of RowHeaderResized events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowInfoClickEvent(DevComponents.DotNetBar.SuperGrid.GridRow,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of RowInfoClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowInfoEnterEvent(DevComponents.DotNetBar.SuperGrid.GridRow,System.Drawing.Point)">
            <summary>
            Handles invocation of RowInfoEnter events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowInfoLeaveEvent(DevComponents.DotNetBar.SuperGrid.GridRow)">
            <summary>
            Handles invocation of RowInfoLeave events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowInfoDoubleClickEvent(DevComponents.DotNetBar.SuperGrid.GridRow,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of RowInfoDoubleClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowMarkedDirtyEvent(DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.IGridCellEditControl)">
            <summary>
            Handles invocation of RowMarkedDirty events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowMouseDownEvent(DevComponents.DotNetBar.SuperGrid.GridRow,System.Windows.Forms.MouseEventArgs,DevComponents.DotNetBar.SuperGrid.RowArea)">
            <summary>
            Handles invocation of RowMouseDown events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowMouseEnterEvent(DevComponents.DotNetBar.SuperGrid.GridRow)">
            <summary>
            Handles invocation of RowMouseEnter events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowMouseLeaveEvent(DevComponents.DotNetBar.SuperGrid.GridRow)">
            <summary>
            Handles invocation of RowMouseLeave events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowMouseMoveEvent(DevComponents.DotNetBar.SuperGrid.GridRow,System.Windows.Forms.MouseEventArgs,DevComponents.DotNetBar.SuperGrid.RowArea)">
            <summary>
            Handles invocation of RowMouseMove events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowMouseUpEvent(DevComponents.DotNetBar.SuperGrid.GridRow,System.Windows.Forms.MouseEventArgs,DevComponents.DotNetBar.SuperGrid.RowArea)">
            <summary>
            Handles invocation of RowMouseUp events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowMovedEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.GridContainer)">
            <summary>
            Handles invocation of RowMoved events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowMovingEvent(DevComponents.DotNetBar.SuperGrid.GridRow,DevComponents.DotNetBar.SuperGrid.GridContainer,System.Int32,DevComponents.DotNetBar.SuperGrid.GridContainer@,System.Int32@)">
            <summary>
            Handles invocation of RowMoving events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowResizedEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer)">
            <summary>
            Handles invocation of RowResized events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowRestoredEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.SelectedElements)">
            <summary>
            Handles invocation of RowRestored events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowRestoringEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.SelectedElements)">
            <summary>
            Handles invocation of RowRestoring events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowSetDefaultValuesEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridRow,DevComponents.DotNetBar.SuperGrid.NewRowContext)">
            <summary>
            Handles invocation of RowSetDefaultValues events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowsGroupedEvent(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Handles invocation of RowsGroupedEvent events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowsGroupingEvent(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Handles invocation of RowsGrouping events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowsPurgingEvent(DevComponents.DotNetBar.SuperGrid.GridContainer)">
            <summary>
            Handles invocation of RowsPurging events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowsPurgedEvent(DevComponents.DotNetBar.SuperGrid.GridContainer)">
            <summary>
            Handles invocation of RowsPurged events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowsSortingEvent(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Handles invocation of RowsSorting events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowsSortedEvent(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Handles invocation of RowsSortedEvent events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowValidatingEvent(DevComponents.DotNetBar.SuperGrid.GridRow)">
            <summary>
            Handles invocation of RowValidating events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoRowValidatedEvent(DevComponents.DotNetBar.SuperGrid.GridRow)">
            <summary>
            Handles invocation of RowValidated events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoScrollEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,System.Windows.Forms.ScrollEventArgs,DevComponents.DotNetBar.ScrollBarAdv)">
            <summary>
            Handles invocation of Scroll events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoScrollMinEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,System.Windows.Forms.ScrollEventArgs)">
            <summary>
            Handles invocation of ScrollMin events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoScrollMaxEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,System.Windows.Forms.ScrollEventArgs)">
            <summary>
            Handles invocation of ScrollMax events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoSelectionChangedEvent(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Handles invocation of SelectionChanged events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoSelectionChangingEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.SelectedElements@,System.Int32,System.Int32,System.Boolean)">
            <summary>
            Handles invocation of SelectionChanging events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoSortChangedEvent(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
            Handles invocation of SortChanged events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoTextRowClickEvent(DevComponents.DotNetBar.SuperGrid.GridTextRow,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of TextRowClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoTextRowHeaderClickEvent(DevComponents.DotNetBar.SuperGrid.GridTextRow,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handles invocation of TextRowHeaderClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoTextRowMarkupLinkClickEvent(DevComponents.DotNetBar.SuperGrid.GridTextRow,DevComponents.SuperGrid.TextMarkup.HyperLink)">
            <summary>
            Handles invocation of TextRowMarkupLinkClick events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoUpdateCellDisplayRangesEvent(DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.DisplayRange,System.Collections.Generic.List{DevComponents.DotNetBar.SuperGrid.CellRange}@)">
            <summary>
            Handles invocation of UpdateCellDisplayRanges events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoLoadVirtualRowEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridRow)">
            <summary>
            Handles invocation of LoadVirtualRow events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoVirtualRowLoadedEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridRow)">
            <summary>
            Handles invocation of VirtualRowed events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DoStoreVirtualRowEvent(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridRow)">
            <summary>
            Handles invocation of StoreVirtualRow events
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetElementAt(System.Drawing.Point)">
            <summary>
             Gets the GridElement at the given coordinates
            </summary>
            <param name="pt"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetElementAt(System.Int32,System.Int32)">
            <summary>
             Gets the GridElement at the given coordinates
            </summary>
            <param name="x"></param>
            <param name="y"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FindGridPanel(System.String)">
            <summary>
             Finds the defined GridPanel with the given Name.
             Nested GridPanels will not be searched.
            </summary>
            <returns>GridPanel or null</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FindGridPanel(System.String,System.Boolean)">
            <summary>
             Finds the defined GridPanel with the given Name.
             If 'includeNested' is true, then nested GridPanels
             will also be searched.
            </summary>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetSelectedElements">
            <summary>
             This routine returns a SelectedElementCollection,
             containing a list of the currently selected elements.
            </summary>
            <returns>SelectedElementCollection</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetSelectedRows">
            <summary>
             This routine returns a SelectedElementCollection,
             containing a list of the currently selected rows.
            </summary>
            <returns>SelectedElementCollection</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetSelectedColumns">
            <summary>
             This routine returns a SelectedElementCollection,
             containing a list of the currently selected columns.
            </summary>
            <returns>SelectedElementCollection</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetSelectedCells">
            <summary>
             This routine returns a SelectedElementCollection,
             containing a list of the currently selected cells.
            </summary>
            <returns>SelectedElementCollection</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetCell(System.Int32,System.Int32)">
            <summary>
             Gets the GridCell for the given
             row and column index of the PrimaryGrid
            </summary>
            <param name="rowIndex"></param>
            <param name="columnIndex"></param>
            <returns>GridCell, or null if not a valid cell</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetCell(DevComponents.DotNetBar.SuperGrid.GridPanel,System.Int32,System.Int32)">
            <summary>
             Gets the GridCell for the given
             row and column index of the given GridPanel
            </summary>
            <param name="panel"></param>
            <param name="rowIndex"></param>
            <param name="columnIndex"></param>
            <returns>GridCell, or null if not a valid cell</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.OnGotFocus(System.EventArgs)">
            <summary>
            OnGotFocus
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.OnLostFocus(System.EventArgs)">
            <summary>
            OnLostFocus
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.OnResize(System.EventArgs)">
            <summary>
            OnResize
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.OnValidating(System.ComponentModel.CancelEventArgs)">
            <summary>
            OnValidating
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.BeginUpdate">
            <summary>
             Calling the BeginUpdate routine informs the grid
             that an extended update phase has begun. The SuperGrid
             will suspend all layout calculations and display updates
             until the corresponding EndUpdate routine is called.
             
             BeginUpdate / EndUpdate can be nested and must be
             called in pairs – every BeginUpdate must have a
             matching EndUpdate call.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.EndUpdate">
            <summary>
             Calling the EndUpdate routine informs the grid
             that an extended update phase has ended.
             
             BeginUpdate / EndUpdate can be nested and must be
             called in pairs – every EndUpdate must have a
             matching BeginUpdate call.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
            <summary>
            Raises the PropertyChanged event.
            </summary>
            <param name="e">Event arguments</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.OnPropertyChanged(System.String)">
            <summary>
            Default PropertyChanged processing
            </summary>
            <param name="s"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PreFilterMessage(System.Windows.Forms.Message@)">
            <summary>
            PreFilterMessage
            </summary>
            <param name="m"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.WndProc(System.Windows.Forms.Message@)">
            <summary>
            WndProc
            </summary>
            <param name="m"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DeactivateNonModalEditor">
            <summary>
             Deactivates any active NonModal editor.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ExtendNonModalSelection">
            <summary>
             ExtendNonModalSelection
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.CancelCapture">
            <summary>
             Cancels any in-progress operations that
             may have the mouse captured (and releases the capture).
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.Dispose(System.Boolean)">
            <summary>
            Dispose
            </summary>
            <param name="disposing"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.OnTouchEnabledChanged(System.Boolean,System.Boolean)">
            <summary>
            Called when TouchEnabled property has changed.
            </summary>
            <param name="oldValue">Old property value</param>
            <param name="newValue">New property value</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.SuperGridControl.InvokeLocalizeString(DevComponents.DotNetBar.LocalizeEventArgs)">
            <summary>
             InvokeLocalizeString
            </summary>
            <param name="e"></param>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ActiveGridChanged">
            <summary>
            Occurs when the active grid changes
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.CellActivated">
            <summary>
            Occurs when a cell has been made the Active Cell
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.CellActivating">
            <summary>
            Occurs when a cell is about to be made the Active Cell
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.CellClick">
            <summary>
            Occurs when a cell has been clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.CellDoubleClick">
            <summary>
            Occurs when a cell has been double clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.CellInfoClick">
            <summary>
            Occurs when a cell InfoImage has been clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.CellInfoDoubleClick">
            <summary>
            Occurs when a cell InfoImage has been double clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.CellInfoEnter">
            <summary>
            Occurs when a Cell InfoImage has been entered via the mouse
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.CellInfoLeave">
            <summary>
            Occurs when a Cell InfoImage has been exited via the mouse
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.CellMouseDown">
            <summary>
            Occurs when a mouse button is pressed
            while the mouse pointer is within a cell
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.CellMouseEnter">
            <summary>
            Occurs when the mouse pointer enters a cell
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.CellMouseLeave">
            <summary>
            Occurs when the mouse pointer leaves a cell
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.CellMouseMove">
            <summary>
            Occurs when the mouse pointer moves within a cell
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.CellMouseUp">
            <summary>
            Occurs when a mouse button is released
            while the mouse pointer is within a cell
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.CellValidating">
            <summary>
            Occurs when a cell needs validating
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.CellValidated">
            <summary>
            Occurs when a cell has finished validating
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.BeforeCheck">
            <summary>
            Occurs when a row check state is about to change
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.AfterCheck">
            <summary>
            Occurs when a row check state has changed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.BeforeCollapse">
            <summary>
            Occurs when a row is about to collapse
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.AfterCollapse">
            <summary>
            Occurs when a row has just been collapsed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.CellUserFunction">
            <summary>
            Occurs when a cell User function needs evaluated
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.CellValueChanged">
            <summary>
            Occurs when any cell Value changes
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ColumnGrouped">
            <summary>
            Occurs when a column has been Grouped
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ColumnHeaderClick">
            <summary>
            Occurs when a column header has been clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ColumnHeaderDoubleClick">
            <summary>
            Occurs when a column header has been double clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ColumnHeaderMarkupLinkClick">
            <summary>
            Occurs when a GridColumn Header has a MarkupLink that has been clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ColumnHeaderMouseDown">
            <summary>
            Occurs when a mouse button is pressed
            while the mouse pointer is within the Column Header
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ColumnHeaderMouseEnter">
            <summary>
            Occurs when the mouse pointer enters the Column Header
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ColumnHeaderMouseLeave">
            <summary>
            Occurs when the mouse pointer leaves the Column Header
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ColumnHeaderMouseMove">
            <summary>
            Occurs when the mouse pointer moves within the Column Header
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ColumnHeaderMouseUp">
            <summary>
            Occurs when a mouse button is released
            while the mouse pointer is within the Column Header
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ColumnGroupHeaderClick">
            <summary>
            Occurs when a column GroupHeader has been clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ColumnGroupHeaderDoubleClick">
            <summary>
            Occurs when a column GroupHeader has been double clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ColumnGroupHeaderMarkupLinkClick">
            <summary>
            Occurs when a GridColumn GroupHeader has a MarkupLink that has been clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ColumnGroupHeaderResized">
            <summary>
            Occurs when a column GroupHeader has been resized
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ColumnMoved">
            <summary>
            Occurs when a column has been moved or reordered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ColumnResized">
            <summary>
            Occurs when a column has been resized
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ColumnRowHeaderClick">
            <summary>
            Occurs when a column RowHeader has been clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ColumnRowHeaderDoubleClick">
            <summary>
            Occurs when a column RowHeader has been double clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.CompareElements">
            <summary>
            Occurs when the grid needs to compare 1 element with another
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DataBindingStart">
            <summary>
            Occurs when the grid is about to start a nested binding operation
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DataBindingComplete">
            <summary>
            Occurs when a grid's data binding is complete
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DataError">
            <summary>
            Occurs when an error is encountered while dealing with data
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DataFilteringStart">
            <summary>
            Occurs when the grid is about to start a data filtering operation
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DataFilteringComplete">
            <summary>
            Occurs when a grid's data Filtering is complete
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ItemDrag">
            <summary>
            Occurs when a user begins dragging an item
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.BeginEdit">
            <summary>
            Occurs when a modal cell edit is about to begin
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.CancelEdit">
            <summary>
            Occurs when a modal cell edit has been canceled
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.CloseEdit">
            <summary>
            Occurs when a modal cell edit has closed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.EditorValueChanged">
            <summary>
            Occurs when a cell editor value has changed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.EndEdit">
            <summary>
            Occurs when a modal cell edit is ending
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetEditor">
            <summary>
            Occurs when a cell editor is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetRenderer">
            <summary>
            Occurs when a cell renderer is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.InitEditContext">
            <summary>
            Occurs when a cell editor needs it's context initialized
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.BeforeExpand">
            <summary>
            Occurs when a row is about to be expanded
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.AfterExpand">
            <summary>
            Occurs when a row has just been expanded
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterBeginEdit">
            <summary>
            Occurs when a column filter edit is about to begin
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterCancelEdit">
            <summary>
            Occurs when a column filter edit has been canceled
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterColumnError">
            <summary>
            Occurs when a column filter error has occurred
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterEditValueChanged">
            <summary>
            Occurs when a filter edit value has changed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterEndEdit">
            <summary>
            Occurs when a column filter edit has ended
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterHeaderClick">
            <summary>
            Occurs when a Filter header has been clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterHelpClosing">
            <summary>
            Occurs when a filter expression help window is about to close
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterHelpOpening">
            <summary>
            Occurs when a filter expression help window is about to open
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterItemsLoaded">
            <summary>
            Occurs following the loading of the items in the
            ComboBox, when a ComboBox filter edit is about to begin
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterLoadItems">
            <summary>
            Occurs when a ComboBox filter edit is about to begin
            and the items in the comboBox need to be loaded
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterLoadUserData">
            <summary>
            Occurs when user defined Filter data needs to be loaded
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterPopupClosing">
            <summary>
            Occurs when a column filter menu is closing
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterPopupLoad">
            <summary>
            Occurs when a column filter menu needs loaded
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterPopupLoaded">
            <summary>
            Occurs after a column filter menu has been loaded
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterPopupOpening">
            <summary>
            Occurs when a column filter menu is about to open
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterPopupValueChanged">
            <summary>
            Occurs when a filter popup value has changed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterRowError">
            <summary>
            Occurs when a row filter error has occurred
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterRowHeaderClick">
            <summary>
            Occurs when a Filter RowHeader has been clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterStoreUserData">
            <summary>
            Occurs when user defined Filter data needs to be stored
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterUserFunction">
            <summary>
            Occurs when a Filter User function needs evaluated
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetFilterEditType">
            <summary>
            Occurs when the column filter edit type is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetCellRanges">
            <summary>
            Occurs when the grid needs to get the current merged cell ranges
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetCellFormattedValue">
            <summary>
            Occurs when a Modal cell Value needs formatted
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetCellRangeFormattedValue">
            <summary>
            Occurs when a CellRange Formatted Value is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetCellStyle">
            <summary>
            Occurs when a Cell Style is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetCellToolTip">
            <summary>
            Occurs when a Cell ToolTip is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetCellValue">
            <summary>
            Occurs when a Cell Value is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetColumnGroupHeaderStyle">
            <summary>
            Occurs when a ColumnGroupHeader style is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetColumnHeaderRowHeaderStyle">
            <summary>
            Occurs when a ColumnHeader RowHeader style is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetColumnHeaderStyle">
            <summary>
            Occurs when a ColumnHeader style is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetColumnHeaderToolTip">
            <summary>
            Occurs when a ColumnHeader ToolTip is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetDisplayRanges">
            <summary>
            Occurs when the grid needs to get the current display ranges
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetFilterRowStyle">
            <summary>
            Occurs when a FilterRow style is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetFilterColumnHeaderStyle">
            <summary>
            Occurs when a Filter ColumnHeader style is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ConfigureGroupBox">
            <summary>
            Occurs when a GroupBox Size is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetGroupDetailRows">
            <summary>
            Occurs when a list of group detail rows is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetGroupHeaderStyle">
            <summary>
            Occurs when an GroupHeader style is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetColumnGroupHeaderToolTip">
            <summary>
            Occurs when a ColumnGroupHeader ToolTip is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetMergedCellStyle">
            <summary>
            Occurs when a Merged Cell Style is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetPanelStyle">
            <summary>
            Occurs when a GridPanel style is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetGroupId">
            <summary>
            Occurs when an element Group identifier is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetRowCellStyle">
            <summary>
            Occurs when a row CellStyle is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetRowHeaderStyle">
            <summary>
            Occurs when a row RowHeader style is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetRowHeaderText">
            <summary>
            Occurs when a row's header text is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetRowStyle">
            <summary>
            Occurs when a row style is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GroupSorting">
            <summary>
            Occurs when a grid Group is about to be sorted
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GroupSorted">
            <summary>
            Occurs when a grid Group has been sorted
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetTextRowStyle">
            <summary>
            Occurs when a GridTextRow (Header, footer, etc) style is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GroupChanged">
            <summary>
            Occurs when column Grouping has changed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GroupHeaderClick">
            <summary>
            Occurs when a Group Header has been clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GroupHeaderDoubleClick">
            <summary>
            Occurs when a Group Header has been double clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.LayoutOrderUpdating">
            <summary>
            Occurs when a grid panel's order layout is being updated
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.LayoutOrderUpdated">
            <summary>
            Occurs when a grid panel's order layout has been updated
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.LocalizeString">
            <summary>
            Occurs when the SuperGrid is looking for translated text for one of the internal text that are
            displayed on menus, toolbars and customize forms. You need to set Handled=true if you want
            your custom text to be used instead of the built-in system value.
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.NoRowsMarkupLinkClick">
            <summary>
            Occurs when a GridPanel's NoRowsText has a MarkupLink that has been clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GridPreviewKeyDown">
            <summary>
             GridPreviewKeyDown
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PreviewKeyDown">
            <summary>
             PreviewKeyDown
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RefreshFilter">
            <summary>
            Occurs when the Virtual row filter needs refreshed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PostRenderCell">
            <summary>
            Occurs after a cell has been rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PreRenderCell">
            <summary>
            Occurs when a cell is about to be rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PostRenderPanelRow">
            <summary>
            Occurs when a nested Panel Row has been rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PreRenderPanelRow">
            <summary>
            Occurs when a nested Panel Row is about to be rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PostRenderRow">
            <summary>
            Occurs after a row has been rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PreRenderRow">
            <summary>
            Occurs when a row is about to be rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PostRenderTextRow">
            <summary>
            Occurs after a TextRow (Caption, Footer, etc) has been rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PreRenderTextRow">
            <summary>
            Occurs when a TextRow (Caption, Footer, etc) is about to be rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PostRenderGroupHeader">
            <summary>
            Occurs after a Group header has been rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PreRenderGroupHeader">
            <summary>
            Occurs when a Group header is about to be rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PostRenderColumnHeader">
            <summary>
            Occurs after a Column header has been rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PreRenderColumnHeader">
            <summary>
            Occurs when a Column header is about to be rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PostRenderColumnGroupHeader">
            <summary>
            Occurs after a Column GroupHeader has been rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PreRenderColumnGroupHeader">
            <summary>
            Occurs when a Column GroupHeader is about to be rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PostRenderFilterPopupGripBar">
            <summary>
            Occurs after a FilterPopup GripBar has been rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PreRenderFilterPopupGripBar">
            <summary>
            Occurs when a FilterPopup GripBar is about to be rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PostRenderFilterRow">
            <summary>
            Occurs after a Filter Row has been rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PreRenderFilterRow">
            <summary>
            Occurs when a Filter Row is about to be rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PostRenderGroupBox">
            <summary>
            Occurs after a GroupBox has been rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PreRenderGroupBox">
            <summary>
            Occurs when a GroupBox is about to be rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PostRenderGroupBoxConnector">
            <summary>
            Occurs after a GroupBox Connector been rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PreRenderGroupBoxConnector">
            <summary>
            Occurs when a GroupBox Connector is about to be rendered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.LoadVirtualRow">
            <summary>
            Occurs when a virtual row needs loaded
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowActivated">
            <summary>
            Occurs when a row has been made the Active Row
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowActivating">
            <summary>
            Occurs when a row is about to be made the Active Row
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowAdded">
            <summary>
            Occurs when a row has been added
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowAdding">
            <summary>
            Occurs when a row is about to be added
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowDeleted">
            <summary>
            Occurs when a row has been deleted
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowDeleting">
            <summary>
            Occurs when a row is about to be deleted
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GetDetailRowHeight">
            <summary>
            Occurs when a row's 'detail' height is needed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowClick">
            <summary>
            Occurs when a row has been clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowDoubleClick">
            <summary>
            Occurs when a row has been double clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowHeaderClick">
            <summary>
            Occurs when a row header has been clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowHeaderDoubleClick">
            <summary>
            Occurs when a row header has been double clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowHeaderResized">
            <summary>
            Occurs when the grid Row Header has been resized
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowInfoClick">
            <summary>
            Occurs when a row InfoImage has been clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowInfoDoubleClick">
            <summary>
            Occurs when a row InfoImage has been double clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowInfoEnter">
            <summary>
            Occurs when a row InfoImage has been entered via the mouse
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowInfoLeave">
            <summary>
            Occurs when a row InfoImage has been exited via the mouse
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowMarkedDirty">
            <summary>
            Occurs when a cell editor marks a row as Dirty
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowMouseDown">
            <summary>
            Occurs when a mouse button is pressed
            while the mouse pointer is within a Row
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowMouseEnter">
            <summary>
            Occurs when the mouse pointer enters a Row
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowMouseLeave">
            <summary>
            Occurs when the mouse pointer leaves a Row
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowMouseMove">
            <summary>
            Occurs when the mouse pointer moves within a Row
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowMouseUp">
            <summary>
            Occurs when a mouse button is released
            while the mouse pointer is within a Row
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowMoved">
            <summary>
            Occurs when a row has been moved or reordered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowMoving">
            <summary>
            Occurs when a row is about to be moved or reordered
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowResized">
            <summary>
            Occurs when a row has been resized
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowRestored">
            <summary>
            Occurs when a deleted row has been restored (undeleted)
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowRestoring">
            <summary>
            Occurs when a deleted row is about to be restored (undeleted)
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowSetDefaultValues">
            <summary>
            Occurs when a user enters the Insertion Row
            or presses the 'insert' key to add a new row,
            permitting default values to be set for each cell
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowsGrouped">
            <summary>
            Occurs when the grid Rows have been grouped (or ungrouped)
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowsGrouping">
            <summary>
            Occurs when the grid Rows are about to be grouped (or ungrouped)
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowsPurged">
            <summary>
            Occurs when grid rows have been purged
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowsPurging">
            <summary>
            Occurs when grid rows are about to be purged
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowsSorting">
            <summary>
            Occurs when the grid Rows are about to be sorted
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowsSorted">
            <summary>
            Occurs when the grid Rows have been sorted
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowValidating">
            <summary>
            Occurs when a row needs validating
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.RowValidated">
            <summary>
            Occurs after a row has been validated
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.StoreVirtualRow">
            <summary>
            Occurs when a virtual row has changed and
            it's contents need stored
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.VirtualRowLoaded">
            <summary>
            Occurs when after a virtual row has been loaded
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.Scroll">
            <summary>
            Occurs when the Horizontal or Vertical scrollbar has been scrolled
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ScrollMin">
            <summary>
            Occurs when the Horizontal or Vertical
            scrollbar has been scrolled to the Minimum and released
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ScrollMax">
            <summary>
            Occurs when the Horizontal or Vertical scrollbar has been scrolled to the Maximum and released
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.SelectionChanged">
            <summary>
            Occurs when the selected items in the grid has changed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.SelectionChanging">
            <summary>
            Occurs when the selected items in the grid is about to change
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.SortChanged">
            <summary>
            Occurs when the grid sort order has changed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.StyleManagerChanged">
            <summary>
            Occurs when the StyleManager style has changed
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.TextRowClick">
            <summary>
            Occurs when a GridTextRow (Title, footer, ...) has been clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.TextRowHeaderClick">
            <summary>
            Occurs when a GridTextRow (Title, footer, ...) Row Header has been clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.TextRowMarkupLinkClick">
            <summary>
            Occurs when a GridTextRow (Title, footer, ...) has a MarkupLink that has been clicked
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.UpdateCellDisplayRanges">
            <summary>
            Occurs after the grid has created its CellDisplayRanges list
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ActiveCell">
            <summary>
             Gets the current active cell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ActiveEditor">
            <summary>
             Gets the currently active cell editor, or null if
             no edit is in progress
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ActiveElement">
            <summary>
             Gets the current active grid element (Row/Cell), or null if
             there is no current active element
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ActiveFilterPanel">
            <summary>
             Gets the currently active FilterPanel
             editor, or null if no edit is in progress
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ActiveGrid">
            <summary>
             Gets the current active grid
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ActiveRow">
            <summary>
             Gets the current active row, or null if no row
             is defined or active
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.BaseVisualStyles">
            <summary>
             BaseVisualStyles - the SuperGrid starting base styles
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DefaultVisualStyles">
            <summary>
             Gets or sets the Default Visual Styles for each grid element
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DesignerElement">
            <summary>
             For internal use only
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.EditorActive">
            <summary>
             Gets whether a cell editor is currently active
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.EditorCell">
            <summary>
             Gets the currently active editor cell, or null
             if no cell is currently being edited
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.EditorColumn">
            <summary>
             Gets the column containing the current edit
             cell, or null if no edit is in progress
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.EditorGrid">
            <summary>
             Gets the grid containing the cell currently
             being edited, or null if no edit is in progress
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.EditorRow">
            <summary>
             Gets the row containing the cell currently
             being edited, or null if no edit is in progress
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.EnableFastScrolling">
            <summary>
            Gets or sets whether Fast Scrolling is enabled. Default is true.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ExpandButtonType">
            <summary>
            Gets or sets the ExpandButton Type
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterColorizeCustomExpr">
            <summary>
            Gets or sets whether the Custom Expression
            dialog colorizes the output expression
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterExprColors">
            <summary>
            Gets or sets the expression colors used in the Custom Expression dialog
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterMaxDropDownHeight">
            <summary>
            Gets or sets the max height of
            the filter panel and filter popup drop-down
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.FilterUseExtendedCustomDialog">
            <summary>
            Gets or sets whether the Extended Custom Expression dialog
            is used (permits user filter definition persistence)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.GridCursor">
            <summary>
             Gets or sets the logical grid cursor
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.HScrollBar">
            <summary>
             Gets a reference to the grid’s horizontal scrollbar
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.HScrollMaximum">
            <summary>
             Gets the horizontal scrollbar maximum value
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.HScrollOffset">
            <summary>
             Gets or sets the horizontal scrollbar offset
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.HScrollBarVisible">
            <summary>
            Gets or sets whether Horizontal Scroll-bar is shown if needed because content of the control exceeds available width. Default value is true.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.IsUpdateSuspended">
            <summary>
             Gets whether grid updating / rendering is suspended
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.NonModalEditorCell">
            <summary>
             Gets the current NonModal cell being edited, or
             null if no NonModel cell edit is in progress
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PopupControl">
            <summary>
            Gets the current active PopupControl
            (Returns null if none is currently active).
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PrimaryGrid">
            <summary>
             Gets the primary, root grid.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ShowCustomFilterHelp">
            <summary>
            Gets or sets whether the Custom
            Expression dialog shows user help
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.SizingStyle">
            <summary>
            Gets or sets which StyleType (Default, MouseOver, etc) to use for element sizing
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.TabSelection">
            <summary>
             Gets or sets how the TAB key moves the focus when pressed. 
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.MaxToolTipLength">
            <summary>
             Gets or sets the maximum tooltip length
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.VScrollBar">
            <summary>
             Gets a reference to the grid’s vertical scrollbar
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.VScrollMaximum">
            <summary>
             Gets the vertical scrollbar maximum value
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.VScrollOffset">
            <summary>
             Gets the vertical scrollbar offset
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.VScrollBarVisible">
            <summary>
            Gets or sets whether Vertical Scroll-bar is shown if needed because content of the control exceeds available height. Default value is true.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.ActiveNonModalEditor">
            <summary>
             ActiveNonModalEditor
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.DefaultSize">
            <summary>
            DefaultSize
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.Cursor">
            <summary>
            Cursor
            </summary>
        </member>
        <member name="E:DevComponents.DotNetBar.SuperGrid.SuperGridControl.PropertyChanged">
            <summary>
            Occurs when property value has changed.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.LicenseKey">
            <summary>
             LicenseKey
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.SuperGridControl.TouchEnabled">
            <summary>
            Indicates whether touch support for scrolling is enabled.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.DataContext">
            <summary>
             Context under which data is being accessed
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.DataContext.CellEdit">
            <summary>
             CellEdit
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.DataContext.CellKeyEvent">
            <summary>
             CellKeyEvent
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.DataContext.CellMouseEvent">
            <summary>
             CellMouseEvent
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.DataContext.CellProposedSize">
            <summary>
             CellProposedSize
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.DataContext.CellRender">
            <summary>
             CellRender
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.DataContext.CellValueLoad">
            <summary>
             CellValueLoad
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.DataContext.CellValueStore">
            <summary>
             CellValueStore
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.DataContext.CellExpressionParse">
            <summary>
             CellExpressionParse
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.DataContext.CellExpressionEval">
            <summary>
             CellExpressionEval
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.DataContext.CellGetFormattedValue">
            <summary>
            CellGetFormattedValue
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.DataContext.SetRowPosition">
            <summary>
             SetRowPosition
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.DataContext.RowFlush">
            <summary>
             RowFlush
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.DataContext.InsertRow">
            <summary>
             InsertRow
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.ExpandButtonType">
            <summary>
             Expand button type
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ExpandButtonType.NotSet">
            <summary>
             NotSet
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ExpandButtonType.None">
            <summary>
             None
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ExpandButtonType.Circle">
            <summary>
             Circle
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ExpandButtonType.Square">
            <summary>
             Square
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.ExpandButtonType.Triangle">
            <summary>
             Triangle
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.NewRowContext">
            <summary>
             Context under which the New
             row is being accessed / created
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.NewRowContext.RowInit">
            <summary>
             RowInit
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.NewRowContext.RowActivate">
            <summary>
             RowActivate
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.NewRowContext.RowDeactivate">
            <summary>
             RowDeactivate
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.RenderParts">
            <summary>
             Identifies grid 'parts' to be rendered
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RenderParts.Nothing">
            <summary>
             Nothing to render
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RenderParts.Background">
            <summary>
             Background needs to be rendered
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RenderParts.Border">
            <summary>
             Border needs to be rendered
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RenderParts.Content">
            <summary>
             Content needs to be rendered
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RenderParts.RowHeader">
            <summary>
             RowHeader needs to be rendered
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.RenderParts.Whitespace">
            <summary>
             Whitespace needs to be rendered
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.TabSelection">
            <summary>
             Identifies selection style when the Tab key is pressed
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.TabSelection.Cell">
            <summary>
             Previous / Next cell.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.TabSelection.CellSameRow">
            <summary>
             Previous / Next cell in the same row.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.TabSelection.Control">
            <summary>
             Previous / Next Control.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridCellActivatedEventArgs">
            <summary>
            GridCellActivatedEventArgs
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridEventArgs">
            <summary>
            GridEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
             GridEventArgs
            </summary>
            <param name="gridPanel"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridEventArgs.GridPanel">
            <summary>
            Gets the event Grid
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCellActivatedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.GridCell)">
            <summary>
             GridCellActivatedEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="oldCell"></param>
            <param name="newCell"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCellActivatedEventArgs.OldActiveCell">
            <summary>
            Gets the old (previous) ActiveCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCellActivatedEventArgs.NewActiveCell">
            <summary>
            Gets the new (current) ActiveCell
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridCellActivatingEventArgs">
            <summary>
            GridCellActivatingEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCellActivatingEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.GridCell)">
            <summary>
             GridCellActivatedEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="oldCell"></param>
            <param name="newCell"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCellActivatingEventArgs.Cancel">
            <summary>
            Gets or sets whether to Cancel the operation
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridActiveGridChangedEventArgs">
            <summary>
            ActiveGridChangedEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridActiveGridChangedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
             GridActiveGridChangedEventArgs
            </summary>
            <param name="oldGridPanel"></param>
            <param name="newGridPanel"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridActiveGridChangedEventArgs.OldGridPanel">
            <summary>
            Gets the old (previous) active GridPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridActiveGridChangedEventArgs.NewGridPanel">
            <summary>
            Gets the new (current) active GridPanel
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridAfterCheckEventArgs">
            <summary>
            GridAfterCheckEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridAfterCheckEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridElement)">
            <summary>
             GridAfterCheckEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="item"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridAfterCheckEventArgs.Item">
            <summary>
            Gets the Item being checked or unchecked
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridAfterCollapseEventArgs">
            <summary>
            GridAfterCollapseEventArgs
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridAfterExpandEventArgs">
            <summary>
            GridAfterExpandChangeEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridAfterExpandEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.ExpandSource)">
            <summary>
             GridAfterExpandChangeEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridContainer"></param>
            <param name="expandSource"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridAfterExpandEventArgs.GridContainer">
            <summary>
            Gets the GridContainer being expanded or collapsed
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridAfterExpandEventArgs.ExpandSource">
            <summary>
            Returns the source of the operation
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridAfterCollapseEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.ExpandSource)">
            <summary>
             GridRowAfterCollapseEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridContainer"></param>
            <param name="expandSource"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridBeforeCheckEventArgs">
            <summary>
            GridRowBeforeExpandEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridBeforeCheckEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridElement)">
            <summary>
             GridBeforeCheckEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridRow"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridBeforeCheckEventArgs.Cancel">
            <summary>
            Gets or sets whether to Cancel the operation
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridBeforeCollapseEventArgs">
            <summary>
            GridBeforeExpandEventArgs
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridBeforeExpandEventArgs">
            <summary>
            GridBeforeExpandEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridBeforeExpandEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.ExpandSource)">
            <summary>
             GridRowBeforeExpandEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridContainer"></param>
            <param name="expandSource"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridBeforeExpandEventArgs.Cancel">
            <summary>
            Gets or sets whether to Cancel the operation
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridBeforeCollapseEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.ExpandSource)">
            <summary>
             GridBeforeExpandEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridContainer"></param>
            <param name="expandSource"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridCellEventArgs">
            <summary>
            GridCellEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCellEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell)">
            <summary>
             GridCellEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridCell"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCellEventArgs.GridCell">
            <summary>
            Gets the associated GridCell
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridCellClickEventArgs">
            <summary>
            GridCellClickEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCellClickEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,System.Windows.Forms.MouseEventArgs)">
            <summary>
             GridCellClickEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridCell"></param>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCellClickEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCellClickEventArgs.MouseEventArgs">
            <summary>
            Gets the associated MouseEventArgs
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridCellDoubleClickEventArgs">
            <summary>
            GridCellDoubleClickEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCellDoubleClickEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,System.Windows.Forms.MouseEventArgs)">
            <summary>
             GridCellDoubleClickEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridCell"></param>
            <param name="e"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridCellInfoEnterEventArgs">
            <summary>
            GridCellInfoEnterEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCellInfoEnterEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,System.Drawing.Point)">
            <summary>
             GridRowInfoEnterEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridCell"></param>
            <param name="pt"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCellInfoEnterEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the default operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCellInfoEnterEventArgs.Location">
            <summary>
            Gets the associated event Location
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridCellInfoLeaveEventArgs">
            <summary>
            GridCellInfoLeaveEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCellInfoLeaveEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell)">
            <summary>
             GridRowInfoLeaveEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridCell"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridCellMouseEventArgs">
            <summary>
            GridCellMouseEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCellMouseEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,System.Windows.Forms.MouseEventArgs)">
            <summary>
             GridCellMouseEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridCell"></param>
            <param name="ev"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCellMouseEventArgs.GridCell">
            <summary>
            Gets the associated GridCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCellMouseEventArgs.GridPanel">
            <summary>
            Gets the associated GridPanel
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridCellUserFunctionEventArgs">
            <summary>
            GridCellUserFunctionEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCellUserFunctionEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,System.Object[],System.Object)">
            <summary>
             GridCellUserFunctionEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridCell"></param>
            <param name="args"></param>
            <param name="result"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCellUserFunctionEventArgs.Args">
            <summary>
            Gets or sets the associated function arguments
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCellUserFunctionEventArgs.Result">
            <summary>
            Gets or sets the associated function result
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridCellValidatedEventArgs">
            <summary>
            GridCellValidatedEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCellValidatedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell)">
            <summary>
             GridCellValidatedEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridCell"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridCellValidatingEventArgs">
            <summary>
            GridCellValidatingEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCellValidatingEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,System.Object,System.Object)">
            <summary>
             GridCellValidatingEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridCell"></param>
            <param name="value"></param>
            <param name="formattedValue"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCellValidatingEventArgs.Value">
            <summary>
            Gets or sets the Value to validate
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCellValidatingEventArgs.FormattedValue">
            <summary>
            Gets the formatted Value
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCellValidatingEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the operation
            resulting in the cell validation
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridCellValueChangedEventArgs">
            <summary>
            GridCellValueChangedEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCellValueChangedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,System.Object,System.Object,DevComponents.DotNetBar.SuperGrid.DataContext)">
            <summary>
             GridCellValueChangedEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridCell"></param>
            <param name="oldValue"></param>
            <param name="newValue"></param>
            <param name="context"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCellValueChangedEventArgs.DataContext">
            <summary>
             Gets the context under which
             the call value was changed
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCellValueChangedEventArgs.OldValue">
            <summary>
             Gets the old cell Value
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCellValueChangedEventArgs.NewValue">
            <summary>
             Gets the new cell Value
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridColumnEventArgs">
            <summary>
            GridColumnEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
             GridColumnEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnEventArgs.GridPanel">
            <summary>
            Gets th associated GridPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnEventArgs.GridColumn">
            <summary>
            Gets the associated GridColumn
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridColumnHeaderClickEventArgs">
            <summary>
            GridColumnHeaderClickEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeaderClickEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,System.Windows.Forms.MouseEventArgs)">
            <summary>
             GridColumnHeaderClickEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeaderClickEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeaderClickEventArgs.MouseEventArgs">
            <summary>
            Gets the associated MouseEventArgs
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridColumnHeaderEventArgs">
            <summary>
            GridColumnHeaderEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeaderEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridColumnHeader)">
            <summary>
             GridColumnHeaderEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumnHeader"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeaderEventArgs.GridPanel">
            <summary>
            Gets th associated GridPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeaderEventArgs.GridColumnHeader">
            <summary>
            Gets the associated GridColumnHeader
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridColumnHeaderMarkupLinkClickEventArgs">
            <summary>
            GridColumnHeaderMarkupLinkClickEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeaderMarkupLinkClickEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,System.String,System.String)">
            <summary>
             GridColumnHeaderMarkupLinkClickEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="name"></param>
            <param name="href"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeaderMarkupLinkClickEventArgs.HRef">
            <summary>
            Gets the associated HyperLink HRef
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeaderMarkupLinkClickEventArgs.Name">
            <summary>
            Gets the associated HyperLink Name
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridColumnHeaderDoubleClickEventArgs">
            <summary>
            GridColumnHeaderDoubleClickEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeaderDoubleClickEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,System.Windows.Forms.MouseEventArgs)">
            <summary>
             GridColumnHeaderDoubleClickEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="e"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridColumnHeaderMouseEventArgs">
            <summary>
            GridColumnHeaderMouseEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnHeaderMouseEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridColumnHeader,System.Windows.Forms.MouseEventArgs)">
            <summary>
             GridColumnHeaderMouseEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridCell"></param>
            <param name="ev"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeaderMouseEventArgs.GridColumnHeader">
            <summary>
            Gets the associated GridColumnHeader
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnHeaderMouseEventArgs.GridPanel">
            <summary>
            Gets the associated GridPanel
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridColumnGroupHeaderClickEventArgs">
            <summary>
            GridColumnGroupHeaderClickEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnGroupHeaderClickEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumnHeader,DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader,System.Windows.Forms.MouseEventArgs)">
            <summary>
             GridColumnGroupHeaderClickEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="header"></param>
            <param name="groupHeader"></param>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnGroupHeaderClickEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnGroupHeaderClickEventArgs.ColumnHeader">
            <summary>
            Gets the associated ColumnHeader
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnGroupHeaderClickEventArgs.GroupHeader">
            <summary>
            Gets the associated GroupHeader
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnGroupHeaderClickEventArgs.MouseEventArgs">
            <summary>
            Gets the associated MouseEventArgs
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridColumnGroupHeaderMarkupLinkClickEventArgs">
            <summary>
            GridColumnGroupHeaderMarkupLinkClickEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnGroupHeaderMarkupLinkClickEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumnHeader,DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader,System.String,System.String)">
            <summary>
             GridColumnGroupHeaderMarkupLinkClickEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="groupHeader"></param>
            <param name="name"></param>
            <param name="href"></param>
            <param name="header"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnGroupHeaderMarkupLinkClickEventArgs.ColumnHeader">
            <summary>
            Gets the associated ColumnHeader
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnGroupHeaderMarkupLinkClickEventArgs.GroupHeader">
            <summary>
            Gets the associated GroupHeader
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnGroupHeaderMarkupLinkClickEventArgs.HRef">
            <summary>
            Gets the associated HyperLink HRef
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnGroupHeaderMarkupLinkClickEventArgs.Name">
            <summary>
            Gets the associated HyperLink Name
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridColumnGroupHeaderDoubleClickEventArgs">
            <summary>
            GridColumnGroupHeaderDoubleClickEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnGroupHeaderDoubleClickEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumnHeader,DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader,System.Windows.Forms.MouseEventArgs)">
            <summary>
             GridColumnGroupHeaderDoubleClickEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="groupHeader"></param>
            <param name="e"></param>
            <param name="header"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridColumnGroupHeaderResizedEventArgs">
            <summary>
            GridColumnGroupHeaderResizedEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnGroupHeaderResizedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader,System.Drawing.Size)">
            <summary>
             GridColumnGroupHeaderResizedEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="groupHeader"></param>
            <param name="oldSize"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnGroupHeaderResizedEventArgs.GridPanel">
            <summary>
            Gets th associated GridPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnGroupHeaderResizedEventArgs.GroupHeader">
            <summary>
            Gets the associated GridHeader
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnGroupHeaderResizedEventArgs.OldSize">
            <summary>
            Gets the OldSize
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnGroupHeaderResizedEventArgs.NewSize">
            <summary>
            Gets the NewSize
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridColumnGroupedEventArgs">
            <summary>
            GridColumnGroupedEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridColumnGroupedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.GridGroup)">
            <summary>
             GridColumnEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="gridGroup"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridColumnGroupedEventArgs.GridGroup">
            <summary>
            Gets th associated GridGroup
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridCompareElementsEventArgs">
            <summary>
            GridCompareElementsEventArgs
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridCancelEventArgs">
            <summary>
            GridCancelEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCancelEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
             GridEventArgs
            </summary>
            <param name="gridPanel"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCancelEventArgs.Cancel">
            <summary>
            Gets or sets whether
            to cancel the operation entirely
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCompareElementsEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridElement,DevComponents.DotNetBar.SuperGrid.GridElement)">
            <summary>
             GridRowMovingEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="a"></param>
            <param name="b"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCompareElementsEventArgs.ElementA">
            <summary>
            Gets the left-hand element of the comparison
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCompareElementsEventArgs.ElementB">
            <summary>
            Gets the right-hand element of the comparison
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridCompareElementsEventArgs.Result">
            <summary>
            Gets or sets the result of the element compare.
            -1 = ElementA is less than ElementB
            0 = ElementA is equal to ElementB
            +1 = ElementA is greater than ElementB
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridDataBindingStartEventArgs">
            <summary>
            GridDataBindingStartEventArgs
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowCancelEventArgs">
            <summary>
            GridRowCancelEventArgs
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowEventArgs">
            <summary>
            GridRowEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer)">
            <summary>
             GridRowEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridRow"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowEventArgs.GridRow">
            <summary>
            Gets the associated GridRow
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowCancelEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer)">
            <summary>
             GridRowCancelEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridRow"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowCancelEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the operation
            resulting in the row validation
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDataBindingStartEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridRow,System.String,System.Boolean,DevComponents.DotNetBar.SuperGrid.ProcessChildRelations)">
            <summary>
             GridDataBindingStartEventArgs
            </summary>
            <param name="gridPanel">Associated GridPanel</param>
            <param name="row">Associated GridRow</param>
            <param name="tableName">Name of table being bound to</param>
            <param name="autoGenerateColumns">Whether to auto-generate columns</param>
            <param name="crProcess"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDataBindingStartEventArgs.AutoGenerateColumns">
            <summary>
            Gets or sets whether to auto-generate
            the nested table columns
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDataBindingStartEventArgs.ProcessChildRelations">
            <summary>
            Gets or sets how Child Relations
            are processed by the SuperGrid
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDataBindingStartEventArgs.TableName">
            <summary>
            Gets the nested table name being bound
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridDataBindingCompleteEventArgs">
            <summary>
            GridDataBindingCompleteEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDataBindingCompleteEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
             GridDataBindingCompleteEventArgs
            </summary>
            <param name="gridPanel"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDataBindingCompleteEventArgs.ListChangedType">
            <summary>
            Gets how the list was changed
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridDataErrorEventArgs">
            <summary>
            GridDataErrorEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDataErrorEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,System.Exception,DevComponents.DotNetBar.SuperGrid.DataContext,System.Object)">
            <summary>
             GridDataErrorEventArgs
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDataErrorEventArgs.GridPanel">
            <summary>
            Gets the associated GridPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDataErrorEventArgs.GridCell">
            <summary>
            Gets the associated cell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDataErrorEventArgs.ErrorContext">
            <summary>
            Gets the context under which the Exception was thrown
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDataErrorEventArgs.Exception">
            <summary>
            Gets the Exception that was thrown
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDataErrorEventArgs.Retry">
            <summary>
            Gets or sets whether the grid should retry the operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDataErrorEventArgs.ThrowException">
            <summary>
            Gets whether the exception should be re-thrown by the grid
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridDataErrorEventArgs.Value">
            <summary>
            Gets the value that caused the Exception
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridDataFilteringStartEventArgs">
            <summary>
            GridDataFilteringStartEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDataFilteringStartEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
             GridDataFilteringStartEventArgs
            </summary>
            <param name="gridPanel">Associated GridPanel</param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridDataFilteringCompleteEventArgs">
            <summary>
            GridDataFilteringCompleteEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridDataFilteringCompleteEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
             GridDataFilteringCompleteEventArgs
            </summary>
            <param name="gridPanel"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFilterBeginEditEventArgs">
            <summary>
            GridFilterBeginEditEventArgs
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFilterEventArgs">
            <summary>
            GridFilterEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilterEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
             GridFilterEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilterBeginEditEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.FilterPanel)">
            <summary>
             GridFilterBeginEditEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="filterPanel"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterBeginEditEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterBeginEditEventArgs.FilterPanel">
            <summary>
            Gets the associated FilterPanel
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFilterCancelEditEventArgs">
            <summary>
            GridFilterCancelEditEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilterCancelEditEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.FilterPanel)">
            <summary>
             GridFilterCancelEditEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="filterPanel"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterCancelEditEventArgs.FilterPanel">
            <summary>
            Gets the associated FilterPanel
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFilterColumnErrorEventArgs">
            <summary>
            GridFilterColumnErrorEventArgs
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFilterRowErrorEventArgs">
            <summary>
            GridFilterRowErrorEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilterRowErrorEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridRow,System.Exception,System.Boolean@,System.Boolean@)">
            <summary>
             GridFilterRowErrorEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridRow"></param>
            <param name="exp"></param>
            <param name="filteredOut"></param>
            <param name="throwException"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterRowErrorEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterRowErrorEventArgs.Exception">
            <summary>
            Gets the associated filter Exception
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterRowErrorEventArgs.FilteredOut">
            <summary>
            Gets or sets whether the row is filtered out
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterRowErrorEventArgs.ThrowException">
            <summary>
            Gets or sets whether to re-throw the exception
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilterColumnErrorEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridRow,DevComponents.DotNetBar.SuperGrid.GridColumn,System.Exception,System.Boolean@,System.Boolean@)">
            <summary>
             GridFilterColumnErrorEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridRow"></param>
            <param name="gridColumn"></param>
            <param name="exp"></param>
            <param name="filteredOut"></param>
            <param name="throwException"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterColumnErrorEventArgs.GridColumn">
            <summary>
            Gets the associated GridColumn
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFilterEditValueChangedEventArgs">
            <summary>
            GridFilterEditValueChangedEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilterEditValueChangedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.FilterPanel,System.Object,System.Object,System.Object,System.String)">
            <summary>
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="fp"></param>
            <param name="oldValue"></param>
            <param name="newValue"></param>
            <param name="newDisplayValue"></param>
            <param name="newExpr"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterEditValueChangedEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterEditValueChangedEventArgs.FilterPanel">
            <summary>
             Gets the associated FilterPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterEditValueChangedEventArgs.OldValue">
            <summary>
             Gets the old filter value
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterEditValueChangedEventArgs.NewValue">
            <summary>
             Gets or sets the new filter value
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterEditValueChangedEventArgs.NewDisplayValue">
            <summary>
             Gets or sets the new filter display value
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterEditValueChangedEventArgs.NewExpr">
            <summary>
             Gets or sets the new filter expression
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFilterEndEditEventArgs">
            <summary>
            GridFilterEndEditEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilterEndEditEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.FilterPanel)">
            <summary>
             GridFilterEndEditEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="filterPanel"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterEndEditEventArgs.FilterPanel">
            <summary>
            Gets the associated FilterPanel
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFilterHeaderClickEventArgs">
            <summary>
            GridFilterHeaderClickEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilterHeaderClickEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,System.Windows.Forms.MouseEventArgs)">
            <summary>
             GridFilterHeaderClickEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterHeaderClickEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterHeaderClickEventArgs.MouseEventArgs">
            <summary>
            Gets the associated MouseEventArgs
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFilterHelpClosingEventArgs">
            <summary>
            GridFilterHelpClosingEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilterHelpClosingEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.SampleExpr)">
            <summary>
             GridFilterHelpClosingEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="sampleExpr"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterHelpClosingEventArgs.SampleExpr">
            <summary>
            Gets the associated Sample Expression help window
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFilterHelpOpeningEventArgs">
            <summary>
            GridFilterHelpOpeningEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilterHelpOpeningEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.SampleExpr)">
            <summary>
             GridFilterHelpOpeningEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="sampleExpr"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterHelpOpeningEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterHelpOpeningEventArgs.SampleExpr">
            <summary>
            Gets the associated Sample Expression help window
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFilterItemsLoadedEventArgs">
            <summary>
            GridFilterItemsLoadedEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilterItemsLoadedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.Controls.ComboBoxEx)">
            <summary>
             GridFilterItemsLoadedEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="comboBox"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterItemsLoadedEventArgs.ComboBox">
            <summary>
            Gets the associated ComboBoxEx
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFilterLoadItemsEventArgs">
            <summary>
            GridFilterLoadItemsEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilterLoadItemsEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.Controls.ComboBoxEx)">
            <summary>
             GridFilterBeginEditEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="comboBox"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterLoadItemsEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterLoadItemsEventArgs.ComboBox">
            <summary>
            Gets the associated ComboBoxEx
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFilterLoadUserDataEventArgs">
            <summary>
            GridFilterLoadUserDataEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilterLoadUserDataEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,System.String,System.Collections.Generic.List{DevComponents.DotNetBar.SuperGrid.UserFilterData})">
            <summary>
             GridFilterLoadUserDataEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="filterPath"></param>
            <param name="filterData"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterLoadUserDataEventArgs.FilterData">
            <summary>
            Gets or sets the associated FilterData (user defined
            Custom filter expressions)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterLoadUserDataEventArgs.FilterPath">
            <summary>
            Gets or sets the associated Path to
            the user defined filter data expression file
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFilterPopupClosingEventArgs">
            <summary>
            GridFilterPopupClosingEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilterPopupClosingEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.FilterPopup)">
            <summary>
             GridFilterPopupClosingEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="filterPopup"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterPopupClosingEventArgs.FilterPopup">
            <summary>
            Gets the associated filter popup
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFilterPopupLoadEventArgs">
            <summary>
            GridFilterPopupLoadEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilterPopupLoadEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.FilterPopup)">
            <summary>
             GridFilterPopupLoadEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="filterPopup"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterPopupLoadEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterPopupLoadEventArgs.FilterPopup">
            <summary>
            Gets the associated filter popup
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFilterPopupLoadedEventArgs">
            <summary>
            GridFilterPopupLoadedEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilterPopupLoadedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.FilterPopup)">
            <summary>
             GridFilterPopupLoadedEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="filterPopup"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterPopupLoadedEventArgs.FilterPopup">
            <summary>
            Gets the associated filter popup
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFilterPopupOpeningEventArgs">
            <summary>
            GridFilterPopupOpeningEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilterPopupOpeningEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.FilterPopup)">
            <summary>
             GridFilterPopupOpeningEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="filterPopup"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterPopupOpeningEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterPopupOpeningEventArgs.FilterPopup">
            <summary>
            Gets the associated filter popup
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFilterPopupValueChangedEventArgs">
            <summary>
            GridFilterPopupValueChangedEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilterPopupValueChangedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.FilterItemType,System.Object,System.Object,System.String)">
            <summary>
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="filterItemType"></param>
            <param name="filterValue"></param>
            <param name="filterDisplayValue"></param>
            <param name="filterExpr"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterPopupValueChangedEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterPopupValueChangedEventArgs.FilterValue">
            <summary>
             Gets or sets the new filter value
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterPopupValueChangedEventArgs.FilterDisplayValue">
            <summary>
             Gets or sets the new filter display value
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterPopupValueChangedEventArgs.FilterExpr">
            <summary>
             Gets or sets the new filter expression
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterPopupValueChangedEventArgs.FilterItemType">
            <summary>
             Gets the filter popup item selected
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFilterStoreUserDataEventArgs">
            <summary>
            GridFilterStoreUserDataEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilterStoreUserDataEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,System.String,System.Collections.Generic.List{DevComponents.DotNetBar.SuperGrid.UserFilterData})">
            <summary>
             GridFilterStoreUserDataEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="filterPath"></param>
            <param name="filterData"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterStoreUserDataEventArgs.FilterData">
            <summary>
            Gets or sets the associated FilterData (user defined
            Custom filter expressions)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterStoreUserDataEventArgs.FilterPath">
            <summary>
            Gets or sets the associated Path to
            the user defined filter data expression file
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridFilterUserFunctionEventArgs">
            <summary>
            GridFilterUserFunctionEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridFilterUserFunctionEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridRow,System.Object[],System.Object)">
            <summary>
             GridFilterUserFunctionEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridRow"></param>
            <param name="args"></param>
            <param name="result"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterUserFunctionEventArgs.Args">
            <summary>
            Gets or sets the associated function arguments
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterUserFunctionEventArgs.Handled">
            <summary>
            Gets or sets whether the function was handled
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridFilterUserFunctionEventArgs.Result">
            <summary>
            Gets or sets the associated function result
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetGroupDetailRowsEventArgs">
            <summary>
            GridGetGroupDetailRowsEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetGroupDetailRowsEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.GridGroup)">
            <summary>
             GridGetGroupDetailRowsEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="gridGroup"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetGroupDetailRowsEventArgs.DetailRows">
            <summary>
            Gets or sets the list of Post grouping DetailRows
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetGroupDetailRowsEventArgs.PostDetailRows">
            <summary>
            Gets or sets the list of Post grouping DetailRows
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetGroupDetailRowsEventArgs.PreDetailRows">
            <summary>
            Gets or sets the list of Pre grouping DetailRows
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetGroupDetailRowsEventArgs.GridGroup">
            <summary>
            Gets the associated GridGroup
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridItemDragEventArgs">
            <summary>
            GridItemDragEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridItemDragEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridElement,System.Windows.Forms.MouseEventArgs)">
            <summary>
             GridDragStartedEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="item"></param>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridItemDragEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridItemDragEventArgs.GridPanel">
            <summary>
            Gets the associated GridPanel
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetCellFormattedValueEventArgs">
            <summary>
            GridGetCellFormattedValueEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetCellFormattedValueEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,System.String)">
            <summary>
             GridGetCellFormattedValueEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridCell"></param>
            <param name="formattedValue"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetCellFormattedValueEventArgs.FormattedValue">
            <summary>
            Gets or sets the associated FormattedValue
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetCellRangeFormattedValueEventArgs">
            <summary>
            GridGetCellRangeFormattedValueEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetCellRangeFormattedValueEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.CellRange,System.String)">
            <summary>
             GridGetCellRangeFormattedValueEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridContainer"></param>
            <param name="cellRange"></param>
            <param name="formattedValue"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetCellRangeFormattedValueEventArgs.CellRange">
            <summary>
            Gets the associated CellRange
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetCellRangeFormattedValueEventArgs.FormattedValue">
            <summary>
            Gets or sets the associated FormattedValue
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetCellRangesEventArgs">
            <summary>
            GridGetCellRangesEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetCellRangesEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.DisplayRange,System.Collections.Generic.List{DevComponents.DotNetBar.SuperGrid.CellRange})">
            <summary>
             GridGetCellRangesEventArgs
            </summary>
            <param name="gridPanel">Associated GridPanel</param>
            <param name="gridContainer">Associated GridContainer</param>
            <param name="displayRange">Row/col range being merge evaluated</param>
            <param name="cellRanges">List of CellRanges</param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetCellRangesEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the default operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetCellRangesEventArgs.CellRanges">
            <summary>
            Gets or sets the CellRanges
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetCellRangesEventArgs.DisplayRange">
            <summary>
            Gets the current DisplayRange (row/col range
            being processed / merged evaluated)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetCellRangesEventArgs.GridContainer">
            <summary>
            Gets the associated GridContainer 
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetCellStyleEventArgs">
            <summary>
            GridGetCellStyleEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetCellStyleEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             GridGetCellStyleEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridCell"></param>
            <param name="styleType"></param>
            <param name="style"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetCellStyleEventArgs.StyleType">
            <summary>
            Gets the associated StyleType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetCellStyleEventArgs.Style">
            <summary>
            Gets or sets the associated VisualStyle
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetCellToolTipEventArgs">
            <summary>
            GridGetCellToolTipEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetCellToolTipEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,System.String)">
            <summary>
             GridGetCellToolTipEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridCell"></param>
            <param name="toolTip"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetCellToolTipEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetCellToolTipEventArgs.ToolTip">
            <summary>
            Gets or sets the associated ToolTip text
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetCellValueEventArgs">
            <summary>
            GridGetCellValueEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetCellValueEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,System.Object)">
            <summary>
             GridGetCellValueEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridCell"></param>
            <param name="value"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetCellValueEventArgs.Value">
            <summary>
            Gets or sets the associated Value
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetColumnGroupHeaderStyleEventArgs">
            <summary>
            GridGetColumnGroupHeaderStyleEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetColumnGroupHeaderStyleEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderVisualStyle)">
            <summary>
             GridGetColumnGroupHeaderStyleEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="groupHeader"></param>
            <param name="styleType"></param>
            <param name="style"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetColumnGroupHeaderStyleEventArgs.StyleType">
            <summary>
            Gets the associated StyleType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetColumnGroupHeaderStyleEventArgs.Style">
            <summary>
            Gets or sets the associated VisualStyle
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetColumnGroupHeaderStyleEventArgs.GroupHeader">
            <summary>
            Gets the associated ColumnGroupHeader
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetColumnHeaderRowHeaderStyleEventArgs">
            <summary>
            GridGetColumnHeaderRowHeaderStyleEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetColumnHeaderRowHeaderStyleEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumnHeader,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderRowVisualStyle)">
            <summary>
             GridGetColumnHeaderRowHeaderStyleEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="columnHeader"></param>
            <param name="styleType"></param>
            <param name="style"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetColumnHeaderRowHeaderStyleEventArgs.ColumnHeader">
            <summary>
            Gets the associated ColumnHeader
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetColumnHeaderRowHeaderStyleEventArgs.StyleType">
            <summary>
            Gets the associated StyleType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetColumnHeaderRowHeaderStyleEventArgs.Style">
            <summary>
            Gets or sets the associated VisualStyle
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetColumnHeaderStyleEventArgs">
            <summary>
            GridGetColumnHeaderStyleEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetColumnHeaderStyleEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.ColumnHeaderVisualStyle)">
            <summary>
             GridGetColumnHeaderStyleEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="styleType"></param>
            <param name="style"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetColumnHeaderStyleEventArgs.StyleType">
            <summary>
            Gets the associated StyleType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetColumnHeaderStyleEventArgs.Style">
            <summary>
            Gets or sets the associated VisualStyle
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetColumnGroupHeaderToolTipEventArgs">
            <summary>
            GridGetColumnGroupHeaderToolTipEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetColumnGroupHeaderToolTipEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader,DevComponents.DotNetBar.SuperGrid.HeaderArea,System.String)">
            <summary>
             GridGetColumnGroupHeaderToolTipEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="groupHeader"></param>
            <param name="hitArea"></param>
            <param name="toolTip"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetColumnGroupHeaderToolTipEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetColumnGroupHeaderToolTipEventArgs.GroupHeader">
            <summary>
            Gets the associated ColumnGroupHeader
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetColumnGroupHeaderToolTipEventArgs.HitArea">
            <summary>
            Gets the associated Header hit area
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetColumnGroupHeaderToolTipEventArgs.ToolTip">
            <summary>
            Gets or sets the associated ToolTip text
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetColumnHeaderToolTipEventArgs">
            <summary>
            GridGetColumnHeaderToolTipEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetColumnHeaderToolTipEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.HeaderArea,System.String)">
            <summary>
             GridGetColumnHeaderToolTipEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="hitArea"></param>
            <param name="toolTip"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetColumnHeaderToolTipEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetColumnHeaderToolTipEventArgs.HitArea">
            <summary>
            Gets the associated Header hit area
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetColumnHeaderToolTipEventArgs.ToolTip">
            <summary>
            Gets or sets the associated ToolTip text
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetDisplayRangesEventArgs">
            <summary>
            GridGetDisplayRangesEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetDisplayRangesEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,System.Collections.Generic.List{DevComponents.DotNetBar.SuperGrid.DisplayRange})">
            <summary>
             GridGetDisplayRangesEventArgs
            </summary>
            <param name="gridPanel">Associated GridPanel</param>
            <param name="gridContainer">Associated GridContainer</param>
            <param name="displayRanges">List of Row/col ranges to be merge evaluated</param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetDisplayRangesEventArgs.DisplayRanges">
            <summary>
            Gets or sets the DisplayRanges
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetDisplayRangesEventArgs.GridContainer">
            <summary>
            Gets the associated GridContainer 
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetFilterRowStyleEventArgs">
            <summary>
            GridGetFilterRowStyleEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetFilterRowStyleEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridFilter,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.FilterRowVisualStyle)">
            <summary>
             GridGetFilterRowStyleEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridFilter"></param>
            <param name="styleType"></param>
            <param name="style"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetFilterRowStyleEventArgs.GridFilter">
            <summary>
            Gets the associated GridFilter
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetFilterRowStyleEventArgs.StyleType">
            <summary>
            Gets the associated StyleType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetFilterRowStyleEventArgs.Style">
            <summary>
            Gets or sets the associated VisualStyle
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetFilterColumnHeaderStyleEventArgs">
            <summary>
            GridGetFilterColumnHeaderStyleEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetFilterColumnHeaderStyleEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.FilterColumnHeaderVisualStyle)">
            <summary>
             GridGetFilterColumnHeaderStyleEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="styleType"></param>
            <param name="style"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetFilterColumnHeaderStyleEventArgs.StyleType">
            <summary>
            Gets the associated StyleType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetFilterColumnHeaderStyleEventArgs.Style">
            <summary>
            Gets or sets the associated VisualStyle
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridConfigureGroupBoxEventArgs">
            <summary>
            GridConfigureGroupBoxEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridConfigureGroupBoxEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridGroupByRow,DevComponents.DotNetBar.SuperGrid.GridGroupBox)">
            <summary>
             GridConfigureGroupBoxEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="groupByRow"></param>
            <param name="gridGroupBox"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridConfigureGroupBoxEventArgs.GroupByRow">
            <summary>
            Gets the associated GroupByRow
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridConfigureGroupBoxEventArgs.GridGroupBox">
            <summary>
            Gets the associated GridColumn
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetGroupHeaderStyleEventArgs">
            <summary>
            GridGetGroupHeaderStyleEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetGroupHeaderStyleEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridGroup,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.GroupHeaderVisualStyle)">
            <summary>
             GridGetGroupHeaderStyleEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridRow"></param>
            <param name="styleType"></param>
            <param name="style"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetGroupHeaderStyleEventArgs.StyleType">
            <summary>
            Gets the associated StyleType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetGroupHeaderStyleEventArgs.GridRow">
            <summary>
            Gets the associated Group Header Row
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetGroupHeaderStyleEventArgs.Style">
            <summary>
            Gets or sets the associated VisualStyle
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetMergedCellStyleEventArgs">
            <summary>
            GridGetMergedCellStyleEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetMergedCellStyleEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.CellRange,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             GridGetMergedCellStyleEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="cellRange"></param>
            <param name="styleType"></param>
            <param name="style"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetMergedCellStyleEventArgs.CellRange">
            <summary>
            Gets the associated CellRange
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetMergedCellStyleEventArgs.StyleType">
            <summary>
            Gets the associated StyleType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetMergedCellStyleEventArgs.Style">
            <summary>
            Gets or sets the associated VisualStyle
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetPanelStyleEventArgs">
            <summary>
            GridGetPanelStyleEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetPanelStyleEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.Style.GridPanelVisualStyle)">
            <summary>
             GridGetPanelStyleEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="style"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetPanelStyleEventArgs.Style">
            <summary>
            Gets or sets the associated VisualStyle
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetRowCellStyleEventArgs">
            <summary>
            GridGetRowCellStyleEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetRowCellStyleEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.CellVisualStyle)">
            <summary>
             GridGetRowCellStyleEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridRow"></param>
            <param name="styleType"></param>
            <param name="style"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetRowCellStyleEventArgs.StyleType">
            <summary>
            Gets the associated StyleType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetRowCellStyleEventArgs.Style">
            <summary>
            Gets or sets the associated VisualStyle
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetRowHeaderStyleEventArgs">
            <summary>
            GridGetRowHeaderStyleEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetRowHeaderStyleEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.RowHeaderVisualStyle)">
            <summary>
             GridGetRowHeaderStyleEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="row"></param>
            <param name="styleType"></param>
            <param name="style"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetRowHeaderStyleEventArgs.StyleType">
            <summary>
            Gets the associated StyleType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetRowHeaderStyleEventArgs.Style">
            <summary>
            Gets or sets the associated VisualStyle
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetRowHeaderTextEventArgs">
            <summary>
            GridGetRowHeaderTextEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetRowHeaderTextEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,System.String)">
            <summary>
             GridGetRowHeaderTextEventArgs
            </summary>
            <param name="gridPanel">Associated GridPanel</param>
            <param name="row">Associated container row</param>
            <param name="text">Text to display in row header</param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetRowHeaderTextEventArgs.Text">
            <summary>
            Gets or sets the associated header text
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetRowStyleEventArgs">
            <summary>
            GridGetRowStyleEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetRowStyleEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.RowVisualStyle)">
            <summary>
             GridGetCellStyleEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridRow"></param>
            <param name="styleType"></param>
            <param name="style"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetRowStyleEventArgs.StyleType">
            <summary>
            Gets the associated StyleType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetRowStyleEventArgs.Style">
            <summary>
            Gets or sets the associated VisualStyle
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetTextRowStyleEventArgs">
            <summary>
            GridGetTextRowStyleEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetTextRowStyleEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridTextRow,DevComponents.DotNetBar.SuperGrid.Style.StyleType,DevComponents.DotNetBar.SuperGrid.Style.TextRowVisualStyle)">
            <summary>
             GridGetTextRowStyleEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridTextRow"></param>
            <param name="styleType"></param>
            <param name="style"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetTextRowStyleEventArgs.StyleType">
            <summary>
            Gets the associated StyleType
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetTextRowStyleEventArgs.Style">
            <summary>
            Gets or sets the associated VisualStyle
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetTextRowStyleEventArgs.GridTextRow">
            <summary>
            Gets the associated GridTextRow
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridEditEventArgs">
            <summary>
            GridEditEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridEditEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.IGridCellEditControl)">
            <summary>
             GridEditEventArgs
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridEditEventArgs.GridPanel">
            <summary>
            Gets the associated GridPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridEditEventArgs.GridCell">
            <summary>
            Gets the associated cell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridEditEventArgs.EditControl">
            <summary>
            Gets the associated cell EditControl
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridCloseEditEventArgs">
            <summary>
            GridCloseEditEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridCloseEditEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell)">
            <summary>
             GridCloseEditEventArgs
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetEditorEventArgs">
            <summary>
            GridGetEditorEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetEditorEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,System.Type,System.Object[])">
            <summary>
             GridGetEditorEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridCell"></param>
            <param name="editorType"></param>
            <param name="editorParams"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetEditorEventArgs.GridCell">
            <summary>
            Gets the associated GridCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetEditorEventArgs.EditorType">
            <summary>
            Gets or sets the associated cell editor Type
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetEditorEventArgs.EditorParams">
            <summary>
            Gets or sets the associated cell editor params
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetRendererEventArgs">
            <summary>
            GridGetRendererEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetRendererEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,System.Type,System.Object[])">
            <summary>
             GridGetRendererEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridCell"></param>
            <param name="renderType"></param>
            <param name="renderParams"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetRendererEventArgs.GridCell">
            <summary>
            Gets the associated GridCell
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetRendererEventArgs.RenderType">
            <summary>
            Gets or sets the associated cell Render Type
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetRendererEventArgs.RenderParams">
            <summary>
            Gets or sets the associated cell Render params
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetFilterEditTypeEventArgs">
            <summary>
            GridGetFilterEditTypeEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetFilterEditTypeEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.FilterEditType)">
            <summary>
             GridGetFilterEditTypeEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridColumn"></param>
            <param name="filterEditType"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetFilterEditTypeEventArgs.FilterEditType">
            <summary>
            Gets the associated Filter edit type
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGroupChangedEventArgs">
            <summary>
            GridGroupChangedEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroupChangedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GroupChangedAction,DevComponents.DotNetBar.SuperGrid.GridColumn)">
            <summary>
             GridRowClickEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="action"></param>
            <param name="column"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupChangedEventArgs.Action">
            <summary>
            Gets the associated GroupChangedAction
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupChangedEventArgs.GridColumn">
            <summary>
            Gets the associated GridColumn
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGroupHeaderClickEventArgs">
            <summary>
            GridGroupHeaderClickEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroupHeaderClickEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridGroup,DevComponents.DotNetBar.SuperGrid.GroupArea,System.Windows.Forms.MouseEventArgs)">
            <summary>
             GridRowClickEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridGroup"></param>
            <param name="area"></param>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupHeaderClickEventArgs.GridGroup">
            <summary>
            Gets the associated GridGroup
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupHeaderClickEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the default operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupHeaderClickEventArgs.MouseEventArgs">
            <summary>
            Gets the associated MouseEventArgs
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGroupHeaderClickEventArgs.GroupArea">
            <summary>
            Gets the associated GroupArea
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGroupHeaderDoubleClickEventArgs">
            <summary>
            GridGroupHeaderDoubleClickEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGroupHeaderDoubleClickEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridGroup,DevComponents.DotNetBar.SuperGrid.GroupArea,System.Windows.Forms.MouseEventArgs)">
            <summary>
             GridRowClickEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridGroup"></param>
            <param name="area"></param>
            <param name="e"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridInitEditContextEventArgs">
            <summary>
            GridInitEditContextEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridInitEditContextEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.IGridCellEditControl)">
            <summary>
             GridInitEditContextEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridCell"></param>
            <param name="editControl"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridInitEditContextEventArgs.EditControl">
            <summary>
            Gets the associated GridCell
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridNoRowsMarkupLinkClickEventArgs">
            <summary>
            GridNoRowsMarkupLinkClickEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridNoRowsMarkupLinkClickEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,System.String,System.String)">
            <summary>
             GridNoRowsMarkupLinkClickEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="name"></param>
            <param name="href"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridNoRowsMarkupLinkClickEventArgs.HRef">
            <summary>
            Gets the associated HyperLink HRef
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridNoRowsMarkupLinkClickEventArgs.Name">
            <summary>
            Gets the associated HyperLink Name
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridPostRenderCellEventArgs">
            <summary>
            GridPostRenderCellEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPostRenderCellEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
             GridPostRenderCellEventArgs
            </summary>
            <param name="graphics"></param>
            <param name="gridPanel"></param>
            <param name="gridCell"></param>
            <param name="parts"></param>
            <param name="bounds"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderCellEventArgs.Bounds">
            <summary>
            Gets the cell bounding rectangle
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderCellEventArgs.Graphics">
            <summary>
            Gets the Graphics object
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderCellEventArgs.RenderParts">
            <summary>
            Gets the cell parts to render
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridPreRenderCellEventArgs">
            <summary>
            GridPreRenderCellEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPreRenderCellEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridCell,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
             GridPreRenderCellEventArgs
            </summary>
            <param name="graphics"></param>
            <param name="gridPanel"></param>
            <param name="gridCell"></param>
            <param name="parts"></param>
            <param name="bounds"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPreRenderCellEventArgs.Cancel">
            <summary>
            Gets or sets whether
            to cancel the operation entirely
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridPostRenderRowEventArgs">
            <summary>
            GridPostRenderRowEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPostRenderRowEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
             GridPostRenderEventArgs
            </summary>
            <param name="graphics"></param>
            <param name="gridPanel"></param>
            <param name="gridRow"></param>
            <param name="parts"></param>
            <param name="bounds"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderRowEventArgs.Graphics">
            <summary>
            Gets the Graphics object
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderRowEventArgs.Bounds">
            <summary>
            Gets the bounding rectangle
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderRowEventArgs.RenderParts">
            <summary>
            Gets the parts to render
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridPreRenderRowEventArgs">
            <summary>
            GridPreRenderRowEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPreRenderRowEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
             GridPreRenderRowEventArgs
            </summary>
            <param name="graphics"></param>
            <param name="gridPanel"></param>
            <param name="gridRow"></param>
            <param name="parts"></param>
            <param name="bounds"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPreRenderRowEventArgs.Cancel">
            <summary>
            Gets or sets whether
            to cancel the operation entirely
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridPostRenderColumnHeaderEventArgs">
            <summary>
            GridPostRenderColumnHeaderEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPostRenderColumnHeaderEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumnHeader,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
             GridPostRenderColumnHeaderEventArgs
            </summary>
            <param name="graphics"></param>
            <param name="gridPanel"></param>
            <param name="columnHeader"></param>
            <param name="column"></param>
            <param name="parts"></param>
            <param name="bounds"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderColumnHeaderEventArgs.Bounds">
            <summary>
            Gets the cell bounding rectangle
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderColumnHeaderEventArgs.Graphics">
            <summary>
            Gets the Graphics object
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderColumnHeaderEventArgs.ColumnHeader">
            <summary>
            Gets the associated GridColumnHeader
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderColumnHeaderEventArgs.GridColumn">
            <summary>
            Gets the associated GridColumn (which can be null
            if the ColumnHeader's RowHeader is being rendered)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderColumnHeaderEventArgs.RenderParts">
            <summary>
            Gets the cell parts to render
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridPreRenderColumnHeaderEventArgs">
            <summary>
            GridPreRenderColumnHeaderEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPreRenderColumnHeaderEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumnHeader,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
             GridPreRenderColumnHeaderEventArgs
            </summary>
            <param name="graphics"></param>
            <param name="gridPanel"></param>
            <param name="header"></param>
            <param name="column"></param>
            <param name="parts"></param>
            <param name="bounds"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPreRenderColumnHeaderEventArgs.Cancel">
            <summary>
            Gets or sets whether
            to cancel the operation entirely
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridPostRenderColumnGroupHeaderEventArgs">
            <summary>
            GridPostRenderColumnGroupHeaderEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPostRenderColumnGroupHeaderEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumnHeader,DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
             GridPostRenderColumnGroupHeaderEventArgs
            </summary>
            <param name="graphics"></param>
            <param name="gridPanel"></param>
            <param name="columnHeader"></param>
            <param name="groupHeader"></param>
            <param name="parts"></param>
            <param name="bounds"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderColumnGroupHeaderEventArgs.Bounds">
            <summary>
            Gets the cell bounding rectangle
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderColumnGroupHeaderEventArgs.Graphics">
            <summary>
            Gets the Graphics object
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderColumnGroupHeaderEventArgs.ColumnHeader">
            <summary>
            Gets the associated ColumnHeader
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderColumnGroupHeaderEventArgs.GroupHeader">
            <summary>
            Gets the associated GroupHeader
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderColumnGroupHeaderEventArgs.RenderParts">
            <summary>
            Gets the cell parts to render
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridPreRenderColumnGroupHeaderEventArgs">
            <summary>
            GridPreRenderColumnGroupHeaderEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPreRenderColumnGroupHeaderEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridColumnHeader,DevComponents.DotNetBar.SuperGrid.ColumnGroupHeader,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
             GridPreRenderColumnGroupHeaderEventArgs
            </summary>
            <param name="graphics"></param>
            <param name="gridPanel"></param>
            <param name="header"></param>
            <param name="groupHeader"></param>
            <param name="parts"></param>
            <param name="bounds"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPreRenderColumnGroupHeaderEventArgs.Cancel">
            <summary>
            Gets or sets whether
            to cancel the operation entirely
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridPostRenderFilterPopupGripBarEventArgs">
            <summary>
            GridPostRenderFilterPopupGripBarEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPostRenderFilterPopupGripBarEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.FilterPopup,DevComponents.DotNetBar.SuperGrid.GridColumn,System.Drawing.Rectangle)">
            <summary>
             GridPostRenderFilterPopupGripBarEventArgs
            </summary>
            <param name="graphics"></param>
            <param name="filterPopup"></param>
            <param name="gridColumn"></param>
            <param name="bounds"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderFilterPopupGripBarEventArgs.Bounds">
            <summary>
            Gets the GripBar bounding rectangle
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderFilterPopupGripBarEventArgs.FilterPopup">
            <summary>
            Gets the FilterPopup object
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderFilterPopupGripBarEventArgs.Graphics">
            <summary>
            Gets the Graphics object
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridPreRenderFilterPopupGripBarEventArgs">
            <summary>
            GridPreRenderFilterPopupGripBarEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPreRenderFilterPopupGripBarEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.FilterPopup,DevComponents.DotNetBar.SuperGrid.GridColumn,System.Drawing.Rectangle)">
            <summary>
             GridPreRenderFilterPopupGripBarEventArgs
            </summary>
            <param name="graphics"></param>
            <param name="filterPopup"></param>
            <param name="gridColumn"></param>
            <param name="bounds"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPreRenderFilterPopupGripBarEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the operation entirely
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridPostRenderFilterRowEventArgs">
            <summary>
            GridPostRenderFilterRowEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPostRenderFilterRowEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridFilter,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
             GridPostRenderFilterRowEventArgs
            </summary>
            <param name="graphics"></param>
            <param name="gridPanel"></param>
            <param name="filter"></param>
            <param name="column"></param>
            <param name="parts"></param>
            <param name="bounds"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderFilterRowEventArgs.Bounds">
            <summary>
            Gets the bounding rectangle
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderFilterRowEventArgs.Graphics">
            <summary>
            Gets the Graphics object
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderFilterRowEventArgs.GridFilter">
            <summary>
            Gets the associated GridFilter
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderFilterRowEventArgs.GridColumn">
            <summary>
            Gets the associated GridColumn (which can be null
            if the Filter's RowHeader is being rendered)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderFilterRowEventArgs.RenderParts">
            <summary>
            Gets the parts to render
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridPreRenderFilterRowEventArgs">
            <summary>
            GridPreRenderFilterRowEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPreRenderFilterRowEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridFilter,DevComponents.DotNetBar.SuperGrid.GridColumn,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
             GridPreRenderFilterRowEventArgs
            </summary>
            <param name="graphics"></param>
            <param name="gridPanel"></param>
            <param name="filter"></param>
            <param name="column"></param>
            <param name="parts"></param>
            <param name="bounds"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPreRenderFilterRowEventArgs.Cancel">
            <summary>
            Gets or sets whether
            to cancel the operation entirely
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridPostRenderGroupBoxConnectorEventArgs">
            <summary>
            GridPostRenderGroupBoxConnectorEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPostRenderGroupBoxConnectorEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridGroupByRow,DevComponents.DotNetBar.SuperGrid.GridGroupBox,DevComponents.DotNetBar.SuperGrid.GridGroupBox)">
            <summary>
             GridPostRenderGroupBoxConnectorEventArgs
            </summary>
            <param name="graphics"></param>
            <param name="gridPanel"></param>
            <param name="groupByRow"></param>
            <param name="groupBox1"></param>
            <param name="groupBox2"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderGroupBoxConnectorEventArgs.Graphics">
            <summary>
            Gets the Graphics object
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderGroupBoxConnectorEventArgs.GroupByRow">
            <summary>
            Gets the associated GroupByRow
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderGroupBoxConnectorEventArgs.GridGroupBox1">
            <summary>
            Gets the first associated GridGroupBox
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderGroupBoxConnectorEventArgs.GridGroupBox2">
            <summary>
            Gets the second associated GridGroupBox
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridPreRenderGroupBoxConnectorEventArgs">
            <summary>
            GridPreRenderGroupBoxConnectorEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPreRenderGroupBoxConnectorEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridGroupByRow,DevComponents.DotNetBar.SuperGrid.GridGroupBox,DevComponents.DotNetBar.SuperGrid.GridGroupBox)">
            <summary>
             GridPreRenderGroupBoxConnectorEventArgs
            </summary>
            <param name="graphics"></param>
            <param name="gridPanel"></param>
            <param name="groupByRow"></param>
            <param name="groupBox1"></param>
            <param name="groupBox2"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPreRenderGroupBoxConnectorEventArgs.Cancel">
            <summary>
            Gets or sets whether
            to cancel the operation entirely
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridPostRenderGroupBoxEventArgs">
            <summary>
            GridPostRenderGroupBoxEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPostRenderGroupBoxEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridGroupByRow,DevComponents.DotNetBar.SuperGrid.GridGroupBox,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
             GridPostRenderGroupBoxEventArgs
            </summary>
            <param name="graphics"></param>
            <param name="gridPanel"></param>
            <param name="groupByRow"></param>
            <param name="gridGroupBox"></param>
            <param name="parts"></param>
            <param name="bounds"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderGroupBoxEventArgs.Graphics">
            <summary>
            Gets the Graphics object
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderGroupBoxEventArgs.Bounds">
            <summary>
            Gets the bounding rectangle
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderGroupBoxEventArgs.RenderParts">
            <summary>
            Gets the parts to render
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderGroupBoxEventArgs.GroupByRow">
            <summary>
            Gets the associated GroupByRow
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderGroupBoxEventArgs.GridGroupBox">
            <summary>
            Gets the associated GridGroupBox
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridPreRenderGroupBoxEventArgs">
            <summary>
            GridPreRenderGroupBoxEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPreRenderGroupBoxEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridGroupByRow,DevComponents.DotNetBar.SuperGrid.GridGroupBox,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
             GridPreRenderGroupBoxEventArgs
            </summary>
            <param name="graphics"></param>
            <param name="gridPanel"></param>
            <param name="groupByRow"></param>
            <param name="gridGroupBox"></param>
            <param name="parts"></param>
            <param name="bounds"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPreRenderGroupBoxEventArgs.Cancel">
            <summary>
            Gets or sets whether
            to cancel the operation entirely
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridPostRenderTextRowEventArgs">
            <summary>
            GridPostRenderTextRowEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPostRenderTextRowEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridTextRow,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
             GridPostRenderTextRowEventArgs
            </summary>
            <param name="graphics"></param>
            <param name="gridPanel"></param>
            <param name="gridTextRow"></param>
            <param name="parts"></param>
            <param name="bounds"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderTextRowEventArgs.Graphics">
            <summary>
            Gets the Graphics object
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderTextRowEventArgs.Bounds">
            <summary>
            Gets the bounding rectangle
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderTextRowEventArgs.RenderParts">
            <summary>
            Gets the parts to render
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPostRenderTextRowEventArgs.GridTextRow">
            <summary>
            Gets the associated GridTextRow
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridPreRenderTextRowEventArgs">
            <summary>
            GridPreRenderTextRowEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPreRenderTextRowEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridTextRow,DevComponents.DotNetBar.SuperGrid.RenderParts,System.Drawing.Rectangle)">
            <summary>
             GridPreRenderTextRowEventArgs
            </summary>
            <param name="graphics"></param>
            <param name="gridPanel"></param>
            <param name="gridTextRow"></param>
            <param name="parts"></param>
            <param name="bounds"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPreRenderTextRowEventArgs.Cancel">
            <summary>
            Gets or sets whether
            to cancel the operation entirely
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridPreviewKeyDownEventArgs">
            <summary>
             PreviewKeyDown event, with the ability to specify that the key has been handled
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridPreviewKeyDownEventArgs.#ctor(System.Windows.Forms.Keys)">
            <summary>
             PreviewKeyDown event, with the ability to specify that the key has been handled
            </summary>
            <param name="keyData"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridPreviewKeyDownEventArgs.Handled">
            <summary>
            Gets or sets whether the key was handled
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRefreshFilterEventArgs">
            <summary>
            GridRefreshFilterEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRefreshFilterEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel)">
            <summary>
             GridRefreshFilterEventArgs
            </summary>
            <param name="gridPanel"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowActivatedEventArgs">
            <summary>
            GridRowActivatedEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowActivatedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.GridContainer)">
            <summary>
             GridRowActivatedEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="oldRow"></param>
            <param name="newRow"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowActivatedEventArgs.OldActiveRow">
            <summary>
            Gets the old (previous) ActiveRow
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowActivatedEventArgs.NewActiveRow">
            <summary>
            Gets the new (current) ActiveRow
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowActivatingEventArgs">
            <summary>
            GridRowActivatingEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowActivatingEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.GridContainer)">
            <summary>
             GridRowActivatingEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="oldRow"></param>
            <param name="newRow"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowActivatingEventArgs.Cancel">
            <summary>
            Gets or sets whether
            to cancel the operation entirely
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowAddedEventArgs">
            <summary>
            GridRowAddedEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowAddedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,System.Int32)">
            <summary>
             GridRowAddedEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="index"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowAddedEventArgs.Index">
            <summary>
            Gets the associated GridPanel.Rows
            index where the row is to be inserted
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowAddingEventArgs">
            <summary>
            GridRowAddingEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowAddingEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,System.Int32)">
            <summary>
             GridRowAddingEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="index"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowAddingEventArgs.Cancel">
            <summary>
            Gets or sets whether
            to cancel the operation entirely
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowAddingEventArgs.Index">
            <summary>
            Gets the associated GridPanel.Rows
            index where the row is to be inserted
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowDeletedEventArgs">
            <summary>
            GridRowMovedEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowDeletedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.SelectedElements)">
            <summary>
             GridRowDeletedEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="selRows"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowDeletedEventArgs.SelectedRows">
            <summary>
            Gets the associated selection of row indices to delete
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowDeletingEventArgs">
            <summary>
            GridRowDeletingEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowDeletingEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.SelectedElements)">
            <summary>
             GridRowDeletingEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="selRows"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowDeletingEventArgs.Cancel">
            <summary>
            Gets or sets whether
            to cancel the operation entirely
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowClickEventArgs">
            <summary>
            GridRowClickEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowClickEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridRow,DevComponents.DotNetBar.SuperGrid.RowArea,System.Windows.Forms.MouseEventArgs)">
            <summary>
             GridRowClickEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridRow"></param>
            <param name="rowArea"></param>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowClickEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the default operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowClickEventArgs.MouseEventArgs">
            <summary>
            Gets the associated MouseEventArgs
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowClickEventArgs.RowArea">
            <summary>
            Gets the associated RowArea
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowDoubleClickEventArgs">
            <summary>
            GridRowDoubleClickEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowDoubleClickEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridRow,DevComponents.DotNetBar.SuperGrid.RowArea,System.Windows.Forms.MouseEventArgs)">
            <summary>
             GridRowDoubleClickEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridRow"></param>
            <param name="rowArea"></param>
            <param name="e"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetDetailRowHeightEventArgs">
            <summary>
            GridGetDetailRowHeightEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetDetailRowHeightEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridRow,DevComponents.DotNetBar.SuperGrid.GridLayoutInfo,System.Drawing.Size,System.Int32,System.Int32)">
            <summary>
             GridGetDetailRowHeightEventArgs
            </summary>
            <param name="gridPanel">Associated GridPanel</param>
            <param name="gridRow">Associated container row</param>
            <param name="layoutInfo"></param>
            <param name="sizeNeeded"></param>
            <param name="preHeight"></param>
            <param name="postHeight"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetDetailRowHeightEventArgs.GridPanel">
            <summary>
            Gets the event Grid
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetDetailRowHeightEventArgs.GridRow">
            <summary>
            Gets the associated GridRow
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetDetailRowHeightEventArgs.PreDetailHeight">
            <summary>
            Gets or sets the associated row PreDetail Height
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetDetailRowHeightEventArgs.PostDetailHeight">
            <summary>
            Gets or sets the associated row PostDetail Height
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetDetailRowHeightEventArgs.LayoutInfo">
            <summary>
            Gets the associated row LayoutInfo
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetDetailRowHeightEventArgs.SizeNeeded">
            <summary>
            Gets or sets the associated row's needed size
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridGetGroupIdEventArgs">
            <summary>
            GridGetGroupIdEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridGetGroupIdEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridElement,DevComponents.DotNetBar.SuperGrid.GridColumn,System.Object)">
            <summary>
             GridGetGroupIdEventArgs
            </summary>
            <param name="gridPanel">Associated GridPanel</param>
            <param name="gridItem">Associated grid element</param>
            <param name="column">Associated grid column</param>
            <param name="groupId">Associated Group identifier</param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetGroupIdEventArgs.GridPanel">
            <summary>
            Gets the event Grid
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetGroupIdEventArgs.GridItem">
            <summary>
            Gets the associated GridElement
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetGroupIdEventArgs.GridColumn">
            <summary>
            Gets the associated GridColumn
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridGetGroupIdEventArgs.GroupId">
            <summary>
            Gets or sets the associated row Group Identifier
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowHeaderClickEventArgs">
            <summary>
            GridRowHeaderClickEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowHeaderClickEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,System.Windows.Forms.MouseEventArgs)">
            <summary>
             GridRowHeaderClickEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="row"></param>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowHeaderClickEventArgs.MouseEventArgs">
            <summary>
            Gets the associated MouseEventArgs
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowHeaderClickEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the operation
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowHeaderDoubleClickEventArgs">
            <summary>
            GridRowHeaderDoubleClickEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowHeaderDoubleClickEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,System.Windows.Forms.MouseEventArgs)">
            <summary>
             GridRowHeaderDoubleClickEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="row"></param>
            <param name="e"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowInfoEnterEventArgs">
            <summary>
            GridRowInfoEnterEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowInfoEnterEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridRow,System.Drawing.Point)">
            <summary>
             GridRowInfoEnterEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridRow"></param>
            <param name="pt"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowInfoEnterEventArgs.Cancel">
            <summary>
            Gets or sets whether to cancel the default operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowInfoEnterEventArgs.Location">
            <summary>
            Gets the associated event Location
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowInfoLeaveEventArgs">
            <summary>
            GridRowInfoLeaveEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowInfoLeaveEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridRow)">
            <summary>
             GridRowInfoLeaveEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridRow"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowMouseEventArgs">
            <summary>
            GridRowMouseEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowMouseEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,System.Windows.Forms.MouseEventArgs,DevComponents.DotNetBar.SuperGrid.RowArea)">
            <summary>
             GridRowMouseEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridRow"></param>
            <param name="ev"></param>
            <param name="rowArea"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowMouseEventArgs.GridRow">
            <summary>
            Gets the associated GridRow
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowMouseEventArgs.GridPanel">
            <summary>
            Gets the associated GridPanel
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowMouseEventArgs.RowArea">
            <summary>
            Gets the associated RowArea
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowMovedEventArgs">
            <summary>
            GridRowMovedEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowMovedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.GridContainer)">
            <summary>
             GridRowMovedEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridContainer"></param>
            <param name="gridRow"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowMovedEventArgs.GridContainer">
            <summary>
            Gets the associated GridContainer
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowMovingEventArgs">
            <summary>
            GridRowMovingEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowMovingEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridRow,DevComponents.DotNetBar.SuperGrid.GridContainer,System.Int32,DevComponents.DotNetBar.SuperGrid.GridContainer,System.Int32)">
            <summary>
             GridRowMovingEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridRow"></param>
            <param name="srcCont"></param>
            <param name="srcIndex"></param>
            <param name="destCont"></param>
            <param name="destIndex"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowMovingEventArgs.DestContainer">
            <summary>
            Gets or sets the Destination Container for the row
            being moved.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowMovingEventArgs.DestIndex">
            <summary>
            Gets or sets the Destination index for the row
            being moved.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowMovingEventArgs.SrcContainer">
            <summary>
            Gets the Source Container of the row
            being moved.
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowMovingEventArgs.SrcIndex">
            <summary>
            Gets the Source index of the row being moved.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowRestoredEventArgs">
            <summary>
            GridRowRestoredEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowRestoredEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.SelectedElements)">
            <summary>
             GridRowRestoredEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="selRows"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowRestoringEventArgs">
            <summary>
            GridRowRestoringEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowRestoringEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.SelectedElements)">
            <summary>
             GridRowRestoringEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="selRows"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowSetDefaultValuesEventArgs">
            <summary>
            GridRowSetDefaultValuesEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowSetDefaultValuesEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridRow,DevComponents.DotNetBar.SuperGrid.NewRowContext)">
            <summary>
             GridRowDeletedEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridRow"></param>
            <param name="context"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowSetDefaultValuesEventArgs.GridRow">
            <summary>
            Gets the associated GridRow
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowSetDefaultValuesEventArgs.NewRowContext">
            <summary>
            Gets the associated context under which
            the new row data needs to be initialized
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowValidatedEventArgs">
            <summary>
            GridRowValidatedEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowValidatedEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridRow)">
            <summary>
             GridRowDeletedEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridRow"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowValidatedEventArgs.GridRow">
            <summary>
            Gets the associated GridRow
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridRowValidatingEventArgs">
            <summary>
            GridRowValidatingEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridRowValidatingEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridRow)">
            <summary>
             GridRowValidatingEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridRow"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridRowValidatingEventArgs.Cancel">
            <summary>
            Gets or sets whether
            to cancel the operation entirely
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridScrollEventArgs">
            <summary>
            GridScrollEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridScrollEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,System.Windows.Forms.ScrollEventArgs)">
            <summary>
             GridScrollEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="scrollEventArgs"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridScrollEventArgs.ScrollEventArgs">
            <summary>
            Gets the scroll event args
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridSelectionChangingEventArgs">
            <summary>
            GridSelectionChangingEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridSelectionChangingEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.SelectedElements,System.Int32,System.Int32,System.Boolean)">
            <summary>
             GridSelectionChangingEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="selectedElements"></param>
            <param name="index"></param>
            <param name="count"></param>
            <param name="selected"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSelectionChangingEventArgs.Cancel">
            <summary>
            Gets or sets whether to Cancel the operation
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSelectionChangingEventArgs.SelectedElements">
            <summary>
            Gets the associated SelectedElements collection
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSelectionChangingEventArgs.Index">
            <summary>
            Gets the associated starting selection index
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSelectionChangingEventArgs.Count">
            <summary>
            Gets the associated starting selection count
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridSelectionChangingEventArgs.Selected">
            <summary>
            Gets the selected state (true/selected, false/cleared)
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridTextRowEventArgs">
            <summary>
            GridTextRowEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRowEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridTextRow,System.Windows.Forms.MouseEventArgs)">
            <summary>
             GridTextRowEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="textRow"></param>
            <param name="e"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextRowEventArgs.GridTextRow">
            <summary>
            Gets the associated GridTextRow
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextRowEventArgs.MouseEventArgs">
            <summary>
            Gets the associated MouseEventArgs
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridTextRowMarkupLinkClickEventArgs">
            <summary>
            GridTextRowMarkupLinkClickEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridTextRowMarkupLinkClickEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridTextRow,System.String,System.String)">
            <summary>
             GridTextRowMarkupLinkClickEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridTextRow"></param>
            <param name="name"></param>
            <param name="href"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextRowMarkupLinkClickEventArgs.HRef">
            <summary>
            Gets the associated HyperLink HRef
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextRowMarkupLinkClickEventArgs.Name">
            <summary>
            Gets the associated HyperLink Name
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridTextRowMarkupLinkClickEventArgs.GridTextRow">
            <summary>
            Gets the associated GridTextRow
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridUpdateCellDisplayRangesEventArgs">
            <summary>
            GridUpdateCellDisplayRangesEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridUpdateCellDisplayRangesEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridContainer,DevComponents.DotNetBar.SuperGrid.DisplayRange,System.Collections.Generic.List{DevComponents.DotNetBar.SuperGrid.CellRange})">
            <summary>
             GridUpdateCellDisplayRangesEventArgs
            </summary>
            <param name="gridPanel">Associated GridPanel</param>
            <param name="gridContainer">Associated GridContainer</param>
            <param name="displayRange">Row/col range being merge evaluated</param>
            <param name="cellRanges">List of CellRanges</param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridUpdateCellDisplayRangesEventArgs.CellRanges">
            <summary>
            Gets or sets the CellRanges
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridUpdateCellDisplayRangesEventArgs.DisplayRange">
            <summary>
            Gets the current DisplayRange (row/col range
            being processed / merged evaluated)
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridUpdateCellDisplayRangesEventArgs.GridContainer">
            <summary>
            Gets the GridContainer 
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridVirtualRowEventArgs">
            <summary>
            GridVirtualRowEventArgs
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridVirtualRowEventArgs.#ctor(DevComponents.DotNetBar.SuperGrid.GridPanel,DevComponents.DotNetBar.SuperGrid.GridRow,System.Int32)">
            <summary>
             GridVirtualRowEventArgs
            </summary>
            <param name="gridPanel"></param>
            <param name="gridRow"></param>
            <param name="index"></param>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridVirtualRowEventArgs.GridRow">
            <summary>
            Gets the GridRow
            </summary>
        </member>
        <member name="P:DevComponents.DotNetBar.SuperGrid.GridVirtualRowEventArgs.Index">
            <summary>
            Gets the associated row index
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.GridItemsCollection">
            <summary>
            Represents the collection of grid items.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridItemsCollection.ClearItems">
            <summary>
            ClearItems
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.GridItemsCollection.RemoveItem(System.Int32)">
            <summary>
            RemoveItem
            </summary>
            <param name="index"></param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.TreeDisplay">
            <summary>
             TreeDisplay
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.TreeDisplay.RenderLines(System.Drawing.Graphics,DevComponents.DotNetBar.SuperGrid.GridPanel,System.Drawing.Rectangle,DevComponents.DotNetBar.SuperGrid.GridContainer,System.Int32,System.Int32,System.Int32,System.Boolean)">
            <summary>
             RenderTreeLines
            </summary>
            <param name="g"></param>
            <param name="panel"></param>
            <param name="bounds"></param>
            <param name="item"></param>
            <param name="indentLevel"></param>
            <param name="indentAmount"></param>
            <param name="width"></param>
            <param name="hasButton"></param>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.MarkupElement.Measure(System.Drawing.Size,DevComponents.SuperGrid.TextMarkup.MarkupDrawContext)">
            <summary>
            Measures the element given available size.
            </summary>
            <param name="availableSize">Size available to element</param>
            <param name="d">Reference to graphics object</param>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.MarkupElement.MeasureEnd(System.Drawing.Size,DevComponents.SuperGrid.TextMarkup.MarkupDrawContext)">
            <summary>
            Measures the end tag of an element. Most implementations do not need to do anything but implementations like the ones
            that change color should return state back at this time.
            </summary>
            <param name="availableSize"></param>
            <param name="d"></param>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.MarkupElement.Render(DevComponents.SuperGrid.TextMarkup.MarkupDrawContext)">
            <summary>
            Renders element.
            </summary>
            <param name="d">Provides markup drawing context information.</param>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.MarkupElement.RenderEnd(DevComponents.SuperGrid.TextMarkup.MarkupDrawContext)">
            <summary>
            Renders element tag end. Most implementations do not need to do anything but mplementations like the ones
            that change color should return state back at this time.
            </summary>
            <param name="d">Provides markup drawing context information.</param>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.MarkupElement.ArrangeCore(System.Drawing.Rectangle,DevComponents.SuperGrid.TextMarkup.MarkupDrawContext)">
            <summary>
            Provides final rectangle to element and lets it arrange it's content given new constraint.
            </summary>
            <param name="finalRect">Final rectangle.</param>
            <param name="d"></param>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.MarkupElement.Arrange(System.Drawing.Rectangle,DevComponents.SuperGrid.TextMarkup.MarkupDrawContext)">
            <summary>
            Arranges the element given the final size. Layout is two step process with Measure followed by Arrange.
            </summary>
            <param name="finalSize"></param>
            <param name="d"></param>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.MarkupElement.IsBlockElement">
            <summary>
            Returns whether markup element is an block element that always consumes a whole line in layout.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.MarkupElement.IsNewLineAfterElement">
            <summary>
            Returns whether layout manager switches to new line after processing this element.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.MarkupElement.CanStartNewLine">
            <summary>
            Returns whether layout manager can start new line with this element.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.MarkupElement.Elements">
            <summary>
            Gets the collection of child elements if any for this markup element.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.MarkupElement.IsSizeValid">
            <summary>
            Gets or sets whether element size is valid. When size is not valid element Measure method will be called to validate size.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.MarkupElement.Parent">
            <summary>
            Gets element parent or null if parent is not set.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.MarkupElement.Bounds">
            <summary>
            Gets or sets actual rendering bounds.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.MarkupElement.Visible">
            <summary>
            Gets or sets whether markup element is visible.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.MarkupElement.RenderBounds">
            <summary>
            Gets or sets actual rendered bounds for a give markup element if applicable.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.ContainerElement.IsBlockElement">
            <summary>
            Returns whether markup element is an block element that always consumes a whole line in layout.
            </summary>
        </member>
        <member name="T:DevComponents.SuperGrid.TextMarkup.eParagraphAlignment">
            <summary>
            Indicates paragraph content alignment
            </summary>
        </member>
        <member name="T:DevComponents.SuperGrid.TextMarkup.eParagraphVerticalAlignment">
            <summary>
            Indicates paragraph content alignment
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.EndMarkupElement.StartElement">
            <summary>
            Gets reference to markup start element.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.ExpandElement.CanStartNewLine">
            <summary>
            Returns whether layout manager can start new line with this element.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.Heading.Level">
            <summary>
            Gets or sets heading level. Values from 1 to 6 are valid. Default is 1.
            </summary>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.HyperLink.HitTest(System.Int32,System.Int32)">
            <summary>
            Returns whether hyper-link contains specified coordinates.
            </summary>
            <param name="x"></param>
            <param name="y"></param>
            <returns></returns>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.MarkupElementCollection.#ctor(DevComponents.SuperGrid.TextMarkup.MarkupElement)">
            <summary>Creates new instance of the class.</summary>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.MarkupElementCollection.Add(DevComponents.SuperGrid.TextMarkup.MarkupElement)">
            <summary>
            Adds new object to the collection.
            </summary>
            <param name="MarkupElement">Object to add.</param>
            <returns>Index of newly added object.</returns>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.MarkupElementCollection.Insert(System.Int32,DevComponents.SuperGrid.TextMarkup.MarkupElement)">
            <summary>
            Inserts new object into the collection.
            </summary>
            <param name="index">Position of the object.</param>
            <param name="value">Object to insert.</param>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.MarkupElementCollection.IndexOf(DevComponents.SuperGrid.TextMarkup.MarkupElement)">
            <summary>
            Returns index of the object inside of the collection.
            </summary>
            <param name="value">Reference to the object.</param>
            <returns>Index of the object.</returns>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.MarkupElementCollection.Contains(DevComponents.SuperGrid.TextMarkup.MarkupElement)">
            <summary>
            Returns whether collection contains specified object.
            </summary>
            <param name="value">Object to look for.</param>
            <returns>true if object is part of the collection, otherwise false.</returns>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.MarkupElementCollection.Remove(DevComponents.SuperGrid.TextMarkup.MarkupElement)">
            <summary>
            Removes specified object from the collection.
            </summary>
            <param name="value"></param>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.MarkupElementCollection.CopyTo(DevComponents.SuperGrid.TextMarkup.MarkupElement[],System.Int32)">
            <summary>
            Copies collection into the specified array.
            </summary>
            <param name="array">Array to copy collection to.</param>
            <param name="index">Starting index.</param>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.MarkupElementCollection.CopyTo(DevComponents.SuperGrid.TextMarkup.MarkupElement[])">
            <summary>
            Copies contained items to the MarkupElement array.
            </summary>
            <param name="array">Array to copy to.</param>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.MarkupElementCollection.Parent">
            <summary>
            Gets or sets the collection parent element.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.MarkupElementCollection.Item(System.Int32)">
            <summary>
            Returns reference to the object in collection based on it's index.
            </summary>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.MarkupParser.IsMarkup(System.String)">
            <summary>
            Tests whether input text could be markup text.
            </summary>
            <param name="text">Text to test.</param>
            <returns>true if text could be markup, otherwise false</returns>
        </member>
        <member name="T:DevComponents.SuperGrid.TextMarkup.MarkupSettings">
            <summary>
            Holds text-markup related settings.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.MarkupSettings.NormalHyperlink">
            <summary>
            Gets the style of the hyperlink in its default state.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.MarkupSettings.MouseOverHyperlink">
            <summary>
            Gets the style of the hyperlink when mouse is over the link.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.MarkupSettings.VisitedHyperlink">
            <summary>
            Gets the style of the visited hyperlink.
            </summary>
        </member>
        <member name="T:DevComponents.SuperGrid.TextMarkup.HyperlinkStyle">
            <summary>
            Defines the text-markup hyperlink appearance style.
            </summary>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.HyperlinkStyle.#ctor">
            <summary>
            Initializes a new instance of the HyperlinkStyle class.
            </summary>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.HyperlinkStyle.#ctor(System.Drawing.Color,DevComponents.SuperGrid.TextMarkup.eHyperlinkUnderlineStyle)">
            <summary>
            Initializes a new instance of the HyperlinkStyle class.
            </summary>
            <param name="textColor"></param>
            <param name="underlineStyle"></param>
        </member>
        <member name="M:DevComponents.SuperGrid.TextMarkup.HyperlinkStyle.#ctor(System.Drawing.Color,System.Drawing.Color,DevComponents.SuperGrid.TextMarkup.eHyperlinkUnderlineStyle)">
            <summary>
            Initializes a new instance of the HyperlinkStyle class.
            </summary>
            <param name="textColor"></param>
            <param name="backColor"></param>
            <param name="underlineStyle"></param>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.HyperlinkStyle.TextColor">
            <summary>
            Gets or sets hyperlink text color.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.HyperlinkStyle.BackColor">
            <summary>
            Gets or sets hyperlink back color.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.HyperlinkStyle.UnderlineStyle">
            <summary>
            Gets or sets the underline style for the hyperlink.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.HyperlinkStyle.IsChanged">
            <summary>
            Gets whether style has been changed from its default state.
            </summary>
        </member>
        <member name="T:DevComponents.SuperGrid.TextMarkup.eHyperlinkUnderlineStyle">
            <summary>
            Defines hyperlink styles.
            </summary>
        </member>
        <member name="F:DevComponents.SuperGrid.TextMarkup.eHyperlinkUnderlineStyle.None">
            <summary>
            Hyper links are not marked.
            </summary>
        </member>
        <member name="F:DevComponents.SuperGrid.TextMarkup.eHyperlinkUnderlineStyle.SolidLine">
            <summary>
            Hyper links are underlined using solid line.
            </summary>
        </member>
        <member name="F:DevComponents.SuperGrid.TextMarkup.eHyperlinkUnderlineStyle.DashedLine">
            <summary>
            Hyper links are underlined using dashed line.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.NewLine.IsSizeValid">
            <summary>
            Gets or sets whether element size is valid. When size is not valid element Measure method will be called to validate size.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.NewLine.IsNewLineAfterElement">
            <summary>
            Returns whether layout manager switches to new line after processing this element.
            </summary>
        </member>
        <member name="P:DevComponents.SuperGrid.TextMarkup.Span.IsBlockElement">
            <summary>
            Returns whether markup element is an block element that always consumes a whole line in layout.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.MetroStyleFactory">
            <summary>
            Create the Metro Visual Style for SuperGridControl.
            </summary>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.VisualStyleFactory">
            <summary>
            Represents base class that each visual style factory for SuperGridControl inherits from.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyleFactory.CreateStyle(DevComponents.DotNetBar.Rendering.ColorFactory)">
            <summary>
            Create the DefaultVisualStyle for SuperGridControl.
            </summary>
            <param name="factory">Color-Factory used to generate colors.</param>
            <returns>New instance of DefaultVisualStyles class.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyleFactory.CreateStyle">
            <summary>
            Create the DefaultVisualStyle for SuperGridControl with empty color factory.
            </summary>
            <returns>New instance of DefaultVisualStyles class.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStyleFactory.GetStyleFactory(DevComponents.DotNetBar.SuperGrid.Style.SuperGridStyle)">
            <summary>
            Returns the style factory for specified visual style.
            </summary>
            <param name="style">Style to create factory for.</param>
            <returns>An instance of VisualStyleFactory.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.MetroStyleFactory.#ctor">
            <summary>
            Initializes a new instance of the MetroStyleFactory class.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.MetroStyleFactory.#ctor(DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors)">
            <summary>
            Initializes a new instance of the MetroStyleFactory class.
            </summary>
            <param name="metroPartColors">Metro Part Colors to Initialize Style with.</param>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.MetroStyleFactory.CreateStyle(DevComponents.DotNetBar.Rendering.ColorFactory)">
            <summary>
            Create the DefaultVisualStyle for SuperGridControl.
            </summary>
            <param name="factory">Color-Factory used to generate colors.</param>
            <returns>New instance of DefaultVisualStyles class.</returns>s
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.Office2010BlackStyleFactory">
            <summary>
             Office2010BlackStyleFactory
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Office2010BlackStyleFactory.CreateStyle(DevComponents.DotNetBar.Rendering.ColorFactory)">
            <summary>
            Create the DefaultVisualStyle for SuperGridControl.
            </summary>
            <param name="factory">Color-Factory used to generate colors.</param>
            <returns>New instance of DefaultVisualStyles class.</returns>s
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.Office2010BlueStyleFactory">
            <summary>
            Create the Office 2010 Blue Visual Style for SuperGridControl.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Office2010BlueStyleFactory.CreateStyle(DevComponents.DotNetBar.Rendering.ColorFactory)">
            <summary>
            Create the DefaultVisualStyle for SuperGridControl.
            </summary>
            <param name="factory">Color-Factory used to generate colors.</param>
            <returns>New instance of DefaultVisualStyles class.</returns>s
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.Office2010SilverStyleFactory">
            <summary>
            Create the Office 2010 Silver Visual Style for SuperGridControl.
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.Office2010SilverStyleFactory.CreateStyle(DevComponents.DotNetBar.Rendering.ColorFactory)">
            <summary>
            Create the DefaultVisualStyle for SuperGridControl.
            </summary>
            <param name="factory">Color-Factory used to generate colors.</param>
            <returns>New instance of DefaultVisualStyles class.</returns>s
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.VisualStylesTable">
            <summary>
             VisualStylesTable
            </summary>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStylesTable.GetStyle(DevComponents.DotNetBar.SuperGrid.Style.SuperGridStyle)">
            <summary>
            Gets the DefaultVisualStyles for specified SuperGrid style.
            </summary>
            <param name="style">SuperGridStyle to return.</param>
            <returns>An instance of DefaultVisualStyle.</returns>
        </member>
        <member name="M:DevComponents.DotNetBar.SuperGrid.Style.VisualStylesTable.SetStyleFactory(DevComponents.DotNetBar.SuperGrid.Style.SuperGridStyle,DevComponents.DotNetBar.SuperGrid.Style.DefaultVisualStyles)">
            <summary>
            Replaces an system style with the specified visual style.
            </summary>
            <param name="style">SuperGridStyle to replace.</param>
            <param name="visualStyle">DefaultVisualStyles to replace the system style with.</param>
        </member>
        <member name="T:DevComponents.DotNetBar.SuperGrid.Style.SuperGridStyle">
            <summary>
            Defines available pre-defined SuperGrid visual styles.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.SuperGridStyle.Office2010Blue">
            <summary>
            Office 2010 Blue style.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.SuperGridStyle.Office2010Silver">
            <summary>
            Office 2010 Silver style.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.SuperGridStyle.Office2010Black">
            <summary>
            Office 2010 Black style.
            </summary>
        </member>
        <member name="F:DevComponents.DotNetBar.SuperGrid.Style.SuperGridStyle.Metro">
            <summary>
            Metro Style.
            </summary>
        </member>
    </members>
</doc>
