You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AssesmentMgmt/.svn/pristine/d9/d9b41762d420b8cdd1efaade028...

10613 lines
417 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?xml version="1.0"?>
<doc>
<assembly>
<name>C1.Win.C1TrueDBGrid.2</name>
</assembly>
<members>
<member name="T:C1.Data.IC1GetDataSource">
<summary>
</summary>
</member>
<member name="M:C1.Data.IC1GetDataSource.GetDataSource">
<summary>
Gets the data source.
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Data.IC1GetDataSource.GetDataView">
<summary>
Gets the data view.
</summary>
<returns>
</returns>
</member>
<member name="T:C1.Data.IC1DataSource">
<summary>
</summary>
</member>
<member name="M:C1.Data.IC1DataSource.SetBoundControl(System.Object,System.String)">
<summary>
Sets the bound control.
</summary>
<param name="boundControl">The bound control.</param>
<param name="name">The name.</param>
</member>
<member name="M:C1.Data.IC1DataSource.GetVirtualSegmentSize">
<summary>
Gets the size of the virtual segment.
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Data.IC1DataSource.SetVisibleRowCount(System.Int32,System.String)">
<summary>
Sets the visible row count.
</summary>
<param name="value">The value.</param>
<param name="name">The name.</param>
</member>
<member name="M:C1.Data.IC1DataSource.BoundControlScrolled">
<summary>
Bounds the control scrolled.
</summary>
</member>
<member name="T:C1.Data.IC1ComplexBoundControl">
<summary>
</summary>
</member>
<member name="M:C1.Data.IC1ComplexBoundControl.GetFirstVisibleRow">
<summary>
Gets the first visible row.
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Data.IC1ComplexBoundControl.GetVisibleRowCount">
<summary>
Gets the visible row count.
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Data.IC1ComplexBoundControl.ScrollToRow(System.Int32,System.Int32)">
<summary>
Scrolls to row.
</summary>
<param name="firstVisibleRow">The first visible row.</param>
<param name="rowCount">The row count.</param>
</member>
<member name="T:C1.Data.IC1EditableObject">
<summary>
</summary>
</member>
<member name="M:C1.Data.IC1EditableObject.RequestModification">
<summary>
Requests the modification.
</summary>
</member>
<member name="T:C1.Data.IC1DataView">
<summary>
</summary>
</member>
<member name="M:C1.Data.IC1DataView.SetRowFilter(System.String)">
<summary>
Sets the row filter.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:C1.Data.IC1DataView.SetSort(System.String)">
<summary>
Sets the sort.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:C1.Data.IC1DataView.Refresh">
<summary>
Refreshes this instance.
</summary>
</member>
<member name="T:C1.Data.LateBindingIC1DataSource">
<summary>
Interfaces used by bound controls and other C1Data consumers:
Dynamic, late bound access to the interfaces, via reflection
</summary>
</member>
<member name="M:C1.Data.LateBindingIC1DataSource.GetDataSource(System.Object)">
<summary>
Gets the data source.
</summary>
<param name="obj">The obj.</param>
<returns>
</returns>
</member>
<member name="T:C1.Data.LateBindingIC1ComplexBoundControl">
<summary>
</summary>
</member>
<member name="M:C1.Data.LateBindingIC1ComplexBoundControl.NewLateBindingIC1ComplexBoundControl(System.Object)">
<summary>
News the late binding I c1 complex bound control.
</summary>
<param name="obj">The obj.</param>
<returns>
</returns>
</member>
<member name="T:C1.Data.LateBindingIC1DataView">
<summary>
</summary>
</member>
<member name="M:C1.Data.LateBindingIC1DataView.GetDataView(System.Object)">
<summary>
Gets the data view.
</summary>
<param name="obj">The obj.</param>
<returns>
</returns>
</member>
<member name="T:C1.C1PreviewClient.GraphicsHolder">
<summary>
Holds a Graphics object together with (printer) device or bitmap that was used
to create it, if any. The point is to dispose the device or bitmap together
with the graphics when it is no longer needed (i.e. to avoid resource leaks).
</summary>
</member>
<member name="F:C1.C1PreviewClient.GraphicsHolder.Empty">
<summary>
An empty graphics holder instance.
</summary>
</member>
<member name="M:C1.C1PreviewClient.GraphicsHolder.FromDC(System.IntPtr)">
<summary>
Creates a graphics holder from a device context.
When the holder is disposed, both graphics and the device context are released (DeleteDC is called on the device context).
</summary>
<param name="dc">The device context from which graphics is created.</param>
<returns>The new instance of the graphics holder.</returns>
</member>
<member name="M:C1.C1PreviewClient.GraphicsHolder.FromGraphics(System.Drawing.Graphics)">
<summary>
Creates a graphics holder from a graphics instance.
When the holder is disposed, the graphics is left alone (i.e. NOT disposed).
</summary>
<param name="g">The graphics to store in the new holder.</param>
<returns>The new instance of the graphics holder.</returns>
</member>
<member name="M:C1.C1PreviewClient.GraphicsHolder.FromScreen">
<summary>
Creates a graphics holder from screen. If that fails (e.g. on Azure), the graphics is created from a bitmap.
When the holder is disposed, both graphics and the bitmap are released.
</summary>
<returns>The new instance of the graphics holder.</returns>
</member>
<member name="M:C1.C1PreviewClient.GraphicsHolder.FromBitmap">
<summary>
Creates a graphics holder from a bitmap. The graphics and the bitmap are released when the holder is disposed.
This should never fail.
</summary>
<returns>The new instance of the graphics holder.</returns>
</member>
<member name="M:C1.C1PreviewClient.GraphicsHolder.Dispose">
<summary>
Disposes the current graphics holder.
</summary>
</member>
<member name="P:C1.C1PreviewClient.GraphicsHolder.Graphics">
<summary>
Gets the graphics object held by the current instance.
</summary>
</member>
<member name="P:C1.C1PreviewClient.GraphicsHolder.DpiX">
<summary>
Gets the horizontal resolution of graphics held by the current instance.
</summary>
</member>
<member name="P:C1.C1PreviewClient.GraphicsHolder.DpiY">
<summary>
Gets the vertical resolution of graphics held by the current instance.
</summary>
</member>
<member name="T:C1.C1PreviewClient.Serialization.ZipStructureException">
<summary>
Represents an exception that occurred during C1DX or C1MDX serialization/deserialization
if the underlying zip stream has invalid format.
</summary>
</member>
<member name="T:C1.C1PreviewClient.Serialization.SerializeExceptionBase">
<summary>
Abstract base class for <see cref="T:C1.C1PreviewClient.Serialization.SerializeException" /> and <see cref="T:C1.C1PreviewClient.Serialization.DeserializeException" />
classes.
</summary>
</member>
<member name="P:C1.C1PreviewClient.Serialization.SerializeExceptionBase.Log">
<summary>
Gets the list of strings describing the actions that lead to the exception that occurred
during serialization or deserialization.
</summary>
</member>
<member name="T:C1.C1PreviewClient.Serialization.SerializeException">
<summary>
Represents an exception that occurred during serialization.
</summary>
</member>
<member name="T:C1.C1PreviewClient.Serialization.DeserializeException">
<summary>
Represents an exception that occurred during deserialization.
</summary>
</member>
<member name="P:C1.C1PreviewClient.Serialization.DeserializeException.LineNumber">
<summary>
Gets the line number associated with the exception.
</summary>
</member>
<member name="P:C1.C1PreviewClient.Serialization.DeserializeException.LinePosition">
<summary>
Gets the position in line associated with the exception.
</summary>
</member>
<member name="T:C1.Util.CodeRange">
<summary>
Represents range of character codes.
</summary>
</member>
<member name="M:C1.Util.CodeRange.#ctor(System.Char)">
<summary>
Initialization of the range of character codes
</summary>
<param name="ch">Adding character.</param>
</member>
<member name="M:C1.Util.CodeRange.#ctor(System.Char,System.Char)">
<summary>
Initialization of the range of character codes
</summary>
<param name="first">The first character code.</param>
<param name="last">The last character code.</param>
</member>
<member name="M:C1.Util.CodeRange.Clone">
<summary>
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Util.CodeRange.Contains(C1.Util.CodeRange)">
<summary>
</summary>
<param name="cr">
</param>
<returns>
</returns>
</member>
<member name="P:C1.Util.CodeRange.First">
<summary>The begin code of character.</summary>
</member>
<member name="P:C1.Util.CodeRange.Last">
<summary>The end code of character.</summary>
</member>
<member name="T:C1.Util.CodeRanges">
<summary>
Represents collection of unique <see cref="T:C1.Util.CodeRange" /> objects.
All CodeRange objects within collection not intersect and sorted
by First field.
</summary>
</member>
<member name="M:C1.Util.CodeRanges.AddNoCheck(C1.Util.CodeRange)">
<summary>
Adds <see cref="T:C1.Util.CodeRange" /> object to current without any check, typically used during deserialization.
</summary>
<param name="cr">
<see cref="T:C1.Util.CodeRange" /> to add.</param>
</member>
<member name="M:C1.Util.CodeRanges.GetGlyphs">
<summary>
Gets the array of chars contained in this list of code ranges.
</summary>
<returns>Array of char</returns>
</member>
<member name="M:C1.Util.CodeRanges.ContainsAllChars">
<summary>
Gets a value indicating whether the <see cref="T:C1.Util.CodeRanges" /> collection
contains all characters from 0x0000 to 0xFFFF.
</summary>
<returns>
</returns>
</member>
<member name="T:C1.Design.UITypeEditorStrings">
<summary>
Static class containing UI strings used by the designer.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.UIStringsItemEventHandler">
<summary>
Represents a handler for an <see cref="T:C1.Win.C1TrueDBGrid.UIStrings" /> item related event.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.UIStringsItemEventArgs">
<summary>
Provides data for an <see cref="T:C1.Win.C1TrueDBGrid.UIStrings" /> item related event.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.UIStringsItemEventArgs.Key">
<summary>
Gets key of the item being added or changed.
</summary>
<value>The key.</value>
</member>
<member name="P:C1.Win.C1TrueDBGrid.UIStringsItemEventArgs.Value">
<summary>
Gets the string value.
</summary>
<value>The value.</value>
</member>
<member name="P:C1.Win.C1TrueDBGrid.UIStringsItemEventArgs.IsDefault">
<summary>
Gets a value indicating whether this instance is default.
</summary>
<value>
<c>true</c> if this instance is default; otherwise, <c>false</c>.
</value>
</member>
<member name="P:C1.Win.C1TrueDBGrid.UIStringsItemEventArgs.Description">
<summary>
Gets the description.
</summary>
<value>The description.</value>
</member>
<member name="T:C1.Win.C1TrueDBGrid.UIStrings">
<summary>
Represents a collection of end user visible UI strings.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.UIStrings.Add(System.Object,System.Int32,System.String,System.String)">
<summary>
Adds a string to the collection, specifying the ordinal.
</summary>
<param name="key">The key of the string.</param>
<param name="ordinal">The ordinal of the string.</param>
<param name="value">The string.</param>
<param name="description">The description of the string.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.UIStrings.Add(System.Object,System.String,System.String)">
<summary>
Adds a string to the collection in alphabetical order.
</summary>
<param name="key">The key of the string.</param>
<param name="value">The string.</param>
<param name="description">The description of the string.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.UIStrings.AddInOrder(System.Object,System.String,System.String)">
<summary>
Adds a string to the collection, preserving the order.
</summary>
<param name="key">The key of the string.</param>
<param name="value">The string.</param>
<param name="description">The description of the string.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.UIStrings.Reset">
<summary>
Sets all strings in collection to their default values.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.UIStrings.ShouldSerialize">
<summary>
Indicates whether any of the strings in the current collection
have non-default values.
</summary>
<returns>
<c>true</c> if any of the strings have non-default values, <c>false</c> otherwise.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.UIStrings.IsDefault(System.Object)">
<summary>
Tests whether a string in the collection has default value.
</summary>
<param name="key">The key of the string to test.</param>
<returns>
<c>true</c> if the string has default value, <c>false</c> otherwise.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.UIStrings.GetDescription(System.Object)">
<summary>
Returns the description of a string.
</summary>
<param name="key">The key of the string to get the description of.</param>
<returns>The string's description</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.UIStrings.Reset(System.Object)">
<summary>
Resets a string to its default value.
</summary>
<param name="key">The key of the string to reset.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.UIStrings.GetKeyAt(System.Int32)">
<summary>
Returns the key of an item with the specified index.
</summary>
<param name="index">The item index.</param>
<returns>The item's key.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.UIStrings.GetValueAt(System.Int32)">
<summary>
Gets the string by its index.
</summary>
<param name="index">The string index.</param>
<returns>The string.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.UIStrings.SetValueAt(System.Int32,System.String)">
<summary>
Sets the value of a string with the specified index.
</summary>
<param name="index">The string index.</param>
<param name="value">The new string value.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.UIStrings.OnItemAdded(C1.Win.C1TrueDBGrid.UIStringsItemEventArgs)">
<summary>
Fires the <see cref="E:C1.Win.C1TrueDBGrid.UIStrings.ItemAdded" /> event.
</summary>
<param name="e">The event data.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.UIStrings.OnItemChanged(C1.Win.C1TrueDBGrid.UIStringsItemEventArgs)">
<summary>
Fires the <see cref="E:C1.Win.C1TrueDBGrid.UIStrings.ItemChanged" /> event.
</summary>
<param name="e">The event data.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.UIStrings.OnCollectionChanged(System.EventArgs)">
<summary>
Fires the <see cref="E:C1.Win.C1TrueDBGrid.UIStrings.CollectionChanged" /> event.
</summary>
<param name="e">The event data.</param>
</member>
<member name="P:C1.Win.C1TrueDBGrid.UIStrings.Count">
<summary>
Gets the number of elements contained in the collection.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.UIStrings.ItemAdded">
<summary>
Occurs when a new item is added to the collection.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.UIStrings.ItemChanged">
<summary>
Occurs when an item in the collection is changed.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.UIStrings.CollectionChanged">
<summary>
Occurs when the collection has been changed.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.UIStrings.TypeConverter">
<summary>
Provides type conversion for the <see cref="T:C1.Win.C1TrueDBGrid.UIStrings" /> type.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.UIStrings.TypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
For internal use.
</summary>
<param name="context">
</param>
<param name="culture">
</param>
<param name="value">
</param>
<param name="type">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.UIStrings.TypeConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])">
<summary>
For internal use.
</summary>
<param name="context">
</param>
<param name="value">
</param>
<param name="attrFilter">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.UIStrings.TypeConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)">
<summary>
For internal use.
</summary>
<param name="context">
</param>
<returns>
</returns>
</member>
<member name="T:C1.Win.C1TrueDBGrid.C1TrueDBGrid">
<summary>
C1TrueDBGrid control object.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.BaseGrid.Frame">
<summary>
Summary description for BaseGridFrame.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.BaseGrid.Frame.m_serializing">
<summary>
For internal use.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.#ctor">
<summary>
Ctor for the split container class.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.Dispose(System.Boolean)">
<summary>
Called when the class is being disposed.
</summary>
<param name="disposing">
True to cleanup.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnBindingContextChanged(System.EventArgs)">
<summary>
Raised when the Binding Context changes.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.BeginInit">
<summary>
ISupportInitialize interface.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.EndInit">
<summary>
ISupportInitialize interface.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.InitLayout">
<summary>
Called after the control has been added to another container.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnVisibleChanged(System.EventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnParentVisibleChanged(System.EventArgs)">
<summary>
Raises the VisibleChanged event when the Visible property value of the control's container changes.
</summary>
<param name="e">An <see cref="T:System.EventArgs" /> that contains the event data. </param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.initializeStyles">
<summary>
Initializes root and named styles.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnSizeChanged(System.EventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnResize(System.EventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnBackColorChanged(System.EventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnRightToLeftChanged(System.EventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnFontChanged(System.EventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnLeave(System.EventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnValidating(System.ComponentModel.CancelEventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnLostFocus(System.EventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnGotFocus(System.EventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnEnter(System.EventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.IsInputChar(System.Char)">
<summary>
Inherited from Control.
</summary>
<param name="charCode">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.IsInputKey(System.Windows.Forms.Keys)">
<summary>
Inherited from Control.
</summary>
<param name="keyData">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnKeyUp(System.Windows.Forms.KeyEventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnQueryContinueDrag(System.Windows.Forms.QueryContinueDragEventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.WndProc(System.Windows.Forms.Message@)">
<summary>
Processes Windows messages.
</summary>
<param name="m">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.saveImages">
<summary>
Helper method for serializing images.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.reinitViews">
<summary>
Recomputes the sizes of the splits based on the client size of the control.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnCursorChanged(System.EventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnMouseWheel(System.Windows.Forms.MouseEventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnMouseLeave(System.EventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnMouseEnter(System.EventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnClick(System.EventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnDoubleClick(System.EventArgs)">
<summary>
Inherited from Control.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.CreateView">
<summary>
Creates the view.
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.CreateView(C1.Win.C1TrueDBGrid.BaseGrid.View)">
<summary>
Creates the view.
</summary>
<param name="other">The other.</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.SetDataSource(System.Object,System.Windows.Forms.BindingMemberInfo,System.Boolean)">
<summary>
Called when the datasource changes.
</summary>
<param name="datasource">The new datasource.</param>
<param name="newDisplayMember">The new datamember.</param>
<param name="force">True to force a new binding.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.canCreateSplits">
<summary>
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.ShouldSerializeCaptionHeight">
<summary>
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.ShouldSerializeRowHeight">
<summary>
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.ShouldSerializeSplitDividerSize">
<summary>
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.ResetVisualStyle">
<summary>
Resets <see cref="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.VisualStyle" /> to the default value.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.ShouldSerializeVisualStyle">
<summary>
Tests whether <see cref="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.VisualStyle" /> should be serialized.
</summary>
<returns>True if <see cref="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.VisualStyle" /> should be serialized, false otherwise.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnVisualStyleChanged(System.EventArgs)">
<summary>
Raises the <see cref="E:VisualStyleChanged" /> event.
</summary>
<param name="e">The <see cref="T:System.EventArgs" /> instance containing the event data.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnAfterColUpdate(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Raised after the datasource has been updated for a column.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnAfterDelete(System.EventArgs)">
<summary>
Raised after a row has been deleted.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnAfterInsert(System.EventArgs)">
<summary>
Raised after a row has been inserted.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnAfterUpdate(System.EventArgs)">
<summary>
Raised after a row has been updated.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnBeforeColUpdate(C1.Win.C1TrueDBGrid.BeforeColUpdateEventArgs)">
<summary>
Raised before a column has been updated.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnBeforeDelete(C1.Win.C1TrueDBGrid.CancelEventArgs)">
<summary>
Raised before a row is deleted.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnBeforeInsert(C1.Win.C1TrueDBGrid.CancelEventArgs)">
<summary>
Raised before a row is inserted.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnBeforeUpdate(C1.Win.C1TrueDBGrid.CancelEventArgs)">
<summary>
Raised before a row is updated.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnColResize(C1.Win.C1TrueDBGrid.ColResizeEventArgs)">
<summary>
Raised when a column has been resized.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnHeadClick(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Raised when a column header has been clicked.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnFootClick(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Raised when a column footer has been clicked.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnOwnerDrawCell(C1.Win.C1TrueDBGrid.OwnerDrawCellEventArgs)">
<summary>
Raised when a cell has to be rendered.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnOwnerDrawCellPrint(C1.Win.C1TrueDBGrid.OwnerDrawCellEventArgs)">
<summary>
Raised when a cell has to be printed.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnOwnerDrawPageHeader(C1.Win.C1TrueDBGrid.OwnerDrawPageEventArgs)">
<summary>
Raised when Page header needs to be printed.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnOwnerDrawPageFooter(C1.Win.C1TrueDBGrid.OwnerDrawPageEventArgs)">
<summary>
Raised when a Page footer needs to be printed.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnBeforeRowColChange(C1.Win.C1TrueDBGrid.CancelEventArgs)">
<summary>
Raised before a row or column currency is changed.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnRowColChange(C1.Win.C1TrueDBGrid.RowColChangeEventArgs)">
<summary>
Raised after a row or column currency has been changed.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnRowResize(C1.Win.C1TrueDBGrid.CancelEventArgs)">
<summary>
Raised before a row is resized.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.On_Scroll(C1.Win.C1TrueDBGrid.CancelEventArgs)">
<summary>
Raised when the grid scrolls.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnSelChange(C1.Win.C1TrueDBGrid.CancelEventArgs)">
<summary>
Raised when a selection has changed.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnSplitChange(System.EventArgs)">
<summary>
Raised when split currency has changed.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnSplitAdded(System.EventArgs)">
<summary>
Raised when a split has been added.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnSplitRemoved(System.EventArgs)">
<summary>
Raised when a split has been removed.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnChange(System.EventArgs)">
<summary>
Raised when the grids cell content has been modified.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnUnboundColumnFetch(C1.Win.C1TrueDBGrid.UnboundColumnFetchEventArgs)">
<summary>
Raised to fetch data for an unbound column.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnUnboundColumnUpdated(C1.Win.C1TrueDBGrid.UnboundColumnFetchEventArgs)">
<summary>
Raised when an unbound column has been updated.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnAfterColEdit(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Raised after a column has been edited.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnBeforeColEdit(C1.Win.C1TrueDBGrid.BeforeColEditEventArgs)">
<summary>
Raised before a column edit.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnColEdit(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Raised when a column has been edited.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnFirstRowChange(C1.Win.C1TrueDBGrid.SplitEventArgs)">
<summary>
Raised when the top row has changed.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnLeftColChange(C1.Win.C1TrueDBGrid.SplitEventArgs)">
<summary>
Raised when the left column has changed.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnFormatText(C1.Win.C1TrueDBGrid.FormatTextEventArgs)">
<summary>
Raised when a cell value needs custom formatting.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnButtonClick(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Raised when a button in a cell has been clicked.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnComboSelect(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Raised when a value in the combobox has been selected.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnValueItemError(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Raised when a value item is selected that's not in the ValueItems collection.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnFetchCellStyle(C1.Win.C1TrueDBGrid.FetchCellStyleEventArgs)">
<summary>
Raised when a custom style is to be used for rendering a cell.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnFetchGroupCellStyle(C1.Win.C1TrueDBGrid.FetchCellStyleEventArgs)">
<summary>
Raised when a custom style is to be used for renderind a grouped cell.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnFetchRowStyle(C1.Win.C1TrueDBGrid.FetchRowStyleEventArgs)">
<summary>
Raised when a custom style is to be used for a row.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.On_AddNew(System.EventArgs)">
<summary>
Raised when a new row is added.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnColMove(C1.Win.C1TrueDBGrid.ColMoveEventArgs)">
<summary>
Raised when a column is dragged.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnFetchCellTips(C1.Win.C1TrueDBGrid.FetchCellTipsEventArgs)">
<summary>
Raised when a cell tip is to be displayed.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.On_Init(System.EventArgs)">
<summary>
Raised when the grid is initialized.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnDataSourceChanged(System.EventArgs)">
<summary>
Raised when the datasource is changed.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnCollapse(C1.Win.C1TrueDBGrid.BandEventArgs)">
<summary>
Raised when a band is collasped in a hierarchical grid.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnExpand(C1.Win.C1TrueDBGrid.BandEventArgs)">
<summary>
Raised when a band is expanded in a hierarchical grid.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnGroupColMove(C1.Win.C1TrueDBGrid.GroupColMoveEventArgs)">
<summary>
Raised when a grouped column is moved.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnGroupHeadClick(C1.Win.C1TrueDBGrid.GroupColEventArgs)">
<summary>
Raised when a column header in the grouping area is clicked.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnFetchScrollTips(C1.Win.C1TrueDBGrid.FetchScrollTipsEventArgs)">
<summary>
Raised when scroll tips are to be displayed.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnFilterChange(System.EventArgs)">
<summary>
Raised when a filter condition has changed.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnFilterButtonClick(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Raised when a button in the filter bar is clicked.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnBeforeOpen(C1.Win.C1TrueDBGrid.CancelEventArgs)">
<summary>
Raised before a child grid is displayed.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnBeforeClose(C1.Win.C1TrueDBGrid.CancelEventArgs)">
<summary>
Rasied before a child grid is closed.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnSort(C1.Win.C1TrueDBGrid.FilterEventArgs)">
<summary>
Raised when the datasource is sorted by clicking the column header.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnFilter(C1.Win.C1TrueDBGrid.FilterEventArgs)">
<summary>
Raised when AllowFilter is false.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnAfterFilter(C1.Win.C1TrueDBGrid.FilterEventArgs)">
<summary>
Raised after the datasource has been filtered.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnAfterSort(C1.Win.C1TrueDBGrid.FilterEventArgs)">
<summary>
Raised after the datasource has been sorted.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnError(C1.Win.C1TrueDBGrid.ErrorEventArgs)">
<summary>
Raised when the grid encounters an error through the UI.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnGroupText(C1.Win.C1TrueDBGrid.GroupTextEventArgs)">
<summary>
Raised when custom values are to be used for the group text.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnGroupAggregate(C1.Win.C1TrueDBGrid.GroupTextEventArgs)">
<summary>
Raised when custom aggregates are used for a grouped grid.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.OnGroupInterval(C1.Win.C1TrueDBGrid.GroupIntervalEventArgs)">
<summary>
Raised when custom group intervals are used for a grouped grid.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.SetDataBinding(System.Object,System.String,System.Boolean,System.Boolean)">
<summary>
Binds the grid at runtime
</summary>
<param name="dataSource">Source of the data</param>
<param name="dataMember">The table to bind to within the object returned by the DataSource property</param>
<param name="holdFields">True to preserve design time layout</param>
/// <param name="keepPosition">True to keep previously expanded groups in GroupBy mode.</param></member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.SetDataBinding(System.Object,System.String,System.Boolean)">
<summary>
Binds the grid at runtime
</summary>
<param name="dataSource">Source of the data</param>
<param name="dataMember">The table to bind to within the object returned by the DataSource property</param>
<param name="holdFields">True to preserve design time layout</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.SetDataBinding(System.Object,System.String)">
<summary>
Binds the grid at runtime
</summary>
<param name="dataSource">Source of the data</param>
<param name="dataMember">The table to bind to within the object returned by the DataSource property</param>
<remarks>The call to SetDataBinding(object dataSource, string dataMember) assumes false for the holdFields arguments.</remarks>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.SetDataBinding">
<summary>
Configures the grid for use without a datasource.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.AddRow(System.String)">
<summary>
Adds a row to an unbound grid.
</summary>
<param name="data">The data used to populate the new row. Column data is delimited by ';' char.</param>
<returns>The index of the row that was added.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.AddRow(System.String,System.Char)">
<summary>
Adds a row to an unbound grid.
</summary>
<param name="data">The data used to populate the new row.</param>
<param name="separator">Character used to separate the data fields.</param>
<returns>The index of the row that was added.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.AddRows(System.Int32)">
<summary>
Adds the number of given rows to an unbound grid.
</summary>
<param name="count">The number of rows to add.</param>
<returns>The index of the first row that was added.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.Delete(System.Int32)">
<summary>
Deletes the given row from an unbound grid.
</summary>
<param name="index">The index of the row to remove.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.Delete(System.Int32,System.Int32)">
<summary>
Deletes a range of rows from an unbound grid.
</summary>
<param name="index">The starting index of the row to remove.</param>
<param name="count">The number of rows to remove.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.Frame.NewRow">
<summary>
Creates a new System.Data.DataRow with the same schema as the unbound grid.
</summary>
<returns>
</returns>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.DefaultSize">
<summary>
Gets the default size of the control.
</summary>
<value>
</value>
<returns>
The default <see cref="T:System.Drawing.Size" /> of the control.
</returns>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.CreateParams">
<Summary>
Allows us to set the borderstyle.
</Summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.RowPosition">
<summary>
Gets the current position from the currency manager.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.BorderStyle">
<summary>
Gets or sets the border for the control.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.AllowInactiveStyle">
<summary>
Gets or sets a value indicating whether the InactiveStyle is applied to the grid when it loses focus.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.AllowSort">
<summary>
Gets or sets a value indicating the ability of the grid to automatically sort data when a column header is clicked.
</summary>
<remarks>
<para>If True, and if the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.DataView" /> property is set to GroupBy, the grid will automatically filter column data upon grouping action.</para>
<para>If False, the grid will fire the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Sort" /> event.</para>
<para>If the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.DataView" /> property is set to Group By and the user attempts to drag a column header into the grouping area, the grid will automatically sort the column data.</para>
<para>If False, the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Sort" /> event allows the application to sort the data.</para>
</remarks>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.AllowFilter">
<summary>
Gets or sets a value indicating the ability of the grid to automatically filter data.
</summary>
<remarks>
<para>If True, and if the Filter Bar is active, the grid will automatically filter data.</para>
<para>If False, the grid will fire the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Filter" /> event.</para>
<para>If the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FilterBar" /> property is true and the user attempts to filter column data, the grid will automatically filter the column data according to the value in the Filter Bar.</para>
<para>If False, the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Filter" /> event allows the application to filter the data.</para>
</remarks>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.Caption">
<summary>
Gets or sets the grid's caption.
</summary>
<remarks>
<para>For a <see cref="T:C1.Win.C1TrueDBGrid.C1TrueDBGrid" /> control, this property determines the text displayed in the caption bar at the top of the grid.</para>
<para>Setting the Caption property to an empty string for a <see cref="T:C1.Win.C1TrueDBGrid.C1TrueDBGrid" /> control hides its caption bar.</para>
<para>For a <see cref="T:C1.Win.C1TrueDBGrid.C1DataColumn" /> object, this property determines the text displayed in the object's heading area.</para>
<para>Setting the Caption property to an empty string for a <see cref="T:C1.Win.C1TrueDBGrid.C1DataColumn" /> object clears the text in the column's heading area but does not hide the heading. Column captions are only displayed if the grid's <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ColumnHeaders" /> property is set to True.</para>
<para>Setting the Caption property to an empty string for a <see cref="T:C1.Win.C1TrueDBGrid.Split" /> object hides the heading area, even if other splits have non-empty captions.</para>
</remarks>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.CaptionHeight">
<summary>
Gets or sets the height of the grid's caption.
</summary>
<remarks>This property requires that the <see cref="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.Caption" /> property of the grid has a value.</remarks>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.RowHeight">
<summary>
Gets or sets the height of grid rows.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.DataMember">
<summary>
Gets or sets the specific data member in a multimember data source that the grid binds to.
</summary>
<remarks>
<para>This property returns or sets the name of the data member used to populate the grid. Typically, a data member represents a database table or query.</para>
<para>A bound <see cref="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.DataSource" /> can expose multiple sets of data that consumers can bind to. Each set of data is called a data member, and is identified by a unique string.</para>
</remarks>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.DataSource">
<summary>
Gets or sets the source containing a list of values used to populate the items within the control.
</summary>
<remarks>The DataSource property specifies the list of values used to bind a <see cref="T:C1.Win.C1TrueDBGrid.C1TrueDBGrid" /> or <see cref="T:C1.Win.C1TrueDBGrid.C1TrueDBDropdown" /> control.</remarks>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.DoubleBuffer">
<summary>
Gets or sets a value indicating whether the control should use an off-screen buffer when painting to redue flicker.
</summary>
<remarks>
<para>Setting this value to False may cause the grid to flicker when the control is painting.</para>
<para>You may want to set DoubleBuffer to False to increase performance when deploying applications that run on terminal servers.</para>
</remarks>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.FlatStyle">
<summary>
Gets or sets the general appearance of 3D elements for the entire grid.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.Rows">
<summary>
Gets the DataRowCollection for an unbound grid.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.ScrollTrack">
<summary>
Gets or sets a value that controls how the grid scrolls when the scroll thumb is moved.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.SplitDividerSize">
<summary>
</summary>
<value>The size of the split divider.</value>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.RowCount">
<summary>
Gets the number of rows in an unbound grid.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.UseColumnStyles">
<summary>
Gets or sets a value indicating whether Style information is applied from the datasource.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.BaseGrid.Frame.VisualStyleChanged">
<summary>
Occurs when visual style property has been changed.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.VisualStyle">
<summary>
Gets or sets a value that determines the overall appearance of the control.
</summary>
<remarks>
<para>This property allows you to quickly customize the appearance of the grid so
it matches the appearance of your application.</para>
<para>The settings available include <b>System</b>, various Microsoft Office color
schemes, and <b>Custom</b>, which relies on the controls standard styles and appearance
properties.</para>
</remarks>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.Renderer">
<summary>
Gets or sets the renderer used to render visual styles.
</summary>
<value>The renderer.</value>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.UseCompatibleTextRendering">
<summary>
Specifies whether text rendering should be compatible with previous releases of WinForms.
</summary>
<remarks>
<para>This property determines whether the control should render text using the <see cref="T:System.Drawing.Graphics" />
class (compatible with previous versions), or the new <see cref="T:System.Windows.Forms.TextRenderer" /> class
(available in .NET 2.0 and later).</para>
<para>The <see cref="T:System.Windows.Forms.TextRenderer" /> class supports complex scripts and Uniscribe APIs, making
it better suited for some international applications.</para>
<para>However, the <see cref="T:System.Windows.Forms.TextRenderer" /> class seems to render about 25% slower than the
traditional method.</para>
<para>You may want to try both modes and select the one that matches the appearance of other
controls and forms in your application.</para>
</remarks>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.#ctor">
<summary>
The C1TrueDBGrid control.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Dispose(System.Boolean)">
<summary>
Called when the class is being disposed.
</summary>
<param name="disposing">
True to cleanup.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.CreateAccessibilityInstance">
<summary>
Creates a new accessibility object for the control.
</summary>
<returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the control.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.CreateView">
<summary>
Creates the view.
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.CreateView(C1.Win.C1TrueDBGrid.BaseGrid.View)">
<summary>
Creates the view.
</summary>
<param name="other">The other view.</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.initializeStyles">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.EndInit">
<summary>
End initialization.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnPaint(System.Windows.Forms.PaintEventArgs)">
<summary>
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.canCreateSplits">
<summary>
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnImeModeChanged(System.EventArgs)">
<summary>
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.GetDataBoundItem(System.Int32)">
<summary>
Gets a top-level object bound to the specified view row.
</summary>
<remarks>Returns null if the specified view row is not a data row.</remarks>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ShouldSerializeRecordSelectorWidth">
<summary>
Shoulds the width of the record selector be serialized.
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ShouldSerializeRowDivider">
<summary>
Should the row divider be serialized.
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ShouldSerializeRowSubDividerColor">
<summary>
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AddRow(System.String)">
<summary>
Adds a row to an unbound grid.
</summary>
<param name="data">The data used to populate the new row. Column data is delimited by ';' char.</param>
<returns>The index of the row that was added.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AddRow(System.String,System.Char)">
<summary>
Adds a row to an unbound grid.
</summary>
<param name="data">The data used to populate the new row.</param>
<param name="separator">Character used to separate the data fields.</param>
<returns>The index of the row that was added.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AddRows(System.Int32)">
<summary>
Adds the number of given rows to an unbound grid.
</summary>
<param name="count">The number of rows to add.</param>
<returns>The index of the first row that was added.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SuspendBinding">
<summary>
Instructs the grid to temporarily ignore IBindingList.ListChange notifications from the data source.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ResumeBinding">
<summary>
Resumes IBindingList.ListChange notifications from the data source to the grid.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AddCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag,C1.Win.C1TrueDBGrid.Style)">
<summary>
Controls the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Style" /> used to change the appearance for cells meeting the specified condition.
</summary>
<param name="condition">
Combination of one or more <see cref="T:C1.Win.C1TrueDBGrid.CellStyleFlag" /> enumerations.
</param>
<param name="style">
<see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Style" /> object that specifies appearance attributes.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AddRegexCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag,C1.Win.C1TrueDBGrid.Style,System.String)">
<summary>
Controls the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Style" /> used to change the appearance of cells according to their contents.
</summary>
<param name="condition">
Combination of one or more <see cref="T:C1.Win.C1TrueDBGrid.CellStyleFlag" /> enumerations.
</param>
<param name="style">
<see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Style" /> object that specifies appearance attributes.
</param>
<param name="regex">
A regular expression string.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RowBookmark(System.Int32)">
<summary>
Returns the row index of the DataSource for a display row index.
</summary>
<param name="row">
The row index of the grid.
</param>
<returns>
The underlying row index of the DataSource.
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ClearCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag)">
<summary>
Removes a cell condition established with a previous call to the <see cref="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AddCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag,C1.Win.C1TrueDBGrid.Style)" /> method.
</summary>
<param name="condition">
Combination of one or more <see cref="T:C1.Win.C1TrueDBGrid.CellStyleFlag" /> enumerations.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ClearRegexCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag)">
<summary>
Removes a cell condition established with a previous call to the <see cref="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AddRegexCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag,C1.Win.C1TrueDBGrid.Style,System.String)" /> method.
</summary>
<param name="condition">
Combination of one or more <see cref="T:C1.Win.C1TrueDBGrid.CellStyleFlag" /> enumerations.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ClearRegexCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag,System.String)">
<summary>
Removes a cell condition established with a previous call to the <see cref="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AddRegexCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag,C1.Win.C1TrueDBGrid.Style,System.String)" /> method.
</summary>
<param name="condition">
Combination of one or more <see cref="T:C1.Win.C1TrueDBGrid.CellStyleFlag" /> enumerations.
</param>
<param name="regex">
A regular expression string.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ClearFields">
<summary>
Restores the default grid layout.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ColContaining(System.Int32)">
<summary>
Returns the column index for the column containing the specified X coordinate.
</summary>
<param name="x">
The horizontal coordinate (X value) in pixels.
</param>
<returns>
The index of the column in the <see cref="P:C1.Win.C1TrueDBGrid.Split.DisplayColumns" /> collection beneath the specified X coordinate.
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ColContaining(System.Drawing.Point)">
<summary>
Returns the column index for the column containing the specified point.
</summary>
<param name="p">
The point.
</param>
<returns>
The index of the column in the <see cref="P:C1.Win.C1TrueDBGrid.Split.DisplayColumns" /> collection beneath the specified point.
</returns>
[C1Description("Identifies the index of the DisplayColumn under a point")]
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RowContaining(System.Int32)">
<summary>
Returns the zero-based index of the display row containing the Y specified coordinate.
</summary>
<param name="y">
The vertical coordinate (Y value) in pixels.
</param>
<returns>
The display row index beneath the specified Y coordinate.
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RowTop(System.Int32)">
<summary>
Returns the Y coordinate of the top of a visible row.
</summary>
<param name="row">
The displayed row index.
</param>
<returns>
The Y coordinate of the specified display row, based on the client coordinates of the grid.
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ScrollGrid(System.Int32,System.Int32)">
<summary>
Scrolls the grid data area by the specified number of rows and columns.
</summary>
<param name="cols">
Number of columns to scroll.
</param>
<param name="rows">
Number of rows to scroll.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.PointAt(System.Drawing.Point)">
<summary>
Returns one of the <see cref="T:C1.Win.C1TrueDBGrid.PointAtEnum" /> enumerations, which indicates the kind of grid element beneath the specified coordinate.
</summary>
<param name="p">
The Point in client coordinates.
</param>
<returns>
The <see cref="T:C1.Win.C1TrueDBGrid.PointAtEnum" /> enumerations under the given coordinate.
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.PointAt(System.Int32,System.Int32)">
<summary>
Returns one of the <see cref="T:C1.Win.C1TrueDBGrid.PointAtEnum" /> constants, which indicates the kind of grid element beneath the specified coordinate.
</summary>
<param name="x">
The x-coordinate.
</param>
<param name="y">
The y-coordinate.
</param>
<returns>
The <see cref="T:C1.Win.C1TrueDBGrid.PointAtEnum" /> enumerations under the given coordinate.
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Rebind(System.Boolean)">
<summary>
Reinitializes grid with data from its data source.
</summary>
<param name="holdFields">
True to preserves current column layout. False retrieves the schema from the datasource.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Rebind">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SplitContaining(System.Int32,System.Int32)">
<summary>
Returns the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SplitIndex" /> of the split containing the specified coordinate.
</summary>
<param name="x">
The x-coordinate.
</param>
<param name="y">
The y-coordinate.
</param>
<returns>
The <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SplitIndex" /> beneath the specified coordinate pair.
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.UpdateData">
<summary>
Updates any changes on the current row to the data source.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.MoveRelative(System.Int32)">
<summary>
Moves the current row positions of the grid by the given offset.
</summary>
<param name="offset">
The number of records to move. A positive value indicates forward movement; a negative value indicates backward movement.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.MoveRelative(System.Int32,System.Int32)">
<summary>
Moves the current row positions of the grid by the given offset from the given row.
</summary>
<param name="offset">
The number of records to move. A positive value indicates forward movement; a negative value indicates backward movement.
</param>
<param name="row">
The origin of the relative movement.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.MoveLast">
<summary>
Positions to the last row of the datasource.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.MoveFirst">
<summary>
Positions to the first row of the datasource.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.MoveNext">
<summary>
Positions to the next row of the datasource.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.MovePrevious">
<summary>
Positions to the previous row of the datasource.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Delete">
<summary>
Deletes the current row.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.LoadLayout(System.String)">
<summary>
Loads a saved layout from the given file.
</summary>
<param name="filename">
The file containing a saved layout.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.LoadLayout(System.IO.Stream)">
<summary>
Loads a saved layout from the given stream.
</summary>
<param name="stream">
The Stream containing a saved layout.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SaveLayout(System.String)">
<summary>
Saves the grid's layout.
</summary>
<param name="filename">
File to contain the grid layout.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SaveLayout(System.IO.Stream)">
<summary>
Saves the grid's layout.
</summary>
<param name="stream">
The Stream to contain the grid layout.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SaveLayout(System.String,System.Boolean)">
<summary>
Saves the grid's layout.
</summary>
<param name="filename">
File to contain the grid layout.
</param>
<param name="withDefaultValues">
Specifies whether default values are serialized.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SaveLayout(System.IO.Stream,System.Boolean)">
<summary>
Saves the grid's layout.
</summary>
<param name="stream">
The Stream to contain the grid layout.
</param>
<param name="withDefaultValues">
Specifies whether default values are serialized.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.CellContaining(System.Int32,System.Int32,System.Int32@,System.Int32@)">
<summary>
Returns the cell position for a set of coordinates.
</summary>
<param name="x">
The x-coordinate.
</param>
<param name="y">
The y-coordinate.
</param>
<param name="row">
The row under the coordinate pair.
</param>
<param name="col">
The column index under the coordinate pair.
</param>
<returns>
A value indicating whether a data cell is beneath the specified coordinate pair.
</returns>
<remarks>
<para>The CellContaining method combines the <see cref="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ColContaining(System.Int32)" /> and <see cref="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RowContaining(System.Int32)" /> methods into one call. If the coordinate pair specified by x and y points to a data cell, this method returns True, and the rowindex and colindex arguments receive zero-based indexes that identify the cell.</para>
<para>This method is useful when working with mouse and drag events when trying to determine where the user clicked or dropped another control in terms of a grid cell.</para>
<para>If the specified coordinate is outside of the grid's data area, this method returns False. Use the <see cref="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.PointAt(System.Int32,System.Int32)" /> method to determine what kind of grid element, if any, is beneath the specified coordinate.</para>
</remarks>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RefreshRow">
<summary>
Invalidates the current row.
</summary>
<remarks>
The RefreshRow method causes a repaint of the entire row in the grid. Normally, the grid repaints automatically as needed. However, if handlers have been written for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OwnerDrawCell" /> event, use this method to force a row to be repainted and hence cause the appropriate events to fire.
</remarks>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RefreshRow(System.Int32)">
<summary>
Invalidates the current row.
</summary>
<param name="row">
The row to refresh.
</param>
<remarks>
The RefreshRow method causes a repaint of the entire row in the grid. Normally, the grid repaints automatically as needed. However, if handlers have been written for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OwnerDrawCell" /> event, use this method to force a row to be repainted and hence cause the appropriate events to fire.
</remarks>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RefreshCol">
<summary>
Invalidates the current column.
</summary>
<remarks>
The RefreshCol method causes a repaint of the entire column in the grid. Normally, the grid repaints automatically as needed. However, if handlers have been written for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OwnerDrawCell" /> event, use this method to force a column to be repainted and hence cause the appropriate events to fire.
</remarks>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RefreshCol(System.Int32)">
<summary>
Invalidates the specified column.
</summary>
<param name="col">
The split column index to repaint.
</param>
<remarks>
The RefreshCol method causes a repaint of the entire column in the grid. Normally, the grid repaints automatically as needed. However, if handlers have been written for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OwnerDrawCell" /> event, use this method to force a column to be repainted and hence cause the appropriate events to fire.
</remarks>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RefetchRow">
<summary>
Retreives data from the datasource for the current row and refreshes the row.
</summary>
<remarks>
<para>The RefetchRow method repopulates the specified row from a data source. It also repaints the row, firing all events necessary for redisplay.</para>
<para>By default, the grid retrieves data automatically as needed. In some circumstances, the underlying datasource may change without the grid receiving notification that a change has occurred. The RefetchRow method is provided for this purpose.</para>
</remarks>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RefetchRow(System.Int32)">
<summary>
Retreives data from the datasource for the specified row and refreshes the row.
</summary>
<param name="row">
The row to refetch.
</param>
<remarks>
<para>The RefetchRow method repopulates the specified row from a data source. It also repaints the row, firing all events necessary for redisplay.</para>
<para>By default, the grid retrieves data automatically as needed. In some circumstances, the underlying datasource may change without the grid receiving notification that a change has occurred. The RefetchRow method is provided for this purpose.</para>
</remarks>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ExpandGroupRow(System.Int32)">
<summary>
Expands the given row in GroupBy DataView.
</summary>
<param name="row">
The row to expand.
</param>
<remarks>
<para>Expanding/collapsing a row in a GroupBy grid also expands/collapses the row in a split that shares the same vertical scroll group.</para>
<para>
</para>
</remarks>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ExpandGroupRow(System.Int32,System.Boolean)">
<summary>
Expands the given row in GroupBy DataView and optionally exapands the subrows.
</summary>
<param name="row">The row to expand.</param>
<param name="expandSubRows">True to expand subrows.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.CollapseGroupRow(System.Int32)">
<summary>
Collapses a grouped row.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.GetBand(System.Int32)">
<summary>
Obtains the band given a column index.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.GetBandRow(System.Int32,System.Int32)">
<summary>
Obtains the underlying row object for the given band and row.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RowExpanded(System.Int32)">
<summary>
Obtains the expanded state of a band for a hierarchical grid.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.CollapseBand(System.Int32)">
<summary>
Collapses a gvien band in a hierarchical grid.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ExpandBand(System.Int32)">
<summary>
Expand the given band in a hierarchical grid.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.CollapseChild">
<summary>
Closes the Child Grid.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ExpandChild">
<summary>
Displays the Child grid.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ExportToHTML(System.String)">
<summary>
Exports the grid to an HTML file.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ExportToPDF(System.String)">
<summary>
Exports the grid to a PDF file.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ExportToRTF(System.String)">
<summary>
Exports the grid to an RTF file.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ExportToExcel(System.String)">
<summary>
Exports the grid to a XLS file.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ExportToExcel(System.String,System.Boolean)">
<summary>
Exports the grid to a XLS file.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ExportTo">
<summary>
Opens a dialog in which the user can select the export format.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ExportTo(System.String)">
<summary>
Exports the grid based upon the file extension.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ExportToDelimitedFile(System.String,C1.Win.C1TrueDBGrid.RowSelectorEnum)">
<summary>
Exports the specified rows from the grid to the specified file as delimited text.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ExportToDelimitedFile(System.String,C1.Win.C1TrueDBGrid.RowSelectorEnum,System.String)">
<summary>
Exports the specified rows from the grid to the specified file as delimited text.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ExportToDelimitedFile(System.String,C1.Win.C1TrueDBGrid.RowSelectorEnum,System.String,System.String)">
<summary>
Exports the specified rows from the grid to the specified file as delimited text.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ExportToDelimitedFile(System.String,C1.Win.C1TrueDBGrid.RowSelectorEnum,System.String,System.String,System.String)">
<summary>
Exports the specified rows from the grid to the specified file as delimited text.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ExportToDelimitedFile(System.String,C1.Win.C1TrueDBGrid.RowSelectorEnum,System.String,System.String,System.String,System.Boolean)">
<summary>
Exports the specified rows from the grid to the specified file as delimited text.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ExportToDelimitedFile(System.String,C1.Win.C1TrueDBGrid.RowSelectorEnum,System.String,System.String,System.String,System.Boolean,System.String)">
<summary>
Exports the specified rows from the grid to the specified file as delimited text.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.InsertVerticalSplit(System.Int32)">
<summary>
Inserts vertical splits at the given position.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RemoveVerticalSplit(System.Int32)">
<summary>
Removes all vertical splits at the given index.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.reinitViews">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.InsertHorizontalSplit(System.Int32)">
<summary>
Inserts new horizontal splits at the given position.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RemoveHorizontalSplit(System.Int32)">
<summary>
Removes all the horizontal splits at the given index.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Refresh">
<summary>
Clears any cached styles and forces the grid to repaint.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SetActiveCell(System.Int32,System.Int32)">
<summary>
Sets the focus to the given cell.
</summary>
<param name="row">The zero based index of the row.</param>
<param name="col">The zero based index of the column.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.MultiLineExtendColumns">
<summary>
Extends the last column in each subrow so that all rows have the same width.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnAfterColUpdate(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Raises the AfterColUpdate event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnAfterDelete(System.EventArgs)">
<summary>
Raises the AfterDelete event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnAfterInsert(System.EventArgs)">
<summary>
Raises the AfterInsert event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnAfterUpdate(System.EventArgs)">
<summary>
Raises the AfterUpdate event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnBeforeColUpdate(C1.Win.C1TrueDBGrid.BeforeColUpdateEventArgs)">
<summary>
Raises the BeforeColUpdate event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnBeforeDelete(C1.Win.C1TrueDBGrid.CancelEventArgs)">
<summary>
Raises the BeforeDelete event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnBeforeInsert(C1.Win.C1TrueDBGrid.CancelEventArgs)">
<summary>
Raises the BeforeInsert event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnBeforeUpdate(C1.Win.C1TrueDBGrid.CancelEventArgs)">
<summary>
Raises the BeforeUpdate event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnColResize(C1.Win.C1TrueDBGrid.ColResizeEventArgs)">
<summary>
Raises the ColResize event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnHeadClick(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Raises the HeadClick event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnFootClick(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Raises the FootClick event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnOwnerDrawCell(C1.Win.C1TrueDBGrid.OwnerDrawCellEventArgs)">
<summary>
Raises the OwnerDrawCell event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnOwnerDrawCellPrint(C1.Win.C1TrueDBGrid.OwnerDrawCellEventArgs)">
<summary>
Raises the OwnerDrawCellPrint event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnOwnerDrawPageHeader(C1.Win.C1TrueDBGrid.OwnerDrawPageEventArgs)">
<summary>
Raises the OwnerDrawPageHeader event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnOwnerDrawPageFooter(C1.Win.C1TrueDBGrid.OwnerDrawPageEventArgs)">
<summary>
Raises the OwnerDrawPageFooter event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnBeforeRowColChange(C1.Win.C1TrueDBGrid.CancelEventArgs)">
<summary>
Raises the BeforeRowColChange event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnRowColChange(C1.Win.C1TrueDBGrid.RowColChangeEventArgs)">
<summary>
Raises the RowColChange event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnRowResize(C1.Win.C1TrueDBGrid.CancelEventArgs)">
<summary>
Raises the RowResize event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.On_Scroll(C1.Win.C1TrueDBGrid.CancelEventArgs)">
<summary>
Raises the Scroll event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnSelChange(C1.Win.C1TrueDBGrid.CancelEventArgs)">
<summary>
Raises the SelChange event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnSplitChange(System.EventArgs)">
<summary>
Raises the SplitChange event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnSplitRemoved(System.EventArgs)">
<summary>
Raises the SplitRemoved event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnSplitAdded(System.EventArgs)">
<summary>
Raises the SplitRemoved event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnChange(System.EventArgs)">
<summary>
Raises the Change event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnUnboundColumnFetch(C1.Win.C1TrueDBGrid.UnboundColumnFetchEventArgs)">
<summary>
Raises the UnboundColumnFetch event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnUnboundColumnUpdated(C1.Win.C1TrueDBGrid.UnboundColumnFetchEventArgs)">
<summary>
Raises the UnboundColumnUpdated event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnAfterColEdit(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Raises the AfterColEdit event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnBeforeColEdit(C1.Win.C1TrueDBGrid.BeforeColEditEventArgs)">
<summary>
Raises the BeforeColEdit event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnColEdit(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Raises the ColEdit event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnFirstRowChange(C1.Win.C1TrueDBGrid.SplitEventArgs)">
<summary>
Raises the FirstRowChange event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnLeftColChange(C1.Win.C1TrueDBGrid.SplitEventArgs)">
<summary>
Raises the LeftColChange event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnFormatText(C1.Win.C1TrueDBGrid.FormatTextEventArgs)">
<summary>
Raises the FromatText event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnButtonClick(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Raises the ButtonClick event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnComboSelect(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Raises the ComboSelect event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnValueItemError(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Raises the ValueItemError event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnFetchCellStyle(C1.Win.C1TrueDBGrid.FetchCellStyleEventArgs)">
<summary>
Raises the FetchCellStyle event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnFetchGroupCellStyle(C1.Win.C1TrueDBGrid.FetchCellStyleEventArgs)">
<summary>
Raises the FetchGroupCellStyle event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnFetchRowStyle(C1.Win.C1TrueDBGrid.FetchRowStyleEventArgs)">
<summary>
Raises the FetchRowStyle event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.On_AddNew(System.EventArgs)">
<summary>
Raises the OnAddNew event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnColMove(C1.Win.C1TrueDBGrid.ColMoveEventArgs)">
<summary>
Raises the ColMove event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnFetchCellTips(C1.Win.C1TrueDBGrid.FetchCellTipsEventArgs)">
<summary>
Raises the FetchCellTips event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.On_Init(System.EventArgs)">
<summary>
Raises the OnInit event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnDataSourceChanged(System.EventArgs)">
<summary>
Raises the DataSourceChanged event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnCollapse(C1.Win.C1TrueDBGrid.BandEventArgs)">
<summary>
Raises the Collapse event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnExpand(C1.Win.C1TrueDBGrid.BandEventArgs)">
<summary>
Raises the Expand event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnGroupColMove(C1.Win.C1TrueDBGrid.GroupColMoveEventArgs)">
<summary>
Raises the GroupColMove event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnGroupText(C1.Win.C1TrueDBGrid.GroupTextEventArgs)">
<summary>
Raises the GroupText event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnGroupAggregate(C1.Win.C1TrueDBGrid.GroupTextEventArgs)">
<summary>
Raises the GroupAggregate event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnGroupHeadClick(C1.Win.C1TrueDBGrid.GroupColEventArgs)">
<summary>
Raises the GroupHeadClick event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnGroupInterval(C1.Win.C1TrueDBGrid.GroupIntervalEventArgs)">
<summary>
Raises the GroupInterval event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnFetchScrollTips(C1.Win.C1TrueDBGrid.FetchScrollTipsEventArgs)">
<summary>
Raises the FetchScrollTips event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnFilterChange(System.EventArgs)">
<summary>
Raises the FilterChange event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnFilterButtonClick(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Raises the FilterButtonClick event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnBeforeOpen(C1.Win.C1TrueDBGrid.CancelEventArgs)">
<summary>
Raises the BeforeOpen event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnBeforeClose(C1.Win.C1TrueDBGrid.CancelEventArgs)">
<summary>
Raises the BeforeClose event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnSort(C1.Win.C1TrueDBGrid.FilterEventArgs)">
<summary>
Raises the Sort event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnFilter(C1.Win.C1TrueDBGrid.FilterEventArgs)">
<summary>
Raises the Filter event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnAfterFilter(C1.Win.C1TrueDBGrid.FilterEventArgs)">
<summary>
Raises the AfterFilter event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnAfterSort(C1.Win.C1TrueDBGrid.FilterEventArgs)">
<summary>
Raises the AfterSort event.
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnError(C1.Win.C1TrueDBGrid.ErrorEventArgs)">
<summary>
Raises the Error event
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.C1PrintableGetTree">
<summary>
</summary>
<returns>
</returns>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.CurrentDataBoundItem">
<summary>
Gets a top-level object bound to a current data row.
</summary>
<remarks>Returns null if no data row is selected.</remarks>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Language">
<summary>
Gets or sets the language to use when localizing the column filters.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Item(System.Int32)">
<summary>
Gets the row object associated with the given row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Item(System.Int32,System.Int32)">
<summary>
Gets or sets the cell value at the given row and column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Item(System.Int32,System.String)">
<summary>
Gets or sets the cell value at the given row and column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AddNewMode">
<summary>
Gets a value that describes the current AddNew state.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AllowDelete">
<summary>
Gets or sets a value indicating the ability to delete records from the grid.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AllowAddNew">
<summary>
Gets or sets a value indicating the ability to add new rows.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AllowArrows">
<summary>
Gets or sets a value indicating whether arrow keys can be used to navigate around the grid.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AllowColMove">
<summary>
Gets or sets a value indicating the ability to move columns in the grid.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AllowColSelect">
<summary>
Gets or sets a value indicating the ability to select columns in the grid.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AllowDrag">
<summary>
Gets or sets a value indicating the ability to drag from the grid.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AllowRowSelect">
<summary>
Gets or sets a value indicating the ability to select rows in the grid.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AllowUpdate">
<summary>
Gets or sets a value indicating the ability of a user to modify data.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AllowUpdateOnBlur">
<summary>
Gets or sets a value indicating how the grid updates modifed data when the grid loses focus.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Bands">
<summary>
Gets the number of levels within a hierarchical grid.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Bookmark">
<summary>
Gets or sets the current row position of the underlying CurrencyManager.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.CellTips">
<summary>
Gets or sets whether the grid displays a pop-up text window when the cursor is idle.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.CellTipsDelay">
<summary>
Gets or sets the amount of time in milliseconds before the cell tip window is displayed.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.CellTipsWidth">
<summary>
Gets or sets the width of the cell tip window.
</summary>
<remarks>
<para>
The CellTipsWidth property returns or sets the width of the cell tip window in pixels.
</para>
<para>
By default, this property is set to zero, which causes the cell tip window to grow or shrink to accommodate the cell tip text. Override this behavior and give the cell tip window a fixed width by specifying a non-zero value for this property.
</para>
</remarks>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Col">
<summary>
Gets or sets the column position of the current cell in the current split.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.CollapseColor">
<summary>
Gets or sets the color of the collapse icon.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Editor">
<summary>
Gets a reference to the cell editor that is currently active.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FocusedSplit">
<summary>
Gets the Split that has focus.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.DefColWidth">
<summary>
Gets or sets the default width for all grid columns.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ExpandColor">
<summary>
Gets or sets the color of the expand icon in hierarchical grids.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ColumnHeaders">
<summary>
Gets or sets a value indicating the visibility of column headers.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ColumnFooters">
<summary>
Gets or sets a value indicating the visibility of column footers.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Columns">
<summary>
Gets the collection of C1DataColumn objects.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.CurrentCellVisible">
<summary>
Gets or sets a value indicating the visibility of the current cell in a split.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.DataChanged">
<summary>
Gets or sets a value indicating the modification status of the current row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.DestinationSplit">
<summary>
Gets the split index which will be current after cell movement.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.DestinationRow">
<summary>
Gets the row which will be current after cell movement.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.DestinationCol">
<summary>
Gets the column which will be current after cell movement.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.EditActive">
<summary>
Gets or sets a value indicating the editing status of the current cell.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.EditDropDown">
<summary>
Gets or sets a value indicating whether editing will take place in a popup window or within cell boundaries.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.EmptyRows">
<summary>
Gets or sets a value that determines how the grid displays rows below the last data row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ErrorImage">
<summary>
Gets or sets the image used for ErrorProvider.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ExtendRightColumn">
<summary>
Gets or sets a value that determines how the last column will extend to fill the dead area of the grid.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ExposeCellMode">
<summary>
Gets or sets how the rightmost column reacts when clicked by the user.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FetchRowStyles">
<summary>
Gets or sets a value indicating whether the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FetchRowStyle" /> event will be raised.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FilterActive">
<summary>
Gets or sets a value indicating whether the filter bar has focus.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FilterBar">
<summary>
Gets or sets a value indicating the visibility of the FilterBar.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FirstRow">
<summary>
Gets or sets the row index for the first visible row in a grid or split.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.LeftCol">
<summary>
Gets or sets the zero-based index of the leftmost column in a grid or split.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.MarqueeStyle">
<summary>
Gets or sets the MarqueeStyle for a grid.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.MatchEntryTimeOut">
<summary>
Gets or sets the time (milliseconds) in which the incremental search string will reset for a dropdown when the <see cref="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.DropDownList" /> property is True.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.MultiSelect">
<summary>
Gets or sets the selection state of the grid.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.PictureCurrentRow">
<summary>
Gets or sets the Image used in the record selector to indicate the Current row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.PictureModifiedRow">
<summary>
Gets or sets the Image used in the record selector to indicate the Modified row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.PictureAddnewRow">
<summary>
Gets or sets the Image used in the record selector to indicate the AddNew row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.PictureFilterBar">
<summary>
Gets or sets the Image used in the record selector to indicate the FilterBar row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.PictureStandardRow">
<summary>
Gets or sets the Image used in the record selector to indicate the Standard row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.PictureHeaderRow">
<summary>
Gets or sets the Image used in the record selector to indicate the Header row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.PictureFooterRow">
<summary>
Gets or sets the Image used in the record selector to indicate the Footer row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.PrintInfo">
<summary>
Gets the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.PrintInfo" /> object.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.PreviewInfo">
<summary>
Gets the <see cref="T:C1.Win.C1TrueDBGrid.PrintPreviewWinSettings" /> object.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RecordSelectors">
<summary>
Gets or sets a value indicating the visibility of row headers for a grid or split.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RecordSelectorWidth">
<summary>
Gets or sets the width of the row headers.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Row">
<summary>
Gets or sets the the current row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ScrollTips">
<summary>
Gets or sets a value that determines whether the grid displays a pop-up text window when the scrollbar thumb is dragged.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SelectedRows">
<summary>
Gets the collection of rows that are currently selected.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SelectedCols">
<summary>
Gets the collection of columns that are currently selected.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SelectionLength">
<summary>
Gets or sets the number of characters selected within the grid's editing window.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SelectionStart">
<summary>
Gets or sets the starting point of the text selection within the grid's editing window.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SelectedText">
<summary>
Gets or sets the string containing the currently selected text within the grid's editing window.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SelRange">
<summary>
Gets a value indicating whether a range of cells has been selected.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SplitIndex">
<summary>
Gets or sets the index of the current <see cref="T:C1.Win.C1TrueDBGrid.Split" /> within the <see cref="T:C1.Win.C1TrueDBGrid.SplitCollection" />.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SpringMode">
<summary>
Gets or sets a value that determines how columns will resize when the grid is resized.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.TabAcrossSplits">
<summary>
Gets or sets a value indicating the behavior of the tab and arrow keys at split borders.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.TabAction">
<summary>
Gets or sets the behavior of the tab key.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.VisibleCols">
<summary>
Gets the number of visible columns in the current Split.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.VisibleRows">
<summary>
Gets the number of visible rows in the current Split.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.WrapCellPointer">
<summary>
Gets or sets a value indicating the behavior of Tab and arrow keys at row boundaries.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.VScrollBar">
<summary>
Gets the <see cref="T:C1.Win.C1TrueDBGrid.Util.VBar" /> object that controls the appearance of the vertical scrollbar.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.HScrollBar">
<summary>
Gets the <see cref="T:C1.Win.C1TrueDBGrid.Util.HBar" /> object that controls the appearance of the horizontal scrollbar.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.DataView">
<summary>
Gets or sets the layout by which the grid will display data.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.DirectionAfterEnter">
<summary>
Gets or sets a value that determines the relative position of the next cell when the user presses the Enter key.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.GroupByCaption">
<summary>
Gets or sets the text displayed in the grouping area when no columns have been grouped.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.GroupedColumns">
<summary>
Gets the collection of columns that are grouped.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.GroupByAreaVisible">
<summary>
Gets or sets a value indicating the visibility of the Grouping area of the grid when the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.DataView" /> property is set to GroupBy.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.GroupByRectangle">
<summary>
Gets the rectangle occupied by the grouping area.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.LinesPerRow">
<summary>
Gets or sets the number of subrows of the grid when the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.DataView" /> property is set to MutlipleLinesFixed.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.MaintainRowCurrency">
<summary>
Gets or sets a value indicating the behavior of the grid and row currency when the grid's datasource is sorted.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RowDivider">
<summary>
Gets or sets the style of the border drawn between grid rows.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RowSubDividerColor">
<summary>
Gets or sets the color of the subrow divider in a multi-line grid.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ChildGrid">
<summary>
Gets or sets the C1TrueDBGrid control used as a child grid in a hierarchical presentation.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.CaptionStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Style" /> object that controls the appearance of the caption area.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.EditorStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Style" /> object that controls the appearance of the cell editor within a grid.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.EvenRowStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Style" /> object that controls the appearance of an even-numbered row when using <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AlternatingRows" />.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FilterBarStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Style" /> object that controls the appearance of the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FilterBar" />.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FilterWatermarkStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Style" /> object that controls the appearance of the <see cref="P:C1.Win.C1TrueDBGrid.C1DataColumn.FilterWatermark" />.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FooterStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Style" /> object that controls the appearance of column footers.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.GroupStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Style" /> object that controls the appearance of grouping area.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.HeadingStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Style" /> object that controls the appearance of the grids column headers.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.HighLightRowStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Style" /> object that controls the current row/cell when the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.MarqueeStyle" /> is set to Highlight Row/Cell.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.InactiveStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Style" /> object that controls the grids caption when it doesn't have focus.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OddRowStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Style" /> object that controls the appearance of an odd-numbered row when using <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AlternatingRows" />.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RecordSelectorStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Style" /> object that controls the appearance of the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RecordSelectors" />.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SelectedStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Style" /> object that controls the appearance of selected rows and columns.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Style">
<summary>
Gets or sets the root <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Style" /> object.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Styles">
<summary>
Gets the collection of named <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Style" /> objects.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AlternatingRows">
<summary>
Gets or sets a value indicating whether the grid or split uses the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OddRowStyle" /> for odd-numbered rows and <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.EvenRowStyle" /> for even-numbered rows.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AllowRowSizing">
<summary>
Gets or sets how interactive row resizing is performed.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AllowHorizontalSplit">
<summary>
Gets or sets a value indicating whether a user is allowed to create horizontal splits.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AllowVerticalSplit">
<summary>
Gets or sets a value indicating whether a user is allowed to create vertical splits.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Splits">
<summary>
Gets the collection of <see cref="T:C1.Win.C1TrueDBGrid.Split" /> objects.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ViewColumnWidth">
<summary>
Gets or sets the width of a column when the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.DataView" /> is set to Inverted or Form.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ViewCaptionWidth">
<summary>
Gets or sets the width of the column caption when the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.DataView" /> is set to Inverted or Form.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AfterColUpdate">
<summary>
Occurs after a cell has been updated.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AfterDelete">
<summary>
Occurs after a row has been deleted.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AfterInsert">
<summary>
Occurs after a row has been added.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AfterUpdate">
<summary>
Occurs after a row has been updated.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.BeforeColUpdate">
<summary>
Occurs before a cell is updated to the datasource.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.BeforeDelete">
<summary>
Occurs before a row is deleted.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.BeforeInsert">
<summary>
Occurs before a new row is added to the datasource.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.BeforeUpdate">
<summary>
Occurs before a row is updated to the datasource.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ColResize">
<summary>
Occurs whenever a column is resized.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.HeadClick">
<summary>
Occurs whenever a column header is clicked.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FootClick">
<summary>
Occurs whenever a column footer is clicked.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OwnerDrawCell">
<summary>
Occurs before a cell is rendered and the <see cref="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.OwnerDraw" /> is true.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OwnerDrawCellPrint">
<summary>
Occurs before a cell is to be printed and the <see cref="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.OwnerDraw" /> is true.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OwnerDrawPageHeader">
<summary>
Occurs before the page header is to be printed.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OwnerDrawPageFooter">
<summary>
Occurs before the page footer is to be printed.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.BeforeRowColChange">
<summary>
Occurs prior to focus moving to another cell.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RowColChange">
<summary>
Occurs when the focus moves to a different cell.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RowResize">
<summary>
Occurs whenever the user resizes a row.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Scroll">
<summary>
Occurs whenever the user scrolls the grid.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SelChange">
<summary>
Occurs whenever the user selected a different range of rows or columns.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SplitChange">
<summary>
Occurs whenever a Split changes focus.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SplitRemoved">
<summary>
Occurs when a split is removed.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SplitAdded">
<summary>
Occurs when a split is added.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Change">
<summary>
Occurs whenever the user changes the value of a cell.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.UnboundColumnFetch">
<summary>
Occurs when the grid needs to access the value of an unbound column.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.UnboundColumnUpdated">
<summary>
Occurs when the value of an unbound column has been updated.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AfterColEdit">
<summary>
Occurs after editing is completed.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.BeforeColEdit">
<summary>
Occurs before a cell enters edit mode.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ColEdit">
<summary>
Occurs whenever a cell first enters edit mode.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FirstRowChange">
<summary>
Occurs whenever the first row changes.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.LeftColChange">
<summary>
Occurs whenever the left column changes.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FormatText">
<summary>
Occurs whenever a cell is about to be rendered and whose <see cref="P:C1.Win.C1TrueDBGrid.C1DataColumn.NumberFormat" /> property has been set to FormatTextEvent.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ButtonClick">
<summary>
Occurs whenever a button is clicked in a cell.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ComboSelect">
<summary>
Occurs whenever a selection has been made to the built-in combo or TrueDBDropdown.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ValueItemError">
<summary>
Occurs whenever a user attempts to enter invalid data into a column that is using valueitems.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FetchCellStyle">
<summary>
Occurs whenever a cell is to be rendered and the <see cref="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.FetchStyle" /> is true.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FetchGroupCellStyle">
<summary>
Occurs whenever a grouped cell that contains an aggregate is to be rendered and <see cref="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.FetchStyle" /> is true.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FetchRowStyle">
<summary>
Occurs whenever the grid renders a row and the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FetchRowStyles" /> property has been set.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnAddNew">
<summary>
Occurs whenever an AddNew operation has been initiated.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ColMove">
<summary>
Occurs whenever the user has finished moving a column.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FetchCellTips">
<summary>
Occurs when the grid needs to display CellTips.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OnInit">
<summary>
Occurs after the grid has been initialized.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.DataSourceChanged">
<summary>
Occurs whenever the datasource changes.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Collapse">
<summary>
Occurs whenever a hierarchical row is collapsed.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Expand">
<summary>
Occurs whenever a hierarchical row is expanded.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.GroupColMove">
<summary>
Occurs whenever a column is moved into or out of the grouping area.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.GroupText">
<summary>
Occurs when the <see cref="P:C1.Win.C1TrueDBGrid.GroupInfo.HeaderText" /> property is set to custom.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.GroupAggregate">
<summary>
Occurs when the <see cref="P:C1.Win.C1TrueDBGrid.C1DataColumn.Aggregate" /> is set to Custom for a grouped row.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.GroupHeadClick">
<summary>
Occurs whenever a column in the grouping area is clicked.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.GroupInterval">
<summary>
Occurs whenever a row is being grouped and a custom interval has been specified.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FetchScrollTips">
<summary>
Occurs whenever the grid has focus and the scrollbar thumb is moved using the mouse.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FilterChange">
<summary>
Occurs when the contents of a cell in the filterbar changes.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FilterButtonClick">
<summary>
Occurs when a button is clicked in the filterbar.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.BeforeOpen">
<summary>
Occurs when the user attempts to open a child grid.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.BeforeClose">
<summary>
Occurs when the user attempts to close a child grid.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Sort">
<summary>
Occurs when the user drags a column into the grouping area.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Filter">
<summary>
Occurs when the user types in the filterbar and the <see cref="P:C1.Win.C1TrueDBGrid.BaseGrid.Frame.AllowFilter" /> property is false.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AfterFilter">
<summary>
Occurs after the datasource has been filtered.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AfterSort">
<summary>
Occurs after a column has been sorted.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Error">
<summary>
Occurs whenever an exception is thrown during end user interaction.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.C1TrueDBDropdown">
<summary>
C1TrueDBDropdown control.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.#ctor">
<summary>
Creates a new instance of the object.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Dispose(System.Boolean)">
<summary>
Called when the class is being disposed.
</summary>
<param name="disposing">
True to cleanup.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.CreateView">
<summary>
Creates the view.
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.CreateView(C1.Win.C1TrueDBGrid.BaseGrid.View)">
<summary>
Creates the view.
</summary>
<param name="other">The other.</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.initializeStyles">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnPaint(System.Windows.Forms.PaintEventArgs)">
<summary>
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.AddCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag,C1.Win.C1TrueDBGrid.Style)">
<summary>
Controls the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Style" /> used to change the appearance for cells meeting the specified condition.
</summary>
<param name="condition">
Combination of one or more <see cref="T:C1.Win.C1TrueDBGrid.CellStyleFlag" /> enumerations.
</param>
<param name="style">
<see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Style" /> object that specifies appearance attributes.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.AddRegexCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag,C1.Win.C1TrueDBGrid.Style,System.String)">
<summary>
Controls the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Style" /> used to change the appearance of cells according to their contents.
</summary>
<param name="condition">
Combination of one or more <see cref="T:C1.Win.C1TrueDBGrid.CellStyleFlag" /> enumerations.
</param>
<param name="style">
<see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Style" /> object that specifies appearance attributes.
</param>
<param name="regex">
A regular expression string.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.ClearCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag)">
<summary>
Restores the default layout.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.ClearRegexCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag)">
<summary>
Removes a cell condition established with a previous call to the <see cref="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.AddRegexCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag,C1.Win.C1TrueDBGrid.Style,System.String)" /> method.
</summary>
<param name="condition">
Combination of one or more <see cref="T:C1.Win.C1TrueDBGrid.CellStyleFlag" /> enumerations.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.ClearFields">
<summary>
Restores the default layout.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.ColContaining(System.Int32)">
<summary>
Returns the column index for the column containing the specified X coordinate.
</summary>
<param name="x">
The horizontal coordinate (X value) in pixels.
</param>
<returns>
The index of the column in the <see cref="P:C1.Win.C1TrueDBGrid.Split.DisplayColumns" /> collection beneath the specified X coordinate.
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.RowContaining(System.Int32)">
<summary>
Returns the zero-based index of the display row containing the Y specified coordinate.
</summary>
<param name="y">
The vertical coordinate (Y value) in pixels.
</param>
<returns>
The display row index beneath the specified Y coordinate.
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Rebind(System.Boolean)">
<summary>
Reinitializes grid with data from its data source.
</summary>
<param name="holdFields">
True to preserves current column layout. False retrieves the schema from the datasource.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Rebind">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.ScrollCtl(System.Int32,System.Int32)">
<summary>
Scrolls the data area by the specified number of rows and columns
</summary>
<param name="Cols">
</param>
<param name="Rows">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnColMove(C1.Win.C1TrueDBGrid.ColMoveEventArgs)">
<summary>
Occurs when the user has moved a column.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnColResize(C1.Win.C1TrueDBGrid.ColResizeEventArgs)">
<summary>
Occurs when the user has resized a column.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnDataSourceChanged(System.EventArgs)">
<summary>
Occurs when the grids DataSource has changed.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnDropDownOpen(System.EventArgs)">
<summary>
Occurs when the dropdown is opened.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnDropDownClose(System.EventArgs)">
<summary>
Occurs when the dropdown closes.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnFetchRowStyle(C1.Win.C1TrueDBGrid.FetchRowStyleEventArgs)">
<summary>
Occurs whenever the grid is about to display a row of data and the FetchRowStyles property is True.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnFirstRowChange(C1.Win.C1TrueDBGrid.SplitEventArgs)">
<summary>
Occurs when the first displayed row of a control or split is changed.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnFootClick(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Occurs when the user clicks on the column footer.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnFormatText(C1.Win.C1TrueDBGrid.FormatTextEventArgs)">
<summary>
Occurs when the grid is about to display cell data in a column whose NumberFormat property is set to the string FormatText Event.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnHeadClick(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Occurs when the user clicks on the column header.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnLeftColChange(C1.Win.C1TrueDBGrid.SplitEventArgs)">
<summary>
Occurs when the first visible column of a grid or split is changed.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnRowChange(System.EventArgs)">
<summary>
Occurs when the focus moves to a different row.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnRowResize(C1.Win.C1TrueDBGrid.CancelEventArgs)">
<summary>
Occurs when the user has finished resizing a grid row.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.On_Scroll(C1.Win.C1TrueDBGrid.CancelEventArgs)">
<summary>
Occurs when the user scrolls the grid.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnSelChange(C1.Win.C1TrueDBGrid.CancelEventArgs)">
<summary>
Occurs when the user selects a different range of rows or columns.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnUnboundColumnFetch(C1.Win.C1TrueDBGrid.UnboundColumnFetchEventArgs)">
<summary>
Occurs when the grid needs to display the value of a cell in an unbound column.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnValueItemError(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Occurs when the user attempts to enter invalid data into a column that is using value lists.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnFetchScrollTips(C1.Win.C1TrueDBGrid.FetchScrollTipsEventArgs)">
<summary>
Occurs whenever the grid has focus and the scrollbar thumb is moved using the mouse.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.GetCurrentSelIndex">
<summary>
Gets the current selected index.
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the MouseUp event.
</summary>
<param name="e">A MouseEventArgs that contains the event data.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnAfterColUpdate(C1.Win.C1TrueDBGrid.ColEventArgs)">
<summary>
Raises <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.AfterColUpdate" /> event.
</summary>
<param name="e">A <see cref="T:C1.Win.C1TrueDBGrid.ColEventArgs" />that contains the event data.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
<summary>
Inherited from control.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data. </param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.WndProc(System.Windows.Forms.Message@)">
<summary>
</summary>
<param name="m">
</param>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.DefaultSize">
<summary>
Gets the default size of the control.
</summary>
<value>
</value>
<returns>
The default <see cref="T:System.Drawing.Size" /> of the control.
</returns>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.AllowColMove">
<summary>
Gets or sets a value indicating the ability to move columns.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.AllowColSelect">
<summary>
Gets or sets a value indicating the ability to select columns.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.AllowRowSizing">
<summary>
Gets or sets how interactive row resizing is performed.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.AlternatingRows">
<summary>
Gets or sets a value indicating whether the dropdown uses the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OddRowStyle" /> for odd-numbered rows and <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.EvenRowStyle" /> for even-numbered rows.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Bookmark">
<summary>
Gets or sets the current row position of the underlying CurrencyManager.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Col">
<summary>
Gets or sets the column position.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.ColumnFooters">
<summary>
Gets or sets a value indicating the visibility of column footers.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.ColumnCaptionHeight">
<summary>
Gets or sets the height of column captions.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.ColumnFooterHeight">
<summary>
Gets or sets the height of column footers.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.ColumnHeaders">
<summary>
Gets or sets a value indicating the visibility of column headers.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Columns">
<summary>
Gets the collection of C1DataColumn objects.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.DisplayColumns">
<summary>
Gets the collection of C1DisplayColumn objects.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.CurrentCellVisible">
<summary>
Gets or sets a value indicating the visibility of the current cell.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.ValueMember">
<summary>
Gets or sets the property used to update the associated grid column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.DefColWidth">
<summary>
Gets or sets the default width for all grid columns.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.DropdownWidth">
<summary>
Gets or sets the width of the dropdown.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.EmptyRows">
<summary>
Gets or sets a value that determines how the grid displays rows below the last data row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.EvenRowStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Style" /> object that controls the appearance of an even-numbered row when using <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.AlternatingRows" />.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.ExtendRightColumn">
<summary>
Gets or sets a value that determines how the last column will extend to fill the dead area of the dropdown.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.FetchRowStyles">
<summary>
Gets or sets a value indicating whether the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.FetchRowStyle" /> event will be raised.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.FirstRow">
<summary>
Gets or sets the row index for the first visible row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.FooterStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Style" /> object that controls the appearance of column footers.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.HeadingStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Style" /> object that controls the appearance of the grids column headers.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.HighLightRowStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Style" /> object that controls the appearance of a highlighted row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.IntegralHeight">
<summary>
Gets or sets a value indicating whether the control should resize to avoid showing partial items.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.LeftCol">
<summary>
Gets or sets the zero-based index of the leftmost column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.DisplayMember">
<summary>
Gets or sets the property used for incremental search.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.OddRowStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Style" /> object that controls the appearance of an odd-numbered row when using <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.AlternatingRows" />.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Row">
<summary>
Gets or sets the the current row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.RowDivider">
<summary>
Gets or sets the style of the border drawn between rows.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.RowSubDividerColor">
<summary>
Gets or sets the color of the subrow divider in a multi-line dropdown.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.RowTracking">
<summary>
Gets or sets a value that determines if rows are highlighted under the mouse.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.VScrollBar">
<summary>
Gets the <see cref="T:C1.Win.C1TrueDBGrid.Util.VBar" /> object that controls the appearance of the vertical scrollbar.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.HScrollBar">
<summary>
Gets the <see cref="T:C1.Win.C1TrueDBGrid.Util.HBar" /> object that controls the appearance of the horizontal scrollbar.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.ScrollTips">
<summary>
Gets or sets a value that determines whether the grid displays a pop-up text window when the scrollbar thumb is dragged.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Style">
<summary>
Gets or sets the root <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Style" /> object.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Styles">
<summary>
Gets the collection of named <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Style" /> objects.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.ValueTranslate">
<summary>
Gets or sets a value that determines how the grid display values in a column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.VisibleCols">
<summary>
Gets the number of visible columns in the dropdown.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.VisibleRows">
<summary>
Gets the number of visible rows in the dropdown.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.ColMove">
<summary>
Occurs when the user has moved a column.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.ColResize">
<summary>
Occurs when the user has resized a column.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.DataSourceChanged">
<summary>
Occurs when the grids DataSource has changed.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.DropDownOpen">
<summary>
Occurs when the dropdown is opened.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.DropDownClose">
<summary>
Occurs when the dropdown closes.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.FetchRowStyle">
<summary>
Occurs whenever the grid is about to display a row of data and the FetchRowStyles property is True.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.FirstRowChange">
<summary>
Occurs when the first displayed row of a control or split is changed.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.FootClick">
<summary>
Occurs when the user clicks on the column footer.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.FormatText">
<summary>
Occurs when the grid is about to display cell data in a column whose NumberFormat property is set to the string FormatText Event.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.HeadClick">
<summary>
Occurs when the user clicks on the column header.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.LeftColChange">
<summary>
Occurs when the first visible column of a grid or split is changed.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.RowChange">
<summary>
Occurs when the focus moves to a different row.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.RowResize">
<summary>
Occurs when the user has finished resizing a grid row.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Scroll">
<summary>
Occurs when the user scrolls the grid.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.SelChange">
<summary>
Occurs when the user selects a different range of rows or columns.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.UnboundColumnFetch">
<summary>
Occurs when the grid needs to display the value of a cell in an unbound column.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.ValueItemError">
<summary>
Occurs when the user attempts to enter invalid data into a column that is using value lists.
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.FetchScrollTips">
<summary>
Occurs whenever the grid has focus and the scrollbar thumb is moved using the mouse.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.CaptionStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBDropdown.Style" /> object that controls the appearance of the caption area.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.ConditionOperator">
<summary>
Represents operators used in filter conditions.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ConditionOperator.None">
<summary>
Disables the operator.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ConditionOperator.Equals">
<summary>
Return true if the value equals the operator parameter.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ConditionOperator.NotEquals">
<summary>
Return true if the value does not equal the operator parameter.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ConditionOperator.GreaterThan">
<summary>
Return true if the value is greater than the operator parameter.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ConditionOperator.LessThan">
<summary>
Return true if the value is less than the operator parameter.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ConditionOperator.GreaterThanOrEqualTo">
<summary>
Return true if the value is greater than or equal to the operator parameter.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ConditionOperator.LessThanOrEqualTo">
<summary>
Return true if the value is less than or equal to the operator parameter.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ConditionOperator.Contains">
<summary>
Return true if the string representation of the value contains the operator parameter.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ConditionOperator.DoesNotContain">
<summary>
Return true if the string representation of the value does not contain the operator parameter.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ConditionOperator.BeginsWith">
<summary>
Return true if the string representation of the value begins with the operator parameter.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ConditionOperator.EndsWith">
<summary>
Return true if the string representation of the value ends with the operator parameter.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Condition">
<summary>
Represents a condition within a <see cref="T:C1.Win.C1TrueDBGrid.ConditionFilter" />.
</summary>
<remarks>
Each <see cref="T:C1.Win.C1TrueDBGrid.ConditionFilter" /> contains up to two conditions that
can be combined with 'And' or 'Or' operators.
</remarks>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Condition.Clear">
<summary>
Clears this condition by setting the <see cref="P:C1.Win.C1TrueDBGrid.Condition.Operator" /> to 'None'
and the <see cref="P:C1.Win.C1TrueDBGrid.Condition.Parameter" /> to null.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Condition.Apply(System.Object)">
<summary>
Applies the condition to a given value.
</summary>
<param name="value">Value to test.</param>
<returns>True if the value satisfies the condition, false otherwise.</returns>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Condition.IsActive">
<summary>
Gets a value that indicates whether the condition is active.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Condition.Operator">
<summary>
Gets or sets the operator used by this condition.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Condition.Parameter">
<summary>
Gets or sets the parameter used by this condition.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Condition.ParameterText">
<summary>
Gets or sets the parameter as a string used by this condition.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.AllowFiltering">
<summary>
Specifies the type of filter to be used for a <see cref="T:C1.Win.C1TrueDBGrid.C1DataColumn" />.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AllowFiltering.Default">
<summary>
Filter column using a <see cref="T:C1.Win.C1TrueDBGrid.ColumnFilter" />.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AllowFiltering.ByValue">
<summary>
Filter column by values using a <see cref="T:C1.Win.C1TrueDBGrid.ValueFilter" />.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AllowFiltering.ByCondition">
<summary>
Filter column by conditions using a <see cref="T:C1.Win.C1TrueDBGrid.ConditionFilter" />.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AllowFiltering.Custom">
<summary>
Filter column using a filter specified by the caller.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AllowFiltering.None">
<summary>
Do not provide a filter for this column.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Design.SplitCollectionEditor">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Design.SplitCollectionEditor.#ctor(System.Type)">
<summary>
</summary>
<param name="type">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Design.SplitCollectionEditor.CreateCollectionForm">
<summary>
</summary>
<returns>
</returns>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Util.Localization.Language">
<summary>
Specifies the language to be used for localizing the control.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.Default">
<summary>
Localize the control to the language specified by the CurrentUICulture.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.Arabic">
<summary>
Localize the control to Arabic.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.Czech">
<summary>
Localize the control to Czech.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.Danish">
<summary>
Localize the control to Danish.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.Dutch">
<summary>
Localize the control to Dutch.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.English">
<summary>
Localize the control to English.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.Finnish">
<summary>
Localize the control to Finnish.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.French">
<summary>
Localize the control to French.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.German">
<summary>
Localize the control to German.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.Greek">
<summary>
Localize the control to Greek.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.Hebrew">
<summary>
Localize the control to Hebrew.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.Italian">
<summary>
Localize the control to Italian.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.Japanese">
<summary>
Localize the control to Japanese.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.Norwegian">
<summary>
Localize the control to Norwegian.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.Polish">
<summary>
Localize the control to Polish.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.Portuguese">
<summary>
Localize the control to Portuguese.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.Russian">
<summary>
Localize the control to Russian.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.Slovak">
<summary>
Localize the control to Slovak.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.Spanish">
<summary>
Localize the control to Spanish.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.Swedish">
<summary>
Localize the control to Swedish.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.Chinese">
<summary>
Localize the control to Chinese (simplified).
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Localization.Language.Turkish">
<summary>
Localize the control to Turkish.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.BaseGrid.View">
<summary>
Base class for splits.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.BaseGrid.View.disposed">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.Dispose">
<summary>
Releases the resources used by the view.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.Dispose(System.Boolean)">
<summary>
Releases the resources used by the view.
</summary>
<param name="disposing">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.ToString">
<summary>
Returns the string that represents the current object.
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.GetCellStyle(System.Int32,System.Int32,System.String)">
<summary>
Returns the style associated with a given cell.
</summary>
<param name="row">Row to fetch the style for.</param>
<param name="col">Column to fetch the style for.</param>
<param name="celltext">The text of the cell.</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.ShouldDrawLines(System.Int32,System.Int32)">
<summary>
Returns a value indicating whether a line should be rendered for a given row and column.
</summary>
<param name="row">The row index.</param>
<param name="col">The column index.</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.OnScrollBarVisible(System.Object,System.Boolean)">
<summary>
Raised when the scrollbar visibility changes.
</summary>
<param name="sb">The scrollbar object.</param>
<param name="visible">The new visible state.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.newLeft(System.Int32)">
<summary>
</summary>
<param name="newleft">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.ClipRowRect(System.Drawing.Rectangle)">
<summary>
</summary>
<param name="r">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.NotifyRowColChange(System.Int32,System.Int32)">
<summary>
Notifies what curent row or column is changed.
</summary>
<param name="row">
</param>
<param name="col">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.BeginVerticalResizing(System.Drawing.Point)">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.beginHorizontalResizing(System.Drawing.Point)">
<summary>
</summary>
<param name="p">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.setAutoSizeRowHeight(System.Int32,System.Int32)">
<summary>
</summary>
<param name="row">
</param>
<param name="height">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.AutoSizeRow(System.Int32)">
<summary>
autosizes the height of the given row
</summary>
<param name="row">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.displayCollectionAdded(C1.Win.C1TrueDBGrid.C1DisplayColumnCollection)">
<summary>
</summary>
<param name="c">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.displayCollectionRemoved(C1.Win.C1TrueDBGrid.C1DisplayColumnCollection,System.Int32,System.Object)">
<summary>
</summary>
<param name="c">
</param>
<param name="idx">
</param>
<param name="val">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.displayCollectionRemoveComplete(C1.Win.C1TrueDBGrid.C1DisplayColumnCollection)">
<summary>
</summary>
<param name="c">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.displayCollectionCleared(C1.Win.C1TrueDBGrid.C1DisplayColumnCollection)">
<summary>
</summary>
<param name="c">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.displayCollectionClearedComplete(C1.Win.C1TrueDBGrid.C1DisplayColumnCollection)">
<summary>
</summary>
<param name="c">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.ShouldExit">
<summary>
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.ExitEdit">
<summary>
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.RowVisibilityChanged(C1.Win.C1TrueDBGrid.BaseGrid.ViewRow)">
<summary>
</summary>
<param name="vr">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.AddRow(System.Int32)">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.DeleteRows">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.MoveRow(System.Int32,System.Int32)">
<summary>
</summary>
<param name="oldrow">
</param>
<param name="newrow">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.ResetTopBottomRow">
<summary>
Performs internal reset.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.ClipDataRect(System.Windows.Forms.PaintEventArgs)">
<summary>
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.OnPaint(System.Windows.Forms.PaintEventArgs)">
<summary>
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.CheckMousePoint(System.Drawing.Point)">
<summary>
checks to see if the mouse is over a 3d element
</summary>
<param name="p">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.OnDisplayColumnChanged(C1.Win.C1TrueDBGrid.C1DisplayColumn.ColumnChangedEnum,C1.Win.C1TrueDBGrid.C1DisplayColumn)">
<summary>
Called when C1DisplayColumn properties have been changed.
</summary>
<param name="what">
</param>
<param name="dc">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.OnAddNewRow">
<summary>
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.HasInternalCombo">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.HasCombo">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.getDropDown">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.CreateInternalDropdown">
<summary>
creates a datasource from the valueitems so for the internal combobox.
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.RemoveCol(C1.Win.C1TrueDBGrid.C1DataColumn)">
<summary>
</summary>
<param name="dc">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.AddCol(C1.Win.C1TrueDBGrid.C1DataColumn)">
<summary>
</summary>
<param name="dc">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.ExpandGroupRow(System.Int32,System.Boolean)">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.CollapseGroupRow(System.Int32)">
<summary>
</summary>
<param name="row">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.UpdateGroupList(C1.Win.C1TrueDBGrid.C1DisplayColumnCollection)">
<summary>
</summary>
<param name="groupings">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.ClearGroupList">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.HasRowError(System.Int32)">
<summary>
</summary>
<param name="row">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.HasColError(System.Int32,C1.Win.C1TrueDBGrid.C1DataColumn)">
<summary>
</summary>
<param name="row">
</param>
<param name="dc">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.ComputeFixedArea">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.View.SetFlatMode(C1.Win.C1TrueDBGrid.FlatModeEnum)">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.View.FilterDefinition">
<summary>
Gets or sets an XML string containing the current filter state.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.View.ClientRect">
<summary>
potential properties
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.View.BorderSide">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.View.BorderStyle">
<summary>
Gets or sets the type of border rendered for a split.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.baseTypeConverter">
<summary>
Base class for typeconverter.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.baseTypeConverter.ObjFromString(System.String)">
<summary>
Returns an object from it's string representation.
</summary>
<param name="str">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.baseTypeConverter.StringFromObj(System.Object)">
<summary>
Returns a string representation from a given object.
</summary>
<param name="o">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.baseTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns true if the source type is string.
</summary>
<param name="context">
</param>
<param name="sourceType">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.baseTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns true of the type of string.
</summary>
<param name="context">
</param>
<param name="type">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.baseTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Overloaded. Returns whether this converter can convert an object of one type to the type of this converter.
</summary>
<param name="context">
</param>
<param name="culture">
</param>
<param name="value">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.baseTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Overloaded. Converts the given value object to the specified type.
</summary>
<param name="context">
</param>
<param name="culture">
</param>
<param name="value">
</param>
<param name="type">
</param>
<returns>
</returns>
</member>
<member name="T:C1.Win.C1TrueDBGrid.BitmapTypeConverter">
<summary>
Typeconverter for bitmaps. Used for serialization.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BitmapTypeConverter.ObjFromString(System.String)">
<summary>
Override. Returns the object given a string.
</summary>
<param name="str">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BitmapTypeConverter.StringFromObj(System.Object)">
<summary>
Override. Returns a string given an object.
</summary>
<param name="o">
</param>
<returns>
</returns>
</member>
<member name="T:C1.Win.C1TrueDBGrid.GenericTypeConverter">
<summary>
Expandable object converter that doesn't handle strings.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GenericTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Overloaded. Returns whether this converter can convert an object of one type to the type of this converter.
</summary>
<param name="context">
</param>
<param name="sourceType">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GenericTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Overloaded. Returns whether this converter can convert the object to the specified type.
</summary>
<param name="context">
</param>
<param name="type">
</param>
<returns>
</returns>
</member>
<member name="T:C1.Win.C1TrueDBGrid.ColumnMergeTypeConverter">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.ColumnMergeTypeConverter.#ctor">
<summary>
Initializes a new instance of the <see cref="T:C1.Win.C1TrueDBGrid.ColumnMergeTypeConverter" /> class.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.ColumnMergeTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Converts from.
</summary>
<param name="ctx">The CTX.</param>
<param name="ci">The ci.</param>
<param name="obj">The obj.</param>
<returns>
</returns>
</member>
<member name="T:C1.Win.C1TrueDBGrid.RelationState">
<summary>
Defined the relationship of a column.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.RelationState.None">
<summary>
Column is not related.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.RelationState.Parent">
<summary>
Column is the parent.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.RelationState.Child">
<summary>
Column is the child.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.C1DataColumn">
<summary>
Represents a column that defines binding information for the datasource.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DataColumn.#ctor">
<summary>
Creates a new instance of this object.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DataColumn.#ctor(System.String,System.Type)">
<summary>
Creates a new instance of this object.
</summary>
<param name="caption">The column caption.</param>
<param name="datatype">The data type.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DataColumn.#ctor(System.String,System.String,System.Type)">
<summary>
Creates a new instance of this object.
</summary>
<param name="caption">The column caption.</param>
<param name="datafield">The field from the data source.</param>
<param name="datatype">The data type.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DataColumn.ToString">
<summary>
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DataColumn.ResetButtonPicture">
<summary>
Resets ButtonPicture to its default value.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DataColumn.ResetFilterButtonPicture">
<summary>
Resets FilterButtonPicture to its default value.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DataColumn.CellText(System.Int32)">
<summary>
Gets the display value for a cell in a given row.
</summary>
<param name="row">The row to fetch.</param>
<returns>The display value.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DataColumn.CellValue(System.Int32)">
<summary>
Gets the cell value for a given row.
</summary>
<param name="row">The row to fetch.</param>
<returns>The underlying data from the data source.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DataColumn.Refresh">
<summary>
Invalidate the current column in all visible rows.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DataColumn.RefreshCell">
<summary>
Invalidates the current cell.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DataColumn.RefreshCell(System.Int32)">
<summary>
Invalidates the cell at the given row.
</summary>
<param name="row">Row to invalidate.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DataColumn.Refetch">
<summary>
Repopulate the entire grid from the data source.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DataColumn.RefetchCell">
<summary>
Repopulates the current cell from the data source.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DataColumn.RefetchCell(System.Int32)">
<summary>
Repopulates the specified data from the data source.
</summary>
<param name="row">The row to refetch.</param>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.Level">
<summary>
Gets or sets the level of this column in a hierarchical data source.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.Relation">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.RelationState">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.Aggregate">
<summary>
Gets or sets the type of aggregate computed for a grouped row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.ButtonPicture">
<summary>
Gets or sets the image shown in a drop-down button in a column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.buttonPicIdx">
<summary>
Index of button picture.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.buttonPicTag">
<summary>
Tag of button picture.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.Caption">
<summary>
Gets or sets the text in the column header.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.DataChanged">
<summary>
Gets or sets a value indicating whether data in this column has been modified.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.DataField">
<summary>
Gets or sets the database field name for a column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.DataType">
<summary>
Gets or sets the type of object stored for a column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.DataTypeInternal">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.DataWidth">
<summary>
Gets or sets the maximum number of characters which may be entered for cells in this column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.DefaultValue">
<summary>
Gets or sets the default value for a column when a new row is added by the grid.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.EditMask">
<summary>
Gets or sets the edit mask for a column.
</summary>
<remarks>
<para>The <see cref="P:C1.Win.C1TrueDBGrid.C1DataColumn.EditMask" /> property allows an input mask to be specified for automatic input formatting and validation. The mask syntax is similar to the one used by Microsoft Access. Setting the input mask for a column will prevent the user from entering any information in the cell that is not in the format of the <see cref="P:C1.Win.C1TrueDBGrid.C1DataColumn.EditMask" /> string.</para>
<para>The <see cref="P:C1.Win.C1TrueDBGrid.C1DataColumn.EditMask" /> must be a string composed of the following symbols:</para>
<para>
<b>Wildcards</b>
</para>
<list type="table">
<item>
<term>0</term>
<description>Digit.</description>
</item>
<item>
<term>9</term>
<description>Digit or space.</description>
</item>
<item>
<term>#</term>
<description>Digit or sign.</description>
</item>
<item>
<term>L</term>
<description>Letter.</description>
</item>
<item>
<term>?</term>
<description>Letter or space.</description>
</item>
<item>
<term>A</term>
<description>Letter or digit.</description>
</item>
<item>
<term>a</term>
<description>Letter, digit or space.</description>
</item>
<item>
<term>&amp;</term>
<description>Any character.</description>
</item>
</list>
<para>
<b>Localized characters</b>
</para>
<list type="table">
<item>
<term>.</term>
<description>Localized decimal separator.</description>
</item>
<item>
<term>,</term>
<description>Localized thousand separator.</description>
</item>
<item>
<term>:</term>
<description>Localized time separator.</description>
</item>
<item>
<term>/</term>
<description>Localized date separator.</description>
</item>
</list>
<para>
<b>Command characters</b>
</para>
<list type="table">
<item>
<term>\</term>
<description>Next character is taken as a literal.</description>
</item>
<item>
<term>&gt;</term>
<description>Translate letters to uppercase.</description>
</item>
<item>
<term>&lt;</term>
<description>Translate letters to lowercase.</description>
</item>
</list>
</remarks>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.EditMaskUpdate">
<summary>
Gets or sets a value indicating whether literal characters in the edit mask are stored to the underlying data source.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.Editor">
<summary>
Gets or sets the editor that is used to edit cell data.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.EnableDateTimeEditor">
<summary>
Gets or sets a value indicating whether a DateTime picker is used to edit this column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.FilterButtonPicture">
<summary>
Gets or sets the image shown as the column's filter button.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.filterButtonPicIdx">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.FilterKeys">
<summary>
Gets or sets the key used to initiate the filtering operation as the user types in the filterbar.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.FilterCount">
<summary>
Gets the number of values in the filter drop-down list.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.FooterText">
<summary>
Gets or sets the text displayed in the column footer.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.FilterEscape">
<summary>
Gets or sets the characters that should be ignored when applying the filter criteria to the datasource.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.FilterOperator">
<summary>
Gets or sets the operator that is used for a filter expression.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.FilterText">
<summary>
Gets or sets the data associated with the value of the filter for a column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.FilterWatermark">
<summary>
Specifies the text that is rendered in an empty cell in the Filterbar.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.FilterDropdown">
<summary>
Gets or sets a value indicating whether a drop-down list is displayed in the filter cell that lists all the values of the field.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.FilterDropdownText">
<summary>
Gets or sets the value indicating All when the FilterDropdown property is True.
</summary>
<value>The filter dropdown text.</value>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.FilterMultiSelect">
<summary>
Gets or sets a value indicating whether multiple values can be selected in the filter drop-down list.
</summary>
<remarks>If FilterMultiSelect is true then the user is able to enter several values using comma separator.</remarks>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.FilterSeparator">
<summary>
Gets or sets a character used to separate values in the filter drop-down list when multiple values are selected.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.FilterApplyText">
<summary>
Gets or sets the text of Apply button in the filter drop-down list when the FilterMultiSelect property is True.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.FilterCancelText">
<summary>
Gets or sets the text of Cancel button in the filter drop-down list when the FilterMultiSelect property is True.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.FilterClearText">
<summary>
Gets or sets the text of Clear button in the filter drop-down list when the FilterMultiSelect property is True.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.ImeMode">
<summary>
Specifies the ImeMode used to edit this column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.NumberFormat">
<summary>
Gets or sets the formatting string for a column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.ValueItems">
<summary>
Gets the <see cref="P:C1.Win.C1TrueDBGrid.C1DataColumn.ValueItems" /> object for this column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.Text">
<summary>
Gets or sets the display value for the current cell.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.Value">
<summary>
Gets or sets the value of the current cell.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.Tag">
<summary>
Gets or sets a user defined objects associated with this column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.DropDown">
<summary>
Gets or sets a user defined object associated with this column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.SortDirection">
<summary>
Gets or sets the state of the sorting glyph in the column caption bar.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.GroupInfo">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1DataColumn.GroupInfo" /> associated with this column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumn.DropDownCtl">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.DropDownTypeEditor">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.DropDownTypeEditor.#ctor">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.DropDownTypeEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>
</summary>
<param name="context">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.DropDownTypeEditor.OnListBoxClick(System.Object,System.EventArgs)">
<summary>
</summary>
<param name="sender">
</param>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.DropDownTypeEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
<summary>
</summary>
<param name="context">
</param>
<param name="provider">
</param>
<param name="value">
</param>
<returns>
</returns>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Style">
<summary>
Represents an object used to render grid elements.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Style.#ctor">
<summary>
Creates a new instance of this object.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Style.Dispose">
<summary>
Called when the class is being disposed.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Style.Dispose(System.Boolean)">
<summary>
Called when the class is being disposed.
</summary>
<param name="disposing">
True to cleanup.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Style.ToString">
<summary>
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Style.Render(System.Drawing.Graphics,System.Drawing.Rectangle,System.String)">
<summary>
Renders the given string using the style properties.
</summary>
<param name="g">Graphics object to render too.</param>
<param name="r">Rectangle to render in.</param>
<param name="s">String to render.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Style.Render(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,C1.Win.C1TrueDBGrid.Styles.DrawCellFlags)">
<summary>
Renders the given string using the style properties.
</summary>
<param name="g">Graphics object to render too.</param>
<param name="r">Rectangle to render in.</param>
<param name="s">String to render.</param>
<param name="flags">The draw flags.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Style.ResetBackColor">
<summary>
Reset BackColor to its default value.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Style.ResetForeColor">
<summary>
Resets ForeColor to its default value.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Style.ResetFont">
<summary>
Resets Font to its default value.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Style.ResetHorizontalAlignment">
<summary>
Resets HorizontalAlignment to its default value.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Style.ResetVerticalAlignment">
<summary>
Resets VerticalAlignment to its default value.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Style.ResetBackgroundPictureDrawMode">
<summary>
Resets BackgroundPictureDrawMode to its default value.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Style.ResetBackgroundImage">
<summary>
Resets the BackgroundImage to its default value.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Style.ResetForeGroundPicturePosition">
<summary>
Resets ForGroundImagePosition to its default value.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Style.ResetForegroundImage">
<summary>
Resets ForegroundImage to its default value.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Style.ResetLocked">
<summary>
Resets Locked to its default value.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Style.ResetWrapText">
<summary>
Resets WrapText to its default value.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Style.ResetTrimming">
<summary>
Resets Trimming to its default value.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Style.Reset">
<summary>
Resets all specialized attributes.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Style.Borders">
<summary>
Gets the <see cref="T:C1.Win.C1TrueDBGrid.GridBorders" /> associated with this Style.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Style.BackColor">
<summary>
Gets or sets the background color associated with a Style.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Style.BackColor2">
<summary>
Gets or sets the background color associated with a Style.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Style.GammaCorrection">
<summary>
Gets or sets a value indicating whether gamma correction is enabled when a linear gradient style is rendered.
</summary>
<value>
<c>true</c> if gamma correction is enabled; otherwise, <c>false</c>.</value>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Style.GradientMode">
<summary>
Gets or sets the direction of a linear gradient.
</summary>
<value>The gradient mode.</value>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Style.Alpha">
<summary>
Gets or sets the alpha component when the style is rendered.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Style.ForeColor">
<summary>
Gets or sets the foreground color associated with a Style.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Style.Font">
<summary>
Gets or sets the Font associated with a Style.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Style.HorizontalAlignment">
<summary>
Gets or sets the horizontal text alignment.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Style.VerticalAlignment">
<summary>
Gets or sets the vertical text alignment.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Style.BackgroundPictureDrawMode">
<summary>
Gets or sets the rendering method for a <see cref="P:C1.Win.C1TrueDBGrid.Style.BackgroundImage" />.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Style.BackgroundImage">
<summary>
Gets or sets the background image associated with a Style.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Style.ForeGroundPicturePosition">
<summary>
Gets or sets the position that the ForGroupImage is rendered.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Style.ForegroundImage">
<summary>
Gets or sets the foreground image associated with a style.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Style.Locked">
<summary>
Gets or sets a value indicating whether data entry is permitted for the assocated object.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Style.WrapText">
<summary>
Gets or sets a value indicating whether text is word-wrapped when it does not fit into a layout shape.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Style.Name">
<summary>
Gets or sets the name of the Style.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Style.Trimming">
<summary>
Gets or sets the trim characters for a string that does not completely fit into a layout shape.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Style.Padding">
<summary>
Gets or sets the spacing between cell content and its edges.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.GridBorders">
<summary>
Represents the border in a <see cref="T:C1.Win.C1TrueDBGrid.Style" /></summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GridBorders.BorderType">
<summary>
Gets or sets the type of border.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GridBorders.Left">
<summary>
Gets or sets the width of the left border.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GridBorders.Right">
<summary>
Gets or sets the width of the right border.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GridBorders.Top">
<summary>
Gets or sets the width of the top border.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GridBorders.Bottom">
<summary>
Gets or sets the width of the bottom border.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GridBorders.Color">
<summary>
Gets or sets the color of the border.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.ValueItems">
<summary>
Represents an object that defines how cells are rendered.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.ValueItems.ToString">
<summary>
Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.
</summary>
<returns>
A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.
</returns>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ValueItems.AnnotatePicture">
<summary>
Gets or sets a value indicating whether both Value and Display Value are rendenered when Display value is an image.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ValueItems.CycleOnClick">
<summary>
Gets or sets a value indicating whether users can cycle through <see cref="T:C1.Win.C1TrueDBGrid.ValueItem" /> by clicking on a cell.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ValueItems.DefaultItem">
<summary>
Gets or sets the index of the default <see cref="T:C1.Win.C1TrueDBGrid.ValueItem" /> or -1 for no default.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ValueItems.MaxComboItems">
<summary>
Gets or sets the maximum number of visible rows in the combobox.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ValueItems.Presentation">
<summary>
Gets or sets the method in which cells are rendered.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ValueItems.Translate">
<summary>
Gets or sets a value indicating whether data values are translated using matching <see cref="T:C1.Win.C1TrueDBGrid.ValueItem" />.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ValueItems.Validate">
<summary>
Gets or sets a value indicating whether values entered by the user must match on of the <see cref="T:C1.Win.C1TrueDBGrid.ValueItem" /> objects.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ValueItems.Values">
<summary>
Gets the collection of Value/Display Value pairs.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ValueItems.internalValues">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.ValueItemCollection">
<summary>
Represents a collection of <see cref="T:C1.Win.C1TrueDBGrid.ValueItem" /> objects.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.ValueItemCollection.#ctor">
<summary>
Initializes a new instance of the <see cref="T:C1.Win.C1TrueDBGrid.ValueItemCollection" /> class.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.ValueItemCollection.Add(C1.Win.C1TrueDBGrid.ValueItem)">
<summary>
Adds a <see cref="T:C1.Win.C1TrueDBGrid.ValueItem" /> to the end of the collection.
</summary>
<param name="vi">The ValueItem to add.</param>
<returns>The index at which the ValueItem has been added.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.ValueItemCollection.OnInsert(System.Int32,System.Object)">
<summary>
</summary>
<param name="index">
</param>
<param name="value">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.ValueItemCollection.Insert(System.Int32,C1.Win.C1TrueDBGrid.ValueItem)">
<summary>
Inserts a <see cref="T:C1.Win.C1TrueDBGrid.ValueItem" /> at the specified index.
</summary>
<param name="index">The zero-based index at which the ValueItem should be inserted.</param>
<param name="vi">The ValueItem to insert.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.ValueItemCollection.IndexOf(C1.Win.C1TrueDBGrid.ValueItem)">
<summary>
Gets the index of the specified <see cref="T:C1.Win.C1TrueDBGrid.ValueItem" />.
</summary>
<param name="vi">The ValueItem to search.</param>
<returns>The index of the ValueItem.</returns>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ValueItemCollection.Item(System.Int32)">
<summary>
Gets or sets the specified <see cref="T:C1.Win.C1TrueDBGrid.ValueItem" /> from the collection at the specified index.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.ValueItem">
<summary>
Represents an object that defines a value/display value pair.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.ValueItem.#ctor">
<summary>
Initializes a new instance of the ValueItem class.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.ValueItem.#ctor(System.String,System.Object)">
<summary>
Initializes a new instance of the ValueItem class.
</summary>
<param name="value">Underlying data value.</param>
<param name="displayValue">Translated value.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.ValueItem.ToString">
<summary>
Returns a string that represents the current object.
</summary>
<returns>
</returns>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ValueItem.Value">
<summary>
Gets or sets the raw (untranslated) value of this item.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ValueItem.DisplayValue">
<summary>
Gets or sets the display value of this item.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ValueItem.ImgIdx">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ValueItem.dispVal">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.C1DisplayColumn">
<summary>
Represents the columns in a split.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DisplayColumn.Dispose">
<summary>
Releases the resources used by the component.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DisplayColumn.ToString">
<summary>
Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.
</summary>
<returns>
A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />.
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DisplayColumn.Dispose(System.Boolean)">
<summary>
Releases the resources used by the component.
</summary>
<param name="disposing">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DisplayColumn.OnChanged(C1.Win.C1TrueDBGrid.C1DisplayColumn.ColumnChangedEnum)">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DisplayColumn.GetFilterExpression">
<summary>
Gets the filter expression for the column.
</summary>
<returns>The filter expression for the column</returns>
<remarks>Use this method in your implementations of custom filtering.</remarks>
<example>Example shows how to build a row filter using <see cref="M:C1.Win.C1TrueDBGrid.C1DisplayColumn.GetFilterExpression" /> method.
<code><![CDATA[
' raised when the filter changes
Private Sub C1TrueDBGrid1_FilterChange(ByVal sender As Object, ByVal e As System.EventArgs) Handles C1TrueDBGrid1.FilterChange
' build our filter expression
Dim sb As New System.Text.StringBuilder()
Dim dc As C1.Win.C1TrueDBGrid.C1DisplayColumn
For Each dc In Me.C1TrueDBGrid1.Splits(0).DisplayColumns
' get the filter expression for the column
Dim cond As String = dc.GetFilterExpression()
If cond <> "" Then
If sb.ToString() <> "" Then
sb.Append(" AND ")
End If
sb.Append(cond)
End If
Next dc
' filter the data
Me.DataSet11.Tables(0).DefaultView.RowFilter = sb.ToString()
End Sub]]></code></example>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DisplayColumn.AddCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag,C1.Win.C1TrueDBGrid.Style)">
<summary>
Controls the <see cref="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.Style" /> used to change the appearance for cells meeting the specified condition.
</summary>
<param name="condition">
Combination of one or more <see cref="T:C1.Win.C1TrueDBGrid.CellStyleFlag" /> enumerations.
</param>
<param name="style">
<see cref="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.Style" /> object that specifies appearance attributes.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DisplayColumn.AddRegexCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag,C1.Win.C1TrueDBGrid.Style,System.String)">
<summary>
Controls the <see cref="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.Style" /> used to change the appearance of cells according to their contents.
</summary>
<param name="condition">
Combination of one or more <see cref="T:C1.Win.C1TrueDBGrid.CellStyleFlag" /> enumerations.
</param>
<param name="style">
<see cref="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.Style" /> object that specifies appearance attributes.
</param>
<param name="regex">
A regular expression string.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DisplayColumn.ClearCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag)">
<summary>
Removes a cell condition established with a previous call to the <see cref="M:C1.Win.C1TrueDBGrid.C1DisplayColumn.AddCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag,C1.Win.C1TrueDBGrid.Style)" /> method.
</summary>
<param name="condition">
Combination of one or more <see cref="T:C1.Win.C1TrueDBGrid.CellStyleFlag" /> enumerations.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DisplayColumn.ClearRegexCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag)">
<summary>
Removes a cell condition established with a previous call to the <see cref="M:C1.Win.C1TrueDBGrid.C1DisplayColumn.AddRegexCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag,C1.Win.C1TrueDBGrid.Style,System.String)" /> method.
</summary>
<param name="condition">
Combination of one or more <see cref="T:C1.Win.C1TrueDBGrid.CellStyleFlag" /> enumerations.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DisplayColumn.ClearRegexCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag,System.String)">
<summary>
Removes a cell condition established with a previous call to the <see cref="M:C1.Win.C1TrueDBGrid.C1DisplayColumn.AddRegexCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag,C1.Win.C1TrueDBGrid.Style,System.String)" /> method.
</summary>
<param name="condition">
Combination of one or more <see cref="T:C1.Win.C1TrueDBGrid.CellStyleFlag" /> enumerations.
</param>
<param name="regex">
A regular expression string.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DisplayColumn.AutoSize">
<summary>
Adjusts the width of a column to accommodate the longest visible field within that column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.AutoDropDown">
<summary>
Gets or sets a value indicating whether the dropdown opens automatically when a key is typed.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.AutoComplete">
<summary>
Gets or sets a value indicating whether the dropdown auto fills the edit portion with the matched entry.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.CellTop">
<summary>
Gets the vertical offset of the top of the cell for the current row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.DropDownList">
<summary>
Gets or sets a value indicating whether the dropdown acts like a dropdown list (text portion is not editable).
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.HeadingStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.Style" /> that controls the appearance of the column headers.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.Style">
<summary>
Gets or sets the root <see cref="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.Style" /> for this column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.FooterStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.Style" /> object that controls the appearance of column footers.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.EditorStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.Style" /> used for the cell editor.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.GroupHeaderStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.Style" /> used to render the cell in the grouped header row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.GroupFooterStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.Style" /> used to render the cell in the grouped footer row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.Visible">
<summary>
Gets or sets a value indicating the visibility of a column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.ColumnDivider">
<summary>
Gets or sets the style of the border drawn between columns.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.Width">
<summary>
Gets or sets the width of a column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.Height">
<summary>
Gets or sets the height of the column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.AllowFocus">
<summary>
Gets or sets a value indicating the ability of a column to receive focus.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.Locked">
<summary>
Gets or sets a value indicating whether editing is permitted in a column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.Merge">
<summary>
Gets or sets a value indicating whether contiguous like-value cells of this column are merged into one large cell.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.Frozen">
<summary>
Gets or sets a value indicating whether this <see cref="T:C1.Win.C1TrueDBGrid.C1DisplayColumn" /> is frozen.
</summary>
<value>
<c>true</c> if frozen; otherwise, <c>false</c>.</value>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.AllowSizing">
<summary>
Gets or sets a value indicating whether column resizing is allowed.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.ButtonText">
<summary>
Gets or sets a value indicating whether cells in this column look like buttons.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.ButtonAlways">
<summary>
Gets or sets a value indicating whether buttons will be displayed when the cell does not contain focus.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.Button">
<summary>
Gets or sets a value indicating whether a dropdown button will be displayed in this column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.FilterButton">
<summary>
Gets or sets a value indicating whether a dropdown button will be displayed in this column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.MinWidth">
<summary>
Gets or sets the minimum width a column can be resized to when in <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SpringMode" />.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.HeaderDivider">
<summary>
Gets or sets a value indicating whether to display the column divider in the header area.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.FooterDivider">
<summary>
Gets or sets a value indicating whether to display the column divider in the footer area.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.FetchStyle">
<summary>
Gets or sets a value indicating whether the FetchCellStyle event will be raised for a column.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.ButtonHeader">
<summary>
Gets or sets a value indicating whether a column header will act like a button.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.ButtonFooter">
<summary>
Gets or sets a value indicating whether a column footer will act like a button.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.OwnerDraw">
<summary>
Gets or sets a value indicating whether cells in this column are drawn by the user in the OwnerDrawCell event.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.DataColumn">
<summary>
Gets the associted <see cref="T:C1.Win.C1TrueDBGrid.C1DataColumn" /> associated with this object.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.DCIdx">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumn.Name">
<summary>
Gets the caption of the associated <see cref="T:C1.Win.C1TrueDBGrid.C1DataColumn" /> objects.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.C1DisplayColumn.ColumnChangedEnum">
<summary>
Enumerates the type of changes made to a display column for event listeners
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.C1DisplayColumn.ColumnChangedEnum.All">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.C1DisplayColumn.ColumnChangedEnum.CaptionStyle">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.C1DisplayColumn.ColumnChangedEnum.FooterStyle">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.C1DisplayColumn.ColumnChangedEnum.ColumnStyle">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.C1DisplayColumn.ColumnChangedEnum.ColumnDivider">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.C1DisplayColumn.ColumnChangedEnum.CaptionDivider">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.C1DisplayColumn.ColumnChangedEnum.Merge">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.C1DisplayColumn.ColumnChangedEnum.Appearance">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.C1DisplayColumn.ColumnChangedEnum.FooterDivider">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.C1DisplayColumn.ColumnChangedEnum.FetchStyle">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.C1DisplayColumn.ColumnChangedEnum.CellCondition">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.C1DisplayColumn.ColumnChangedEnum.Frozen">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.C1DisplayColumn.ColumnChangedEnum.OwnerDraw">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Util.GridLinesTypeConverter">
<summary>
TypeConverter for the GridLines object.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.GridLinesTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
</summary>
<param name="context">
</param>
<param name="sourceType">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.GridLinesTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
</summary>
<param name="context">
</param>
<param name="destinationType">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.GridLinesTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
</summary>
<param name="context">
</param>
<param name="culture">
</param>
<param name="value">
</param>
<param name="destinationType">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.GridLinesTypeConverter.fromStr(System.String)">
<summary>
Froms the STR.
</summary>
<param name="str">The STR.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.GridLinesTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
</summary>
<param name="context">
</param>
<param name="culture">
</param>
<param name="value">
</param>
<returns>
</returns>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Util.GridLines">
<summary>
Represents the line used for row and column dividers.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.GridLines.#ctor">
<summary>
Creates a new instance of this object.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.GridLines.Color">
<summary>
Gets or sets the color of lines used for row and column dividers.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.GridLines.Style">
<summary>
Gets or sets the style of lines used for row and column dividers.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Util.SplitDivider">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.SplitDivider.#ctor">
<summary>
Initializes a new instance of the <see cref="T:C1.Win.C1TrueDBGrid.Util.SplitDivider" /> class.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.SplitDivider.Width">
<summary>
Gets or sets the width.
</summary>
<value>The width.</value>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.SplitDivider.Border3DStyle">
<summary>
Gets or sets the border3D style.
</summary>
<value>The border3D style.</value>
</member>
<member name="T:C1.Win.C1TrueDBGrid.BaseGrid.ViewRowList">
<summary>
Represents a collection of ViewRow objects.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.ViewRowList.OnClear">
<summary>
Performs additional custom processes when clearing the contents of the instance.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.ViewRowList.OnRemove(System.Int32,System.Object)">
<summary>
Performs additional custom processes when removing an element from the instance.
</summary>
<param name="index">The zero-based index at which value can be found.</param>
<param name="value">The value of the element to remove from index.</param>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.ViewRowList.Owner">
<summary>
Owner of the row list.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.ViewRowList.Item(System.Int32)">
<summary>
Gets or sets the <see cref="T:C1.Win.C1TrueDBGrid.BaseGrid.ViewRow" /> at the specified index.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.BaseGrid.ViewRow">
<summary>
Represents a row in a split.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.BaseGrid.ViewRow.AutoSize">
<summary>
Adjust the size of the row to fully display cell data.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.ViewRow.Visible">
<summary>
Gets or sets the visiblity of a row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.ViewRow.RowType">
<summary>
Gets the type of row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.ViewRow.Height">
<summary>
Gets or sets the height of a row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.ViewRow.Width">
<summary>
Gets or sets the width of a row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BaseGrid.ViewRow.DataRowIndex">
<summary>
Gets index of the row in data source.
</summary>
<remarks>
<para>
Returns -1 if there is not corresponding data row.
For example, for a group row.
</para>
<para>
Use DataRowIndex property to translate view row index to data row index.
</para>
</remarks>
<example>
<code>
private void c1TrueDBGrid1_FetchCellStyle(object sender, C1.Win.C1TrueDBGrid.FetchCellStyleEventArgs e)
{
ViewRow row = this.c1TrueDBGrid1.Splits[0].Rows[e.Row];
if (row.RowType == RowTypeEnum.DataRow)
{
bool val = (bool)this.c1TrueDBGrid1[row.DataRowIndex, 3];
if (val == true)
e.CellStyle.BackColor = Color.Red;
}
}
</code>
</example>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Split">
<summary>
Represents a horizontal or vertical pane to display and edit data.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.#ctor">
<summary>
Initializes a new instance of the <see cref="T:C1.Win.C1TrueDBGrid.Split" /> class.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.#ctor(C1.Win.C1TrueDBGrid.BaseGrid.Frame)">
<summary>
Initializes a new instance of the <see cref="T:C1.Win.C1TrueDBGrid.Split" /> class.
</summary>
<param name="f">The f.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.#ctor(C1.Win.C1TrueDBGrid.BaseGrid.View)">
<summary>
Initializes a new instance of the <see cref="T:C1.Win.C1TrueDBGrid.Split" /> class.
</summary>
<param name="other">The other.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.Dispose(System.Boolean)">
<summary>
Called when the class is being disposed.
</summary>
<param name="disposing">
True to cleanup.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.getFilterTextRect(System.Int32)">
<summary>
</summary>
<param name="col">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.getFilterRect(System.Int32)">
<summary>
</summary>
<param name="col">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.DrawFilterCell(System.Windows.Forms.PaintEventArgs,System.Int32)">
<summary>
Draws the filter cell.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.PaintEventArgs" /> instance containing the event data.</param>
<param name="col">The col.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.ClipDataRect(System.Windows.Forms.PaintEventArgs)">
<summary>
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.OnPaint(System.Windows.Forms.PaintEventArgs)">
<summary>
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.shouldMerge(System.String,System.Int32,System.Int32,System.Int32)">
<summary>
returns true if the data at the given row is the same as the passed in string
</summary>
<param name="str">
</param>
<param name="row">absolute row number</param>
<param name="col">
</param>
<param name="delta">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.OnDisplayColumnChanged(C1.Win.C1TrueDBGrid.C1DisplayColumn.ColumnChangedEnum,C1.Win.C1TrueDBGrid.C1DisplayColumn)">
<summary>
Called when C1DisplayColumn properties have been changed.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.OnGetCellRange(System.Int32,System.Int32)">
<summary>
Returns the upper and lower bounds for a merged column.
</summary>
<param name="row">Starting row</param>
<param name="col">Starting colum.</param>
<returns>The CellRange object that defines the rows and columns for a merged cell.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.ExitEdit">
<summary>
Exits editing mode.
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.ShouldExit">
<summary>
short circuits exiting the editor on row change when actively filtering
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.RepositionEditor">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.filterColumnAt(System.Drawing.Point,System.Int32@)">
<summary>
</summary>
<param name="p">
</param>
<param name="col">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.CheckMousePoint(System.Drawing.Point)">
<summary>
</summary>
<param name="p">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.AddRow(System.Int32)">
<summary>
Adds the row.
</summary>
<param name="newrow">The newrow.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.DeleteRows">
<summary>
Deletes the rows.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.getDropDown">
<summary>
Gets the drop down for the current column if one exists.
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.HasInternalCombo">
<summary>
Determines whether we have an internal combo.
</summary>
<returns>
<c>true</c> if combo is not a valueitem otherwise, <c>false</c>.
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.HasCombo">
<summary>
Determines whether this instance has combo.
</summary>
<returns>
<c>true</c> if this instance has combo; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.CreateInternalDropdown">
<summary>
Creates the internal dropdown for use in the filterbar.
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.SetFlatMode(C1.Win.C1TrueDBGrid.FlatModeEnum)">
<summary>
Sets the flat mode.
</summary>
<param name="mode">The mode.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.ShouldSerializeRecordSelectorWidth">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.ShouldSerializeHeight">
<summary>
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.AddCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag,C1.Win.C1TrueDBGrid.Style)">
<summary>
Controls the <see cref="P:C1.Win.C1TrueDBGrid.Split.Style" /> used to change the appearance for cells meeting the specified condition.
</summary>
<param name="condition">
Combination of one or more <see cref="T:C1.Win.C1TrueDBGrid.CellStyleFlag" /> enumerations.
</param>
<param name="style">
<see cref="P:C1.Win.C1TrueDBGrid.Split.Style" /> object that specifies appearance attributes.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.AddRegexCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag,C1.Win.C1TrueDBGrid.Style,System.String)">
<summary>
Controls the <see cref="P:C1.Win.C1TrueDBGrid.Split.Style" /> used to change the appearance of cells according to their contents.
</summary>
<param name="condition">
Combination of one or more <see cref="T:C1.Win.C1TrueDBGrid.CellStyleFlag" /> enumerations.
</param>
<param name="style">
<see cref="P:C1.Win.C1TrueDBGrid.Split.Style" /> object that specifies appearance attributes.
</param>
<param name="regex">
A regular expression string.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.ClearCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag)">
<summary>
Removes a cell condition established with a previous call to the <see cref="M:C1.Win.C1TrueDBGrid.Split.AddCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag,C1.Win.C1TrueDBGrid.Style)" /> method.
</summary>
<param name="condition">
Combination of one or more <see cref="T:C1.Win.C1TrueDBGrid.CellStyleFlag" /> enumerations.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.ClearRegexCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag)">
<summary>
Removes a cell condition established with a previous call to the <see cref="M:C1.Win.C1TrueDBGrid.Split.AddCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag,C1.Win.C1TrueDBGrid.Style)" /> method.
</summary>
<param name="condition">
Combination of one or more <see cref="T:C1.Win.C1TrueDBGrid.CellStyleFlag" /> enumerations.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.ClearRegexCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag,System.String)">
<summary>
Removes a cell condition established with a previous call to the <see cref="M:C1.Win.C1TrueDBGrid.Split.AddRegexCellStyle(C1.Win.C1TrueDBGrid.CellStyleFlag,C1.Win.C1TrueDBGrid.Style,System.String)" /> method.
</summary>
<param name="condition">
Combination of one or more <see cref="T:C1.Win.C1TrueDBGrid.CellStyleFlag" /> enumerations.
</param>
<param name="regex">
A regular expression string.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.GetCellBounds(System.Int32,System.Int32)">
<summary>
Returns the Rectangle for the given Row and Column
</summary>
<param name="Row">Visible row number</param>
<param name="Col">Visible column index</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.OnAddNewRow">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.HBarHeight">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.HBarStyle">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.VBarHeight">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.VBarStyle">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.SubRows">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.AllowFocus">
<summary>
Gets or sets a value indicating whether the split can recive focus.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.AllowColMove">
<summary>
Gets or sets a value indicating the ability to move columns.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.AllowColSelect">
<summary>
Gets or sets a value indicating the ability to select columns.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.AllowRowSelect">
<summary>
Gets or sets a value indicating the ability to select rows.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.Name">
<summary>
Gets or sets the name of a split.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.AllowRowSizing">
<summary>
Gets or sets how interactive row resizing is performed.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.AllowHorizontalSizing">
<summary>
Gets or sets a value indicating whether a user is allowed to resize horizontal splits.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.AllowVerticalSizing">
<summary>
Gets or sets a value indicating whether a user is allowed to resize vertical splits.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.AlternatingRowStyle">
<summary>
Gets or sets a value indicating whether the split uses the <see cref="P:C1.Win.C1TrueDBGrid.Split.OddRowStyle" /> for odd-numbered rows and <see cref="P:C1.Win.C1TrueDBGrid.Split.EvenRowStyle" /> for even-numbered rows.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.Caption">
<summary>
Gets or sets the caption.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.CaptionHeight">
<summary>
Gets or sets the height of the caption.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.ColumnCaptionHeight">
<summary>
Gets or sets the height of the column captions.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.ColumnFooterHeight">
<summary>
Gets or sets the height of column footers.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.CurrentCellVisible">
<summary>
Gets or sets a value indicating the visibility of the current cell in a split.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.ExtendRightColumn">
<summary>
Gets or sets a value that determines how the last column will extend to fill the dead area of the split.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.FetchRowStyles">
<summary>
Gets or sets a value indicating whether the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FetchRowStyle" /> event will be raised.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.FilterActive">
<summary>
Gets or sets a value indicating whether the filter bar has focus.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.FilterBar">
<summary>
Gets or sets a value indicating the visibility of the FilterBar.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.FilterBorderStyle">
<summary>
Gets or sets the filter border style.
</summary>
<value>The filter border style.</value>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.FirstRow">
<summary>
Gets or sets the row index for the first visible row in a split.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.LeftCol">
<summary>
Gets or sets the left most visible column for a split.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.MarqueeStyle">
<summary>
Gets or sets the MarqueeStyle for a Split.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.Locked">
<summary>
Gets or sets a value indicating if the cells of a split can be edited.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.RecordSelectorWidth">
<summary>
Gets or sets the width of the row headers.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.DefRecSelWidth">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.RecordSelectors">
<summary>
Gets or sets a value indicating the visibility of row headers for Split.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.Rows">
<summary>
Gets the collection of Rows displayed in the Split.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.VerticalScrollGroup">
<summary>
Gets or sets the group which synchronizes verticall scrolling between splits.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.MinWidth">
<summary>
Gets or sets the minimum width that a split can be interactively resized.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.MinHeight">
<summary>
Gets or sets the minimum height that a split can be interactively resized.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.HorizontalScrollGroup">
<summary>
Gets or sets the group which synchronizes horizontal scrolling between splits.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.HorizontalOffset">
<summary>
Gets or sets the position of the Horizontal scrollbar.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.VerticalOffset">
<summary>
Gets or sets the position of the Vertical scrollbar.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.SpringMode">
<summary>
Gets or sets a value that determines how columns will resize when the grid is resized.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.VScrollBar">
<summary>
Gets the <see cref="T:C1.Win.C1TrueDBGrid.Util.VBar" /> object that controls the appearance of the vertical scrollbar.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.HScrollBar">
<summary>
Gets the <see cref="T:C1.Win.C1TrueDBGrid.Util.HBar" /> object that controls the appearance of the horizontal scrollbar.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.SplitSize">
<summary>
Gets or sets the size of a split.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.Height">
<summary>
Gets or sets the height of a split.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.SplitSizeMode">
<summary>
Gets or sets a value indicating how the <see cref="P:C1.Win.C1TrueDBGrid.Split.SplitSize" /> property is used to determine the actual size of a split.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.CaptionStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.Split.Style" /> object that controls the appearance of the caption area.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.EditorStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.Split.Style" /> object that controls the appearance of the cell editor within a grid.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.EvenRowStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.Split.Style" /> object that controls the appearance of an even-numbered row when using <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AlternatingRows" />.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.FilterBarStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.Split.Style" /> object that controls the appearance of the <see cref="P:C1.Win.C1TrueDBGrid.Split.FilterBar" />.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.FilterWatermarkStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.Split.Style" /> object that controls the appearance of the <see cref="P:C1.Win.C1TrueDBGrid.C1DataColumn.FilterWatermark" />.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.FooterStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.Split.Style" /> object that controls the appearance of column footers.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.HeadingStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.Split.Style" /> object that controls the appearance of the grids column headers.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.HighLightRowStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.Split.Style" /> object that controls the current row/cell when the <see cref="P:C1.Win.C1TrueDBGrid.Split.MarqueeStyle" /> is set to Highlight Row/Cell.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.InactiveStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.Split.Style" /> object that controls the grids caption when it doesn't have focus.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.OddRowStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.Split.Style" /> object that controls the appearance of an odd-numbered row when using <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AlternatingRows" />.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.RecordSelectorStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.Split.Style" /> object that controls the appearance of the <see cref="P:C1.Win.C1TrueDBGrid.Split.RecordSelectors" />.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.SelectedStyle">
<summary>
Gets or sets the <see cref="P:C1.Win.C1TrueDBGrid.Split.Style" /> object that controls the appearance of selected rows and columns.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.Style">
<summary>
Gets or sets the root <see cref="P:C1.Win.C1TrueDBGrid.Split.Style" /> object for the Split.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.DisplayColumns">
<summary>
Gets a collection of <see cref="T:C1.Win.C1TrueDBGrid.C1DisplayColumn" /> objects.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Split.internalCols">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Split.CellRange">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Split.CellRange.r1">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Split.CellRange.c1">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Split.CellRange.r2">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Split.CellRange.c2">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.CellRange.#ctor(System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:C1.Win.C1TrueDBGrid.Split.CellRange" /> struct.
</summary>
<param name="row">The row.</param>
<param name="col">The col.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.CellRange.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:C1.Win.C1TrueDBGrid.Split.CellRange" /> struct.
</summary>
<param name="row1">The row1.</param>
<param name="col1">The col1.</param>
<param name="row2">The row2.</param>
<param name="col2">The col2.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Split.CellRange.IsSingleCell">
<summary>
Determines whether the range is a single cell.
</summary>
<returns>
<c>true</c> if [is single cell]; otherwise, <c>false</c>.
</returns>
</member>
<member name="T:C1.Win.C1TrueDBGrid.GridStyleCollection">
<summary>
Represents a collection of named <see cref="T:C1.Win.C1TrueDBGrid.Style" />.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GridStyleCollection.#ctor(C1.Win.C1TrueDBGrid.BaseGrid.Frame)">
<summary>
</summary>
<param name="owner">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GridStyleCollection.OnInsert(System.Int32,System.Object)">
<summary>
</summary>
<param name="index">
</param>
<param name="value">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GridStyleCollection.Add(C1.Win.C1TrueDBGrid.Style)">
<summary>
Adds a <see cref="T:C1.Win.C1TrueDBGrid.Style" /> to the end of the collection.
</summary>
<param name="style">The Style to add.</param>
<returns>The index at which the <see cref="T:C1.Win.C1TrueDBGrid.Style" /> has been added.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GridStyleCollection.Insert(System.Int32,C1.Win.C1TrueDBGrid.Style)">
<summary>
Inserts a <see cref="T:C1.Win.C1TrueDBGrid.Style" /> at the specified index.
</summary>
<param name="index">The zero-based index at which the Style should be inserted.</param>
<param name="style">The Style to insert.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GridStyleCollection.IndexOf(C1.Win.C1TrueDBGrid.Style)">
<summary>
Gets the index of the specified <see cref="T:C1.Win.C1TrueDBGrid.Style" />.
</summary>
<param name="style">
</param>
<returns>The index of the Style.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GridStyleCollection.RemoveAt(System.Int32)">
<summary>
Removes the <see cref="T:C1.Win.C1TrueDBGrid.Style" /> at the specified index.
</summary>
<param name="index">Teh zero-based index of the Style to remove.</param>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GridStyleCollection.Item(System.Int32)">
<summary>
Gets the specified Style from the collection given its index.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GridStyleCollection.Item(System.String)">
<summary>
Gets the specified Style from the collection given its name.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.C1DisplayColumnCollection">
<summary>
Represents a collection of <see cref="T:C1.Win.C1TrueDBGrid.C1DisplayColumn" /> in a <see cref="T:C1.Win.C1TrueDBGrid.Split" />.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DisplayColumnCollection.Insert(System.Int32,C1.Win.C1TrueDBGrid.C1DisplayColumn)">
<summary>
Inserts a <see cref="T:C1.Win.C1TrueDBGrid.C1DisplayColumn" /> at the specified index.
</summary>
<param name="index">The zero-based index at which the C1DisplayColumn should be inserted.</param>
<param name="vc">The C1DataColumn to insert.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DisplayColumnCollection.IndexOf(C1.Win.C1TrueDBGrid.C1DisplayColumn)">
<summary>
Gets the index of the <see cref="T:C1.Win.C1TrueDBGrid.C1DisplayColumn" />.
</summary>
<param name="vc">
</param>
<returns>The index of the C1DisplayColumn.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DisplayColumnCollection.IndexOf(C1.Win.C1TrueDBGrid.C1DataColumn)">
<summary>
Gets the index of the <see cref="T:C1.Win.C1TrueDBGrid.C1DisplayColumn" /> specified by the <see cref="T:C1.Win.C1TrueDBGrid.C1DataColumn" />.
</summary>
<param name="dc">
</param>
<returns>The index of the C1DisplayColumn.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DisplayColumnCollection.OnRemove(System.Int32,System.Object)">
<summary>
</summary>
<param name="index">
</param>
<param name="value">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DisplayColumnCollection.OnRemoveComplete(System.Int32,System.Object)">
<summary>
</summary>
<param name="index">
</param>
<param name="value">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DisplayColumnCollection.OnClear">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DisplayColumnCollection.OnClearComplete">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumnCollection.Item(System.Int32)">
<summary>
Gets the specified <see cref="T:C1.Win.C1TrueDBGrid.C1DisplayColumn" /> from the collection at the specified index.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumnCollection.Item(C1.Win.C1TrueDBGrid.C1DataColumn)">
<summary>
Gets the specified <see cref="T:C1.Win.C1TrueDBGrid.C1DisplayColumn" /> from the collection wich contains the specified <see cref="T:C1.Win.C1TrueDBGrid.C1DataColumn" />.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DisplayColumnCollection.Item(System.String)">
<summary>
Gets the specified <see cref="T:C1.Win.C1TrueDBGrid.C1DisplayColumn" /> from the collection with the specified name.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.C1DataColumnCollection">
<summary>
Contains a collection of <see cref="T:C1.Win.C1TrueDBGrid.C1DataColumn" /> objects.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DataColumnCollection.OnInsert(System.Int32,System.Object)">
<summary>
</summary>
<param name="index">
</param>
<param name="value">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DataColumnCollection.Clear">
<summary>
Removes all elements from the collection.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DataColumnCollection.Add(C1.Win.C1TrueDBGrid.C1DataColumn)">
<summary>
Adds a C1DataColumn to the end of the collection.
</summary>
<param name="dc">The C1DataColumn to add.</param>
<returns>The index at which the C1DataColumn has been added.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DataColumnCollection.RemoveAt(System.Int32)">
<summary>
Removes the C1DataColumn at the specified index.
</summary>
<param name="index">The zero-based index of the row to remove.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DataColumnCollection.Insert(System.Int32,C1.Win.C1TrueDBGrid.C1DataColumn)">
<summary>
Inserts a <see cref="T:C1.Win.C1TrueDBGrid.C1DataColumn" /> at the specified index.
</summary>
<param name="index">The zero-based index at which the C1DataColumn should be inserted.</param>
<param name="dc">The C1DataColumn to insert.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DataColumnCollection.IndexOf(C1.Win.C1TrueDBGrid.C1DataColumn)">
<summary>
Gets the index of the specified <see cref="T:C1.Win.C1TrueDBGrid.C1DataColumn" />.
</summary>
<param name="dc">
</param>
<returns>The index of the the C1DataColumn.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DataColumnCollection.IndexOf(System.String)">
<summary>
Gets the index of a <see cref="T:C1.Win.C1TrueDBGrid.C1DataColumn" /> with the specified DataField.
</summary>
<param name="dataField">
</param>
<returns>The index of the the C1DataColumn.</returns>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumnCollection.Item(System.Int32)">
<summary>
Gets the specified C1DataColumn from the collection at the specified index.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DataColumnCollection.Item(System.String)">
<summary>
Gets the specified C1DataColumn from the collection with the specified name.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.SelectedColumnCollection">
<summary>
Contains a collection of <see cref="T:C1.Win.C1TrueDBGrid.C1DataColumn" /> objects that represent columns that are selected.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.SelectedColumnCollection.Clear">
<summary>
Removes all elements from the collection.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.SelectedColumnCollection.RemoveAt(System.Int32)">
<summary>
Removes the C1DataColumn at the specified index.
</summary>
<param name="index">The zero-based index of the row to remove.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.SelectedColumnCollection.Add(C1.Win.C1TrueDBGrid.C1DataColumn)">
<summary>
Adds a C1DataColumn to the end of the collection.
</summary>
<param name="dc">The C1DataColumn to add.</param>
<returns>The index at which the C1DataColumn has been added.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.SelectedColumnCollection.Insert(System.Int32,C1.Win.C1TrueDBGrid.C1DataColumn)">
<summary>
Inserts a <see cref="T:C1.Win.C1TrueDBGrid.C1DataColumn" /> at the specified index.
</summary>
<param name="index">The zero-based index at which the C1DataColumn should be inserted.</param>
<param name="dc">The C1DataColumn to insert.</param>
</member>
<member name="T:C1.Win.C1TrueDBGrid.GroupedColumnCollection">
<summary>
Contains a collection of <see cref="T:C1.Win.C1TrueDBGrid.C1DataColumn" /> objects that represent columns that are grouped.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GroupedColumnCollection.Clear">
<summary>
Removes all elements from the collection.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GroupedColumnCollection.Exchange(System.Int32,System.Int32)">
<summary>
Exchanges the C1DataColumn objects at the specified index.
</summary>
<param name="src">The zero-based index of the first C1DataColumn.</param>
<param name="dst">The zero-based index of the second C1DataColumn.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GroupedColumnCollection.RemoveAt(System.Int32)">
<summary>
Removes the C1DataColumn at the specified index.
</summary>
<param name="index">The zero-based index of the row to remove.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GroupedColumnCollection.Add(C1.Win.C1TrueDBGrid.C1DataColumn)">
<summary>
Adds a C1DataColumn to the end of the collection.
</summary>
<param name="dc">The C1DataColumn to add.</param>
<returns>The index at which the C1DataColumn has been added.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GroupedColumnCollection.Insert(System.Int32,C1.Win.C1TrueDBGrid.C1DataColumn)">
<summary>
Inserts a <see cref="T:C1.Win.C1TrueDBGrid.C1DataColumn" /> at the specified index.
</summary>
<param name="index">The zero-based index at which the C1DataColumn should be inserted.</param>
<param name="dc">The C1DataColumn to insert.</param>
</member>
<member name="T:C1.Win.C1TrueDBGrid.SelectedRowCollection">
<summary>
Represents a collection of Selected rows.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.SelectedRowCollection.Clear">
<summary>
Removes all elements from the collection.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.SelectedRowCollection.RemoveAt(System.Int32)">
<summary>
Removes the row at the specified index.
</summary>
<param name="index">The zero-based index of the row to remove.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.SelectedRowCollection.Add(System.Int32)">
<summary>
Adds a row to the end of the collection.
</summary>
<param name="row">Row number to add.</param>
<returns>The index at which the row has been added.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.SelectedRowCollection.Insert(System.Int32,System.Int32)">
<summary>
Inserts a row at the specified index.
</summary>
<param name="index">The zero-based index at which row should be inserted.</param>
<param name="row">The row to insert.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.SelectedRowCollection.IndexOf(System.Int32)">
<summary>
Gets the index of the specified row.
</summary>
<param name="row">
</param>
<returns>The index of the row.</returns>
</member>
<member name="P:C1.Win.C1TrueDBGrid.SelectedRowCollection.Item(System.Int32)">
<summary>
Gets or sets the specified Row index from the collection.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.SplitCollection">
<summary>
Represents a collection of Split objects.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.IMemberTypeEncoder">
<summary>
This interface is used to allow objects and collection to serialize
types of their members in a custom way.
If a collection implements this interface, TypeToString is invoked during
serialization of collection items, and for all items for which it returns a
non-null string, that string is used as the element name of the item.
If a class implements this interface, AND a member of that class has
attribute TypeNameSerialization.Custom, AND does not have attribute
XmlAttribute (i.e. is serialized as an element), TypeToString is invoked
on the owner when that member is serialized, and if that returns a non-null
string, that string is used as the value of TypeName attribute.
When deserializing a collection which implements this interface,
StringToType is invoked for each new item in the collection, and if that
returns a non-null type, that type is used to create the item. Otherwise,
TypeNameSerialization attribute is used.
When deserializing a class which implements this interface, StringToType
is invoked on that class for members with TypeNameSerialization.Custom
attribute set.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.IMemberTypeEncoder.TypeToString(System.Object)">
<summary>
Returns a string representing the type of the object
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.IMemberTypeEncoder.StringToType(System.String)">
<summary>
Returns the type restored from the serialized string
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.SplitCollection.OnInsert(System.Int32,System.Object)">
<summary>
</summary>
<param name="index">
</param>
<param name="value">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.SplitCollection.IndexOf(C1.Win.C1TrueDBGrid.BaseGrid.View)">
<summary>
Gets the index if the specified Split.
</summary>
<param name="v">
</param>
<returns>
</returns>
</member>
<member name="P:C1.Win.C1TrueDBGrid.SplitCollection.Item(System.Int32)">
<summary>
Gets the specified Split object from the collection.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.SplitCollection.Item(System.String)">
<summary>
Gets the specified Split object from the collection.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.SplitCollection.Item(System.Int32,System.Int32)">
<summary>
Gets the specified Split object from the collection.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.SplitCollection.RowCount">
<summary>
Gets the number of vertical splits in the collection.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.SplitCollection.ColCount">
<summary>
Gets the number of horizontal splits in the collection.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.C1PropImagesCollection">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1PropImagesCollection.Add(System.Drawing.Image)">
<summary>
</summary>
<param name="m">
</param>
<returns>
</returns>
</member>
<member name="T:C1.Win.C1TrueDBGrid.C1DropDataColumn">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DropDataColumn.#ctor(System.ComponentModel.PropertyDescriptor,C1.Win.C1TrueDBGrid.BaseGrid.Frame)">
<summary>
</summary>
<param name="p">
</param>
<param name="owner">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1DropDataColumn.#ctor">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.C1DropDisplayColumn">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1DropDisplayColumn.DCIdx">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.DropDownForm">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.DropDownForm.#ctor(C1.Win.C1TrueDBGrid.BaseGrid.Frame)">
<summary>
</summary>
<param name="owner">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.DropDownForm.Dispose(System.Boolean)">
<summary>
</summary>
<param name="disposing">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.DropDownForm.PreFilterMessage(System.Windows.Forms.Message@)">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.DropDownForm.OnActivated(System.EventArgs)">
<summary>
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.DropDownForm.OnDeactivate(System.EventArgs)">
<summary>
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.DropDownForm.CloseDropDown">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.DropDownForm.CloseDropDown(System.Boolean)">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.DropDownForm.CreateHandle">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.DropDownForm.WndProc(System.Windows.Forms.Message@)">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.DropDownForm.CreateParams">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.DropdownView">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.DropdownView.beginHorizontalResizing(System.Drawing.Point)">
<summary>
</summary>
<param name="p">
</param>
</member>
<member name="T:C1.Win.C1TrueDBGrid.SortDirEnum">
<summary>
Specifies the glyph used to denote a sort direction in the column header.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.SortDirEnum.None">
<summary>
Column is not sorted.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.SortDirEnum.Ascending">
<summary>
Column is sorted in ascending order.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.SortDirEnum.Descending">
<summary>
Column is sorted in descending order.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.MultiSelectEnum">
<summary>
Specifies the UI behavior for selecting rows and columns.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.MultiSelectEnum.None">
<summary>
Multiple selection is disabled but single selection is permitted. When the user clicks a record selector, the current selection is cleared, and the clicked row is then selected and added to either the SelectedRows or SelectedCols collections. The Ctrl and Shift keys are ignored, and the user can only select one row at a time.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.MultiSelectEnum.Simple">
<summary>
Multiple selection is enabled using the mouse. When the user clicks a record selector, the selection is cleared and the clicked row is selected and added to either the SelectedRows or Selected Cols collections. However, if the user holds down the Ctrl key while clicking, the clicked row is added to the current selection. The user can also select a range of rows by selecting the first row in the range, then selecting the last row in the range while holding down the Shift key.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.MultiSelectEnum.Extended">
<summary>
Multiple selection is enabled using the mouse. The user can also select records with the following key combinations: Shift + Up Arrow, Shift + Down Arrow, Shift + PgUp, and Shift + PgDn. NOTE: The user will not be able to select a single cell, instead the entire corresponding row will be selected.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.FlatModeEnum">
<summary>
Specifies how 3D elements are rendered.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.FlatModeEnum.Standard">
<summary>
The grids column headers and recordselectors are rendered with an inset three-dimensional look
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.FlatModeEnum.Flat">
<summary>
Three-dimensional elements appear flat
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.FlatModeEnum.Popup">
<summary>
Three-dimensional elements are flat, but when the user drags the cursor over a column heading or recordselector, they become three-dimensional and appear to pop up.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.FlatModeEnum.System">
<summary>
Three-dimensional elements uses XP Themes if available.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.SizeModeEnum">
<summary>
Specifies the sizing mode for splits.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.SizeModeEnum.Scalable">
<summary>
The <see cref="P:C1.Win.C1TrueDBGrid.Split.SplitSize" /> indicates the relative size of the split with respect to other scalable splits.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.SizeModeEnum.Exact">
<summary>
The <see cref="P:C1.Win.C1TrueDBGrid.Split.SplitSize" /> indicates the size of the split in pixels.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.SizeModeEnum.NumberOfColumns">
<summary>
The <see cref="P:C1.Win.C1TrueDBGrid.Split.SplitSize" /> indicates the number of columns displayed in the split.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.AlignVertEnum">
<summary>
Specifies the vertical alignment of text or images in a cell.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AlignVertEnum.Top">
<summary>
Text is rendered at the top of the cell.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AlignVertEnum.Center">
<summary>
Text is rendered at the center of the cell.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AlignVertEnum.Bottom">
<summary>
Text is rendered at the bottom of the cell.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.AlignHorzEnum">
<summary>
Specifies the horizontal alignment of text or images in a cell.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AlignHorzEnum.General">
<summary>
Text is aligned Near and numeric values Far
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AlignHorzEnum.Near">
<summary>
Text is aligned to the left.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AlignHorzEnum.Center">
<summary>
Text is aligned centered.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AlignHorzEnum.Far">
<summary>
Text is aligned to the right.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AlignHorzEnum.Justify">
<summary>
Text is aligned with respect to the cells boundries.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.ScrollBarStyleEnum">
<summary>
Specifies the visibility of ScrollBars.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ScrollBarStyleEnum.None">
<summary>
ScrollBars are never displayed.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ScrollBarStyleEnum.Always">
<summary>
ScrollBars are always displayed.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ScrollBarStyleEnum.Automatic">
<summary>
ScrollBars are displayed only if the object's contents extend beyond its borders.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.LineStyleEnum">
<summary>
Specifies the line style for row and column dividers.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.LineStyleEnum.None">
<summary>
No line.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.LineStyleEnum.Single">
<summary>
Single line.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.LineStyleEnum.Double">
<summary>
Double line.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.LineStyleEnum.Raised">
<summary>
Line with 3D raised appearance.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.LineStyleEnum.Inset">
<summary>
Line with 3D inset appearance.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.DataViewEnum">
<summary>
Specifies how the grid displays its data.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.DataViewEnum.Normal">
<summary>
The grid will only display flat files and will not support a hierarchical view. If the data source is a hierarchical dataset, the grid will only display data from the master table.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.DataViewEnum.Inverted">
<summary>
Rows will be represented horizontally and columns vertically.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.DataViewEnum.Form">
<summary>
The data will be displayed in a convenient data entry form.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.DataViewEnum.GroupBy">
<summary>
A grouping area is created at the top of the grid; any columns that are placed into this area become part of the GroupedColumn collection. When in group mode, grid columns can be moved into or out of the grouping area with the Add and RemoveAt methods, respectively. Users can also perform this action by selecting and dragging a column into or out of the grouping. Users can customize the display of the grouped row with styles and automatically compute aggregates for columns that are grouped. The expanded/collapsed state of the grouping can also be specified.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.DataViewEnum.MultipleLines">
<summary>
The grid will display all the fields in the current grid area with multiple lines.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.DataViewEnum.Hierarchical">
<summary>
The grid will display DataSets in a hierarchical format. At run time, users can expand and collapse hierarchical recordset Bands using a treeview-like interface.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.DataViewEnum.MultipleLinesFixed">
<summary>
The grid will display all the fields in the current grid area with multiple lines. The number of subrows does not change once set. The number of subrows can be set using the LinesPerRow property.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.AddNewModeEnum">
<summary>
Provides a description of the current addnew state with respect to the current cell.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AddNewModeEnum.NoAddNew">
<summary>
The current cell is not on the addnew row.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AddNewModeEnum.AddNewCurrent">
<summary>
The current cell is on the addnew row.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AddNewModeEnum.AddNewPending">
<summary>
There is an Add New operation pending.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.CellTipEnum">
<summary>
Specifies the behavior of the pop-up window when the cursor is idle over the grid.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.CellTipEnum.NoCellTips">
<summary>
No cell tips will be displayed.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.CellTipEnum.Anchored">
<summary>
Cell tips will be displayed in the bounding rectable of the cell.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.CellTipEnum.Floating">
<summary>
Cell tips will be displayed under the mouse cursor.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.ExposeCellModeEnum">
<summary>
Specifies how the grid exposes the rightmost column when it gets focus.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ExposeCellModeEnum.ScrollOnSelect">
<summary>
The grid will scroll to the left to display the rightmost column in its entirety.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ExposeCellModeEnum.ScrollOnEdit">
<summary>
The grid will not move when the rightmost column is clicked initially. However, if the user attempts to edit the cell, then the grid will scroll to the left to display the rightmost column in its entirety.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ExposeCellModeEnum.ScrollNever">
<summary>
The grid will always leave the rightmost column clipped.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.ForeGroundPicturePositionEnum">
<summary>
Specifies the location of the foreground image in a cell.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ForeGroundPicturePositionEnum.Near">
<summary>
Image is rendered in the near side of the cell.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ForeGroundPicturePositionEnum.Far">
<summary>
Image is rendered in the far side of the cell.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ForeGroundPicturePositionEnum.LeftOfText">
<summary>
Image is rendered to the left of any text in the cell.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ForeGroundPicturePositionEnum.RightOfText">
<summary>
Image is rendered to the right of any text in the cell.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ForeGroundPicturePositionEnum.TopOfText">
<summary>
Image is rendered on top of any text in the cell.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ForeGroundPicturePositionEnum.BottomOfText">
<summary>
Image is rendered below any text in the cell.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ForeGroundPicturePositionEnum.PictureOnly">
<summary>
Text is not displayed.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ForeGroundPicturePositionEnum.TextOnly">
<summary>
Image is not displayed.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.BackgroundPictureDrawModeEnum">
<summary>
Specifies how the background image is rendered.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.BackgroundPictureDrawModeEnum.Center">
<summary>
The image is rendered in the center of the cell.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.BackgroundPictureDrawModeEnum.Tile">
<summary>
The image is tiled in the cell.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.BackgroundPictureDrawModeEnum.Stretch">
<summary>
The image is stretched to fit within the cell.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.RowSizingEnum">
<summary>
Specifies how rows can be resized.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.RowSizingEnum.None">
<summary>
Row can not be resized.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.RowSizingEnum.AllRows">
<summary>
All rows will be sized to the same height or width.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.RowSizingEnum.IndividualRows">
<summary>
Rows can be sized indepentently.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.RowSelectorEnum">
<summary>
Specifies which rows are to be previewed/printed.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.RowSelectorEnum.AllRows">
<summary>
All rows are to be previewed/printed.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.RowSelectorEnum.SelectedRows">
<summary>
Only selected rows will be previewed/printed.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.RowSelectorEnum.CurrentRow">
<summary>
Only the current row will be previewed/printed.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.PointAtEnum">
<summary>
Specifies the type of ui-element for a coordinate.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PointAtEnum.NotInGrid">
<summary>
Coordinates are not in the grid.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PointAtEnum.AtCaption">
<summary>
Coordinates are in the caption area
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PointAtEnum.AtSplitHeader">
<summary>
Coordinates are in the split's header
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PointAtEnum.AtSplitSizeBox">
<summary>
Coordinates are in the split's resizing box
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PointAtEnum.AtRowSelect">
<summary>
Coordinates are in the row selector.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PointAtEnum.AtRowSize">
<summary>
Coordinates are in the row resizing box.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PointAtEnum.AtColumnHeader">
<summary>
Coordinates are in the column headers.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PointAtEnum.AtColumnFooter">
<summary>
Coordinates are in the column footers.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PointAtEnum.AtColumnSize">
<summary>
Coordinates are in the column resizing box.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PointAtEnum.AtDataArea">
<summary>
Coordinates are in the data area.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PointAtEnum.AtGroupArea">
<summary>
Coordinates are in the grouping area.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PointAtEnum.AtGroupHeader">
<summary>
Coordinates are in the group header.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PointAtEnum.AtEmptyRow">
<summary>
Coordinates are in the empty row area.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PointAtEnum.AtAddNewRow">
<summary>
Coordinates are in the addnew row.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PointAtEnum.AtEmptyColumn">
<summary>
Coordinates are in the empty column area.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PointAtEnum.AtFilterBar">
<summary>
Coordinates are in the filter bar.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.PresentationEnum">
<summary>
Specifies how ValueItems are rendered.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PresentationEnum.Normal">
<summary>
Values are displayed as text or graphics.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PresentationEnum.RadioButton">
<summary>
Values are displayed as a group of Radio Buttons.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PresentationEnum.ComboBox">
<summary>
Values are displayed as a dropdown combobox.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PresentationEnum.SortedComboBox">
<summary>
Values are displayed as a dropdown combobox in sorted order.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PresentationEnum.CheckBox">
<summary>
Values are displayed as a checkbox.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.TabActionEnum">
<summary>
Specifies how focus is handled when the Tab key is entered.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.TabActionEnum.ControlNavigation">
<summary>
The tab key moves to the next or previous control on the form.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.TabActionEnum.ColumnNavigation">
<summary>
The tab key moves the current cell to the next or previous column. However, if this action would cause the current row to change, then the next or previous control on the form receives focus.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.TabActionEnum.GridNavigation">
<summary>
The tab key moves the current cell to the next or previous column. The behavior of the tab key at row boundaries is determined by the <see cref="P:C1.Win.C1TrueDBGrid.C1TrueDBGrid.WrapCellPointer" /> property. When this setting is used, the tab key never results in movement to another control.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.BorderTypeEnum">
<summary>
Specifies the borders for a <see cref="T:C1.Win.C1TrueDBGrid.Style" />.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.BorderTypeEnum.None">
<summary>
No borders.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.BorderTypeEnum.Flat">
<summary>
Borders have a Flat appearance.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.BorderTypeEnum.Raised">
<summary>
Borders have a 3D raised appearance.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.BorderTypeEnum.Inset">
<summary>
Borders have a 3D inset appearance.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.BorderTypeEnum.Groove">
<summary>
A line around the inside of the border.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.BorderTypeEnum.Fillet">
<summary>
A fillet type border.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.BorderTypeEnum.RaisedBevel">
<summary>
Borders have a 3D raised with a bevel.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.BorderTypeEnum.InsetBevel">
<summary>
Borders have a 3D inset with a bevel.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum">
<summary>
Specifies which cell gets focus when the enter key is pressed.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone">
<summary>
Cell currency doesn't change.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveRight">
<summary>
The next cell will be the cell to the right of the current cell.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveDown">
<summary>
The next cell will be the cell below the current cell.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveLeft">
<summary>
The next cell will be the cell to the left of the current cell.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveUp">
<summary>
The next cell will be the cell above the current cell.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.CellStyleFlag">
<summary>
Describes the disposition of a cell.
<para>This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.</para></summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.CellStyleFlag.NormalCell">
<summary>
The cell satisfies none of the conditions. For grouped rows, this is the only applicable cell style.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.CellStyleFlag.CurrentCell">
<summary>
The cell is the that currently has focus. At any given time, only one cell can have this status. When the MarqueeStyle property is set to Floating Editor, this condition is ignored.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.CellStyleFlag.MarqueeRow">
<summary>
The cell is part of a highlighted row marquee. When the MarqueeStyle property indicates that the entire current row is to be highlighted, all visible cells in the current row have this additional condition set.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.CellStyleFlag.UpdatedCell">
<summary>
The cell contents have been modified by the user but not yet written to the datasource. This condition is also set when cell contents have been modified in code with the Text or Value properties.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.CellStyleFlag.SelectedRow">
<summary>
The cell is part of a row selected by the user or in code. The SelectedRowCollection contains the index for each selected row.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.CellStyleFlag.AllCells">
<summary>
All cells.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.MarqueeEnum">
<summary>
Specifies how the current cell is highlighted.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.MarqueeEnum.DottedCellBorder">
<summary>
The current cell within the current row will be highlighted by drawing a dotted border around the cell. In Microsoft Windows terminology, this is usually called a focus rectangle.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.MarqueeEnum.SolidCellBorder">
<summary>
The current cell within the current row will be highlighted by drawing a solid box around the current cell. This is more visible than the dotted cell border, especially when 3D divider properties are used for the grid.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.MarqueeEnum.HighlightCell">
<summary>
The entire current cell will be drawn using the attributes of the HighlightRowStyle property. This provides a very distinctive block-style highlight for the current cell.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.MarqueeEnum.HighlightRow">
<summary>
The entire row containing the current cell will be drawn using the attributes of the HighlightRowStyle property. In this mode, it is not possible to visually determine which cell is the current cell, only the current row. When the grid or split is not editable, this setting is often preferred, since cell position is then irrelevant.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.MarqueeEnum.HighlightRowRaiseCell">
<summary>
The entire row will be highlighted as in setting 3, but the current cell within the row will be "raised" so that it appears distinctive. This setting does not appear clearly with all background color and divider settings. The best effect is achieved by using 3D dividers and a light gray background.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.MarqueeEnum.NoMarquee">
<summary>
The marquee will not be shown. This setting is useful for cases where the current row is irrelevant, or when not wanting to draw the user's attention to the grid until necessary.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.MarqueeEnum.FloatingEditor">
<summary>
The current cell will be highlighted by a floating text editor window with a blinking caret (as in Microsoft Access).
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.MarqueeEnum.DottedRowBorder">
<summary>
The entire current row will be highlighted by drawing a dotted border around it. This effect is similar to setting 0.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.ScrollBarEnum">
<summary>
Identifies the type of scrollbar.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ScrollBarEnum.Horizontal">
<summary>
The Horizontal scrollbar.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ScrollBarEnum.Vertical">
<summary>
The Vertical scrollbar.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.RowTypeEnum">
<summary>
Identifies the type of row.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.RowTypeEnum.DataRow">
<summary>
Row is a datarow.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.RowTypeEnum.CollapsedGroupRow">
<summary>
Row is a collapsed group row.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.RowTypeEnum.ExpandedGroupRow">
<summary>
Row is an expanded group row.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.RowTypeEnum.FooterRow">
<summary>
Row is a footerrow.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.RowTypeEnum.ChildRow">
<summary>
Row is a childrow.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.OutlineModeEnum">
<summary>
Specifies the initial expanded or collapsed state of a grouped row.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.OutlineModeEnum.StartCollapsed">
<summary>
Grouped rows initial display is collapsed (default).
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.OutlineModeEnum.StartExpanded">
<summary>
Grouped rows initial display is expanded.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.GroupPositionEnum">
<summary>
Specifies how the grouped column should be displayed.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GroupPositionEnum.Header">
<summary>
Grouped columns contain just a header row (default).
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GroupPositionEnum.HeaderAndFooter">
<summary>
Grouped columns contain a header and footer row.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GroupPositionEnum.Footer">
<summary>
Grouped columns contain a header and footer row, but aggregates are shown only in the footer row.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.AggregateEnum">
<summary>
Specifies the type of aggregate that is computed for a grouped row.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AggregateEnum.None">
<summary>
No aggregate is calculated or displayed.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AggregateEnum.Count">
<summary>
Count of non-empty values.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AggregateEnum.Sum">
<summary>
Sum of numerical values.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AggregateEnum.Average">
<summary>
Average of the numerical values.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AggregateEnum.Min">
<summary>
Minimum value (numerical, string, or date).
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AggregateEnum.Max">
<summary>
Maximum value (numerical, string, or date).
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AggregateEnum.Std">
<summary>
Standard deviation (using formula for Sample, n-1).
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AggregateEnum.StdPop">
<summary>
Standard deviation (using formula for Population, n).
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AggregateEnum.Var">
<summary>
Variance (using formula for Sample, n-1).
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AggregateEnum.VarPop">
<summary>
Variance (using formula for Population, n).
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.AggregateEnum.Custom">
<summary>
Causes the GroupAggregate event to be raised.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.DropdownWidthEnum">
<summary>
Specifies the width of a C1TrueDBDropdown for a cell.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.DropdownWidthEnum.Default">
<summary>
The width of the dropdown is the control width.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.DropdownWidthEnum.Column">
<summary>
The width of the dropdown is the column width.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.ColumnMergeEnum">
<summary>
Specifies how columns are merged.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ColumnMergeEnum.None">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ColumnMergeEnum.Free">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.ColumnMergeEnum.Restricted">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.GradientModeEnum">
<summary>
Specifies the type of gradient.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GradientModeEnum.None">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GradientModeEnum.BackwardDiagonal">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GradientModeEnum.ForwardDiagonal">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GradientModeEnum.Horizontal">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GradientModeEnum.Vertical">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.GroupIntervalEnum">
<summary>
Specifies how rows are grouped.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GroupIntervalEnum.Default">
<summary>
Rows are grouped by their values.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GroupIntervalEnum.Date">
<summary>
Rows are grouped by the date portion of their values.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GroupIntervalEnum.Month">
<summary>
Rows are grouped by the month portion of their values.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GroupIntervalEnum.Year">
<summary>
Rows are grouped by the year portion of their values.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GroupIntervalEnum.Alphabetical">
<summary>
Rows are grouped by the first character of their values.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GroupIntervalEnum.DateSpan">
<summary>
Rows are grouped according to their date values.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GroupIntervalEnum.Custom">
<summary>
Rows are grouped by raising the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.GroupInterval" /> event.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.CancelEventHandler">
<summary>
Raised before an action is performed on the grid and the action can be canceled.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.CancelEventArgs">
<summary>
Provides data for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.BeforeDelete" />, <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.BeforeInsert" />, <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.BeforeUpdate" />, <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.BeforeRowColChange" />, <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RowResize" />, <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Scroll" />, <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.SelChange" />, <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.BeforeOpen" />, and <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.BeforeClose" /> events.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.CancelEventArgs.Cancel">
<summary>
Gets or sets a value indicating that the action should not be performed.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.CancelScrollEventArgs">
<summary>
Provides data for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Scroll" /> event.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.CancelScrollEventArgs.OldValue">
<summary>
Gets the current scroll position.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.CancelScrollEventArgs.NewValue">
<summary>
Gets the new scroll position.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.BeforeColEditEventHandler">
<summary>
Raised before a column enters edit mode.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.BeforeColEditEventArgs">
<summary>
Provides data for the BeforeColEdit event.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BeforeColEditEventArgs.Cancel">
<summary>
Gets or sets a value indicating that editing should be disallowed.
</summary>
<remarks>If event procedure sets the Cancel argument to True, the cell will not enter edit mode. Otherwise, the ColEdit event is raised immediately, followed by the Change event for the KeyChar property, if non-zero.</remarks>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BeforeColEditEventArgs.KeyChar">
<summary>
Indicates the character that initiated the editing operation.
</summary>
<remarks>The BeforeColEdit event occurs just before the user enters edit mode by typing a character. If a floating editor marquee is not in use, this event also occurs when the user clicks the current cell or double clicks another cell.</remarks>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BeforeColEditEventArgs.ColIndex">
<summary>
Indicates the position in the DisplayColumns collection.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BeforeColEditEventArgs.Column">
<summary>
Gets the C1DisplayColumn for the column being edited.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.BeforeColUpdateEventHandler">
<summary>
Raised after editing is completed in a cell.
</summary>
<remarks>The BeforeColUpdate event occurs after editing is completed in a cell, but before data is moved from the cell to the grid's internal copy buffer.
The data specified by the OldValue argument moves from the cell to the grid's copy buffer when the user completes editing within a cell, as when tabbing to another column in the same row, pressing the Enter key, or clicking on another cell. Before the data has been moved from the cell into the grid's copy buffer, the BeforeColUpdate event is triggered. This event gives the application an opportunity to check the individual grid cells before they are committed to the grid's copy buffer.
If your event procedure sets the Cancel argument to True, the previous value is restored in the cell, the grid retains focus, and the AfterColUpdate event is not triggered. Change the current cell text by setting OldValue to the value wanted to display (other than the previous value).
To restore OldValue in the cell and permit the user to move focus off of the cell, set Cancel to False and set the cell to OldValue as follows: </remarks>
</member>
<member name="T:C1.Win.C1TrueDBGrid.BeforeColUpdateEventArgs">
<summary>
Provides data for the BeforeColUpdate event.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BeforeColUpdateEventArgs.Cancel">
<summary>
Gets or sets a value that prevents the user from moving focus to another cell.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BeforeColUpdateEventArgs.OldValue">
<summary>
Gets or sets the value of the original cell data.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BeforeColUpdateEventArgs.ColIndex">
<summary>
Indicates the position in the DisplayColumns collection.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BeforeColUpdateEventArgs.Column">
<summary>
Gets the C1DisplayColumn for the column being edited.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.ColResizeEventHandler">
<summary>
Raised after a column has been resized.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.ColResizeEventArgs">
<summary>
Provides data for the ColReisize event.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ColResizeEventArgs.ColIndex">
<summary>
Indicates the position in the DisplayColumns collection.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ColResizeEventArgs.Cancel">
<summary>
Gets or sets a value indicating that sizing should be ignored.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ColResizeEventArgs.Column">
<summary>
Gets the C1DisplayColumn for the column being sized.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.ColEventHandler">
<summary>
Raised when an action is perfored on a column.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.ColEventArgs">
<summary>
Provides data for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AfterColUpdate" />, <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AfterColEdit" />, <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.HeadClick" />, <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FootClick" />, <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ColEdit" />, <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ButtonClick" />, <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ComboSelect" />, <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ValueItemError" />, and <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FilterButtonClick" /> events.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ColEventArgs.ColIndex">
<summary>
Indicates the position in the DisplayColumns collection.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ColEventArgs.Column">
<summary>
Gets the C1DisplayColumn.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.GroupColEventHandler">
<summary>
Raised when grouping columns.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.GroupColEventArgs">
<summary>
Provides data for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.GroupHeadClick" /> event.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupColEventArgs.ColIndex">
<summary>
Indicates the position in the DisplayColumns collection.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupColEventArgs.DataColumn">
<summary>
The C1DataColumn that was clicked.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.OwnerDrawCellEventHandler">
<summary>
Raised when a cell is to rendered by the event code.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.OwnerDrawCellEventArgs">
<summary>
Provides data for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OwnerDrawCell" /> and <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OwnerDrawCellPrint" /> events.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.OwnerDrawCellEventArgs.CellRect">
<summary>
The bounding rectangle for the cell that needs to be rendered.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.OwnerDrawCellEventArgs.Row">
<summary>
The index of the row for the cell being rendered.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.OwnerDrawCellEventArgs.Split">
<summary>
The index of the split for the cell being rendered.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.OwnerDrawCellEventArgs.Col">
<summary>
The index of the column in the DisplayColumns collection.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.OwnerDrawCellEventArgs.Graphics">
<summary>
The GDI+ graphics object to render on.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.OwnerDrawCellEventArgs.Text">
<summary>
The text of the cell.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.OwnerDrawCellEventArgs.Style">
<summary>
The Style used to render the cell.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.OwnerDrawCellEventArgs.Handled">
<summary>
Indicates whether the event code rendered the cell.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.OwnerDrawCellEventArgs.Column">
<summary>
The C1DisplayColumn being rendered.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.OwnerDrawCellEventArgs.DrawCellFlags">
<summary>
Indicates whether the custom renderer handles the background, border or content.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.OwnerDrawPageEventHandler">
<summary>
Raised when custom page headers and footers need to be rendered.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.OwnerDrawPageEventArgs">
<summary>
Provides data for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OwnerDrawPageHeader" /> and <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.OwnerDrawPageHeader" /> events.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.OwnerDrawPageEventArgs.OwnerDrawPrint">
<summary>
The <see cref="T:C1.Win.C1TrueDBGrid.C1OwnerDrawPrint" /> object used to render the custom header or footer
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.RowColChangeEventHandler">
<summary>
Raised after the current Row or Column changes.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.RowColChangeEventArgs">
<summary>
Provides data for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.RowColChange" /> event.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.RowColChangeEventArgs.LastRow">
<summary>
The previous row index.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.RowColChangeEventArgs.LastCol">
<summary>
The previous column index of the DisplayColumns collection.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.UnboundColumnFetchEventHandler">
<summary>
Raised when an unbound column needs to be rendered.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.UnboundColumnFetchEventArgs">
<summary>
Provides data for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.UnboundColumnFetch" /> event.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.UnboundColumnFetchEventArgs.Row">
<summary>
The index of the row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.UnboundColumnFetchEventArgs.Col">
<summary>
Indicates the position in the Columns collection.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.UnboundColumnFetchEventArgs.Column">
<summary>
The <see cref="T:C1.Win.C1TrueDBGrid.C1DataColumn" /> object.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.UnboundColumnFetchEventArgs.Value">
<summary>
Gets or sets the value of the Column.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.SplitEventHandler">
<summary>
Raised when Split specific actions are performed.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.SplitEventArgs">
<summary>
Provides data for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FirstRowChange" /> and <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.LeftColChange" /> events.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.SplitEventArgs.SplitIndex">
<summary>
Indicates the position of the Split in the Splits collection.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.FormatTextEventHandler">
<summary>
Raised when a cell needs custom formatting.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.FormatTextEventArgs">
<summary>
Provides data for the FromatText event.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FormatTextEventArgs.ColIndex">
<summary>
Indicates the position in the Columns collection.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FormatTextEventArgs.Row">
<summary>
The row index for the cell to be formatted.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FormatTextEventArgs.Value">
<summary>
The value to format.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FormatTextEventArgs.Column">
<summary>
The <see cref="T:C1.Win.C1TrueDBGrid.C1DataColumn" /> object.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.FetchCellStyleEventHandler">
<summary>
Raised when the <see cref="T:C1.Win.C1TrueDBGrid.Style" /> used to render a cell needs customization.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.FetchCellStyleEventArgs">
<summary>
Provides data for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FetchCellStyle" /> event.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchCellStyleEventArgs.Condition">
<summary>
The sum of one or more <see cref="T:C1.Win.C1TrueDBGrid.CellStyleFlag" /> constants describing the disposition of the cell being rendered.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchCellStyleEventArgs.Split">
<summary>
Indicates the position in the Splits collection.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchCellStyleEventArgs.Row">
<summary>
The index of the row for the cell being rendered.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchCellStyleEventArgs.Col">
<summary>
The index of the column in the DisplayColumns collection.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchCellStyleEventArgs.CellStyle">
<summary>
The Style used to render the cell.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchCellStyleEventArgs.Column">
<summary>
The C1DisplayColumn being rendered.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.FetchGroupCellStyleEventArgs">
<summary>
Provides data for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FetchCellStyle" /> event.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchGroupCellStyleEventArgs.GroupText">
<summary>
Value that the data is being grouped on.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchGroupCellStyleEventArgs.StartRowIndex">
<summary>
First row index that is being grouped.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchGroupCellStyleEventArgs.EndRowIndex">
<summary>
Last row index that is being grouped.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.FetchRowStyleEventHandler">
<summary>
Raised when the <see cref="T:C1.Win.C1TrueDBGrid.Style" /> used to render a row needs customization.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.FetchRowStyleEventArgs">
<summary>
Provides data for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FetchRowStyle" /> event.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchRowStyleEventArgs.Split">
<summary>
Indicates the position in the Splits collection.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchRowStyleEventArgs.Row">
<summary>
The index of the row for the cell being rendered.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchRowStyleEventArgs.CellStyle">
<summary>
The Style used to render the row.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.ColMoveEventHandler">
<summary>
Raised when a column is being repositioned.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.ColMoveEventArgs">
<summary>
Provides data for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ColMove" /> event.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ColMoveEventArgs.Position">
<summary>
Indicates the target index of the column being moved.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ColMoveEventArgs.ColIndex">
<summary>
Indicates the starting position in the DisplayColumns collection.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ColMoveEventArgs.Cancel">
<summary>
Gets or sets a value indicating that the action should not be performed.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ColMoveEventArgs.Column">
<summary>
Gets the C1DisplayColumn that is being moved.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.GroupColMoveEventHandler">
<summary>
Raised when a column is moved into or out of the grouping area.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.GroupColMoveEventArgs">
<summary>
Provides data for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.GroupColMove" /> event.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupColMoveEventArgs.DataColumn">
<summary>
The C1DataColumn for the column being moved.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.FetchCellTipsEventHandler">
<summary>
Raised when cell tips are to be displayed.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.FetchCellTipsEventArgs">
<summary>
Provides data for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FetchCellTips" /> event.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchCellTipsEventArgs.SplitIndex">
<summary>
Indicates the position of the Split in the Splits collection.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchCellTipsEventArgs.ColIndex">
<summary>
Indicates the position in the DisplayColumns collection.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchCellTipsEventArgs.Row">
<summary>
The index of the row for the cell tip.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchCellTipsEventArgs.CellTip">
<summary>
The text to be displayed in the cell tip.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchCellTipsEventArgs.FullyDisplayed">
<summary>
Indicates if the contents of the cell is fully displayed.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchCellTipsEventArgs.TipStyle">
<summary>
The Style used to render the cell tip.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchCellTipsEventArgs.Column">
<summary>
The C1DisplayColumn that this tip is associated with.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.BandEventHandler">
<summary>
Raised when a hierarchical node is expanded or collapsed.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.BandEventArgs">
<summary>
Provides data for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Expand" /> and <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Collapse" /> events.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BandEventArgs.Band">
<summary>
Indicates the recordset level that holds the current row within a master-detail hierarchy.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.BandEventArgs.Cancel">
<summary>
Gets or sets a value indicating that the action should not be performed.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.FetchScrollTipsEventHandler">
<summary>
Raised when scroll tips are to be displayed.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.FetchScrollTipsEventArgs">
<summary>
Provides data for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.FetchScrollTips" /> event.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchScrollTipsEventArgs.SplitIndex">
<summary>
Indicates the position of the Split in the Splits collection.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchScrollTipsEventArgs.ColIndex">
<summary>
Indicates the position in the DisplayColumns collection.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchScrollTipsEventArgs.Row">
<summary>
The index of the topmost row for the scroll tip.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchScrollTipsEventArgs.ScrollBar">
<summary>
Indicates the scrollbar that was moved.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchScrollTipsEventArgs.ScrollTip">
<summary>
The text to be displayed in the scroll tip.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchScrollTipsEventArgs.TipStyle">
<summary>
The Style used to render the scroll tip.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FetchScrollTipsEventArgs.Column">
<summary>
The current C1DisplayColumn.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.FilterEventHandler">
<summary>
Raised when the grid is sorted or filtered.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.FilterEventArgs">
<summary>
Provides data for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Filter" />, <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AfterFilter" />, <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Sort" />, and <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.AfterSort" /></summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.FilterEventArgs.Condition">
<summary>
The filter or sort condition.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.ErrorEventHandler">
<summary>
Raised when an excpetion is thrown via the UI.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.ErrorEventArgs">
<summary>
Provides data for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.Error" /> event.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ErrorEventArgs.Exception">
<summary>
The exception which caused the Event to be raised.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ErrorEventArgs.Handled">
<summary>
True if the exception has been handled.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.ErrorEventArgs.Continue">
<summary>
True to continue as if no exception was raised.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.GroupTextEventHandler">
<summary>
Raised when text is grouped.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.GroupTextEventArgs">
<summary>
Provides data for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.GroupText" /> event.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupTextEventArgs.Text">
<summary>
Custom text for the grouped row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupTextEventArgs.GroupText">
<summary>
Value that the data is being grouped on.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupTextEventArgs.Col">
<summary>
Column that is being grouped.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupTextEventArgs.RowType">
<summary>
Type of row being grouped.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupTextEventArgs.StartRowIndex">
<summary>
First row index that is being grouped.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupTextEventArgs.EndRowIndex">
<summary>
Last row index that is being grouped.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.GroupIntervalEventHandler">
<summary>
Raised when text is grouped.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.GroupIntervalEventArgs">
<summary>
Provides data for the <see cref="E:C1.Win.C1TrueDBGrid.C1TrueDBGrid.GroupText" /> event.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupIntervalEventArgs.Value">
<summary>
Underlying value of the row being grouped.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupIntervalEventArgs.Col">
<summary>
Column that is being grouped.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupIntervalEventArgs.Row">
<summary>
Row index that is being grouped.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.GroupRow">
<summary>
Object that represents a groupby split.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupRow.RowType">
<summary>
Gets the type of row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupRow.GroupedText">
<summary>
Gets the text that is being grouped.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupRow.Level">
<summary>
Gets the level of the grouping.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupRow.StartIndex">
<summary>
Gets the starting row index of the datasource that belong to this group.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupRow.EndIndex">
<summary>
Gets the ending row index of the datasource that belong to this group.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupRow.Count">
<summary>
Gets the number of rows that belong to this group.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Util.NumberFormatTypeEditor">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.NumberFormatTypeEditor.#ctor">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.NumberFormatTypeEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>
</summary>
<param name="context">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.NumberFormatTypeEditor.OnListBoxClick(System.Object,System.EventArgs)">
<summary>
</summary>
<param name="sender">
</param>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.NumberFormatTypeEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
<summary>
</summary>
<param name="context">
</param>
<param name="provider">
</param>
<param name="value">
</param>
<returns>
</returns>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Designer.SelectColumnActionUITypeEditor">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Designer.SelectColumnActionUITypeEditor.#ctor">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Designer.SelectColumnActionUITypeEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>
</summary>
<param name="context">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Designer.SelectColumnActionUITypeEditor.OnListBoxClick(System.Object,System.EventArgs)">
<summary>
</summary>
<param name="sender">
</param>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Designer.SelectColumnActionUITypeEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
<summary>
</summary>
<param name="context">
</param>
<param name="provider">
</param>
<param name="value">
</param>
<returns>
</returns>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.IOnLongOpInProgressProvider">
<summary>
Interface used to provide feedback and the ability to cancel potentially long operations
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.IOnLongOpInProgressProvider.OnLongOpInProgress(System.Boolean@)">
<summary>
</summary>
<param name="cancel">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.IOnLongOpInProgressProvider.OnLongOpInProgress">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.LongOpInProgressArgs">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.LongOpInProgressArgs.CancelIfPossible">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.LongOpInProgressHandler">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.C1Stack">
<summary>
Simple stack with indexed access, based on System.Collections.ArrayList
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.C1Stack.Push(System.Object)">
<summary>
</summary>
<param name="o">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.C1Stack.Pop">
<summary>
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.C1Stack.Peek">
<summary>
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.C1Stack.IsIndexInBounds(System.Int32)">
<summary>
</summary>
<param name="idx">
</param>
<returns>
</returns>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.C1Stack.Top">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.C1Stack.Length">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.C1Stack.IsEmpty">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Pair">
<summary>
General purpose pair class. (Should be moved to gp utils.)
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Pair.#ctor">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Pair.#ctor(System.Object,System.Object)">
<summary>
</summary>
<param name="first">
</param>
<param name="second">
</param>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Pair.First">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Pair.Second">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Design.PropBagAttribute">
<summary>
Attribute used to specify which properties get serialized when saving layouts.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Design.LayoutAttribute">
<summary>
Attribute used to specify which properties get serialized when saving layouts.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.TypeSerialization">
<summary>
Determines how item types are serialized
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.TypeSerialization.None">
<summary>
Item type is not serialized (this is the default)
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.TypeSerialization.FullName">
<summary>
Item type is serialized as a fully qualified name
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.TypeSerialization.AssemblyQualifiedName">
<summary>
Item type is serialized as a fully qualified name and assembly name
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.TypeSerialization.Custom">
<summary>
Use owner's IMemberTypeEncoder for members
(for collection items, this is done automatically).
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.MemberTypeEncoderHelper">
<summary>
Helper class for implementors of IMemberTypeEncoder
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.MemberTypeEncoderHelper.TypeToString(System.Object)">
<summary>
</summary>
<param name="o">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.MemberTypeEncoderHelper.StringToType(System.String)">
<summary>
</summary>
<param name="str">
</param>
<returns>
</returns>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.TypeSerializationAttribute">
<summary>
Forces the serializer to serialize the type name of a property or field
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.TypeSerializationAttribute.#ctor(C1.Win.C1TrueDBGrid.Util.Xml.Serialization.TypeSerialization)">
<summary>
</summary>
<param name="ts">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.TypeSerializationAttribute.ToString">
<summary>
</summary>
<returns>
</returns>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.TypeSerializationAttribute.TypeSerialization">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.CollectionElementTypeAttribute">
<summary>
This attribute allows to specify collection's element type name
(in that case there is no need to store it).
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.CollectionElementTypeAttribute.#ctor(System.Type)">
<summary>
</summary>
<param name="type">
</param>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.CollectionElementTypeAttribute.CollectionElementType">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer">
<summary>
Serializes and deserializes objects into and from XML.
</summary>
<remarks>
All the methods in this class are static (Shared in Visual Basic).
You cannot create an instance of this class.
</remarks>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.Serialize(System.IO.Stream,System.Object,System.Xml.Serialization.XmlSerializerNamespaces,System.Xml.XmlTextWriter@)">
<summary>
Serializes the specified Object and writes the XML-document instance to a file using the specified Stream.
DOES NOT close the underlying stream. Useful for copying objects.
Caller is responsible to call out writer.Close() to close writer and underlying stream.
</summary>
<param name="stream">The Stream used to write the XML-document instance</param>
<param name="o">The Object to serialize</param>
<param name="namespaces">The XmlSerializerNamespaces referenced by the object</param>
<param name="writer">The XmlWriter object reference. Call writer.Close after working with stream/writer.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.Serialize(System.IO.Stream,System.Object,System.Xml.Serialization.XmlSerializerNamespaces)">
<summary>
Serializes the specified Object and writes the XML-document instance to a file using the specified Stream.
</summary>
<param name="stream">The Stream used to write the XML-document instance</param>
<param name="o">The Object to serialize</param>
<param name="namespaces">The XmlSerializerNamespaces referenced by the object</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.Serialize(System.Xml.XmlTextWriter,System.Object,System.Xml.Serialization.XmlSerializerNamespaces)">
<summary>
Serializes the specified Object and writes the XML-document instance to a file using the specified XmlWriter
</summary>
<param name="writer">The XmlWriter used to write the XML-document instance</param>
<param name="o">The Object to serialize</param>
<param name="namespaces">The XmlSerializerNamespaces referenced by the object</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.Serialize(System.IO.Stream,System.Object,System.Reflection.MemberInfo,System.Xml.Serialization.XmlSerializerNamespaces,System.Xml.XmlTextWriter@)">
<summary>
Serializes the specified Object and writes the XML-document instance to a file using the specified Stream.
DOES NOT close the underlying stream. Useful for copying objects.
Caller is responsible to call out writer.Close() to close writer and underlying stream.
</summary>
<param name="stream">The Stream used to write the XML-document instance</param>
<param name="o">The Object to serialize</param>
<param name="mi">The FieldInfo or MemberInfo object context for the object to serialize</param>
<param name="namespaces">The XmlSerializerNamespaces referenced by the object</param>
<param name="writer">The XmlWriter object reference. Call writer.Close after working with stream/writer.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.Serialize(System.IO.Stream,System.Object,System.Reflection.MemberInfo,System.Xml.Serialization.XmlSerializerNamespaces,System.Xml.XmlTextWriter@,System.Attribute[])">
<summary>
</summary>
<param name="stream">
</param>
<param name="o">
</param>
<param name="mi">
</param>
<param name="namespaces">
</param>
<param name="writer">
</param>
<param name="filter">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.Serialize(System.IO.Stream,System.Object,System.Reflection.MemberInfo,System.Xml.Serialization.XmlSerializerNamespaces)">
<summary>
Serializes the specified Object and writes the XML-document instance to a file using the specified Stream.
</summary>
<param name="stream">The Stream used to write the XML-document instance</param>
<param name="o">The Object to serialize</param>
<param name="mi">The FieldInfo or MemberInfo object context for the object to serialize</param>
<param name="namespaces">The XmlSerializerNamespaces referenced by the object</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.Serialize(System.Xml.XmlTextWriter,System.Object,System.Reflection.MemberInfo,System.Xml.Serialization.XmlSerializerNamespaces,System.Attribute[])">
<summary>
Serializes the specified Object and writes the XML-document instance to a file using the specified XmlWriter
</summary>
<param name="writer">The XmlWriter used to write the XML-document instance</param>
<param name="o">The Object to serialize</param>
<param name="mi">The FieldInfo or MemberInfo object context for the object to serialize</param>
<param name="namespaces">The XmlSerializerNamespaces referenced by the object</param>
<param name="filter">Array of attributes that specify what to serialize</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.Serialize(System.Object,System.Reflection.MemberInfo,System.Xml.Serialization.XmlSerializerNamespaces)">
<summary>
Serializes the specified object to an XML formatted string.
</summary>
<param name="o">
</param>
<param name="mi">
</param>
<param name="namespaces">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.Deserialize(System.IO.Stream,System.Type)">
<summary>
Deserializes an XML-document instance
</summary>
<param name="stream">The Stream containing the XML-document instance to deserialize</param>
<param name="type">The type of object being deserialized</param>
<returns>The Object being deserialized</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.Deserialize(System.Xml.XmlTextReader,System.Type)">
<summary>
Deserializes an XML-document instance
</summary>
<param name="reader">The XmlReader containing the XML-document instance to deserialize</param>
<param name="type">The type of object being deserialized</param>
<returns>The Object being deserialized</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.Deserialize(System.Xml.XmlTextReader,System.Object,System.Type,System.Type)">
<summary>
Deserializes object
</summary>
<param name="reader">The XmlReader containing the XML-document instance to deserialize</param>
<param name="o">The Object being deserialized</param>
<param name="type">The type of object being deserialized</param>
<param name="elementType">The type of array elements (in case the object is an array)</param>
<returns>The Object being deserialized</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.Deserialize(System.String,System.Type)">
<summary>
Deserializes an XML document string
</summary>
<param name="XMLString">
</param>
<param name="type">
</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.DeserializeText(System.Xml.XmlTextReader,System.Type)">
<summary>
Deserializes text of element or attribute into object of appropriate type
</summary>
<param name="reader">The XmlReader containing the XML-document instance to deserialize</param>
<param name="type">The type of object being deserialized</param>
<returns>The Object being deserialized</returns>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.OnLongOpInProgressProvider">
<summary>
Sets or returns the object implementing IOnLongOpInProgressProvider interface
(can be used to provide visual feedback to the user during serialization).
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.SerializeDefaultValues">
<summary>
Gets or sets a value indicating whether all the values are to be persistent.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.Formatting">
<summary>
Sets or returns formatting used by the XML writer.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.Indentation">
<summary>
Sets or returns indentation used by the XML writer.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.NonPublic">
<summary>
Sets or returns serialization of non-public properties. If true non-public properties
are included, but are hidden by default. Public properties are always visible by default.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.C1TypeDescriptorContextCreateInstance">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.C1TypeDescriptorContextCreateInstance.#ctor">
<summary>
Initializes a new instance of the <see cref="T:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.C1TypeDescriptorContextCreateInstance" /> class.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.C1TypeDescriptorContextCreateInstance.OnComponentChanged">
<summary>
Raises the <see cref="E:System.ComponentModel.Design.IComponentChangeService.ComponentChanged" /> event.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.C1TypeDescriptorContextCreateInstance.OnComponentChanging">
<summary>
Raises the <see cref="E:System.ComponentModel.Design.IComponentChangeService.ComponentChanging" /> event.
</summary>
<returns>
true if this object can be changed; otherwise, false.
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.C1TypeDescriptorContextCreateInstance.GetService(System.Type)">
<summary>
Gets the service object of the specified type.
</summary>
<param name="serviceType">An object that specifies the type of service object to get.</param>
<returns>
A service object of type <paramref name="serviceType" />.
-or-
null if there is no service object of type <paramref name="serviceType" />.
</returns>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.C1TypeDescriptorContextCreateInstance.Container">
<summary>
Gets the container representing this <see cref="T:System.ComponentModel.TypeDescriptor" /> request.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.C1TypeDescriptorContextCreateInstance.Instance">
<summary>
Gets the object that is connected with this type descriptor request.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.Xml.Serialization.Serializer.C1TypeDescriptorContextCreateInstance.PropertyDescriptor">
<summary>
Gets the <see cref="T:System.ComponentModel.PropertyDescriptor" /> that is associated with the given context item.
</summary>
<value>
</value>
<returns>
The <see cref="T:System.ComponentModel.PropertyDescriptor" /> that describes the given context item; otherwise, null if there is no <see cref="T:System.ComponentModel.PropertyDescriptor" /> responsible for the call.
</returns>
</member>
<member name="T:C1.Win.C1TrueDBGrid.GroupInfo">
<summary>
GroupInfo
Property of the C1DataColumn object, used to control grouping and
rendering of group headers and footers
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GroupInfo.#ctor(C1.Win.C1TrueDBGrid.C1DataColumn)">
<summary>
Creates a new instance of the object.
</summary>
<param name="owner">The column this object is associated with.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GroupInfo.ToString">
<summary>
Override. The string representation of the object.
</summary>
<returns>
</returns>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupInfo.Position">
<summary>
Gets or sets the position of the grouped row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupInfo.OutlineMode">
<summary>
Gets or sets the initial expanded/collapsed state of the grouped row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupInfo.HeaderText">
<summary>
Gets or sets the text that is displayed in the group header row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupInfo.FooterText">
<summary>
Gets or sets the text that is displayed in the group footer row.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupInfo.AggregatesText">
<summary>
Gets or sets the text that is displayed with the Aggregates value
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupInfo.Interval">
<summary>
Gets or sets the way rows are grouped.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.GroupInfo.ColumnVisible">
<summary>
Gets or set a value indicating the visibility of a column when it's grouped.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.PrintOptionsForm">
<summary>
Represents print/export options form.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.OnExporterChanged(System.EventArgs)">
<summary>
</summary>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.OnActionChanged(System.EventArgs)">
<summary>
</summary>
<param name="e">
</param>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_exporter">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_action">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_actionMask">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_rowHeight">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_pageBreaks">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_fillEmpty">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_wrapText">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_outputFileName">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_chkUseGridColors">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_numFooterHeight">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_numHeaderHeight">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_txtFooter">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_txtHeader">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_numMaxRowHeight">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_cmbRowHeight">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_chkColFooter">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_chkColHeader">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_chkSplitHeader">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_chkGridHeader">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_chkPrintHorzSplits">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_cmbStretchToWidth">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_cmbWrapText">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_cmbHorzPageBreak">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_chkShowProgress">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_grpPageHeaders">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_lblFooterHeight">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_lblHeaderHeight">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_lblFooter">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_lblHeader">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_grpRenderOptions">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_lblRowHeight">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_lblStretchToWidth">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_lblWrapText">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_lblHorzPageBreak">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_btnOK">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_btnCancel">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_lblAction">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_btnOutputFileName">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_btnOptions">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_cmbAction">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_lblOutputFileName">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_lblMaxRowHeight">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_grpFormView">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_chkOneFormPerPage">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.#ctor">
<summary>
Creates a new instance of the PrintOptionsFrom class.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.Dispose(System.Boolean)">
<summary>
Called when the class is being disposed.
</summary>
<param name="disposing">
True to cleanup.
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_btnOutputFileName_Click(System.Object,System.EventArgs)">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_btnOptions_Click(System.Object,System.EventArgs)">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_cmbAction_SelectedIndexChanged(System.Object,System.EventArgs)">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.UpdateStatus">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.PrintOptionsForm_Load(System.Object,System.EventArgs)">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.PrintOptionsForm_Closing(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_cmbRowHeight_SelectedIndexChanged(System.Object,System.EventArgs)">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_cmbHorzPageBreak_SelectedIndexChanged(System.Object,System.EventArgs)">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_cmbStretchToWidth_SelectedIndexChanged(System.Object,System.EventArgs)">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.m_cmbWrapText_SelectedIndexChanged(System.Object,System.EventArgs)">
<summary>
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.PrintOptionsForm.ExporterChanged">
<summary>
</summary>
</member>
<member name="E:C1.Win.C1TrueDBGrid.PrintOptionsForm.ActionChanged">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintOptionsForm.Exporter">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintOptionsForm.OutputFileName">
<summary>
Gets or sets the output file name.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintOptionsForm.Action">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintOptionsForm.ActionMask">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintOptionsForm.RowHeight">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintOptionsForm.PageBreaks">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintOptionsForm.FillEmpty">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintOptionsForm.WrapText">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.PrintOptionsForm.ActionItem">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.ActionItem.Empty">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.ActionItem.#ctor(C1.Win.C1TrueDBGrid.PrintInfo.ActionFlags,System.Object)">
<summary>
Creates a new instance of the ActionItem class.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.ActionItem.ToString">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintOptionsForm.ActionItem.Action">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintOptionsForm.ActionItem.Provider">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.PrintOptionsForm.RowHeightItem">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.RowHeightItem.RowHeight">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.RowHeightItem.#ctor(C1.Win.C1TrueDBGrid.PrintInfo.RowHeightEnum)">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.RowHeightItem.ToString">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.RowHeightItem.RowHeightItems">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.PrintOptionsForm.PageBreakItem">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.PageBreakItem.PageBreaks">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.PageBreakItem.#ctor(C1.Win.C1TrueDBGrid.PrintInfo.PageBreaksEnum)">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.PageBreakItem.ToString">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.PageBreakItem.PageBreakItems">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.PrintOptionsForm.FillEmptyItem">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.FillEmptyItem.FillEmpty">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.FillEmptyItem.#ctor(C1.Win.C1TrueDBGrid.PrintInfo.FillEmptyEnum)">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.FillEmptyItem.ToString">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.FillEmptyItem.FillEmptyItems">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.PrintOptionsForm.WrapTextItem">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.WrapTextItem.WrapText">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.WrapTextItem.#ctor(C1.Win.C1TrueDBGrid.PrintInfo.WrapTextEnum)">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintOptionsForm.WrapTextItem.ToString">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintOptionsForm.WrapTextItem.WrapTextItems">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.C1TrueDBGridPrintOptionsFormDropDownEditor">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGridPrintOptionsFormDropDownEditor.BaseFormClassName">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.C1OwnerDrawPrint">
<summary>
Object to manage custom page headers and footers when printing and previewing.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1OwnerDrawPrint.RenderDirectText(System.Object,System.Object,System.String,System.Object,System.Drawing.Font,System.Drawing.Color,C1.Win.C1TrueDBGrid.AlignHorzEnum)">
<summary>
Renders text for the document.
</summary>
<param name="x">X-coordinate to start the rendering.</param>
<param name="y">Y-coordinate to start the rendering.</param>
<param name="text">The text to render.</param>
<param name="width">The width for the rendered text.</param>
<param name="font">The font to use.</param>
<param name="textColor">The color of the text.</param>
<param name="horzAlign">The alignment to render the text.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1OwnerDrawPrint.RenderDirectImage(System.Object,System.Object,System.Drawing.Image,System.Object,System.Object,C1.Win.C1TrueDBGrid.BackgroundPictureDrawModeEnum)">
<summary>
Renders an image for the document.
</summary>
<param name="x">X-coordinate.</param>
<param name="y">Y-coordinate.</param>
<param name="image">Image to render.</param>
<param name="width">Width to render.</param>
<param name="height">Height to render.</param>
<param name="imageAlign">Alignment options.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1OwnerDrawPrint.RenderDirectLine(System.Object,System.Object,System.Object,System.Object,System.Drawing.Color,System.Double)">
<summary>
Renders a line for the document.
</summary>
<param name="fromX">Start x-coordinate.</param>
<param name="fromY">Start y-coordinate.</param>
<param name="toX">End x-coordinate.</param>
<param name="toY">End y-coordinate.</param>
<param name="color">Color of the line.</param>
<param name="width">Width of the line.</param>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1OwnerDrawPrint.HeightInch">
<summary>
The height of drawing area in inches
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.PrintInfo">
<summary>
Specifies how a <see cref="T:C1.Win.C1TrueDBGrid.C1TrueDBGrid" /> should be printed
or exported when using such methods as
<see cref="M:C1.Win.C1TrueDBGrid.C1TrueDBGrid.ExportTo" />,
<see cref="M:C1.Win.C1TrueDBGrid.PrintInfo.Print" /> etc.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintInfo.ToString">
<summary>
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintInfo.ShouldSerializePageSettings">
<summary>
Indicates whether the <see cref="P:C1.Win.C1TrueDBGrid.PrintInfo.PageSettings" /> property should be serialized.
</summary>
<returns>
<b>true</b> if <see cref="P:C1.Win.C1TrueDBGrid.PrintInfo.PageSettings" /> should be serialized, <b>false</b> otherwise.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintInfo.ShouldSerializePrintOptionsFormClassName">
<summary>
Indicates whether the <see cref="P:C1.Win.C1TrueDBGrid.PrintInfo.PrintOptionsFormClassName" /> property should be serialized.
</summary>
<returns>
<b>true</b> if <see cref="P:C1.Win.C1TrueDBGrid.PrintInfo.PrintOptionsFormClassName" /> should be serialized, <b>false</b> otherwise.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintInfo.ResetPrintOptionsFormClassName">
<summary>
Resets the <see cref="P:C1.Win.C1TrueDBGrid.PrintInfo.PrintOptionsFormClassName" /> property to its default value.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintInfo.ShouldSerializePreviewFormClassName">
<summary>
Indicates whether the <see cref="P:C1.Win.C1TrueDBGrid.PrintInfo.PreviewFormClassName" /> property should be serialized.
</summary>
<returns>
<b>true</b> if <see cref="P:C1.Win.C1TrueDBGrid.PrintInfo.PreviewFormClassName" /> should be serialized, <b>false</b> otherwise.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintInfo.ResetPreviewFormClassName">
<summary>
Resets the <see cref="P:C1.Win.C1TrueDBGrid.PrintInfo.PreviewFormClassName" /> property to its default value.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintInfo.PrintPreview">
<summary>
Opens a separate modal window in which end users can preview the output
that would be generated by the print operation.
</summary>
<remarks>
<see cref="P:C1.Win.C1TrueDBGrid.PrintInfo.PreviewFormClassName" /> allows to specify a custom form for
the preview dialog.
</remarks>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintInfo.Print">
<summary>
Prints the grid.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintInfo.Print(System.Drawing.Printing.PrinterSettings)">
<summary>
Prints the grid.
</summary>
<param name="printerSettings">Specifies the printer settings (including the printer) to use.</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintInfo.Print(System.IO.Stream)">
<summary>
Saves the current grid to a stream in <b>C1D</b>
(native <b>C1PrintDocument</b>) format.
<para>
Note that unlike most other print/export methods, this method
does not require <b>C1Report</b> assemblies.
</para></summary>
<param name="stream">The output stream.</param>
<remarks>
<para>
The stream's <b>Position</b> is set to 0 when the method returns.
</para>
<para>This method does not show progress dialog
(ignoring <see cref="P:C1.Win.C1TrueDBGrid.PrintInfo.ShowProgressForm" /> property).
</para>
</remarks>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintInfo.PrintToStream">
<summary>
Saves the current grid to a memory stream in <b>C1D</b>
(native <b>C1PrintDocument</b>) format.
<para>
The stream's <b>Position</b> is set to 0 when the method returns.
</para></summary>
<returns>The stream containing the saved grid.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintInfo.SaveAsC1d(System.String)">
<summary>
Saves the current grid as a <b>C1D</b> file, which can later be loaded
into a <b>C1PrintDocument</b> (provided by <b>C1Report</b> product).
<para>
Note that unlike most other print/export methods, this method
does not require <b>C1Report</b> assemblies.
</para></summary>
<param name="outputFileName">The name of the output file.</param>
<returns>
<b>true</b> if the file was successfully saved,
<b>false</b> otherwise.</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintInfo.SaveAsC1d(System.IO.Stream)">
<summary>
Saves the current grid to a stream in <b>C1D</b>
(native <b>C1PrintDocument</b>) format.
<para>
Note that unlike most other print/export methods, this method
does not require <b>C1Report</b> assemblies.
</para></summary>
<param name="stream">The output stream.</param>
<returns>
<b>true</b> if the stream was successfully written,
<b>false</b> otherwise.</returns>
<remarks>
Unlike the <see cref="M:C1.Win.C1TrueDBGrid.PrintInfo.Print(System.IO.Stream)" /> method,
this method does not reset the stream's position after saving.
</remarks>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.RowCanSplit">
<summary>
Gets or sets a value indicating whether the grid rows can split between pages.
</summary>
<remarks>
This new property helps to print very long text in columns on multiple pages.
</remarks>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.UseGridColors">
<summary>
Gets or sets a value indicating whether the grid's color scheme is translated to the print page.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.OwnerDrawPageHeader">
<summary>
Gets or sets a value indicating whether the page header is owner-drawn.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.OwnerDrawPageFooter">
<summary>
Gets or sets a value indicating whether the page footer is owner-drawn.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.PageHeaderStyle">
<summary>
Gets or sets the style used to render the page header.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.PageHeader">
<summary>
Gets or sets the string to be printed at the top of each page.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.PageHeaderHeight">
<summary>
Gets or sets the height of the Page header.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.PageFooterStyle">
<summary>
Gets or sets the style used to render the page footer.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.PageFooterHeight">
<summary>
Gets or sets the page footer height in hundredths of an inch.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.PageFooter">
<summary>
Gets or sets a string to be printed at the bottom of each page.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.RepeatColumnFooters">
<summary>
Gets or sets a value indicating whether column footers should appear on each page.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.RepeatGridHeader">
<summary>
Gets or sets a value indicating whether the grid caption should appear on each page.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.RepeatSplitHeaders">
<summary>
Gets or sets a value inidcating whether split captions should appear on each page.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.PrintHorizontalSplits">
<summary>
Gets or sets a value indicating whether horizontal splits are previewed and printed.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.RepeatColumnHeaders">
<summary>
Gets or sets a value indicating whether column headers should appear on each page.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.FillAreaWidth">
<summary>
Gets or sets a value indicating how empty space left on a printed page is handled.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.PageBreak">
<summary>
Gets or sets the horizontal page break mode.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.WrapText">
<summary>
Gets or sets a value that controls how text is wrapped in a cell.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.PrintEmptyGrid">
<summary>
Gets or sets a value whether to print a grid if it has no data rows.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.MaxRowHeight">
<summary>
Gets or sets the maximum row height in hundredths of an inch
(used if <see cref="P:C1.Win.C1TrueDBGrid.PrintInfo.VarRowHeight" /> is <see cref="F:C1.Win.C1TrueDBGrid.PrintInfo.RowHeightEnum.StretchToMax" />).
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.VarRowHeight">
<summary>
Gets or sets a value indicating how row height of the printed grid is determined.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.GridLines">
<summary>
Gets or sets a value indicating how grid lines are rendered.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.ShowOptionsDialog">
<summary>
Gets or sets a value indicating whether the options dialog is displayed
when the grid is printed or exported.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.ShowProgressForm">
<summary>
Gets or sets a value indicating whether the progress dialog is displayed when the grid is printed or exported.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.OneFormPerPage">
<summary>
Gets or sets a value indicating whether the grid in Form view style is printed each record per page.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.ShowSelection">
<summary>
Gets or sets a value indicating whether selected cells will be highlighted when previewing or printing.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.PageSettings">
<summary>
Gets or sets the PageSettings for printing.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.ProgressCaption">
<summary>
Gets or sets the caption of the print progress dialog.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.PrintOptionsFormClassName">
<summary>
Gets or sets the class name of the form used as the print options dialog.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintInfo.PreviewFormClassName">
<summary>
Gets or sets the class name of the form used as the preview form.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.PrintInfo.FillEmptyEnum">
<summary>
Specifies how empty space left on a printed page is handled (filled or otherwise).
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintInfo.FillEmptyEnum.ExtendAll">
<summary>
All columns are extended proportionally to fill the page.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintInfo.FillEmptyEnum.None">
<summary>
Empty space on the right of the page is left as is.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintInfo.FillEmptyEnum.ExtendLast">
<summary>
Rightmost column on the page is extended to fill the empty space.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.PrintInfo.PageBreaksEnum">
<summary>
Specifies how grid is broken into extension (horizontal) pages
when it is too wide to fit into one page.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintInfo.PageBreaksEnum.FitIntoArea">
<summary>
All columns are made narrow enough to fit into one page.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintInfo.PageBreaksEnum.ClipInArea">
<summary>
Columns that do not fit into one page are clipped.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintInfo.PageBreaksEnum.OnSplit">
<summary>
Horizontal page breaks can be inserted on grid splits as necessary.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintInfo.PageBreaksEnum.OnColumn">
<summary>
Horizontal page breaks can be inserted on any column as necessary.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.PrintInfo.WrapTextEnum">
<summary>
Specifies how cell text is wrapped.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintInfo.WrapTextEnum.Wrap">
<summary>
Text can wrap in any cell as needed.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintInfo.WrapTextEnum.NoWrap">
<summary>
Text in cells never wraps.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintInfo.WrapTextEnum.LikeColumn">
<summary>
Use column's <see cref="P:C1.Win.C1TrueDBGrid.Style.WrapText" /> property.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.PrintInfo.GridLinesEnum">
<summary>
Specifies how grid lines are rendered.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintInfo.GridLinesEnum.Always">
<summary>
Grid lines are rendered.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintInfo.GridLinesEnum.None">
<summary>
Grid lines are not rendered.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.PrintInfo.RowHeightEnum">
<summary>
Specifies how rows' heights are determined.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintInfo.RowHeightEnum.StretchToFit">
<summary>
Stretch rows vertically to fit all data.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintInfo.RowHeightEnum.LikeGrid">
<summary>
Use the grid's row height.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintInfo.RowHeightEnum.StretchToMax">
<summary>
Stretch rows vertically but not greater than <see cref="P:C1.Win.C1TrueDBGrid.PrintInfo.MaxRowHeight" />.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.PrintInfo.ActionFlags">
<summary>
Specify allowed print options.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintInfo.ActionFlags.None">
<summary>
No print/export operations are allowed.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintInfo.ActionFlags.Print">
<summary>
Printing is allowed.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintInfo.ActionFlags.Preview">
<summary>
Preview is allowed.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintInfo.ActionFlags.Export">
<summary>
Export is allowed.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.PrintInfo.ActionFlags.MaskAll">
<summary>
All print/export operations are allowed.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.PrintForm">
<summary>
The print preview form.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintForm.#ctor">
<summary>
Creates a new instance of the PrintFrom class.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintForm.Init">
<summary>
Additional initialization of the form.
</summary>
<remarks>
To override properties like FormBorderStyle, MaximizeBox, MinimizeBox, ControlBox etc. of a Form,
inherited from "C1.Win.C1TrueDBGrid.PrintForm", override the Init method of the PrintForm.
First call the base.Init(), then set the properties you want.
</remarks>
<example>
The example is a custom PrintForm which has sizable border, control box is on, and minimize and maximize boxes are off.
<code>
public class CustPrintForm : C1.Win.C1TrueDBGrid.PrintForm
{
public CustPrintForm(): base()
{
}
protected override void Init()
{
base.Init();
FormBorderStyle = FormBorderStyle.Sizable;
this.ControlBox = true;
this.MinimizeBox = false;
this.MaximizeBox = false;
}
}
</code></example>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintForm.Dispose(System.Boolean)">
<summary>
Overloaded. Overridden. Releases all resources used by the Control.
</summary>
<param name="disposing">
</param>
</member>
<member name="T:C1.Win.C1TrueDBGrid.C1TrueDBGridPreviewFormDropDownEditor">
<summary>
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1TrueDBGridPreviewFormDropDownEditor.BaseFormClassName">
<summary>
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.PrintCancelException">
<summary>
Represents exception that is thrown if printing or exporting
a <see cref="T:C1.Win.C1TrueDBGrid.C1TrueDBGrid" /> is cancelled by the user.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintCancelException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:C1.Win.C1TrueDBGrid.PrintCancelException" /> class.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.PrintPreviewWinSettings">
<summary>
Specifies the characteristics of the print preview window
shown by the <see cref="M:C1.Win.C1TrueDBGrid.PrintInfo.PrintPreview" /> method.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintPreviewWinSettings.ToString">
<summary>
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintPreviewWinSettings.ShouldSerializeUIStrings">
<summary>
</summary>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.PrintPreviewWinSettings.ResetUIStrings">
<summary>
Resets the array of UIStrings back to the default locale.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintPreviewWinSettings.Caption">
<summary>
Gets or sets the caption of the preview window.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintPreviewWinSettings.NavigationPaneDockingStyle">
<summary>
Gets or sets the position and manner in which the control is docked in the navigation page.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintPreviewWinSettings.Location">
<summary>
Gets or sets the location of the preview window.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintPreviewWinSettings.AllowSizing">
<summary>
Gets or sets a value indicating whether the end user has the ability to size the preview window.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintPreviewWinSettings.ZoomFactor">
<summary>
Gets or sets the zoom factor for print preview.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintPreviewWinSettings.Size">
<summary>
Gets or sets the size of the form.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintPreviewWinSettings.ToolBars">
<summary>
Gets or sets a value indicating the visibiity of toolbars.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.PrintPreviewWinSettings.UIStrings">
<summary>
Gets the array of user interface strings.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.C1PrintProgress">
<summary>
Print progress window.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1PrintProgress.#ctor">
<summary>
Initializes a new instance of the C1PrintProgress class.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1PrintProgress.#ctor(C1.Win.C1TrueDBGrid.Util.Localization.Language)">
<summary>
Initializes a new instance of the C1PrintProgress class with a language.
</summary>
<param name="language">UI Language</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.C1PrintProgress.Dispose(System.Boolean)">
<summary>
Overloaded. Releases the resources used by the component.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1PrintProgress.TxtPrinting">
<summary>
Gets or sets the text used to display the current progress when the grid is printed/previewed.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1PrintProgress.TxtCancel">
<summary>
Gets or sets the text for the Cancel button.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1PrintProgress.TxtTitle">
<summary>
Gets or sets the text for the Windows caption.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.C1PrintProgress.CancelClicked">
<summary>
Gets a value indicating if the print/preview was cancelled.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Util.SBar">
<summary>
Base class for the grid's scrollbars
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.SBar.#ctor(C1.Win.C1TrueDBGrid.BaseGrid.View,System.Windows.Forms.ScrollBar)">
<summary>
Initializes a new instance of the SBar class
</summary>
<param name="owner">
</param>
<param name="sbar">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.SBar.Dispose(System.Boolean)">
<summary>
Overloaded. Releases the resources used by the class.
</summary>
<param name="disposing">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.SBar.OnScroll(System.Object,System.Windows.Forms.ScrollEventArgs)">
<summary>
Occurs when the scroll box has been moved by either a mouse or keyboard action.
</summary>
<param name="sender">
</param>
<param name="e">
</param>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.SBar.Style">
<summary>
Gets or sets the visibility of the scrollbars.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.SBar.Visible">
<summary>
Gets or sets a value indicating whether the scrollbar is displayed.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.SBar.Value">
<summary>
Gets or sets a numeric value that represents the current position of the scroll box on the scroll bar control.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Util.VBar">
<summary>
Represents a vertical scrollbar.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.VBar.#ctor(C1.Win.C1TrueDBGrid.BaseGrid.View)">
<summary>
Initializes a new instance of the VBar class.
</summary>
<param name="owner">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.VBar.OnScroll(System.Object,System.Windows.Forms.ScrollEventArgs)">
<summary>
Overloaded. Occurs when the scroll box has been moved by either a mouse or keyboard action.
</summary>
<param name="sender">
</param>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.VBar.ToString">
<summary>
Returns a string the represents the current object.
</summary>
<returns>
</returns>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.VBar.Value">
<summary>
Gets or sets a numeric value that represents the current position of the scroll box on the scroll bar control.
</summary>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.VBar.Width">
<summary>
Gets or sets the width of the vertical scrollbar.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Util.HBar">
<summary>
Represents a horizontal scrollbar.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.HBar.#ctor(C1.Win.C1TrueDBGrid.BaseGrid.View)">
<summary>
Initializes a new instance of the VBar class.
</summary>
<param name="owner">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.HBar.OnScroll(System.Object,System.Windows.Forms.ScrollEventArgs)">
<summary>
Overloaded. Occurs when the scroll box has been moved by either a mouse or keyboard action.
</summary>
<param name="sender">
</param>
<param name="e">
</param>
</member>
<member name="M:C1.Win.C1TrueDBGrid.Util.HBar.ToString">
<summary>
Returns a string the represents the current object.
</summary>
<returns>
</returns>
</member>
<member name="P:C1.Win.C1TrueDBGrid.Util.HBar.Height">
<summary>
Gets or sets the height of the horizontal scrollbar.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.Styles.DrawCellFlags">
<summary>
Specifies which elements of the cell should be drawn by the grid.
</summary>
<remarks>
<para>This enumeration is used when rendering owner-drawn cells.</para>
</remarks>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Styles.DrawCellFlags.None">
<summary>
Draw nothing.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Styles.DrawCellFlags.Background">
<summary>
Draw the cell background.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Styles.DrawCellFlags.Border">
<summary>
Draw the cell border.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Styles.DrawCellFlags.Content">
<summary>
Draw the cell content (text, images, checkboxes, etc).
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.Styles.DrawCellFlags.All">
<summary>
Draw all cell elements (background, border, and contents).
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.VisualStyle">
<summary>
Specifies a visual style to use when rendering the control.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.VisualStyle.Custom">
<summary>
Do not use any visual styles. Render the control using the styles and properties only.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.VisualStyle.System">
<summary>
Render the control with an appearance based on the current system settings.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.VisualStyle.Office2007Blue">
<summary>
Render the control with an appearance based on the Office 2007 Blue color scheme.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.VisualStyle.Office2007Silver">
<summary>
Render the control with an appearance based on the Office 2007 Silver color scheme.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.VisualStyle.Office2007Black">
<summary>
Render the control with an appearance based on the Office 2007 Black color scheme.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue">
<summary>
Render the control with an appearance based on the Office 2010 Blue color scheme.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.VisualStyle.Office2010Silver">
<summary>
Render the control with an appearance based on the Office 2010 Silver color scheme.
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.VisualStyle.Office2010Black">
<summary>
Render the control with an appearance based on the Office 2010 Black color scheme.
</summary>
</member>
<member name="T:C1.Win.C1TrueDBGrid.GridRenderer">
<summary>
Base class for the grid renderers.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GridRenderer.#ctor">
<summary>
Initializes a new instance of the <see cref="T:C1.Win.C1TrueDBGrid.GridRenderer" /> class.
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GridRenderer.OnDrawCell(C1.Win.C1TrueDBGrid.BaseGrid.Frame,C1.Win.C1TrueDBGrid.OwnerDrawCellEventArgs,C1.Win.C1TrueDBGrid.GridRenderer.CellType,System.Boolean)">
<summary>
</summary>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GridRenderer.GetBackgroundBrush(C1.Win.C1TrueDBGrid.BaseGrid.Frame,C1.Win.C1TrueDBGrid.GridRenderer.CellType,System.Drawing.Rectangle)">
<summary>
Gets the background brush.
</summary>
<param name="grid">The grid.</param>
<param name="cellType">Type of the cell.</param>
<param name="r">The r.</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GridRenderer.GetBorderPen(C1.Win.C1TrueDBGrid.GridRenderer.CellType)">
<summary>
Gets the border pen.
</summary>
<param name="cellType">Type of the cell.</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GridRenderer.StyleHasCustomBackground(C1.Win.C1TrueDBGrid.Style)">
<summary>
Styles the has custom background.
</summary>
<param name="style">The style.</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GridRenderer.StyleHasCustomBorder(C1.Win.C1TrueDBGrid.Style)">
<summary>
Styles the has custom border.
</summary>
<param name="style">The style.</param>
<returns>
</returns>
</member>
<member name="M:C1.Win.C1TrueDBGrid.GridRenderer.StyleHasRightBorder(C1.Win.C1TrueDBGrid.Style,System.Boolean)">
<summary>
Styles the has right border.
</summary>
<param name="style">the style</param>
<param name="rtl">
</param>
<returns>True is has right border</returns>
</member>
<member name="T:C1.Win.C1TrueDBGrid.GridRenderer.CellType">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GridRenderer.CellType.Normal">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GridRenderer.CellType.Caption">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GridRenderer.CellType.TopLeft">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GridRenderer.CellType.BottomLeft">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GridRenderer.CellType.ColumnHeader">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GridRenderer.CellType.ColumnHeaderSelected">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GridRenderer.CellType.ColumnHeaderHot">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GridRenderer.CellType.ColumnFooter">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GridRenderer.CellType.ColumnFooterSelected">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GridRenderer.CellType.ColumnFooterHot">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GridRenderer.CellType.RecordSelector">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GridRenderer.CellType.RecordSelectorSelected">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GridRenderer.CellType.RecordSelectorHot">
<summary>
</summary>
</member>
<member name="F:C1.Win.C1TrueDBGrid.GridRenderer.CellType.Highlight">
<summary>
</summary>
</member>
</members>
</doc>