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.
 
 
 
 
 

81528 lines
3.8 MiB

<?xml version="1.0"?>
<doc>
<assembly>
<name>DevComponents.DotNetBar2</name>
</assembly>
<members>
<member name="T:DevComponents.AdvTree.AdvTree">
<summary>
Represents advanced multi-column Tree control.
</summary>
</member>
<member name="T:DevComponents.AdvTree.INodeNotify">
<summary>
Specifies the notification interface that node uses to communicate status changes to it's parent tree.
</summary>
</member>
<member name="M:DevComponents.AdvTree.INodeNotify.ExpandedChanged(DevComponents.AdvTree.Node)">
<summary>Called when Node.Expanded property has changed.</summary>
<param name="node">Node which Expanded property has changed.</param>
</member>
<member name="M:DevComponents.AdvTree.INodeNotify.OnBeforeCollapse(DevComponents.AdvTree.AdvTreeNodeCancelEventArgs)">
<summary>Called before node is collapsed</summary>
<param name="e">Context information.</param>
</member>
<member name="M:DevComponents.AdvTree.INodeNotify.OnBeforeExpand(DevComponents.AdvTree.AdvTreeNodeCancelEventArgs)">
<summary>Called before node is expanded</summary>
<param name="e">Context information.</param>
</member>
<member name="M:DevComponents.AdvTree.INodeNotify.OnAfterCollapse(DevComponents.AdvTree.AdvTreeNodeEventArgs)">
<summary>Called after node is collapsed.</summary>
<param name="e">Context information.</param>
</member>
<member name="M:DevComponents.AdvTree.INodeNotify.OnAfterExpand(DevComponents.AdvTree.AdvTreeNodeEventArgs)">
<summary>Called after node is expanded</summary>
<param name="e">Context information</param>
</member>
<member name="F:DevComponents.AdvTree.AdvTree.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnRender(DevComponents.AdvTree.AdvTreeRenderEventArgs)">
<summary>
Raises Render event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.#ctor">
<summary>Creates new instance of the class.</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.GetRenderer">
<summary>
Gets the current renderer used by the control.
</summary>
<returns>Reference to the TreeRenderer used by the control.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.CreateGraphics">
<summary>
Creates the Graphics object for the control.
</summary>
<returns>The Graphics object for the control.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ShouldSerializeGridLinesColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ResetGridLinesColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ShouldSerializeAlternateRowColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ResetAlternateRowColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InvalidateNode(DevComponents.AdvTree.Node[])">
<summary>
Invalidates node bounds on canvas.
</summary>
<param name="node">Reference node.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InvalidateNode(DevComponents.AdvTree.Node)">
<summary>
Invalidates node bounds on canvas.
</summary>
<param name="node">Reference node.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.FindNodeByName(System.String)">
<summary>
Finds the node based on the Node.Name property.
</summary>
<param name="name">Name of the node to find.</param>
<returns>Reference to a node with given name or null if node cannot be found.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.FindNodeByDataKey(System.Object)">
<summary>
Finds the node based on the Node.DataKey property.
</summary>
<param name="name">Data key to look for.</param>
<returns>Reference to a node with given key or null if node cannot be found.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.FindNodeByBindingIndex(System.Int32)">
<summary>
Finds the node based on the Node.BindingIndex property.
</summary>
<param name="bindingIndex">Index to look for.</param>
<returns>Reference to a node with given key or null if node cannot be found.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.FindNodeByText(System.String)">
<summary>
Finds the first node that starts with the specified text. Node.Text property is searched.
</summary>
<param name="text">Partial text to look for</param>
<returns>Reference to a node or null if no node is found.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.FindNodeByCellText(System.String)">
<summary>
Finds the first node where each Node.Cell[0:n].Text value starts with the
respective value found in the comma delimited 'text' string.
</summary>
<param name="text">Comma delimited partial text to look for</param>
<returns>Reference to a node or null if no node is found.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.FindNodeByText(System.String,System.Boolean)">
<summary>
Finds the first node that starts with the specified text. Node.Text property is searched.
</summary>
<param name="text">Partial text to look for</param>
<param name="ignoreCase">Controls whether case insensitive search is performed</param>
<returns>Reference to a node or null if no node is found.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.FindNodeByCellText(System.String,System.Boolean)">
<summary>
Finds the first node where each Node.Cell[0:n].Text value starts with the
respective value found in the comma delimited 'text' string.
</summary>
<param name="text">Comma delimited partial text to look for</param>
<param name="ignoreCase">Controls whether case insensitive search is performed</param>
<returns>Reference to a node or null if no node is found.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.FindNodeByText(System.String,DevComponents.AdvTree.Node,System.Boolean)">
<summary>
Finds the first node that starts with the specified text. Node.Text property is searched.
</summary>
<param name="text">Partial text to look for</param>
<param name="startFromNode">Reference node to start searching from</param>
<param name="ignoreCase">Controls whether case insensitive search is performed</param>
<returns>Reference to a node or null if no node is found.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.FindNodeByCellText(System.String,DevComponents.AdvTree.Node,System.Boolean)">
<summary>
Finds the first node where each Node.Cell[0:n].Text value starts with the
respective value found in the comma delimited 'text' string.
</summary>
<param name="text">Comma delimited partial text to look for</param>
<param name="startFromNode">Reference node to start searching from</param>
<param name="ignoreCase">Controls whether case insensitive search is performed</param>
<returns>Reference to a node or null if no node is found.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ShouldSerializeExpandButtonSize">
<summary>
Indicates whether SelectionBoxFillColor should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ResetExpandButtonSize">
<summary>
Resets SelectionBoxFillColor to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ShouldSerializeExpandBorderColor">
<summary>
Indicates whether ExpandBorderColor should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ResetExpandBorderColor">
<summary>
Resets ExpandBorderColor to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ShouldSerializeExpandBackColor">
<summary>
Indicates whether ExpandBackColor should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ResetExpandBackColor">
<summary>
Resets ExpandBackColor to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ShouldSerializeExpandBackColor2">
<summary>
Indicates whether ExpandBackColor2 should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ResetExpandBackColor2">
<summary>
Resets ExpandBackColor2 to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ShouldSerializeExpandLineColor">
<summary>
Indicates whether ExpandLineColor should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ResetExpandLineColor">
<summary>
Resets ExpandLineColor to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ShouldSerializeCommandBackColor">
<summary>
Indicates whether CommandBackColor should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ResetCommandBackColor">
<summary>
Resets CommandBackColor to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ShouldSerializeCommandBackColor2">
<summary>
Indicates whether CommandBackColor2 should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ResetCommandBackColor2">
<summary>
Resets CommandBackColor2 to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ShouldSerializeCommandForeColor">
<summary>
Indicates whether CommandForeColor should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ResetCommandForeColor">
<summary>
Resets CommandForeColor to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ShouldSerializeCommandMouseOverBackColor">
<summary>
Indicates whether CommandMouseOverBackColor should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ResetCommandMouseOverBackColor">
<summary>
Resets CommandMouseOverBackColor to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ShouldSerializeCommandMouseOverBackColor2">
<summary>
Indicates whether CommandMouseOverBackColor2 should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ResetCommandMouseOverBackColor2">
<summary>
Resets CommandMouseOverBackColor2 to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ShouldSerializeCommandMouseOverForeColor">
<summary>
Indicates whether CommandMouseOverForeColor should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ResetCommandMouseOverForeColor">
<summary>
Resets CommandMouseOverForeColor to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.GetNodeFlatIndex(DevComponents.AdvTree.Node)">
<summary>
Returns the zero based flat index of the node. Flat index is the index of the node as if tree structure
has been flattened into the list.
</summary>
<param name="node">Reference to the node to return index for.</param>
<returns>Zero based node index or -1 if index cannot be determined.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.GetNodeByFlatIndex(System.Int32)">
<summary>
Returns node based on the flat index. Flat index is the index of the node as if tree structure
has been flattened into the list.
</summary>
<param name="index">Index to return node for.</param>
<returns>Reference to a node or null if node at specified index cannot be found.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.GetColor(System.Drawing.Color,DevComponents.DotNetBar.eColorSchemePart)">
<summary>
Returns color scheme part color if set otherwise returns color passed in.
</summary>
<param name="color">Color.</param>
<param name="p">Color scheme part.</param>
<returns>Color.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.CollapseAll">
<summary>
Collapses all nodes in a tree.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ExpandAll">
<summary>
Expands all the tree nodes.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.PaintTo(System.Drawing.Graphics,System.Boolean)">
<summary>
Paints control to canvas. This method might be used for print output.
</summary>
<param name="g">Graphics object to paint control to.</param>
<param name="background">Indicates whether to paint control background.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.PaintTo(System.Drawing.Graphics,System.Boolean,System.Drawing.Rectangle)">
<summary>
Paints control to canvas. This method might be used for print output.
</summary>
<param name="g">Graphics object to paint control to.</param>
<param name="background">Indicates whether to paint control background.</param>
<param name="clipRectangle">Indicates clipping rectangle. Nodes outside of clipping rectangle will not be painted. You can pass Rectangle.Empty and all nodes will be painted.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ProcessKeyboardCharacter(System.Char)">
<summary>
Processes the keyboard character and executes the search through the nodes.
</summary>
<param name="p">Character to process.</param>
<returns></returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnColumnResized(DevComponents.AdvTree.ColumnHeader,System.EventArgs)">
<summary>
Raises ColumnResized event.
</summary>
<param name="header">ColumnHeader that was resized.</param>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnColumnMoved(DevComponents.AdvTree.ColumnMovedEventArgs)">
<summary>
Raises ColumnMoved event.
</summary>
<param name="header">ColumnHeader that was moved.</param>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnColumnResizing(DevComponents.AdvTree.ColumnHeader,System.EventArgs)">
<summary>
Raises ColumnResizing event.
</summary>
<param name="column">Column being resized</param>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.DeselectNode(DevComponents.AdvTree.Node,DevComponents.AdvTree.eTreeAction)">
<summary>
Deselect specified node. Use this method when multiple node selection is enabled to deselect single node or all nodes.
</summary>
<param name="node">Reference to node to select or null to deselect all selected nodes.</param>
<param name="action">Action that is selecting the node.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnSelectionChanged(System.EventArgs)">
<summary>
Raises SelectionChanged event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnCellSelected(DevComponents.AdvTree.AdvTreeCellEventArgs)">
<summary>
Raises CellSelected event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnCellUnselected(DevComponents.AdvTree.AdvTreeCellEventArgs)">
<summary>
Raises CellUnselected event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.SelectNode(DevComponents.AdvTree.Node,DevComponents.AdvTree.eTreeAction)">
<summary>
Selected specified node.
</summary>
<param name="node">Node to select.</param>
<param name="action">Action that is selecting the node.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InvalidateNodesSize">
<summary>
Invalidates the size for all top-level nodes and their sub-nodes.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InvalidateNodeSize(DevComponents.AdvTree.Node)">
<summary>
Invalidates the size for a node and its sub-nodes.
</summary>
<param name="node">Node to invalidate size for.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ValidateSelectedNode">
<summary>
Ensures that selected node is visible i.e. that all parents of the selected node are expanded. If not selects the first parent node not expanded.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.EditCell(DevComponents.AdvTree.Cell,DevComponents.AdvTree.eTreeAction)">
<summary>
Starts editing specified cell, places the cell into the edit mode.
</summary>
<param name="cell">Cell to start editing.</param>
<param name="action">Action that is a cause for the edit.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.EditCell(DevComponents.AdvTree.Cell,DevComponents.AdvTree.eTreeAction,System.String)">
<summary>
Starts editing specified cell, places the cell into the edit mode.
</summary>
<param name="cell">Cell to start editing.</param>
<param name="action">Action that is a cause for the edit.</param>
<param name="initialText">Specifies the text to be edited instead of the text of the cell. Passing the NULL value will edit the text of the cell.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.PrepareCellEditor(DevComponents.AdvTree.Cell,DevComponents.AdvTree.ICellEditControl)">
<summary>
Called just before cell editor is released for editing.
</summary>
<param name="cell">Reference to the cell being edited.</param>
<param name="editControl">Reference to the editor control.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnProvideCustomCellEditor(DevComponents.AdvTree.CustomCellEditorEventArgs)">
<summary>
Raises the ProvideCustomCellEditor event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.EndCellEditing(DevComponents.AdvTree.eTreeAction)">
<summary>
Ends cell editing.
</summary>
<param name="action">Specifies which action is cause for end of the editing.</param>
<returns>Returns true if edits were applied to the cell or false otherwise.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.EndCellEditing(DevComponents.AdvTree.eTreeAction,System.Boolean)">
<summary>
Ends cell editing.
</summary>
<param name="action">Specifies which action is cause for end of the editing.</param>
<returns>Returns true if edits were applied to the cell or false otherwise.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnAfterCellEditComplete(DevComponents.AdvTree.CellEditEventArgs)">
<summary>
Raises the AfterCellEditComplete event.
</summary>
<param name="e">Provides information about event.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.CancelCellEdit(DevComponents.AdvTree.eTreeAction)">
<summary>
Cancels the cell editing if it is in progress.
</summary>
<param name="action">Specifies which action is cause for canceling of editing.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InvokeBeforeNodeInsert(DevComponents.AdvTree.eTreeAction,DevComponents.AdvTree.Node,DevComponents.AdvTree.Node)">
<summary>
Raises BeforeNodeInsert event
</summary>
<param name="node">Node that is about to be inserted</param>
<param name="action">Source of the event</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InvokeAfterNodeInsert(DevComponents.AdvTree.eTreeAction,DevComponents.AdvTree.Node,DevComponents.AdvTree.Node)">
<summary>
Raises AfterNodeInsert event
</summary>
<param name="node">Node that is inserted</param>
<param name="action">Source of the event</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InvokeBeforeNodeRemove(DevComponents.AdvTree.eTreeAction,DevComponents.AdvTree.Node,DevComponents.AdvTree.Node)">
<summary>
Raises BeforeNodeRemove event
</summary>
<param name="node">Node that is about to be removed</param>
<param name="action">Source of the event</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InvokeAfterNodeRemove(DevComponents.AdvTree.eTreeAction,DevComponents.AdvTree.Node,DevComponents.AdvTree.Node)">
<summary>
Raises AfterNodeRemove event
</summary>
<param name="node">Node that is removed</param>
<param name="action">Source of the event</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.NodeRemoved(DevComponents.AdvTree.eTreeAction,DevComponents.AdvTree.Node,DevComponents.AdvTree.Node,System.Int32)">
<summary>
Called after node has been removed
</summary>
<param name="node">Node that is removed</param>
<param name="action">Source of the event</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InvokeBeforeNodeDrop(DevComponents.AdvTree.TreeDragDropEventArgs)">
<summary>
Invokes BeforeNodeDrop event. If overriden base implementation must be called in order for event to fire.
</summary>
<param name="e">Provides information about event</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InvokeAfterNodeDrop(DevComponents.AdvTree.TreeDragDropEventArgs)">
<summary>
Invokes AfterNodeDrop event. If overridden base implementation must be called in order for event to fire.
</summary>
<param name="e">Provides information about event</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InvokeNodeMouseDown(DevComponents.AdvTree.TreeNodeMouseEventArgs)">
<summary>
Invokes NodeMouseDown event. If overridden base implementation must be called in order for event to fire.
</summary>
<param name="e">Provides information about event</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InvokeNodeMouseUp(DevComponents.AdvTree.TreeNodeMouseEventArgs)">
<summary>
Invokes NodeMouseUp event. If overridden base implementation must be called in order for event to fire.
</summary>
<param name="e">Provides information about event</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InvokeNodeMouseMove(DevComponents.AdvTree.TreeNodeMouseEventArgs)">
<summary>
Invokes NodeMouseMove event. If overridden base implementation must be called in order for event to fire.
</summary>
<param name="e">Provides information about event</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InvokeNodeClick(DevComponents.AdvTree.TreeNodeMouseEventArgs)">
<summary>
Invokes NodeClick event. If overridden base implementation must be called in order for event to fire.
</summary>
<param name="e">Provides information about event</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InvokeNodeDoubleClick(DevComponents.AdvTree.TreeNodeMouseEventArgs)">
<summary>
Invokes NodeDoubleClick event. If overridden base implementation must be called in order for event to fire.
</summary>
<param name="e">Provides information about event</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InvokeNodeMouseEnter(DevComponents.AdvTree.TreeNodeMouseEventArgs)">
<summary>
Invokes NodeMouseEnter event. If overriden base implementation must be called in order for event to fire.
</summary>
<param name="e">Provides information about event</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InvokeNodeMouseLeave(DevComponents.AdvTree.TreeNodeMouseEventArgs)">
<summary>
Invokes NodeMouseLeave event. If overriden base implementation must be called in order for event to fire.
</summary>
<param name="e">Provides information about event</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InvokeNodeMouseHover(DevComponents.AdvTree.TreeNodeMouseEventArgs)">
<summary>
Invokes NodeMouseHover event. If overriden base implementation must be called in order for event to fire.
</summary>
<param name="e">Provides information about event</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ShouldSerializeTileGroupLineColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ResetTileGroupLineColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.Save(System.Xml.XmlDocument)">
<summary>
Save nodes to XmlDocument. New Node AdvTree is created and nodes are serialized into it.
</summary>
<param name="document">Reference to an instance of XmlDocument object</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.Save(System.String)">
<summary>
Saves nodes to a file.
</summary>
<param name="fileName">File name to save nodes to.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.Save(System.IO.Stream)">
<summary>
Saves nodes to specified stream.
</summary>
<param name="outStream">Stream to save nodes to.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.Save(System.IO.TextWriter)">
<summary>
Saves nodes to specified writer.
</summary>
<param name="writer">Writer to save nodes to.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.Save(System.Xml.XmlWriter)">
<summary>
Saves nodes to specified writer.
</summary>
<param name="writer">Writer to save nodes to.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.Load(System.String)">
<summary>
Load nodes from file.
</summary>
<param name="fileName">File to load nodes from</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.Load(System.IO.Stream)">
<summary>
Load nodes from stream.
</summary>
<param name="inStream">Stream to load from</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.Load(System.Xml.XmlReader)">
<summary>
Load nodes from reader.
</summary>
<param name="reader">Reader to load from.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.Load(System.IO.TextReader)">
<summary>
Load nodes from reader.
</summary>
<param name="reader">Reader to load from.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.Load(System.Xml.XmlDocument)">
<summary>
Load nodes from an XmlDocument object.
</summary>
<param name="document">Document to load Nodes from.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.Refresh">
<summary>
Forces the control to invalidate its client area and immediately redraw itself
and any child controls. Note however that this method will node do anything if refresh
is suspended as result of call to BeginUpdate method without corresponding EndUpdate
call or if SuspendPaint property is set to true.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.BeginUpdate">
<summary>
Disables any redrawing of the tree control. To maintain performance while items
are added one at a time to the control, call the BeginUpdate method. The BeginUpdate
method prevents the control from painting until the
<see cref="M:DevComponents.AdvTree.AdvTree.EndUpdate">EndUpdate</see> method is called.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.EndUpdate">
<summary>
Enables the redrawing of the tree view. To maintain performance while items are
added one at a time to the control, call the <see cref="M:DevComponents.AdvTree.AdvTree.BeginUpdate">BeginUpdate</see>
method. The BeginUpdate method prevents the control from painting until the EndUpdate
method is called.
</summary>
<remarks>
Call to EndUpdate will enable the layout and painting in tree control. If there
are any pending layouts the EndUpdate will call
<see cref="M:DevComponents.AdvTree.AdvTree.RecalcLayout">RecalcLayout</see> method to perform the layout and it will
repaint the control.
</remarks>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.EndUpdate(System.Boolean)">
<summary>
Enables the redrawing of the tree view. To maintain performance while items are
added one at a time to the control, call the <see cref="M:DevComponents.AdvTree.AdvTree.BeginUpdate">BeginUpdate</see>
method. The BeginUpdate method prevents the control from painting until the EndUpdate
method is called.
</summary>
<param name="performLayoutAndRefresh">Gets or sets whether layout and refresh of control is performed if there are no other update blocks pending.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.GetNodeAt(System.Drawing.Point)">
<summary>
Retrieves the tree node that is at the specified location.
</summary>
<returns>The Node at the specified point, in tree view coordinates.</returns>
<remarks>
<para>You can pass the MouseEventArgs.X and MouseEventArgs.Y coordinates of the
MouseDown event as the x and y parameters.</para>
</remarks>
<param name="p">The Point to evaluate and retrieve the node from.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.GetNodeAt(System.Int32,System.Int32)">
<summary>
Retrieves the tree node that is at the specified location.
</summary>
<returns>The TreeNode at the specified location, in tree view coordinates.</returns>
<remarks>
<para>You can pass the MouseEventArgs.X and MouseEventArgs.Y coordinates of the
MouseDown event as the x and y parameters.</para>
</remarks>
<param name="x">The X position to evaluate and retrieve the node from.</param>
<param name="y">The Y position to evaluate and retrieve the node from.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.GetNodeAt(System.Int32,System.Int32,System.Boolean)">
<summary>
Retrieves the tree node that is at the specified location.
</summary>
<returns>The TreeNode at the specified location, in tree view coordinates.</returns>
<remarks>
<para>You can pass the MouseEventArgs.X and MouseEventArgs.Y coordinates of the
MouseDown event as the x and y parameters.</para>
</remarks>
<param name="x">The X position to evaluate and retrieve the node from.</param>
<param name="y">The Y position to evaluate and retrieve the node from.</param>
<param name="displayedOnly">Whether to enumerated displayed nodes only.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.GetNodeAt(System.Int32)">
<summary>
Retrieves the tree node that is at the specified vertical location.
</summary>
<returns>The TreeNode at the specified location, in tree view coordinates.</returns>
<remarks>
<para>You can pass the MouseEventArgs.Y coordinates of the
MouseDown event as the y parameter.</para>
</remarks>
<param name="y">The Y position to evaluate and retrieve the node from.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.GetCellAt(System.Drawing.Point)">
<summary>
Retrieves the node cell that is at the specified location.
</summary>
<param name="p">The Point to evaluate and retrieve the cell from.</param>
<returns>The Cell at the specified point, in tree view coordinates.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.GetCellAt(System.Int32,System.Int32)">
<summary>
Retrieves the node cell that is at the specified location.
</summary>
<param name="x">The X position to evaluate and retrieve the cell from.</param>
<param name="y">The Y position to evaluate and retrieve the cell from.</param>
<returns>The Cell at the specified point, in tree view coordinates.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.GetCellAt(System.Int32,System.Int32,System.Boolean)">
<summary>
Retrieves the node cell that is at the specified location.
</summary>
<param name="x">The X position to evaluate and retrieve the cell from.</param>
<param name="y">The Y position to evaluate and retrieve the cell from.</param>
<param name="displayedOnly">Whether to enumerated displayed nodes only.</param>
<returns>The Cell at the specified point, in tree view coordinates.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.RecalcLayout">
<summary>Applies any layout changes to the tree control.</summary>
<remarks>
Layout will not be performed if BeginUpdate is called. Any calls to the
RecalcLayout will return without executing requested layout operation.
</remarks>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.RecalcLayoutInternal">
<summary>
Recalculates layout for the tree control. Not affected by BeginUpdate call.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.GetTranslationMatrix">
<summary>
Returns translation matrix for current Zoom. Translation matrix is used to translate internal node coordinates to screen
coordinates when Zoom is not set to 1.
</summary>
<returns>Returns new instance of Matrix object.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.GetLayoutRectangle(System.Drawing.Rectangle)">
<summary>
Returns layout based rectangle from screen rectangle. Layout based rectangle will be different
from screen rectangle when Zoom is not set to 1. This method will translate the screen rectangle enlarged by Zoom
to layout rectangle which does not have Zoom applied.
</summary>
<param name="r">Screen rectangle</param>
<returns>Layout rectangle</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.GetLayoutPosition(System.Windows.Forms.MouseEventArgs)">
<summary>
Returns mouse position which is translated if control Zoom is not equal 1
</summary>
<param name="e">Mouse event arguments</param>
<returns>Returns translated position</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.GetLayoutPosition(System.Drawing.Point)">
<summary>
Returns mouse position which is translated if control Zoom is not equal 1
</summary>
<param name="mousePosition">Mouse position</param>
<returns>Returns translated position</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.GetLayoutPosition(System.Int32,System.Int32)">
<summary>
Returns mouse position which is translated if control Zoom is not equal 1
</summary>
<param name="x">X coordinate</param>
<param name="y">Y coordinate</param>
<returns></returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.GetScreenRectangle(System.Drawing.Rectangle)">
<summary>
Returns rectangle translated to screen rectangle if Zoom is not equal 1.
</summary>
<param name="r">Rectangle to translate</param>
<returns>Screen Rectangle</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.GetScreenSize(System.Drawing.Size)">
<summary>
Returns size translated to screen dimension if Zoom is not equal 1.
</summary>
<param name="s">Size to translate</param>
<returns>Screen Size</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnColumnHeaderMouseUp(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Raises ColumnHeaderMouseUp event.
</summary>
<param name="sender">Reference to ColumnHeader</param>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnColumnHeaderMouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Raises ColumnHeaderMouseDown event.
</summary>
<param name="sender">Reference to ColumnHeader</param>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InvokeBeforeCheck(DevComponents.AdvTree.AdvTreeCellBeforeCheckEventArgs)">
<summary>
Calls <see cref="M:DevComponents.AdvTree.AdvTree.OnAfterCheck(DevComponents.AdvTree.AdvTreeCellEventArgs)">OnBeforeCheck</see> method which fired
<see cref="E:DevComponents.AdvTree.AdvTree.AfterCheck">OnBeforeCheck</see> event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnBeforeCheck(DevComponents.AdvTree.AdvTreeCellBeforeCheckEventArgs)">
<summary>Raises the <see cref="E:DevComponents.AdvTree.AdvTree.BeforeCheck">BeforeCheck</see> event.</summary>
<param name="e">
A <see cref="T:DevComponents.AdvTree.AdvTreeCellBeforeCheckEventArgs">AdvTreeCellBeforeCheckEventArgs</see> that contains the event
data.
</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InvokeAfterCheck(DevComponents.AdvTree.AdvTreeCellEventArgs)">
<summary>
Calls <see cref="M:DevComponents.AdvTree.AdvTree.OnAfterCheck(DevComponents.AdvTree.AdvTreeCellEventArgs)">OnAfterCheck</see> method which fired
<see cref="E:DevComponents.AdvTree.AdvTree.AfterCheck">AfterCheck</see> event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnAfterCheck(DevComponents.AdvTree.AdvTreeCellEventArgs)">
<summary>Raises the <see cref="E:DevComponents.AdvTree.AdvTree.AfterCheck">AfterCheck</see> event.</summary>
<param name="e">
A <see cref="T:DevComponents.AdvTree.AdvTreeCellEventArgs">AdvTreeEventArgs</see> that contains the event
data.
</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InvokeCommandButtonClick(DevComponents.AdvTree.Node,DevComponents.AdvTree.CommandButtonEventArgs)">
<summary>
Invokes CommandButtonClick event.
</summary>
<param name="node">Context node.</param>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnDeserializeNode(DevComponents.AdvTree.SerializeNodeEventArgs)">
<summary>
Invokes DeserializeNode event.
</summary>
<param name="e">Provides more information about the event</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnSerializeNode(DevComponents.AdvTree.SerializeNodeEventArgs)">
<summary>
Invokes SerializeNode event.
</summary>
<param name="e">Provides more information about the event</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnMarkupLinkClick(System.Object,DevComponents.AdvTree.MarkupLinkClickEventArgs)">
<summary>
Invokes the MarkupLinkClick evcent.
</summary>
<param name="sender">Sender of the event, usually instance Cell object.</param>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnNodeDragFeedback(DevComponents.AdvTree.TreeDragFeedbackEventArgs)">
<summary>
Raises the NodeDragFeedback event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.InternalDragOver(System.Windows.Forms.DragEventArgs)">
<summary>
Processes drag over event.
</summary>
<param name="drgevent">Drag event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnNodeDragStart(System.Object,System.EventArgs)">
<summary>
Raises the NodeDragStart event.
</summary>
<param name="sender">Reference to node being dragged.</param>
<param name="e">Event parameters</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnBeforeNodeDragStart(DevComponents.AdvTree.AdvTreeNodeCancelEventArgs)">
<summary>
Raises BeforeNodeDragStart event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.GetDisplayRootNode">
<summary>
Returns the display root node.
</summary>
<returns>Instance of node or null if there is no display root node.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.GetDragNode">
<summary>
Returns reference to the node involved in drag-drop operation if any.
</summary>
<returns>Reference to node object or null if there is no drag node.</returns>
</member>
<!-- Badly formed XML comment ignored for member "M:DevComponents.AdvTree.AdvTree.GetNodeDragInfo" -->
<member name="M:DevComponents.AdvTree.AdvTree.BeginInit">
<summary>
This member supports the .NET Framework infrastructure and is not intended to be
used directly from your code.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.EndInit">
<summary>
This member supports the .NET Framework infrastructure and is not intended to be
used directly from your code.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnFormattingEnabledChanged(System.EventArgs)">
<summary>
Raises FormattingEnabledChanged event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnFormatStringChanged(System.EventArgs)">
<summary>
Raises FormatStringChanged event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnFormatInfoChanged(System.EventArgs)">
<summary>
Raises FormatInfoChanged event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnDataSourceChanged(System.EventArgs)">
<summary>
Raises the DataSourceChanged event.
</summary>
<param name="e">An EventArgs that contains the event data. </param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnDisplayMembersChanged(System.EventArgs)">
<summary>
Raises the DisplayMemberChanged event.
</summary>
<param name="e">An EventArgs that contains the event data. </param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.RefreshItems">
<summary>
When overridden in a derived class, resynchronizes the item data with the contents of the data source.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ClearAndDisposeAllNodes">
<summary>
Disposes all nodes in Nodes collection and clears it.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.SetItemsCore(System.Collections.IList)">
<summary>
When overridden in a derived class, sets the specified array of objects in a collection in the derived class.
</summary>
<param name="items">An array of items.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnDataColumnCreated(DevComponents.DotNetBar.Controls.DataColumnEventArgs)">
<summary>
Raises the DataColumnCreated event.
</summary>
<param name="args">Provides event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnGroupNodeCreated(DevComponents.DotNetBar.Controls.DataNodeEventArgs)">
<summary>
Raises the DataNodeCreated event.
</summary>
<param name="dataNodeEventArgs">Provides event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.CreateNode(DevComponents.AdvTree.NodeCollection,System.Object,System.Int32,System.Collections.Generic.List{System.String})">
<summary>
Creates a new node for the data item.
</summary>
<param name="item">Item to create node for.</param>
<returns>New instance of the node.</returns>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnDataNodeCreated(DevComponents.DotNetBar.Controls.DataNodeEventArgs)">
<summary>
Raises the DataNodeCreated event.
</summary>
<param name="dataNodeEventArgs">Provides event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.SetItemCore(System.Int32,System.Object)">
<summary>
When overridden in a derived class, sets the object with the specified index in the derived class.
</summary>
<param name="index">The array index of the object.</param>
<param name="value">The object.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnParentFieldNamesChanged">
<summary>
Called when ParentFieldName property has changed.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnGroupingMembersChanged">
<summary>
Called when GroupingMembers property has changed.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnFormat(DevComponents.DotNetBar.Controls.TreeConvertEventArgs)">
<summary>
Raises the Format event.
</summary>
<param name="e">Event parameters</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.ClearDescriptorsCache">
<summary>
Clears internal property descriptors cache when data-binding is used. In most cases it is not needed that you call this method. Do so only if instructed by DevComponents support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnSelectedIndexChanged(System.EventArgs)">
<summary>
Raises the SelectedIndexChanged event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnValueMemberChanged(System.EventArgs)">
<summary>
Raises the ValueMemberChanged event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnSelectedValueChanged(System.EventArgs)">
<summary>
Raises the SelectedValueChanged event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.AdvTree.OnTouchEnabledChanged(System.Boolean,System.Boolean)">
<summary>
Called when TouchEnabled property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.PrepareCellEditorControl">
<summary>
Occurs just before cell editor is released for editing. It allows you to customize any properties on edit control.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.ColumnHeaderMouseDown">
<summary>
Occurs when mouse button is pressed over the column header.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.ColumnHeaderMouseUp">
<summary>
Occurs when mouse button is released over the column header.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.AfterCheck">
<summary>
Occurs after the cell check box is checked.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.BeforeCheck">
<summary>
Occurs before the cell check box is checked and provides opportunity to cancel the event.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.AfterCollapse">
<summary>
Occurs after the tree node is collapsed.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.BeforeCollapse">
<summary>
Occurs before the tree node is collapsed.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.AfterExpand">
<summary>
Occurs after the tree node is expanded.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.BeforeExpand">
<summary>
Occurs before the tree node is expanded.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.CommandButtonClick">
<summary>
Occurs when command button on node is clicked.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.BeforeCellEdit">
<summary>
Occurs before cell is edited. The order of the cell editing events is as follows:
BeforeCellEdit, CellEditEnding, AfterCellEdit, AfterCellEditComplete.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.CellEditEnding">
<summary>
Occurs just before the cell editing is ended. The text box for editing is still visible and you can cancel
the exit out of editing mode at this point. The order of the cell editing events is as follows:
BeforeCellEdit, CellEditEnding, AfterCellEdit, AfterCellEditComplete.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.AfterCellEdit">
<summary>
Occurs after cell editing has ended and before the new text entered by the user is assigned to the cell. You can abort the edits in this event.
The order of the cell editing events is as follows:
BeforeCellEdit, CellEditEnding, AfterCellEdit, AfterCellEditComplete.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.AfterCellEditComplete">
<summary>
Occurs after cell editing has been completed. This event cannot be canceled.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.SelectionChanged">
<summary>
Occurs after node selection has changed.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.BeforeNodeSelect">
<summary>
Occurs before Node has been selected by user or through the SelectedNode property. Event can be cancelled.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.AfterNodeSelect">
<summary>
Occurs after node has been selected by user or through the SelectedNode property.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.AfterNodeDeselect">
<summary>
Occurs after node has been deselected by user or through the SelectedNode or SelectedNodes properties.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.BeforeNodeRemove">
<summary>
Occurs before node has been removed from its parent.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.AfterNodeRemove">
<summary>
Occurs after node has been removed from its parent.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.BeforeNodeInsert">
<summary>
Occurs before node is inserted or added as child node to parent node.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.AfterNodeInsert">
<summary>
Occurs after node is inserted or added as child node.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.NodeDragStart">
<summary>
Occurs when node drag &amp; drop operation is initiated.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.BeforeNodeDragStart">
<summary>
Occurs before internal node drag &amp; drop support is initiated and allows you to cancel the drag &amp; drop.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.BeforeNodeDrop">
<summary>
Occurs before Drag-Drop of a node is completed and gives you information about new parent of the node that is being dragged
as well as opportunity to cancel the operation.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.NodeDragFeedback">
<summary>
Occurs while node is being dragged. You can handle this event to disable the drop at specific nodes or to even change the
drop location for the node by modifying event arguments.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.AfterNodeDrop">
<summary>
Occurs after Drag-Drop of a node is completed. This operation cannot be cancelled.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.NodeMouseDown">
<summary>
Occurs when the mouse pointer is over the node and a mouse button is pressed.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.NodeMouseUp">
<summary>
Occurs when the mouse pointer is over the node and a mouse button is released.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.NodeMouseMove">
<summary>
Occurs when the mouse pointer is moved over the node.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.NodeMouseEnter">
<summary>
Occurs when the mouse enters the node.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.NodeMouseLeave">
<summary>
Occurs when the mouse leaves the node.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.NodeMouseHover">
<summary>
Occurs when the mouse hovers over the node.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.NodeClick">
<summary>
Occurs when the node is clicked with left mouse button. If you need to know more information like if another mouse button is clicked etc. use
NodeMouseDown event.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.NodeDoubleClick">
<summary>
Occurs when the node is double-clicked.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.SerializeNode">
<summary>
Occurs after an node has been serialized to XmlElement and provides you with opportunity to add any custom data
to serialized XML. This allows you to serialize any data associated with the node and load it back up in DeserializeNode event.
</summary>
<remarks>
<para>To serialize custom data to XML definition control creates handle this event and use CustomXmlElement
property on SerializeNodeEventArgs to add new nodes or set attributes with custom data you want saved.</para>
</remarks>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.DeserializeNode">
<summary>
Occurs after an node has been de-serialized (loaded) from XmlElement and provides you with opportunity to load any custom data
you have serialized during SerializeItem event.
</summary>
<remarks>
<para>To de-serialize custom data from XML definition handle this event and use CustomXmlElement
property on SerializeItemEventArgs to retrieve any data you saved in SerializeNode event.</para>
</remarks>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.MarkupLinkClick">
<summary>
Occurs when hyperlink in text-markup is clicked.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.ProvideCustomCellEditor">
<summary>
Occurs when cell with custom editor type is about to be edited by user. Handle this event to provide
custom editors.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.DataSourceChanged">
<summary>
Occurs when the DataSource changes.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.DisplayMembersChanged">
<summary>
Occurs when the DisplayMembers property changes.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.Format">
<summary>
Occurs when the control is bound to a data value that need to be converted.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.FormattingEnabledChanged">
<summary>
Occurs when FormattingEnabled property changes.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.FormatStringChanged">
<summary>
Occurs when FormatString property changes.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.FormatInfoChanged">
<summary>
Occurs when FormatInfo property has changed.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.DataNodeCreated">
<summary>
Occurs when a Node for an data-bound object item has been created and provides you with opportunity to modify the node.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.GroupNodeCreated">
<summary>
Occurs when a group Node is created as result of GroupingMembers property setting and provides you with opportunity to modify the node.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.ValueMemberChanged">
<summary>
Occurs when value of ValueMember property has changed.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.SelectedValueChanged">
<summary>
Occurs when value of SelectedValue property has changed.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.SelectedIndexChanged">
<summary>
Occurs when value of SelectedIndex property has changed.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.DataColumnCreated">
<summary>
Occurs when ColumnHeader is automatically created by control as result of data binding and provides you with opportunity to modify it.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.ColumnResized">
<summary>
Occurs after column has been resized by end-user.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.ColumnResizing">
<summary>
Occurs while column is being resized by end-user.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.CellSelected">
<summary>
Occurs after cell has been selected.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.CellUnselected">
<summary>
Occurs after cell has been unselected.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.ColumnMoved">
<summary>
Occurs after users has moved the column.
</summary>
</member>
<member name="E:DevComponents.AdvTree.AdvTree.Render">
<summary>
Occurs while tree control is being rendered.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.DisposeNodes">
<summary>
Indicates whether nodes are disposed when control is disposed.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.DeepSort">
<summary>
Indicates whether sorting of node collection sorts child nodes as well. Default value is false.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ShowToolTips">
<summary>
Gets or sets whether tooltips are shown when mouse is over the cell when Tooltip property is set.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ColumnHeaderControl">
<summary>
Gets the column header control which renderes the columns.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ScrollBarAppearance">
<summary>
Gets or sets the scroll-bar visual style.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.TileSize">
<summary>
Gets or sets the proposed size of the tile in Tile view. The size of the tile might be larger than specified if Style assigned to node, cells adds padding, margins etc. or if Node.Image or font is greater than width or height specified here.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.HideSelection">
<summary>
Gets or sets a value indicating whether the selected tree node remains highlighted even when the tree control has lost the focus.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.IsKeyboardFocusWithin">
<summary>
Gets whether keyboard focus is within the control.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.EndCellEditingOnLostFocus">
<summary>
Gets or sets whether cell editing is completed when control loses input focus. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ContextMenuBar">
<summary>
Gets or sets the reference to DotNetBar ContextMenuBar component which is used to provide context menu for nodes. This property
is automatically maintained by AdvTree.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.Zoom">
<summary>
Gets or sets zoom factor for the control. Default value is 1. To zoom display of the nodes for 20% set zoom factor to 1.2
To zoom view 2 times set zoom factor to 2. Value must be greater than 0. Zoom is supported only when non-column tree setup is used.
Please note that Zoom functionality is designed only for very special use cases and only for
plain tree control setup which does not use editing, alternating row colors, drag &amp; drop or any other
advanced functionality.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.TreeSize">
<summary>
Gets the size of the tree.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.NodeRenderer">
<summary>
Gets or sets custom node renderer. You can set this property to your custom renderer. When set the RenderMode should be set to Custom to enable
your custom renderer. To choose one of the system renderer use RenderMode property. Default value is null.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.RenderMode">
<summary>
Gets or sets the render mode used to render all nodes. Default value is eNodeRenderMode.Default which indicates that system default renderer is used.
Note that if you specify custom renderer you need to set AdvTree.NodeRenderer property to your custom renderer.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.BackgroundStyle">
<summary>
Gets the style for the background of the control.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CellHorizontalSpacing">
<summary>
Gets or sets internal layout cell horizontal spacing. This property is for advanced internal use and you should not set it.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.DragDropEnabled">
<summary>
Gets or sets whether automatic drag and drop is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting the tree.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.PathSeparator">
<summary>
Gets or sets the delimiter string that the tree node path uses.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.AllowUserToResizeColumns">
<summary>
Gets or sets whether user can resize the columns. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.AllowUserToReorderColumns">
<summary>
Gets or sets whether user can reorder the columns. Default value is false.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.Columns">
<summary>
Gets the collection of column headers that appear in the tree.
</summary>
<remarks>
<para>By default there are no column headers defined. In that case tree control
functions as regular tree control where text has unrestricted width.</para>
<para>If you want to restrict the horizontal width of the text but not display
column header you can create one column and set its width to the width desired and
set its Visible property to false.</para>
</remarks>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ColumnsVisible">
<summary>
Gets or sets whether column headers are visible if they are defined through Columns collection. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.Styles">
<summary>
Gets the collection of all style elements created for the tree.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CellStyleDefault">
<summary>
Gets or sets default style for the node cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CellStyleMouseDown">
<summary>
Gets or sets default style for the node cell when mouse is pressed.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CellStyleMouseOver">
<summary>
Gets or sets default style for the node cell when mouse is over the cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CellStyleSelected">
<summary>
Gets or sets default style for the node cell when cell is selected.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CellStyleDisabled">
<summary>
Gets or sets default style for the node cell when cell is disabled.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.NodeStyleExpanded">
<summary>
Gets or sets default style for the node when node is expanded.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.NodeStyle">
<summary>
Gets or sets default style for all nodes where style is not specified
explicity.
</summary>
<value>
Name of the style assigned or null value indicating that no style is used.
Default value is null.
</value>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.NodeStyleSelected">
<summary>
Gets or sets style for the node when node is selected. Note that this style is applied to the default node style.
</summary>
<value>
Reference to the style assigned or null value indicating that no style is used.
Default value is null.
</value>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.NodeStyleMouseOver">
<summary>
Gets or sets style for the node when mouse is over node. Note that this style is applied to the default node style.
</summary>
<value>
Reference to the style assigned or null value indicating that no style is used.
Default value is null.
</value>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.Nodes">
<summary>
Gets the collection of tree nodes that are assigned to the tree view control.
</summary>
<value>
A <see cref="T:DevComponents.AdvTree.NodeCollection">NodeCollection</see> that represents the tree nodes
assigned to the tree control.
</value>
<remarks>
<para>The Nodes property holds a collection of Node objects, each of which has a
Nodes property that can contain its own NodeCollection.</para>
</remarks>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.NodeSpacing">
<summary>
Gets or sets the vertical spacing between nodes in pixels. Default value is 3.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.NodeHorizontalSpacing">
<summary>
Gets or sets the horizontal spacing between nodes in pixels when control is in Tile layout. Default value is 4.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.GridRowLines">
<summary>
Gets or sets whether horizontal grid lines between each row are displayed. Default value is false.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.GridColumnLineResizeEnabled">
<summary>
Gets or sets whether column can be resized when mouse is over the column grid line and outside of the column header.
GridColumnLines must be set to true to make column lines visible.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.GridColumnLines">
<summary>
Gets or sets whether grid lines are displayed when columns are defined. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.GridLinesColor">
<summary>
Gets or sets the grid lines color.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.AlternateRowColor">
<summary>
Gets or sets the alternate row color applied to every other row. Default value is Color.Empty.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.NodesColumnsBackgroundStyle">
<summary>
Gets or sets the background style for the child nodes columns. Background style defines the appearance of the column header background.
</summary>
<value>
Reference to the style assigned to the column header.
</value>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ColumnsBackgroundStyle">
<summary>
Gets or sets the background style for the columns. Background style defines the appearance of the column header background.
</summary>
<value>
Reference to the style assigned to the column header.
</value>
<seealso cref="P:DevComponents.AdvTree.AdvTree.ColumnStyleNormal">ColumnStyleNormal Property</seealso>
<seealso cref="P:DevComponents.AdvTree.AdvTree.ColumnStyleMouseDown">ColumnStyleMouseDown Property</seealso>
<seealso cref="P:DevComponents.AdvTree.AdvTree.ColumnStyleMouseOver">ColumnStyleMouseOver Property</seealso>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ColumnStyleNormal">
<summary>
Gets or sets the default style class assigned to the column headers.
</summary>
<value>
Reference to the style assigned to the column header.
</value>
<remarks>
When style is not set on ColumnHeader objects then style setting from this property is used instead.
</remarks>
<seealso cref="P:DevComponents.AdvTree.AdvTree.ColumnStyleMouseDown">ColumnStyleMouseDown Property</seealso>
<seealso cref="P:DevComponents.AdvTree.AdvTree.ColumnStyleMouseOver">ColumnStyleMouseOver Property</seealso>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ColumnStyleMouseDown">
<summary>
Gets or sets default style class assigned to the column which is applied when mouse
button is pressed over the header.
</summary>
<value>
Name of the style assigned to the column.
</value>
<remarks>
When style is not set on ColumnHeader objects then style setting from this property is used instead.
</remarks>
<seealso cref="P:DevComponents.AdvTree.AdvTree.ColumnStyleNormal">ColumnStyleNormal Property</seealso>
<seealso cref="P:DevComponents.AdvTree.AdvTree.ColumnStyleMouseOver">ColumnStyleMouseOver Property</seealso>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ColumnStyleMouseOver">
<summary>
Gets or sets default style class assigned to the column which is applied when mouse is
over the column.
</summary>
<value>
Name of the style assigned to the column.
</value>
<remarks>
When style is not set on ColumnHeader objects then style setting from this property is used instead.
</remarks>
<seealso cref="P:DevComponents.AdvTree.AdvTree.ColumnStyleNormal">ColumnStyleNormal Property</seealso>
<seealso cref="P:DevComponents.AdvTree.AdvTree.ColumnStyleMouseDown">ColumnStyleMouseDown Property</seealso>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.Headers">
<summary>
Gets collection that holds definition of column headers associated with nodes.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.SelectedNode">
<summary>
Gets or sets the tree node that is currently selected in the tree control.
</summary>
<remarks>
<para>If no <see cref="T:DevComponents.AdvTree.Node">Node</see> is currently selected, the
<b>SelectedNode</b> property is a null reference (<b>Nothing</b> in Visual
Basic).</para>
</remarks>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.SelectedNodes">
<summary>
Gets or sets the collection of currently selected nodes in tree control.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.MultiSelect">
<summary>
Gets or sets whether multi-node selection is enabled. Default value is false. When
multi-selection is enabled use SelectedNodes property to retrive collection of selected nodes.
Use MultiSelectRule property to change the multi-node selection rule.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.MultiSelectRule">
<summary>
Gets or sets the rule that governs the multiple node selection. Default value indicates that only nodes
belonging to same parent can be multi-selected.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.NodeLayout">
<summary>
Returns reference to node layout object.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.NodeDisplay">
<summary>
Returns reference to node display object.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.IsUpdateSuspended">
<summary>
Gets whether layout is suspended for tree control. Layout is suspended after
call to <see cref="M:DevComponents.AdvTree.AdvTree.BeginUpdate">BeginUpdate</see> method and it is resumed after the
call to <see cref="M:DevComponents.AdvTree.AdvTree.EndUpdate">EndUpdate</see> method.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.IsLayoutPending">
<summary>
Gets whether control has layout operation pending on next paint or update.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.SuspendPaint">
<summary>
Gets or sets whether paint operations are suspended for the control. You should use this method
if you need the RecalcLayout operations to proceed but you want to stop painting of the control.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ImageList">
<summary>
Gets or sets the ImageList that contains the Image objects used by the tree nodes.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ImageIndex">
<summary>
Gets or sets the image-list index value of the default image that is displayed by the tree nodes.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CheckBoxImageChecked">
<summary>
Gets or sets the custom image that is displayed instead default check box representation when check box in cell is checked.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CheckBoxImageUnChecked">
<summary>
Gets or sets the custom image that is displayed instead default check box representation when check box in cell is unchecked.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CheckBoxImageIndeterminate">
<summary>
Gets or sets the custom image that is displayed instead default check box representation when check box in cell is in indeterminate state.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.NodesConnector">
<summary>
Gets or sets the NodeConnector object that describes the type of the connector used for
displaying connection between nested nodes. RootConnector property specifies the connector
between root node and it's imidate nested nodes. This property specifies connector for all other nested levels.
Default value is null.
</summary>
<remarks>
You can use
<a href="AdvTree~DevComponents.AdvTree.Node~ParentConnector.html">Node.ParentConnector</a>
property to specify per node connectors.
</remarks>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.SelectedPathConnector">
<summary>
Gets or sets the NodeConnector object that describes the type of the connector used for
displaying connection between linked nodes. Connector specified here is used to display the connection
between nodes that are on the path to the selected node. When set you can use it to visually indicate the path to the currently selected node.
Default value is null.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CellLayout">
<summary>
Gets or sets the layout of the cells inside the node. Default value is Horizontal layout which
means that cell are positioned horizontally next to each other.
</summary>
<remarks>
You can specify cell layout on each node by using
<a href="AdvTree~DevComponents.AdvTree.Node~CellLayout.html">Node.CellLayout</a>
property.
</remarks>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CellPartLayout">
<summary>
Gets or sets the layout of the cells inside the node. Default value is Horizontal layout which
means that cell are positioned horizontally next to each other.
</summary>
<remarks>
You can specify cell layout on each node by using
<a href="AdvTree~DevComponents.AdvTree.Node~CellLayout.html">Node.CellLayout</a>
property.
</remarks>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ColorSchemeStyle">
<summary>
Gets or sets the color scheme style. Color scheme provides predefined colors based on popular visual styles.
We recommend that you use "SchemePart" color settings since they maintain consistant look that is
based on target system color scheme setting.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ColorScheme">
<summary>
Gets the reference to the color scheme object.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CenterContent">
<summary>
Gets or sets whether the content of the control is centered within the bounds of control. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.SelectionPerCell">
<summary>
Gets or sets whether per cell selection mode is enabled. In cell selection mode the selection box is drawn over selected cell only
instead of all cells in the node.
Default value is false.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.SelectionFocusAware">
<summary>
Gets or sets whether selection appearance changes depending on whether control has input focus. Default value is true. Setting this value to false causes selection box to be rendered as if control has focus all the time.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.SelectionBoxStyle">
<summary>
Gets or sets the node selection box style.
</summary>
<seealso cref="P:DevComponents.AdvTree.AdvTree.SelectionBox">SelectionBox Property</seealso>
<seealso cref="P:DevComponents.AdvTree.AdvTree.SelectionBoxSize">SelectionBoxSize Property</seealso>
<seealso cref="!:SelectionBoxFillColor">SelectionBoxFillColor Property</seealso>
<seealso cref="!:SelectionBoxBorderColor">SelectionBoxBorderColor Property</seealso>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.SelectionBox">
<summary>
Gets or sets the value that indicates whether selection box is drawn around the
selected node. Default value is true. Another way to provide the visual indication that
node is selected is by using selected state style properties like
<a href="AdvTree~DevComponents.AdvTree.AdvTree~NodeStyleSelected.html">NodeStyleSelected</a>
and
<a href="AdvTree~DevComponents.AdvTree.AdvTree~CellStyleSelected.html">CellStyleSelected</a>.
</summary>
<seealso cref="P:DevComponents.AdvTree.AdvTree.CellStyleSelected">CellStyleSelected Property</seealso>
<seealso cref="P:DevComponents.AdvTree.AdvTree.NodeStyleSelected">NodeStyleSelected Property</seealso>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.SelectionBoxSize">
<summary>
Gets or sets the size/thickness in pixel of the selection box drawn around selected
node.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.FullRowSelect">
<summary>
Gets or sets whether node is selected when mouse is pressed anywhere within node vertical bounds. Default value is true.
</summary>
<remarks>
When set to false the node is selected only when mouse is pressed over the node content.
</remarks>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ExpandWidth">
<summary>
Gets or sets the total node expand area width in pixels. The expand button with ExpandButtonSize is fitted into this area. Default value is 24.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ExpandButtonSize">
<summary>
Gets or sets the size of the expand button that is used to expand/collapse node. Default value is 8,8.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ExpandBorderColor">
<summary>
Gets or sets expand button border color. Note that setting ExpandBorderColorSchemePart property will override the value that you set here.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ExpandBorderColorSchemePart">
<summary>
Gets or sets expand button color scheme border color. Setting
this property overrides the setting of the corresponding ExpandBorderColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.AdvTree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through ExpandBorderColor property.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ExpandBackColor">
<summary>
Gets or sets expand button back color. Note that setting ExpandBackColorSchemePart property will override the value that you set here.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ExpandBackColorSchemePart">
<summary>
Gets or sets expand button color scheme back color. Setting
this property overrides the setting of the corresponding ExpandBackColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.AdvTree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through ExpandBackColor property.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ExpandBackColor2">
<summary>
Gets or sets expand button target gradientback color. Note that setting ExpandBackColor2SchemePart property will override the value that you set here.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ExpandBackColor2SchemePart">
<summary>
Gets or sets expand button color scheme target gradient back color. Setting
this property overrides the setting of the corresponding ExpandBackColor2 property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.AdvTree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through ExpandBackColor2 property.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ExpandLineColor">
<summary>
Gets or sets expand button line color. Note that setting ExpandLineColorSchemePart property will override the value that you set here.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ExpandLineColorSchemePart">
<summary>
Gets or sets expand button color scheme line color. Setting
this property overrides the setting of the corresponding ExpandLineColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.AdvTree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through ExpandLineColor property.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ExpandBackColorGradientAngle">
<summary>
Gets or sets the expand button background gradient angle.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ExpandImage">
<summary>
Gets or sets the expand button image which is used to indicate that node will be expanded. To use images as expand buttons you also need to set ExpandButtonType=eExpandButtonType.Image.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ExpandImageCollapse">
<summary>
Gets or sets the expand button image which is used to indicate that node will be collapsed. To use images as expand buttons you also need to set ExpandButtonType=eExpandButtonType.Image.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ExpandButtonType">
<summary>
Gets or sets the type of the expand button used to expand/collapse nodes.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.DisplayRootNode">
<summary>
Gets or sets the display root node. Setting this property allows you to use any
Node as root display node. Default value is Null which means that first node from
AdvTree.Nodes collection is used as display root node.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CommandWidth">
<summary>
Gets or sets the width of the command button. Default value is 10 pixels.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CommandBackColor">
<summary>
Gets or sets command button back color. Note that setting CommandBackColorSchemePart property will override the value that you set here.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CommandBackColorSchemePart">
<summary>
Gets or sets command button color scheme back color. Setting
this property overrides the setting of the corresponding CommandBackColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.AdvTree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through CommandBackColor property.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CommandBackColor2">
<summary>
Gets or sets command button target gradient back color. Note that setting CommandBackColor2SchemePart property will override the value that you set here.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CommandBackColor2SchemePart">
<summary>
Gets or sets command button color scheme target gradient back color. Setting
this property overrides the setting of the corresponding CommandBackColor2 property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.AdvTree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through CommandBackColor2 property.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CommandForeColor">
<summary>
Gets or sets command button foreground color. Note that setting CommandForeColorSchemePart property will override the value that you set here.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CommandForeColorSchemePart">
<summary>
Gets or sets command button color scheme foreground color. Setting
this property overrides the setting of the corresponding CommandForeColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.AdvTree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through CommandForeColor property.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CommandBackColorGradientAngle">
<summary>
Gets or sets the command button background gradient angle.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CommandMouseOverBackColor">
<summary>
Gets or sets command button mouse over back color. Note that setting CommandMouseOverBackColorSchemePart property will override the value that you set here.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CommandMouseOverBackColorSchemePart">
<summary>
Gets or sets command button color scheme mouse over back color. Setting
this property overrides the setting of the corresponding CommandMouseOverBackColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.AdvTree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through CommandMouseOverBackColor property.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CommandMouseOverBackColor2">
<summary>
Gets or sets command button mouse over target gradient back color. Note that setting CommandMouseOverBackColor2SchemePart property will override the value that you set here.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CommandMouseOverBackColor2SchemePart">
<summary>
Gets or sets command button mouse over color scheme target gradient back color. Setting
this property overrides the setting of the corresponding CommandMouseOverBackColor2 property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.AdvTree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through CommandMouseOverBackColor2 property.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CommandMouseOverForeColor">
<summary>
Gets or sets command button mouse over foreground color. Note that setting CommandMouseOverForeColorSchemePart property will override the value that you set here.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CommandMouseOverForeColorSchemePart">
<summary>
Gets or sets command button mouse over color scheme foreground color. Setting
this property overrides the setting of the corresponding CommandMouseOverForeColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.AdvTree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through CommandMouseOverForeColor property.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CommandMouseOverBackColorGradientAngle">
<summary>
Gets or sets the command button mouse over background gradient angle.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CellEdit">
<summary>
Gets or sets a value indicating whether the label text of the node cells can be edited. Default value is false.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.IsCellEditing">
<summary>
Returns whether cell editing is in progress.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.KeyboardSearchEnabled">
<summary>
Gets or sets whether keyboard incremental search through Node.Text property is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.SearchBufferExpireTimeout">
<summary>
Gets or sets the keyboard search buffer expiration timeout. Default value is 1000 which indicates that
key pressed within 1 second will add to the search buffer and control will be searched for node text
that begins with resulting string. Setting this value to 0 will disable the search buffer.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.SearchBufferAutoClearNotFound">
<summary>
Indicates whether search buffer is auto-cleared regardless of the expiration timeout if node is not found using current buffer content.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.DoubleClickTogglesNode">
<summary>
Gets or sets whether double-clicking the node will toggle its expanded state. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.HotTracking">
<summary>
Gets or sets whether node is highlighted when mouse enters the node. Default value is false.
</summary>
<remarks>
There are two ways to enable the node hot-tracking. You can set the HotTracking property to true in which case the
mouse tracking is enabled using system colors specified in TreeColorTable. You can also define the NodeStyleMouseOver
style which gets applied to the node when mouse is over the node.
</remarks>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.IsMovingColumn">
<summary>
Gets whether tree is in process of moving the column in response to user finishing the column move action.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.View">
<summary>
Gets or sets how control positions the items. Default value is standard TreeView layout.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.TileGroupLineColor">
<summary>
Gets or sets the color of the group divider line when in tile view.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.MouseOverNode">
<summary>
Returns the reference to the node mouse is currently over or null (Nothing) if mouse is not over any node in tree.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.DefaultCellCursor">
<summary>
Specifies the mouse cursor displayed when mouse is over the cell. Default value
is null which means that default control cursor is used.
</summary>
<remarks>
To specify cursor for each individual cell use
<a href="AdvTree~DevComponents.AdvTree.Cell~Cursor.html">Cell.Cursor</a> property.
</remarks>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.HostedControlCells">
<summary>
Gets reference to array of Cell objects that have HostedControl property set.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ClipHostedControls">
<summary>
Gets or sets whether hosted controls are clipped so they don't overlap the control borders. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.InvalidControlBorder">
<summary>
Gets or sets whether control border needs to be updated by calling UpdateControlBorderPanel()
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.VScrollBar">
<summary>
Gets the reference to internal vertical scroll-bar control if one is created or null if no scrollbar is visible.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.VScrollBarVisible">
<summary>
Gets or sets whether Vertical Scroll-bar is shown if needed because content of the control exceeds available height. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.HScrollBarVisible">
<summary>
Gets or sets whether Horizontal Scroll-bar is shown if needed because content of the control exceeds available width. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.HScrollBar">
<summary>
Gets the reference to internal horizontal scroll-bar control if one is created or null if no scrollbar is visible.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.AutoScroll">
<summary>
Gets or sets a value indicating whether the tree control enables the user to scroll to any nodes placed outside of its visible boundaries.
This property is managed internally by AdvTree control and should not be modified.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.AutoScrollMinSize">
<summary>
Gets or sets the minimum size of the auto-scroll. Returns a Size that represents the minimum height and width of the scrolling area in pixels.
This property is managed internally by AdvTree control and should not be modified.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.AutoScrollPosition">
<summary>
Gets or sets the location of the auto-scroll position.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.CheckedNodes">
<summary>
Gets the list of all checked nodes in tree including child nodes.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.DropAsChildOffset">
<summary>
Gets or sets the offset in pixels from node's X position that is used during drag &amp; drop operation to indicate that
dragged node is dropped as child node of the parent's node.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.DragDropNodeCopyEnabled">
<summary>
Gets or sets whether drag &amp; drop internal implementation allows the copying of the node being dragged when CTRL key is pressed.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.AllowExternalDrop">
<summary>
Gets or sets whether control accepts the dragged nodes from other AdvTree controls. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.Indent">
<summary>
Gets or sets the distance to indent each of the child tree node levels. Default value is 16.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.PaintDragDropInsertMarker">
<summary>
Indicates whether drop marker is displayed during drag-drop operation.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.IsDragDropInProgress">
<summary>
Gets or sets whether drag and drop operation is in progress. This member supports
the AdvTree infrastructure and is not intended to be used directly from your
code.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.MultiNodeDragCountVisible">
<summary>
Gets or sets whether number of nodes being dragged is displayed on drag node preview. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.MultiNodeDragDropAllowed">
<summary>
Gets or sets whether multiple nodes drag &amp; drop is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ResetAutoScrollPositionOnClearedNodes">
<summary>
Indicates whether AutoScrollPosition is reset to 0,0 when all nodes are cleared from the tree. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.DisplayMembers">
<summary>
Gets or sets the comma separated list of property or column names to display on popup tree control.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.DataSource">
<summary>
Gets or sets the data source for the ComboTree. Expected is an object that implements the IList or IListSource interfaces,
such as a DataSet or an Array. The default is null.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.FormattingEnabled">
<summary>
Gets or sets a value indicating whether formatting is applied to the DisplayMembers property of the control.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.FormatString">
<summary>
Gets or sets the format-specifier characters that indicate how a value is to be displayed.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.FormatInfo">
<summary>
Gets or sets the IFormatProvider that provides custom formatting behavior.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ParentFieldNames">
<summary>
Gets or sets comma separated field or property names that holds the value that is used to identify node and parent node. Format expected is: FieldNodeId,ParentNodeFieldId. For example if your table represents departments, you have DepartmentId field which uniquely identifies a department and ParentDepartmentId field which identifies parent of the department if any you would set this property to DepartmentId,ParentDepartmentId.
Note that you can only use ParentFieldNames or GroupingMembers property but not both. If both are set ParentFieldName take precedence.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.GroupingMembers">
<summary>
Gets or sets comma separated list of field or property names that are used for grouping when data-binding is used. Note that you can only use ParentFieldName or GroupingMembers property but not both. If both are set ParentFieldName take precedence.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.GroupNodeStyle">
<summary>
Gets or sets style for automatically created group nodes when data-binding is used and GroupingMembers property is set.
</summary>
<value>
Name of the style assigned or null value indicating that no style is used.
Default value is null.
</value>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.SelectedIndex">
<summary>
Gets or sets the index specifying the currently selected item.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.ValueMember">
<summary>
Gets or sets the property to use as the actual value for the items in the control. Applies to data-binding scenarios. SelectedValue property will return the value of selected node as indicated by this property.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.SelectedValue">
<summary>
Gets or sets the value of the member property specified by the ValueMember property.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.EnableDataPositionChange">
<summary>
Indicates whether control changes the CurrencyManager.DataPosition when selected node is changed during data binding.
Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.AdvTree.TouchEnabled">
<summary>
Indicates whether touch support for scrolling is enabled.
</summary>
</member>
<member name="T:DevComponents.AdvTree.AdvTreeSettings">
<summary>
Static class that holds AdvTree settings that are not commonly used.
</summary>
</member>
<member name="F:DevComponents.AdvTree.AdvTreeSettings.SelectedScrollIntoViewHorizontal">
<summary>
Gets or sets whether tree control is scrolled horizontally so selected node is brought into the view. Default value is false.
You can set this property to false to disable the horizontal scrolling of tree control when selected node has changed.
</summary>
</member>
<member name="F:DevComponents.AdvTree.AdvTreeSettings.UseSortAlphaComparer">
<summary>
Gets or sets whether AdvTree node comparer that provides column sorting uses standard text comparer instead of default
hybrid alpha-numeric comparer. Default value is false.
</summary>
</member>
<member name="T:DevComponents.AdvTree.ICellEditControl">
<summary>
Defines an interface for cell edit control that allows custom controls to be used as cell editors. AdvTree control
expects that editing control inherits from System.Windows.Forms.Control.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ICellEditControl.BeginEdit">
<summary>
Called when edit operation is started. The AdvTree control will first set CurrentValue, then call BeginEdit and will call EditComplete once
editing is completed.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ICellEditControl.EndEdit">
<summary>
Called when edit operation is completed.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ICellEditControl.CurrentValue">
<summary>
Gets or sets current edit value.
</summary>
</member>
<member name="E:DevComponents.AdvTree.ICellEditControl.EditComplete">
<summary>
AdvTree control subscribes to this event to be notified when edit operation is completed. For example when Enter key is
pressed the edit control might raise this event to indicate the completion of editing operation.
</summary>
</member>
<member name="E:DevComponents.AdvTree.ICellEditControl.CancelEdit">
<summary>
AdvTree control subscribes to this event to be notified that user has cancelled the editing. For example when Escape key is
pressed the edit control might raise this event to indicate that editing has been cancelled.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ICellEditControl.EditWordWrap">
<summary>
Gets or sets whether cell requests the word-wrap based on the current cell style. If your editor does not support
word-wrap functionality this can be ignored.
</summary>
</member>
<member name="T:DevComponents.AdvTree.PrepareCellEditorEventHandler">
<summary>
Defines delegate for PrepareCellEditor event.
</summary>
<param name="sender"></param>
<param name="ea"></param>
</member>
<member name="T:DevComponents.AdvTree.PrepareCellEditorEventArgs">
<summary>
Event arguments for PrepareCellEditor event.
</summary>
</member>
<member name="F:DevComponents.AdvTree.PrepareCellEditorEventArgs.EditedCell">
<summary>
Gets reference to the cell being edited.
</summary>
</member>
<member name="F:DevComponents.AdvTree.PrepareCellEditorEventArgs.Editor">
<summary>
Gets reference to the cell editor control.
</summary>
</member>
<member name="M:DevComponents.AdvTree.PrepareCellEditorEventArgs.#ctor(DevComponents.AdvTree.Cell,DevComponents.AdvTree.ICellEditControl)">
<summary>
Initializes a new instance of the PrepareCellEditorEventArgs class.
</summary>
<param name="editedCell"></param>
<param name="editor"></param>
</member>
<member name="T:DevComponents.AdvTree.AdvTreeRenderEventHandler">
<summary>
Defines delegate for PrepareCellEditor event.
</summary>
<param name="sender"></param>
<param name="ea"></param>
</member>
<member name="T:DevComponents.AdvTree.AdvTreeRenderEventArgs">
<summary>
Event arguments for AdvTree.Render event.
</summary>
</member>
<member name="F:DevComponents.AdvTree.AdvTreeRenderEventArgs.RenderType">
<summary>
Indicates the rendering operation being performed.
</summary>
</member>
<member name="F:DevComponents.AdvTree.AdvTreeRenderEventArgs.Graphics">
<summary>
Indicates graphics canvas to render on.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTreeRenderEventArgs.#ctor(DevComponents.AdvTree.eAdvTreeRenderType,System.Drawing.Graphics)">
<summary>
Initializes a new instance of the AdvTreeRenderEventArgs class.
</summary>
<param name="renderType">Specifies rendering type</param>
<param name="g">Specifies graphics canvas to render on</param>
</member>
<member name="T:DevComponents.AdvTree.eAdvTreeRenderType">
<summary>
Specifies the rendering type being performed on AdvTree control Render event.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eAdvTreeRenderType.Background">
<summary>
Control background is being painted.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Cell">
<summary>Represents a cell assigned to the Node.</summary>
<remarks>
<para>The Cell with Index 0 (zero) always exists for a Node and it is a cell that
you can interact with through the properties on a node, which are forwarding to the
Cell(0), or you can go directly to the Cell(0).</para>
<para>When Node has multiple columns defined each column corresponds to Cell in
Node's Cells collection. The first Column has Index 0, second Column Index 1 and so
forth.</para>
<para>Note that there is always at least one Cell in a Node even if multiple
columns are not used.</para>
</remarks>
</member>
<member name="M:DevComponents.AdvTree.Cell.#ctor">
<summary>
Initializes new instance of Cell class.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Cell.#ctor(System.String)">
<summary>
Initializes new instance of Cell class.
</summary>
<param name="text">Cell text.</param>
</member>
<member name="M:DevComponents.AdvTree.Cell.#ctor(System.String,DevComponents.DotNetBar.ElementStyle)">
<summary>
Initializes new instance of Cell class.
</summary>
<param name="text">Cell text.</param>
</member>
<member name="M:DevComponents.AdvTree.Cell.#ctor(System.String,System.String)">
<summary>
Initializes new instance of Cell class.
</summary>
<param name="text">Cell text.</param>
</member>
<member name="M:DevComponents.AdvTree.Cell.Dispose(System.Boolean)">
<summary>
Releases the resources used by the Component.
</summary>
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
</member>
<member name="M:DevComponents.AdvTree.Cell.OnTooltipChanged">
<summary>
Occurs after Tooltip text has changed.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Cell.OnTooltip(System.Boolean)">
<summary>
Called when tooltip is shown and hidden.
</summary>
<param name="isShown">true if tooltip is being shown otherwise false.</param>
</member>
<member name="M:DevComponents.AdvTree.Cell.ShowToolTip">
<summary>
Shows tooltip for this item.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Cell.HideToolTip">
<summary>
Destroys tooltip window.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Cell.SetBounds(System.Drawing.Rectangle)">
<summary>
Sets the bounds of the cell.
</summary>
<param name="bounds">New cell bounds.</param>
</member>
<member name="M:DevComponents.AdvTree.Cell.SetImageBounds(System.Drawing.Rectangle)">
<summary>
Sets the bounds of the image inside of the cell.
</summary>
<param name="bounds">New cell bounds.</param>
</member>
<member name="M:DevComponents.AdvTree.Cell.SetCheckBoxBounds(System.Drawing.Rectangle)">
<summary>
Sets the bounds of the check box inside of the cell.
</summary>
<param name="bounds">New cell bounds.</param>
</member>
<member name="M:DevComponents.AdvTree.Cell.SetVisible(System.Boolean)">
<summary>
Sets whether cells is visible or not. This is set by node layout manager and it is based on column visibility.
</summary>
<param name="visible">True if visible otherwise false.</param>
</member>
<member name="M:DevComponents.AdvTree.Cell.SetParent(DevComponents.AdvTree.Node)">
<summary>
Sets the parent of the cell.
</summary>
<param name="parent">Parent node.</param>
</member>
<member name="M:DevComponents.AdvTree.Cell.OnTextChanged">
<summary>
Occurs after text has changed.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Cell.SetCellImages(DevComponents.AdvTree.CellImages)">
<summary>
Sets the Images to the new CellImages object.
</summary>
<param name="ci">CellImages object.</param>
</member>
<member name="M:DevComponents.AdvTree.Cell.ShouldSerializeImages">
<summary>
Returns whether Images property should be serialized. Used internally for windows forms designer support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Cell.SetChecked(System.Boolean,DevComponents.AdvTree.eTreeAction)">
<summary>
Sets the Checked or CheckState properties.
</summary>
<param name="value">New value for checked state.</param>
<param name="actionSource">Action source.</param>
</member>
<member name="M:DevComponents.AdvTree.Cell.SetChecked(System.Windows.Forms.CheckState,DevComponents.AdvTree.eTreeAction)">
<summary>
Sets the Checked or CheckState properties.
</summary>
<param name="value">New value for checked state.</param>
<param name="actionSource">Action source.</param>
</member>
<member name="M:DevComponents.AdvTree.Cell.SetMouseOver(System.Boolean)">
<summary>
Sets the mouse over flag.
</summary>
<param name="over">true if mouse is over the cell otherwise false.</param>
</member>
<member name="M:DevComponents.AdvTree.Cell.SetMouseDown(System.Boolean)">
<summary>
Sets the mouse down flag.
</summary>
<param name="over">true if left mouse button is pressed while over the cell otherwise false.</param>
</member>
<member name="M:DevComponents.AdvTree.Cell.GetEffectiveEditorType">
<summary>
Returns effective editor type used for cell editing.
</summary>
<returns>Editor type.</returns>
</member>
<member name="M:DevComponents.AdvTree.Cell.Copy">
<summary>Makes a copy of a Cell.</summary>
</member>
<member name="M:DevComponents.AdvTree.Cell.EnsureVisible">
<summary>
Ensures that the cell is visible, expanding nodes and scrolling the control as necessary.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Cell.OnImageChanged">
<summary>
Occurs when any image property for the cell has changed.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Cell.InvokeAfterCheck(DevComponents.AdvTree.eTreeAction)">
<summary>
Invokes <see cref="E:DevComponents.AdvTree.AdvTree.AfterCheck">AfterCheck</see> event on AdvTree
control.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Cell.InvokeBeforeCheck(DevComponents.AdvTree.AdvTreeCellBeforeCheckEventArgs)">
<summary>
Invokes <see cref="E:DevComponents.AdvTree.AdvTree.BeforeCheck">BeforeCheck</see> event on AdvTree
control.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Cell.OnLayoutCell">
<summary>
Called just before cell layout is to be performed.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Cell.TextMarkupLinkClick(System.Object,System.EventArgs)">
<summary>
Occurs when text markup link is clicked.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.Tooltip">
<summary>
Gets/Sets informational text (tooltip) for the cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.ToolTipVisible">
<summary>
Gets whether tooltip is visible or not.
</summary>
</member>
<member name="E:DevComponents.AdvTree.Cell.ToolTipVisibleChanged">
<summary>
Occurs when item's tooltip visibility has changed.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.ShowToolTips">
<summary>
Gets or sets whether tooltips are shown when mouse is over the cell when Tooltip property is set.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.Editable">
<summary>
Gets or sets whether cell content is editable when cell editing is enabled on tree control. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.IsEditable">
<summary>
Gets whether cell can be edited. Cell can be edited if both Editable property is set to true and ColumnHeader.Editable property is set to true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.HostedItem">
<summary>
Gets or sets the item hosted inside of the cell. Only items that do not generate
popups are supported. Note that cell can only host either HostedItem or HostedControl but not both.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.HostedControl">
<summary>
Gets or sets the control hosted inside of the cell. Note that cell can only host either HostedItem or HostedControl but not both.
</summary>
<remarks>
<para>When control is hosted inside of the cell, cell size is determined by the
size of the control hosted inside of it. The cell will not display its text but it will display any image assigned
or check box when control is hosted inside of it. The Style settings like Margin
and Padding will still apply.</para>
</remarks>
</member>
<member name="P:DevComponents.AdvTree.Cell.IgnoreHostedControlSizeChange">
<summary>
Gets or sets whether hosted control size change event is ignored.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.HostedControlSize">
<summary>
Gets or sets the hosted control size. Property is used to correctly scale control when AdvTree.Zoom is used to zoom view.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.Name">
<summary>
Returns name of the cell that can be used to identify it from the code.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.BoundsRelative">
<summary>
Gets the relative bounds of the cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.Bounds">
<summary>
Gets the bounds of the cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.TextContentBounds">
<summary>
Gets or sets the available content bounds for the text. Text will fitted into these bounds
but it's true location can be obtained only after it is displayed.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.TextBounds">
<summary>
Gets the bounds of the text inside of cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.ImageBoundsRelative">
<summary>
Gets the relative bounds of the image inside of cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.ImageBounds">
<summary>
Gets the bounds of the image inside of cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.CheckBoxBoundsRelative">
<summary>
Gets the bounds of the image inside of cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.CheckBoxBounds">
<summary>
Gets the bounds of the check box inside of cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.IsEditing">
<summary>
Gets a value indicating whether the cell is in an editable state. true if the cell is in editable state; otherwise, false.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.IsSelected">
<summary>
Gets a value indicating whether the cell is in the selected state. true if the cell is in the selected state; otherwise, false.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.IsVisible">
<summary>
Gets a value indicating whether the cell is visible. Cell is considered to be visible when it's parent column is visible.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.Parent">
<summary>
Gets the parent node of the current cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.Tag">
<summary>
Gets or sets the object that contains data about the cell. Any Object derived type can be assigned to this property. If this property is being set through the Windows Forms designer, only text can be assigned.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.TagString">
<summary>
Gets or sets the object that contains data about the cell. Any Object derived type can be assigned to this property. If this property is being set through the Windows Forms designer, only text can be assigned.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.TextDisplayFormat">
<summary>
Gets or sets the format that is applied to the value of Text property for display purposes. See "Formatting Overview" in MSDN
for description on available format strings. For example you can specify "C" to format text as currency, or "D" to format text as decimal number etc.
<seealso cref="!:http://msdn.microsoft.com/en-us/library/26etazsy.aspx"/>
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.DisplayText">
<summary>
Gets the formatted display text.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.Text">
<summary>
Gets or sets the text displayed in the cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.TreeControl">
<summary>
Gets the parent tree control that the cell belongs to.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.StyleNormal">
<summary>
Gets or sets the style class assigned to the cell. Null value indicates that
default style is used as specified on cell's parent.
</summary>
<value>
Reference to the style assigned to the cell or null (VB Nothing) indicating that default
style setting from tree control is applied. Default value is null.
</value>
<remarks>
When property is set to null (VB Nothing) the style setting from parent tree
controls is used. CellStyleNormal on AdvTree control is a root style for a cell.
</remarks>
<seealso cref="P:DevComponents.AdvTree.Cell.StyleDisabled">StyleDisabled Property</seealso>
<seealso cref="P:DevComponents.AdvTree.Cell.StyleMouseDown">StyleMouseDown Property</seealso>
<seealso cref="P:DevComponents.AdvTree.Cell.StyleMouseOver">StyleMouseOver Property</seealso>
<seealso cref="P:DevComponents.AdvTree.Cell.StyleSelected">StyleSelected Property</seealso>
</member>
<member name="P:DevComponents.AdvTree.Cell.StyleNormalName">
<summary>
Gets or sets the style name used by cell. This member is provided for internal use only. To set or get the style use StyleNormal property instead.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.StyleSelected">
<summary>
Gets or sets the style class that is to when cell is selected. Null value indicates that
default style is used as specified on cell's parent.
</summary>
<value>
Reference to the style assigned to the cell or null value indicating that default
style setting from tree control is applied. Default is null value.
</value>
<remarks>
When property is set to null value the style setting from parent tree
controls is used. CellStyleSelected on AdvTree control is a root style for a cell.
</remarks>
<seealso cref="P:DevComponents.AdvTree.Cell.StyleNormal">StyleNormal Property</seealso>
<seealso cref="P:DevComponents.AdvTree.Cell.StyleDisabled">StyleDisabled Property</seealso>
<seealso cref="P:DevComponents.AdvTree.Cell.StyleMouseDown">StyleMouseDown Property</seealso>
<seealso cref="P:DevComponents.AdvTree.Cell.StyleMouseOver">StyleMouseOver Property</seealso>
</member>
<member name="P:DevComponents.AdvTree.Cell.StyleSelectedName">
<summary>
Gets or sets the selected style name used by cell. This member is provided for internal use only. To set or get the style use StyleSelected property instead.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.StyleDisabled">
<summary>
Gets or sets the disabled style class assigned to the cell. Null value indicates
that default style is used as specified on cell's parent.
</summary>
<value>
Reference to the style assigned to the cell or null value indicating that default
style setting from tree control is applied. Default value is null.
</value>
<remarks>
When property is set to null value the style setting from parent tree
controls is used. CellStyleDisabled on AdvTree control is a root style for a
cell.
</remarks>
<seealso cref="P:DevComponents.AdvTree.Cell.StyleNormal">StyleNormal Property</seealso>
<seealso cref="P:DevComponents.AdvTree.Cell.StyleMouseDown">StyleMouseDown Property</seealso>
<seealso cref="P:DevComponents.AdvTree.Cell.StyleMouseOver">StyleMouseOver Property</seealso>
<seealso cref="P:DevComponents.AdvTree.Cell.StyleSelected">StyleSelected Property</seealso>
</member>
<member name="P:DevComponents.AdvTree.Cell.StyleDisabledName">
<summary>
Gets or sets the disabled style name used by cell. This member is provided for internal use only. To set or get the style use StyleDisabled property instead.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.StyleMouseDown">
<summary>
Gets or sets the style class assigned to the cell which is applied when mouse
button is pressed while mouse is over the cell. Null value indicates that default
style is used as specified on cell's parent.
</summary>
<value>
Reference to the style assigned to the cell or null value indicating that default
style setting from tree control is applied. Default value is null.
</value>
<remarks>
When property is set to null value style setting from parent tree
controls is used. CellStyleMouseDown on AdvTree control is a root style for a
cell.
</remarks>
<seealso cref="P:DevComponents.AdvTree.Cell.StyleNormal">StyleNormal Property</seealso>
<seealso cref="P:DevComponents.AdvTree.Cell.StyleDisabled">StyleDisabled Property</seealso>
<seealso cref="P:DevComponents.AdvTree.Cell.StyleMouseOver">StyleMouseOver Property</seealso>
<seealso cref="P:DevComponents.AdvTree.Cell.StyleSelected">StyleSelected Property</seealso>
</member>
<member name="P:DevComponents.AdvTree.Cell.StyleMouseDownName">
<summary>
Gets or sets the mouse down style name used by cell. This member is provided for internal use only. To set or get the style use StyleMouseDown property instead.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.StyleMouseOver">
<summary>
Gets or sets the style class assigned to the cell which is applied when mouse is
over the cell. Null value indicates that default style is used as specified on cell's
parent.
</summary>
<value>
Reference to the style assigned to the cell or null value indicating that default
style setting from tree control is applied. Default value is null.
</value>
<remarks>
When property is set to null value the style setting from parent tree
controls is used. CellStyleMouseOver on AdvTree control is a root style for a
cell.
</remarks>
<seealso cref="P:DevComponents.AdvTree.Cell.StyleNormal">StyleNormal Property</seealso>
<seealso cref="P:DevComponents.AdvTree.Cell.StyleDisabled">StyleDisabled Property</seealso>
<seealso cref="P:DevComponents.AdvTree.Cell.StyleMouseDown">StyleMouseDown Property</seealso>
<seealso cref="P:DevComponents.AdvTree.Cell.StyleSelected">StyleSelected Property</seealso>
</member>
<member name="P:DevComponents.AdvTree.Cell.StyleMouseOverName">
<summary>
Gets or sets the mouse over style name used by cell. This member is provided for internal use only. To set or get the style use StyleMouseOver property instead.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.Enabled">
<summary>
Gets or sets whether cell is enabled or not.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.Images">
<summary>
Gets the reference to images associated with this cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.ImageAlignment">
<summary>
Gets or sets the image alignment in relation to the text displayed by cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.CheckBoxAlignment">
<summary>
Gets or sets the checkbox alignment in relation to the text displayed by cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.CheckBoxVisible">
<summary>
Gets or sets whether check box is visible inside the cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.Checked">
<summary>
Gets or set a value indicating whether the check box is in the checked state.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.CheckBoxThreeState">
<summary>
Gets or sets a value indicating whether the CheckBox will allow three check states rather than two. If the ThreeState property is set to true
CheckState property should be used instead of Checked property to set the extended state of the control.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.CheckState">
<summary>
Specifies the state of a control, such as a check box, that can be checked, unchecked, or set to an indeterminate state.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.CheckBoxStyle">
<summary>
Gets or sets the appearance style of the item. Default value is CheckBox. Item can also assume the style of radio-button.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.IsMouseOver">
<summary>
Gets whether mouse is over the cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.IsMouseDown">
<summary>
Gets whether left mouse button is pressed while over the cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.Layout">
<summary>
Gets or sets the layout of the cell parts like check box, image and text. Layout can be horizontal (default)
where parts of the cell are positioned next to each other horizontally, or vertical where
parts of the cell are positioned on top of each other vertically.
Alignment of the each part is controlled by alignment properties.
</summary>
<seealso cref="P:DevComponents.AdvTree.Cell.ImageAlignment">ImageAlignment Property</seealso>
<seealso cref="P:DevComponents.AdvTree.Cell.CheckBoxAlignment">CheckBoxAlignment Property</seealso>
</member>
<member name="P:DevComponents.AdvTree.Cell.Cursor">
<summary>
Specifies the mouse cursor displayed when mouse is over the cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.WordWrap">
<summary>
Gets or sets whether cell wrapped the text during the layout.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.EditorType">
<summary>
Gets or sets the editor type used to edit the cell. Setting this property to value other than Default
overrides the cell editor type specified on column cell belongs to.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.Selectable">
<summary>
Gets or sets whether cell can be selected by user by clicking it with the mouse or using keyboard. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.CanSelect">
<summary>
Gets whether cell can be selected. Cell must be Visible, Enabled and Selectable in order for it to be selected.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.ColumnHeader">
<summary>
Returns ColumnHeader cell is under if one is defined and cell is already parented to the tree. Otherwise it returns null/nothing.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.TextMarkupBody">
<summary>
Gets reference to parsed markup body element if text was markup otherwise returns null.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.TextMarkupEnabled">
<summary>
Gets or sets whether cell supports and renders text markup. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Cell.IsMarkupSupported">
<summary>
Gets whether item supports text markup. Default is false.
</summary>
</member>
<member name="T:DevComponents.AdvTree.CellCollection">
<summary>
A strongly-typed collection of <see cref="T:DevComponents.AdvTree.Cell"/> objects.
</summary>
</member>
<member name="M:DevComponents.AdvTree.CellCollection.#ctor">
<summary>Creates new instance of the class.</summary>
</member>
<member name="M:DevComponents.AdvTree.CellCollection.Add(DevComponents.AdvTree.Cell)">
<summary>
Adds new object to the collection.
</summary>
<param name="cell">Object to add.</param>
<returns>Index of newly added object.</returns>
</member>
<member name="M:DevComponents.AdvTree.CellCollection.GetByColumnName(System.String)">
<summary>
Gets the cell based on the column name. Node must be able to reach AdvTree control for this method to work.
</summary>
<param name="columnName">Column name.</param>
<returns>Cell object or null.</returns>
</member>
<member name="M:DevComponents.AdvTree.CellCollection.Insert(System.Int32,DevComponents.AdvTree.Cell)">
<summary>
Inserts new object into the collection.
</summary>
<param name="index">Position of the object.</param>
<param name="value">Object to insert.</param>
</member>
<member name="M:DevComponents.AdvTree.CellCollection.IndexOf(DevComponents.AdvTree.Cell)">
<summary>
Returns index of the object inside of the collection.
</summary>
<param name="value">Reference to the object.</param>
<returns>Index of the object.</returns>
</member>
<member name="M:DevComponents.AdvTree.CellCollection.Contains(DevComponents.AdvTree.Cell)">
<summary>
Returns whether collection contains specified object.
</summary>
<param name="value">Object to look for.</param>
<returns>true if object is part of the collection, otherwise false.</returns>
</member>
<member name="M:DevComponents.AdvTree.CellCollection.Remove(DevComponents.AdvTree.Cell)">
<summary>
Removes specified object from the collection.
</summary>
<param name="value"></param>
</member>
<member name="M:DevComponents.AdvTree.CellCollection.CopyTo(DevComponents.AdvTree.Cell[],System.Int32)">
<summary>
Copies collection into the specified array.
</summary>
<param name="array">Array to copy collection to.</param>
<param name="index">Starting index.</param>
</member>
<member name="M:DevComponents.AdvTree.CellCollection.CopyTo(DevComponents.AdvTree.Cell[])">
<summary>
Copies contained items to the Cell array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="M:DevComponents.AdvTree.CellCollection.SetParentNode(DevComponents.AdvTree.Node)">
<summary>
Sets the node collection belongs to.
</summary>
<param name="parent">Cell that is parent of this collection.</param>
</member>
<member name="P:DevComponents.AdvTree.CellCollection.Item(System.Int32)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="P:DevComponents.AdvTree.CellCollection.Item(System.String)">
<summary>
Returns reference to the object in collection based on it's name. Returns null/nothing if cell with given name is not found.
</summary>
</member>
<member name="P:DevComponents.AdvTree.CellCollection.ParentNode">
<summary>
Gets or sets the node this collection is associated with.
</summary>
</member>
<member name="T:DevComponents.AdvTree.CellEditEventArgs">
<summary>
Represents event arguments for cell editing events.
</summary>
</member>
<member name="F:DevComponents.AdvTree.CellEditEventArgs.Action">
<summary>
Indicates the action that caused the event.
</summary>
</member>
<member name="F:DevComponents.AdvTree.CellEditEventArgs.Cell">
<summary>
Indicates the cell that is affected.
</summary>
</member>
<member name="F:DevComponents.AdvTree.CellEditEventArgs.NewText">
<summary>
Indicates new text that will be assigned to the cell if one is appropriate for given event.
</summary>
</member>
<member name="F:DevComponents.AdvTree.CellEditEventArgs.Cancel">
<summary>
Indicates whether the current action is cancelled. For BeforeCellEdit event setting this
property to true will cancel the editing. For AfterCellEdit event setting this property to
true will cancel any changes made to the text and edits will not be accepted. For CellEditEnding
event setting this property to true will keep the cell in edit mode.
</summary>
</member>
<member name="F:DevComponents.AdvTree.CellEditEventArgs.IsUserCanceled">
<summary>
Indicates whether editing operation was canceled by the end user, usually by pressing ESCAPE key.
</summary>
</member>
<member name="M:DevComponents.AdvTree.CellEditEventArgs.#ctor(DevComponents.AdvTree.Cell,DevComponents.AdvTree.eTreeAction,System.String)">
<summary>
Initializes new instance of CellEditEventArgs class.
</summary>
<param name="cell">Reference to Cell this event is raised for.</param>
<param name="action">Indicates the action that caused the event.</param>
<param name="newText">Indicates new text of the cell if it applies to given event.</param>
</member>
<member name="M:DevComponents.AdvTree.CellEditEventArgs.#ctor(DevComponents.AdvTree.Cell,DevComponents.AdvTree.eTreeAction,System.String,DevComponents.AdvTree.ICellEditControl)">
<summary>
Initializes new instance of CellEditEventArgs class.
</summary>
<param name="cell">Reference to Cell this event is raised for.</param>
<param name="action">Indicates the action that caused the event.</param>
<param name="newText">Indicates new text of the cell if it applies to given event.</param>
</member>
<member name="M:DevComponents.AdvTree.CellEditEventArgs.#ctor(DevComponents.AdvTree.Cell,DevComponents.AdvTree.eTreeAction,System.String,System.Boolean)">
<summary>
Initializes new instance of CellEditEventArgs class.
</summary>
<param name="cell">Reference to Cell this event is raised for.</param>
<param name="action">Indicates the action that caused the event.</param>
<param name="newText">Indicates new text of the cell if it applies to given event.</param>
<param name="isUserCanceled">Indicates whether action is canceled by the end user.</param>
</member>
<member name="M:DevComponents.AdvTree.CellEditEventArgs.#ctor(DevComponents.AdvTree.Cell,DevComponents.AdvTree.eTreeAction,System.String,System.Boolean,DevComponents.AdvTree.ICellEditControl)">
<summary>
Initializes new instance of CellEditEventArgs class.
</summary>
<param name="cell">Reference to Cell this event is raised for.</param>
<param name="action">Indicates the action that caused the event.</param>
<param name="newText">Indicates new text of the cell if it applies to given event.</param>
<param name="isUserCanceled">Indicates whether action is canceled by the end user.</param>
</member>
<member name="P:DevComponents.AdvTree.CellEditEventArgs.Editor">
<summary>
Gets reference to the cell editor control.
</summary>
</member>
<member name="T:DevComponents.AdvTree.CellImages">
<summary>
Represents class that holds images for a cell.
</summary>
<remarks>
If you plan to use alpha-blended images we recommend using PNG-24 format which
supports alpha-blending. As of this writing .NET Framework 1.0 and 1.1 do not support
alpha-blending when used through Image class.
</remarks>
</member>
<member name="M:DevComponents.AdvTree.CellImages.#ctor(DevComponents.AdvTree.Cell)">
<summary>
Initializes new instance of CellImages class.
</summary>
<param name="parentCell">Reference to parent cell.</param>
</member>
<member name="M:DevComponents.AdvTree.CellImages.ResetImage">
<summary>
Resets Image property to it's default value (null, VB nothing).
</summary>
</member>
<member name="M:DevComponents.AdvTree.CellImages.ResetImageMouseOver">
<summary>
Resets ImageMouseOver to it's default value (null, VB nothing).
</summary>
</member>
<member name="M:DevComponents.AdvTree.CellImages.ResetImageDisabled">
<summary>
Resets ImageDisabled to it's default value (null, VB nothing).
</summary>
</member>
<member name="M:DevComponents.AdvTree.CellImages.ResetImageExpanded">
<summary>
Resets ImageExpanded to it's default value (null, VB nothing).
</summary>
</member>
<member name="M:DevComponents.AdvTree.CellImages.Copy">
<summary>Makes a copy of a CellImages object.</summary>
</member>
<member name="M:DevComponents.AdvTree.CellImages.ChangeImage(System.Drawing.Image@,System.Drawing.Image)">
<summary>
Changes the image and invokes largest image size calculation if the
image size truly changed.
</summary>
<param name="currentImage"></param>
<param name="newImage"></param>
</member>
<member name="M:DevComponents.AdvTree.CellImages.GetImageByIndex(System.Int32)">
<summary>
Returns image from image list based on the image index.
</summary>
<param name="imageIndex">Index of the image to return.</param>
<returns>Image object from image list.</returns>
</member>
<member name="M:DevComponents.AdvTree.CellImages.GetImageByKey(System.String)">
<summary>
Returns image from image list based on the image key.
</summary>
<param name="key">Key of the image to return.</param>
<returns>Image object from image list.</returns>
</member>
<member name="P:DevComponents.AdvTree.CellImages.Image">
<summary>
Gets or sets default cell image. Setting this property to valid image will
override any setting of ImageIndex property.
</summary>
<remarks>
<para>The image set through this property will be serialized with the cell. If you
plan to use ImageList then use <see cref="P:DevComponents.AdvTree.CellImages.ImageIndex">ImageIndex</see>
property.</para>
<para>
<para>If you plan to use alpha-blended images we recommend using PNG-24 format
which supports alpha-blending. As of this writing .NET Framework 1.0 and 1.1
do not support alpha-blending when used through Image class.</para>
</para>
</remarks>
<value>Image object or <strong>null (Nothing)</strong> if no image is assigned.</value>
</member>
<member name="P:DevComponents.AdvTree.CellImages.ImageMouseOver">
<summary>
Gets or sets the image that is displayed when mouse is over the cell. Setting
this property to valid image will override any setting of ImageMouseOverIndex
property.
</summary>
<remarks>
If you plan to use alpha-blended images we recommend using PNG-24 format which
supports alpha-blending. As of this writting .NET Framework 1.0 and 1.1 do not support
alpha-blending when used through Image class.
</remarks>
</member>
<member name="P:DevComponents.AdvTree.CellImages.ImageDisabled">
<summary>
Gets or sets the image that is displayed when cell is disabled. If not assigned
disabled image is created from default cell image. Setting this property to valid image
will override any setting of ImageDisabledIndex property.
</summary>
<remarks>
If you plan to use alpha-blended images we recommend using PNG-24 format which
supports alpha-blending. As of this writing .NET Framework 1.0 and 1.1 do not support
alpha-blending when used through Image class.
</remarks>
</member>
<member name="P:DevComponents.AdvTree.CellImages.ImageExpanded">
<summary>
Gets or sets image that is displayed when Node that this cell belongs to is
expanded. Setting this property to valid image will override any setting of
ImageExpandedIndex property.
</summary>
<remarks>
If you plan to use alpha-blended images we recommend using PNG-24 format which
supports alpha-blending. As of this writing .NET Framework 1.0 and 1.1 do not support
alpha-blending when used through Image class.
</remarks>
</member>
<member name="P:DevComponents.AdvTree.CellImages.ImageIndex">
<summary>
Gets or sets the Index of default cell image from ImageList specified on AdvTree
control.
</summary>
<remarks>
If you plan to use alpha-blended images we recommend using PNG-24 format which
supports alpha-blending. As of this writing .NET Framework 1.0 and 1.1 do not support
alpha-blending when used through Image class.
</remarks>
</member>
<member name="P:DevComponents.AdvTree.CellImages.ImageKey">
<summary>
Gets or sets the key of the default cell image from ImageList specified on AdvTree control.
</summary>
</member>
<member name="P:DevComponents.AdvTree.CellImages.ImageList">
<summary>
Property Editor support for ImageIndex selection
</summary>
</member>
<member name="P:DevComponents.AdvTree.CellImages.ImageMouseOverIndex">
<remarks>
If you plan to use alpha-blended images we recommend using PNG-24 format which
supports alpha-blending. As of this writing .NET Framework 1.0 and 1.1 do not support
alpha-blending when used through Image class.
</remarks>
<summary>
Gets or sets the Index of cell image when mouse is over the cell from ImageList
specified on AdvTree control.
</summary>
</member>
<member name="P:DevComponents.AdvTree.CellImages.ImageMouseOverKey">
<remarks>
If you plan to use alpha-blended images we recommend using PNG-24 format which
supports alpha-blending. As of this writing .NET Framework 1.0 and 1.1 do not support
alpha-blending when used through Image class.
</remarks>
<summary>
Gets or sets the key of cell image when mouse is over the cell from ImageList
specified on AdvTree control.
</summary>
</member>
<member name="P:DevComponents.AdvTree.CellImages.ImageDisabledIndex">
<remarks>
If you plan to use alpha-blended images we recommend using PNG-24 format which
supports alpha-blending. As of this writing .NET Framework 1.0 and 1.1 do not support
alpha-blending when used through Image class.
</remarks>
<summary>
Gets or sets the Index of disabled cell image from ImageList specified on AdvTree
control.
</summary>
</member>
<member name="P:DevComponents.AdvTree.CellImages.ImageDisabledKey">
<remarks>
If you plan to use alpha-blended images we recommend using PNG-24 format which
supports alpha-blending. As of this writing .NET Framework 1.0 and 1.1 do not support
alpha-blending when used through Image class.
</remarks>
<summary>
Gets or sets the key of disabled cell image from ImageList specified on AdvTree
control.
</summary>
</member>
<member name="P:DevComponents.AdvTree.CellImages.ImageExpandedIndex">
<remarks>
If you plan to use alpha-blended images we recommend using PNG-24 format which
supports alpha-blending. As of this writing .NET Framework 1.0 and 1.1 do not support
alpha-blending when used through Image class.
</remarks>
<summary>
Gets or sets the Index of cell image from ImageList specified on AdvTree control
that is used when Node associated with this cell is expanded
</summary>
</member>
<member name="P:DevComponents.AdvTree.CellImages.ImageExpandedKey">
<remarks>
If you plan to use alpha-blended images we recommend using PNG-24 format which
supports alpha-blending. As of this writing .NET Framework 1.0 and 1.1 do not support
alpha-blending when used through Image class.
</remarks>
<summary>
Gets or sets the key of cell image from ImageList specified on AdvTree control
that is used when Node associated with this cell is expanded
</summary>
</member>
<member name="P:DevComponents.AdvTree.CellImages.Parent">
<summary>
Gets or sets the parent node of the cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.CellImages.ShouldSerialize">
<summary>
Gets whether CellImages object should be serialized or not. If object has all
default values then this property will return <strong>false</strong>.
</summary>
</member>
<member name="P:DevComponents.AdvTree.CellImages.LargestImageSize">
<summary>
Returns largest image size in this set of images.
</summary>
</member>
<member name="P:DevComponents.AdvTree.CellImages.AutoDispose">
<summary>
Indicates whether assigned images are automatically disposed when the cell and node are disposed. Default value is false.
</summary>
</member>
<member name="T:DevComponents.AdvTree.ColumnHeader">
<summary>Represents the node or tree ColumnHeader.</summary>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.#ctor">
<summary>
Creates new instance of the object.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.#ctor(System.String)">
<summary>
Creates new instance of the object and initializes it with text.
</summary>
<param name="text">Text to initialize object with.</param>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.Copy">
<summary>
Makes a copy of ColumnHeader object.
</summary>
<returns>Returns new instance of column header object.</returns>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.SetBounds(System.Drawing.Rectangle)">
<summary>
Sets the column bounds.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.ResetImage">
<summary>
Resets Image property to it's default value (null, VB nothing).
</summary>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.OnDataFieldNameChanged">
<summary>
Called when DataFieldName property has changed.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.ShouldSerializeCellsBackColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.ResetCellsBackColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.OnSortingEnabledChanged(System.Boolean,System.Boolean)">
<summary>
Called when SortingEnabled property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.OnSortDirectionChanged(DevComponents.AdvTree.eSortDirection,DevComponents.AdvTree.eSortDirection)">
<summary>
Called when SortDirection property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.Invalidate">
<summary>
Invalidates the appearance of column header.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.OnTooltipChanged">
<summary>
Occurs after Tooltip text has changed.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.OnTooltip(System.Boolean)">
<summary>
Called when tooltip is shown and hidden.
</summary>
<param name="isShown">true if tooltip is being shown otherwise false.</param>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.ShowToolTip">
<summary>
Shows tooltip for this item.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.HideToolTip">
<summary>
Destroys tooltip window.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.AutoSize">
<summary>
Automatically sets the column width (Width.Absolute) property based on the content of the column.
This will perform the one-time auto sizing of the column. To make column auto-size all the time
set Width.AutoSize=true.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises MouseMove event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.OnMouseEnter(System.EventArgs)">
<summary>
Raises MouseEnter event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.OnMouseLeave(System.EventArgs)">
<summary>
Raises MouseLeave event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.OnMouseHover(System.EventArgs)">
<summary>
Raises MouseHover event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.Sort">
<summary>
Sort first level nodes that belong directly to this column. Calling this method repeatedly will
alternate between A-Z and Z-A sorting.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.Sort(System.Boolean)">
<summary>
Sort first level nodes that belong directly to this column.
</summary>
<param name="reverse">true to use reverse Z-A sorting, false to sort from A-Z</param>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.OnSortComparerChanged(System.Collections.IComparer,System.Collections.IComparer)">
<summary>
Called when SortComparer property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeader.OnSortComparerReverseChanged(System.Collections.IComparer,System.Collections.IComparer)">
<summary>
Called when SortComparerReverse property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="E:DevComponents.AdvTree.ColumnHeader.HeaderSizeChanged">
<summary>
Occurs when header size has changed due to the user resizing the column.
</summary>
</member>
<member name="E:DevComponents.AdvTree.ColumnHeader.MouseDown">
<summary>
Occurs when mouse button is pressed over the column header.
</summary>
</member>
<member name="E:DevComponents.AdvTree.ColumnHeader.MouseUp">
<summary>
Occurs when mouse button is released over the column header.
</summary>
</member>
<member name="E:DevComponents.AdvTree.ColumnHeader.DoubleClick">
<summary>
Occurs when header is double clicked.
</summary>
</member>
<member name="E:DevComponents.AdvTree.ColumnHeader.Click">
<summary>
Occurs when header is clicked.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.Editable">
<summary>
Gets or sets whether cells content in this column is editable when cell editing is enabled on tree control. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.MaxInputLength">
<summary>
Gets or sets the maximum number of characters the user can type or paste when editing cells in this column.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.Name">
<summary>
Returns name of the column header that can be used to identify it from the code.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.Bounds">
<summary>
Returns rectangle that this column occupies. If the layout has not been performed on the column the return value will be Rectangle.Empty.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.Width">
<summary>
Gets the reference to the object that represents width of the column as either
absolute or relative value.
</summary>
<remarks>
Set Width using Absolute or Relative properties of ColumnWidth object.
</remarks>
<seealso cref="P:DevComponents.AdvTree.ColumnWidth.Absolute">Absolute Property (DevComponents.AdvTree.ColumnWidth)</seealso>
<seealso cref="P:DevComponents.AdvTree.ColumnWidth.Relative">Relative Property (DevComponents.AdvTree.ColumnWidth)</seealso>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.MinimumWidth">
<summary>
Gets or sets the minimum column width in pixels that is enforced when user is resizing the columns using mouse.
Default value is 0 which indicates that there is no minimum size constraint.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.StretchToFill">
<summary>
Gets or sets whether column is stretched to fill any empty space horizontally in tree when all columns consume less width than available.
Only one column in tree may have this property set to true and only last column with this property set will be stretched.
You should always set the Width for the column since Width will be used when columns consume more space in tree horizontally than available.
Applies to top-level columns only.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.StyleNormal">
<summary>
Gets or sets the style class assigned to the column. Empty value indicates that
default style is used as specified on cell's parent's control.
</summary>
<value>
Name of the style assigned to the cell or an empty string indicating that default
style setting from tree control is applied. Default is empty string.
</value>
<remarks>
When property is set to an empty string the style setting from parent tree
controls is used. ColumnStyleNormal on AdvTree control is a root style for a cell.
</remarks>
<seealso cref="P:DevComponents.AdvTree.ColumnHeader.StyleMouseDown">StyleMouseDown Property</seealso>
<seealso cref="P:DevComponents.AdvTree.ColumnHeader.StyleMouseOver">StyleMouseOver Property</seealso>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.StyleMouseDown">
<summary>
Gets or sets the style class assigned to the column which is applied when mouse
button is pressed over the header. Empty value indicates that default
style is used as specified on column's parent.
</summary>
<value>
Name of the style assigned to the column or an empty string indicating that default
style setting from tree control is applied. Default is empty string.
</value>
<remarks>
When property is set to an empty string the style setting from parent tree
controls is used. ColumnStyleMouseDown on AdvTree control is a root style for a
cell.
</remarks>
<seealso cref="P:DevComponents.AdvTree.ColumnHeader.StyleNormal">StyleNormal Property</seealso>
<seealso cref="P:DevComponents.AdvTree.ColumnHeader.StyleMouseOver">StyleMouseOver Property</seealso>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.StyleMouseOver">
<summary>
Gets or sets the style class assigned to the column which is applied when mouse is
over the column. Empty value indicates that default style is used as specified on column's
parent control.
</summary>
<value>
Name of the style assigned to the column or an empty string indicating that default
style setting from tree control is applied. Default is empty string.
</value>
<remarks>
When property is set to an empty string the style setting from parent tree
controls is used. ColumnStyleMouseOver on AdvTree control is a root style for a
cell.
</remarks>
<seealso cref="P:DevComponents.AdvTree.ColumnHeader.StyleNormal">StyleNormal Property</seealso>
<seealso cref="P:DevComponents.AdvTree.ColumnHeader.StyleMouseDown">StyleMouseDown Property</seealso>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.ColumnName">
<summary>
Gets or sets the name of the column in the ColumnHeaderCollection.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.Text">
<summary>
Gets or sets the column caption.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.Visible">
<summary>
Gets or sets whether column is visible. Hiding the header column will also hide corresponding data column.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.AdvTree.ColumnHeader.Image" -->
<member name="P:DevComponents.AdvTree.ColumnHeader.ImageAlignment">
<summary>
Gets or sets Image alignment inside of column. Default value is Left.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.DataFieldName">
<summary>
Gets or sets the data-field or property name that is used as source of data for this column when data-binding is used.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.Tag">
<summary>
Gets or sets additional custom data associated with the column.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.CellsBackColor">
<summary>
Gets or sets the color of the cells background for this column.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.DisplayIndex">
<summary>
Gets or sets display index of the column. -1 indicates default value and is modified to actual display index when the column is added to a ColumnHeaderCollection.
</summary>
<remarks>
A lower display index means a column will appear first (to the left) of columns with a higher display index.
Allowable values are from 0 to num columns - 1. (-1 is legal only as the default value and is modified to something else
when the column is added to a AdvTree's column collection). AdvTree enforces that no two columns have the same display index;
changing the display index of a column will cause the index of other columns to adjust as well.
</remarks>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.SortingEnabled">
<summary>
Gets or sets whether user can sort by this column by clicking it.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.SortDirection">
<summary>
Gets or sets the sort direction. Sort direction can be changed by clicking the column header if SortingEnabled=true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.Tooltip">
<summary>
Gets/Sets informational text (tooltip) for the cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.ToolTipVisible">
<summary>
Gets whether tooltip is visible or not.
</summary>
</member>
<member name="E:DevComponents.AdvTree.ColumnHeader.ToolTipVisibleChanged">
<summary>
Occurs when item's tooltip visibility has changed.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.ShowToolTips">
<summary>
Gets or sets whether tooltips are shown when mouse is over the cell when Tooltip property is set.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.AdvTree">
<summary>
Returns reference to AdvTree control this column belongs to.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.DoubleClickAutoSize">
<summary>
Gets or sets whether column is automatically sized to the content when user double-clicks the column
on the column resize line. Column resizing must be enabled in order for this property to function.
Default value is true which indicates that column will be auto-sized to content when user double-clicks the
column resize marker.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.SizeChanged">
<summary>
Gets or sets whether column size has changed and it's layout needs to be recalculated.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.IsMouseDown">
<summary>
Gets whether mouse left button is pressed on the column.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.IsMouseOver">
<summary>
Gets whether mouse is over the column.
</summary>
</member>
<member name="E:DevComponents.AdvTree.ColumnHeader.MouseMove">
<summary>
Occurs when mouse is moving over the column header.
</summary>
</member>
<member name="E:DevComponents.AdvTree.ColumnHeader.MouseEnter">
<summary>
Occurs when mouse enters column header.
</summary>
</member>
<member name="E:DevComponents.AdvTree.ColumnHeader.MouseLeave">
<summary>
Occurs when mouse leaves the column header.
</summary>
</member>
<member name="E:DevComponents.AdvTree.ColumnHeader.MouseHover">
<summary>
Occurs when mouse hovers over the column.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.EditorType">
<summary>
Gets or sets the editor type used to edit the cell. Setting this property to value other than Default
overrides the cell editor type specified on column cell belongs to.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.SortComparer">
<summary>
Gets or sets ascending (A-Z) column comparer used to sort nodes when this column is clicked. Your comparer will be passed to NodeCollection.Sort method and should know how to sort by appropriate column.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeader.SortComparerReverse">
<summary>
Gets or sets descending (Z-A) column comparer used to sort nodes when this column is clicked. Your comparer will be passed to NodeCollection.Sort method and should know how to sort by appropriate column.
</summary>
</member>
<member name="F:DevComponents.AdvTree.SortEventArgs.Cancel">
<summary>
Gets or sets whether to cancel internal sorting performed by AdvTree.
</summary>
</member>
<member name="F:DevComponents.AdvTree.SortEventArgs.ColumnHeader">
<summary>
Gets or sets the column header being sorted.
</summary>
</member>
<member name="F:DevComponents.AdvTree.SortEventArgs.Comparer">
<summary>
Gets or sets the IComparer used for sorting.
</summary>
</member>
<member name="T:DevComponents.AdvTree.ColumnEventArgs">
<summary>
Defines column related event arguments.
</summary>
</member>
<member name="F:DevComponents.AdvTree.ColumnEventArgs.Column">
<summary>
Gets reference to the column.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ColumnEventArgs.#ctor(DevComponents.AdvTree.ColumnHeader)">
<summary>
Initializes a new instance of the ColumnEventArgs class.
</summary>
<param name="column"></param>
</member>
<member name="T:DevComponents.AdvTree.ColumnMovedHandler">
<summary>
Defines delegate for ColumnMoved event.
</summary>
</member>
<member name="T:DevComponents.AdvTree.ColumnMovedEventArgs">
<summary>
Defines column moved event arguments.
</summary>
</member>
<member name="F:DevComponents.AdvTree.ColumnMovedEventArgs.OldColumnDisplayIndex">
<summary>
Gets the column display index before the column was moved.
</summary>
</member>
<member name="F:DevComponents.AdvTree.ColumnMovedEventArgs.NewColumnDisplayIndex">
<summary>
Gets the column display index before the column was moved.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ColumnMovedEventArgs.#ctor(DevComponents.AdvTree.ColumnHeader,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the ColumnMovedEventArgs class.
</summary>
<param name="column">Column affected</param>
<param name="oldColumnDisplayIndex">Old display index</param>
<param name="newColumnDisplayIndex">New display index</param>
</member>
<member name="T:DevComponents.AdvTree.ColumnHeaderCollection">
<summary>
Represents collection for ColumnHeader objects.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeaderCollection.#ctor">
<summary>
Default constructor.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeaderCollection.SetParentNode(DevComponents.AdvTree.Node)">
<summary>
Sets the node collection belongs to.
</summary>
<param name="parent">ColumnHeader that is parent of this collection.</param>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeaderCollection.Add(DevComponents.AdvTree.ColumnHeader)">
<summary>
Adds new object to the collection.
</summary>
<param name="ch">Object to add.</param>
<returns>Index of newly added object.</returns>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeaderCollection.Insert(System.Int32,DevComponents.AdvTree.ColumnHeader)">
<summary>
Inserts new object into the collection.
</summary>
<param name="index">Position of the object.</param>
<param name="value">Object to insert.</param>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeaderCollection.IndexOf(DevComponents.AdvTree.ColumnHeader)">
<summary>
Returns index of the object inside of the collection.
</summary>
<param name="value">Reference to the object.</param>
<returns>Index of the object.</returns>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeaderCollection.IndexOf(System.String)">
<summary>
Returns index of the object inside of the collection.
</summary>
<param name="name">Name of column to return index for.</param>
<returns>Index of the column or -1 if column not found.</returns>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeaderCollection.IndexOfDataField(System.String)">
<summary>
Returns index of the object inside of the collection based on column DataFieldName.
</summary>
<param name="dataFieldName">DataFieldName of column to return index for.</param>
<returns>Index of the column or -1 if column not found.</returns>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeaderCollection.IndexOfField(System.String)">
<summary>
Returns index of the object inside of the collection based on column DataFieldName.
</summary>
<param name="fieldName">DataFieldName of column to return index for.</param>
<returns>Index of the column or -1 if column not found.</returns>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeaderCollection.Contains(DevComponents.AdvTree.ColumnHeader)">
<summary>
Returns whether collection contains specified object.
</summary>
<param name="value">Object to look for.</param>
<returns>true if object is part of the collection, otherwise false.</returns>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeaderCollection.Remove(DevComponents.AdvTree.ColumnHeader)">
<summary>
Removes specified object from the collection.
</summary>
<param name="value"></param>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeaderCollection.SortDirectionUpdated(DevComponents.AdvTree.ColumnHeader)">
<summary>
Called when SortDirection property on column header is set to value other than None.
</summary>
<param name="header">Ref to column header</param>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeaderCollection.CopyTo(DevComponents.AdvTree.ColumnHeader[],System.Int32)">
<summary>
Copies collection into the specified array.
</summary>
<param name="array">Array to copy collection to.</param>
<param name="index">Starting index.</param>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeaderCollection.CopyTo(DevComponents.AdvTree.ColumnHeader[])">
<summary>
Copies contained items to the ColumnHeader array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeaderCollection.GetDisplayIndex(DevComponents.AdvTree.ColumnHeader)">
<summary>
Gets the display index for specified column.
</summary>
<param name="column">Column that is part f ColumnHeaderCollection</param>
<returns>Display index or -1 column is not part of this collection.</returns>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeaderCollection.ColumnAtDisplayIndex(System.Int32)">
<summary>
Returns the column that is displayed at specified display index..
</summary>
<param name="displayIndex">0 based display index.</param>
<returns>ColumnHeader</returns>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeaderCollection.InvalidateDisplayIndexes">
<summary>
Invalidates the display indexes and causes them to be re-evaluated on next layout.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeaderCollection.ParentNode">
<summary>
Gets or sets the node this collection is associated with.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeaderCollection.Item(System.Int32)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeaderCollection.Item(System.String)">
<summary>
Returns reference to the object in collection based on it's name.
</summary>
</member>
<member name="E:DevComponents.AdvTree.ColumnHeaderCollection.SortCells">
<summary>
Occurs before the cells are sorted.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeaderCollection.IsSorted">
<summary>
Gets whether a column that is part of this collection has SortDirection set.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeaderCollection.DisplayIndexMap">
<summary>
A map of display index (key) to index in the column collection (value). Used to quickly find a column from its display index.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeaderCollection.LastVisibleColumn">
<summary>
Gets reference to last visible column or null if there is no last visible column.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeaderCollection.FirstVisibleColumn">
<summary>
Gets reference to first visible column or null if there is no first visible column.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeaderCollection.Bounds">
<summary>
Gets the column header rendering bounds.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeaderCollection.IndexToDisplayIndex.#ctor(System.Int32,System.Int32)">
<summary>
Initializes a new instance of the IndexToDisplayIndex class.
</summary>
<param name="index"></param>
<param name="displayIndex"></param>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeaderControl.#ctor">
<summary>
Initializes a new instance of the ColumnHeaderControl class.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ColumnHeaderControl.GetLayoutPosition(System.Single,System.Int32,System.Int32)">
<summary>
Returns mouse position which is translated if control Zoom is not equal 1
</summary>
<param name="x">X coordinate</param>
<param name="y">Y coordinate</param>
<returns></returns>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeaderControl.ColumnMoveMarkerIndex">
<summary>
Gets or sets the column move marker that marks insertion point for column that is dragged. Marker is drawn before the column specified by this index.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnHeaderControl.Columns">
<summary>
Gets or sets the column header collection to be rendered.
</summary>
</member>
<member name="T:DevComponents.AdvTree.ColumnWidth">
<summary>
Represents the width of the Column. Supports absolute width in Pixels and
relative width as percentage of the width of parent control.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ColumnWidth.#ctor">
<summary>
Creates new instance of the object.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnWidth.Relative">
<summary>
Gets or sets relative width expressed as percentage between 1-100. 0 indicates that
absolute width will be used.
</summary>
<remarks>
Relative width is expressed as percentage between 1-100 of the parent controls
width. 0 indicates that absolute width will be used. Absolute width always takes
priority over relative width. For example value of 30 assigned to this property
indicates that width of the column will be 30% of the total client width of the
control.
</remarks>
</member>
<member name="P:DevComponents.AdvTree.ColumnWidth.Absolute">
<summary>Gets or sets the absolute width of the column in pixels.</summary>
<remarks>
Absolute width always takes precedence over the relative width of the
column.
</remarks>
</member>
<member name="P:DevComponents.AdvTree.ColumnWidth.AutoSize">
<summary>
Gets or sets whether column width is automatically set based on the column's content. Default value is false.
When set absolute and relative size values are ignored.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnWidth.AutoSizeMinHeader">
<summary>
Gets or sets whether column auto-width is set to minimum of the column header text width. Applies to AutoSize=true only.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ColumnWidth.AutoSizeWidth">
<summary>
Gets the auto-size calculated width of the column after tree layout is performed and column has AutoSize=true.
</summary>
</member>
<member name="T:DevComponents.AdvTree.CommandButtonEventArgs">
<summary>
Provides event arguments for command button events.
</summary>
</member>
<member name="M:DevComponents.AdvTree.CommandButtonEventArgs.#ctor(DevComponents.AdvTree.eTreeAction,DevComponents.AdvTree.Node)">
<summary>
Default constructor.
</summary>
<param name="action">Action type.</param>
<param name="node">Context node.</param>
</member>
<member name="F:DevComponents.AdvTree.CommandButtonEventArgs.Action">
<summary>
Indicates the action type that caused the event.
</summary>
</member>
<member name="F:DevComponents.AdvTree.CommandButtonEventArgs.Node">
<summary>
Indicates the node action is peformed on.
</summary>
</member>
<member name="T:DevComponents.AdvTree.ConnectorPointsCollection">
<summary>
Represents collection of connector points for a node.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ConnectorPointsCollection.#ctor">
<summary>
Default constructor.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ConnectorPointsCollection.SetParentNode(DevComponents.AdvTree.Node)">
<summary>
Sets the node collection belongs to.
</summary>
<param name="parent">Node that is parent of this collection.</param>
</member>
<member name="M:DevComponents.AdvTree.ConnectorPointsCollection.Add(System.Drawing.Point)">
<summary>
Adds new object to the collection.
</summary>
<param name="p">Object to add.</param>
<returns>Index of newly added object.</returns>
</member>
<member name="M:DevComponents.AdvTree.ConnectorPointsCollection.AddRange(System.Drawing.Point[])">
<summary>
Adds range of objects to the array.
</summary>
<param name="ap">Array to add.</param>
</member>
<member name="M:DevComponents.AdvTree.ConnectorPointsCollection.ToArray">
<summary>
Copies objects of the collection to the array.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.AdvTree.ConnectorPointsCollection.Insert(System.Int32,System.Drawing.Point)">
<summary>
Inserts new object into the collection.
</summary>
<param name="index">Position of the object.</param>
<param name="value">Object to insert.</param>
</member>
<member name="M:DevComponents.AdvTree.ConnectorPointsCollection.IndexOf(System.Drawing.Point)">
<summary>
Returns index of the object inside of the collection.
</summary>
<param name="value">Reference to the object.</param>
<returns>Index of the object.</returns>
</member>
<member name="M:DevComponents.AdvTree.ConnectorPointsCollection.Contains(System.Drawing.Point)">
<summary>
Returns whether collection contains specified object.
</summary>
<param name="value">Object to look for.</param>
<returns>true if object is part of the collection, otherwise false.</returns>
</member>
<member name="M:DevComponents.AdvTree.ConnectorPointsCollection.Remove(System.Drawing.Point)">
<summary>
Removes specified object from the collection.
</summary>
<param name="value"></param>
</member>
<member name="M:DevComponents.AdvTree.ConnectorPointsCollection.CopyTo(System.Drawing.Point[],System.Int32)">
<summary>
Copies collection into the specified array.
</summary>
<param name="array">Array to copy collection to.</param>
<param name="index">Starting index.</param>
</member>
<member name="M:DevComponents.AdvTree.ConnectorPointsCollection.CopyTo(System.Drawing.Point[])">
<summary>
Copies contained items to the ColumnHeader array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="P:DevComponents.AdvTree.ConnectorPointsCollection.ParentNode">
<summary>
Gets or sets the node this collection is associated with.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ConnectorPointsCollection.Item(System.Int32)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="T:DevComponents.Editors.IntegerInput">
<summary>
Control for input of the integer value.
</summary>
</member>
<member name="T:DevComponents.Editors.NumericInputBase">
<summary>
Represents an control that allows numeric input.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.IOwnerMenuSupport.ClosePopups">
<summary>
Closes all popups managed by the owner control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.IRenderingSupport">
<summary>
Defines interface that should be implemented by controls that support per control renderers.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.IRenderingSupport.GetRenderer">
<summary>
Gets the renderer control will be rendered with. This can be either custom renderer set on the control or the
Rendering.GlobalManager specified renderer.
</summary>
<returns></returns>
</member>
<member name="P:DevComponents.DotNetBar.IRenderingSupport.RenderMode">
<summary>
Gets or sets the redering mode used by control. Default value is eRenderMode.Global which means that static GlobalManager.Renderer is used. If set to Custom then Renderer property must
also be set to the custom renderer that will be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IRenderingSupport.Renderer">
<summary>
Gets or sets the custom renderer used by the items on this control. RenderMode property must also be set to eRenderMode.Custom in order renderer
specified here to be used.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.IAccessibilitySupport">
<summary>
Defines interface for internal accessibility support for DotNetBar control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IAccessibilitySupport.DoDefaultActionItem">
<summary>
Gets or sets the item default accesibility action will be performed on.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.IOwnerLocalize">
<summary>
Provides support for custom localization.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PopupItemControl.InternalAccessibilityNotifyClients(System.Windows.Forms.AccessibleEvents,System.Int32)">
<summary>
Notifies the accessibility client applications of the specified AccessibleEvents for the specified child control.
</summary>
<param name="accEvent">The AccessibleEvents object to notify the accessibility client applications of. </param>
<param name="childID">The child Control to notify of the accessible event.</param>
</member>
<member name="M:DevComponents.DotNetBar.PopupItemControl.RecalcLayout">
<summary>
Forces the button to perform internal layout.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PopupItemControl.CreateGraphics">
<summary>
Creates the Graphics object for the control.
</summary>
<returns>The Graphics object for the control.</returns>
</member>
<member name="M:DevComponents.DotNetBar.PopupItemControl.GetRenderer">
<summary>
Returns the renderer control will be rendered with.
</summary>
<returns>The current renderer.</returns>
</member>
<member name="M:DevComponents.DotNetBar.PopupItemControl.SetupActiveWindowTimer">
<summary>
Sets up timer that watches when active window changes.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PopupItemControl.OnActiveWindowChanged">
<summary>
Called after change of active window has been detected. SetupActiveWindowTimer must be called to enable detection.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PopupItemControl.ReleaseActiveWindowTimer">
<summary>
Releases and disposes the active window watcher timer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PopupItemControl.PerformClick">
<summary>
Generates a Click event for the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PopupItemControl.DevComponents#DotNetBar#IOwner#GetItems(System.String)">
<summary>
Returns the collection of items with the specified name. This member is not implemented and should not be used.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.PopupItemControl.DevComponents#DotNetBar#IOwner#GetItems(System.String,System.Type)">
<summary>
Returns the collection of items with the specified name and type. This member is not implemented and should not be used.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.PopupItemControl.DevComponents#DotNetBar#IOwner#GetItems(System.String,System.Type,System.Boolean)">
<summary>
Returns the collection of items with the specified name and type. This member is not implemented and should not be used.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<param name="useGlobalName">Indicates whether GlobalName property is used for searching.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.PopupItemControl.DevComponents#DotNetBar#IOwner#GetItem(System.String)">
<summary>
Returns the first item that matches specified name. This member is not implemented and should not be used.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.PopupItemControl.DevComponents#DotNetBar#IOwner#Customize">
<summary>
Invokes the DotNetBar Customize dialog.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.PopupItemControl.PopupContainerLoad">
<summary>
Occurs when popup of type container is loading.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.PopupItemControl.PopupContainerUnload">
<summary>
Occurs when popup of type container is unloading.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.PopupItemControl.PopupOpen">
<summary>
Occurs when popup item is about to open.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.PopupItemControl.PopupClose">
<summary>
Occurs when popup item is closing.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.PopupItemControl.PopupShowing">
<summary>
Occurs just before popup window is shown.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.PopupItemControl.LocalizeString">
<summary>
Occurs when Control is looking for translated text for one of the internal text that are
displayed on menus, toolbars and customize forms. You need to set Handled=true if you want
your custom text to be used instead of the built-in system value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItemControl.Style">
<summary>
Gets/Sets the visual style for the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItemControl.RenderMode">
<summary>
Gets or sets the rendering mode used by control. Default value is eRenderMode.Global which means that static GlobalManager.Renderer is used. If set to Custom then Renderer property must
also be set to the custom renderer that will be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItemControl.Renderer">
<summary>
Gets or sets the custom renderer used by the items on this control. RenderMode property must also be set to eRenderMode.Custom in order renderer
specified here to be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItemControl.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItemControl.ColorScheme">
<summary>
Gets or sets button Color Scheme. ColorScheme does not apply to Office2007 styled buttons.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItemControl.ThemeAware">
<summary>
Specifies whether button is drawn using Windows Themes when running on OS that supports themes like Windows XP.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItemControl.IsThemed">
<summary>
Gets whether Windows Themes should be used to draw the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItemControl.UseHook">
<summary>
Gets or sets whether hooks are used for internal DotNetBar system functionality. Using hooks is recommended only if DotNetBar is used in hybrid environments like Visual Studio designers or IE.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItemControl.DevComponents#DotNetBar#IOwner#ParentForm">
<summary>
Gets or sets the form button is attached to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItemControl.DevComponents#DotNetBar#IOwner#ShowResetButton">
<summary>
Indicates whether Reset buttons is shown that allows end-user to reset the toolbar state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItemControl.Images">
<summary>
ImageList for images used on Items. Images specified here will always be used on menu-items and are by default used on all Bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItemControl.ImagesMedium">
<summary>
ImageList for medium-sized images used on Items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItemControl.ImagesLarge">
<summary>
ImageList for large-sized images used on Items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItemControl.DevComponents#DotNetBar#IOwner#ShowToolTips">
<summary>
Indicates whether Tooltips are shown on Bars and menus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItemControl.DevComponents#DotNetBar#IOwner#ShowShortcutKeysInToolTips">
<summary>
Indicates whether item shortcut is displayed in Tooltips.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItemControl.DisabledImagesGrayScale">
<summary>
Gets or sets whether gray-scale algorithm is used to create automatic gray-scale images. Default is true.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualControlBase.#ctor">
<summary>
Creates new instance of the class.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualControlBase.ResetInputPosition">
<summary>
Resets the input position so the new input overwrites current value.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualControlBase.OnInputHorizontalAlignmentChanged(DevComponents.Editors.eHorizontalAlignment,DevComponents.Editors.eHorizontalAlignment)">
<summary>
Called when InputHorizontalAlignment property value has changed.
</summary>
<param name="oldValue">Old value.</param>
<param name="newValue">New Value.</param>
</member>
<member name="M:DevComponents.Editors.VisualControlBase.ShouldSerializeWatermarkColor">
<summary>
Indicates whether property should be serialized by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualControlBase.ResetWatermarkColor">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualControlBase.ResetBackgroundStyle">
<summary>
Resets style to default value. Used by windows forms designer.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualControlBase.SelectNextInputField">
<summary>
Selects next input field if possible.
</summary>
<returns>true if next input field was selected otherwise false.</returns>
</member>
<member name="M:DevComponents.Editors.VisualControlBase.SelectPreviousInputField">
<summary>
Selects previous input field if possible.
</summary>
<returns>true if previous input field was selected otherwise false.</returns>
</member>
<member name="M:DevComponents.Editors.VisualControlBase.BeginInit">
<summary>
ISupportInitialize.BeginInit implementation. While initialization is in progress ValueChanged events will not be fired.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualControlBase.EndInit">
<summary>
ISupportInitialize.EndInit implementation.
</summary>
</member>
<member name="E:DevComponents.Editors.VisualControlBase.ButtonCustomClick">
<summary>
Occurs when ButtonCustom control is clicked.
</summary>
</member>
<member name="E:DevComponents.Editors.VisualControlBase.ButtonCustom2Click">
<summary>
Occurs when ButtonCustom2 control is clicked.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.RenderControlButtons">
<summary>
Gets or sets whether control system buttons are rendered. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.CallBasePaintBackground">
<summary>
Gets or sets whether during painting OnPaintBackground on base control is called when BackColor=Transparent.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.IsWatermarkRendered">
<summary>
Gets whether watermark text should be rendered.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.InputMouseWheelEnabled">
<summary>
Gets or sets whether mouse wheel affects the input control. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.IsKeyboardFocusWithin">
<summary>
Gets whether keyboard focus is within the control.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.RootVisualItem">
<summary>
Gets the reference to internal visual item used as the root visual for the control. Using this property is in all cases not necessary except for some
very advanced usage scenarios.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.InputHorizontalAlignment">
<summary>
Gets or sets the input field alignment inside the control
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.WatermarkFont">
<summary>
Gets or sets the watermark font.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.WatermarkColor">
<summary>
Gets or sets the watermark text color.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.WatermarkEnabled">
<summary>
Gets or sets whether watermark text is displayed if set for the input items. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.WatermarkText">
<summary>
Gets or sets the watermark text displayed on the input control when control is empty.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.WatermarkAlignment">
<summary>
Gets or sets the watermark text alignment. Default value is left.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.FocusHighlightEnabled">
<summary>
Gets or sets whether FocusHighlightColor is used as background color to highlight text box when it has input focus. Default value is false.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.FocusHighlightColor">
<summary>
Gets or sets the color used as background color to highlight text box when it has input focus and focus highlight is enabled.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.ButtonCustom">
<summary>
Gets the object that describes the settings for the custom button that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.ButtonCustom2">
<summary>
Gets the object that describes the settings for the custom button that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.BackgroundStyle">
<summary>
Specifies the background style of the control.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.PreferredHeight">
<summary>
Gets the preferred height of the control.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.FieldNavigation">
<summary>
Gets or sets the keys used to navigate between the input fields provided by this control.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.DisabledBackColor">
<summary>
Gets or sets the control background color when control is disabled. Default value is an empty color which indicates that background is not changed when control is disabled.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.DisabledForeColor">
<summary>
Gets or sets the control text color when control is disabled. Default value is an empty color which indicates that background is not changed when control is disabled.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualControlBase.Colors">
<summary>
Gets the system colors used by the control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ICommandSource">
<summary>
Defines an interface for the object that knows how to invoke a command.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ICommandSource.Command">
<summary>
Gets or sets the command that will be executed when the command source is invoked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ICommandSource.CommandParameter">
<summary>
Gets or sets user defined data value that can be passed to the command when it is executed.
</summary>
</member>
<member name="M:DevComponents.Editors.NumericInputBase.#ctor">
<summary>
Initializes a new instance of the NumericInputBase class.
</summary>
</member>
<member name="M:DevComponents.Editors.NumericInputBase.OnLockUpdateChanged(System.EventArgs)">
<summary>
Raises the LockUpdateChanged event.
</summary>
<param name="e">Provides event data./</param>
</member>
<member name="F:DevComponents.Editors.NumericInputBase._ShowUpDown">
<summary>
Gets or sets a value indicating whether a spin button control (up-down control) is used to adjust the current value. The default is false.
<remarks>
When the ShowUpDown property is set to true, a spin button control is shown to adjust value of currently focused input item.
The value can be adjusted by using the up and down buttons to change the value.
</remarks>
</summary>
</member>
<member name="M:DevComponents.Editors.NumericInputBase.DecreaseValue">
<summary>
Decreases value of the control.
</summary>
</member>
<member name="M:DevComponents.Editors.NumericInputBase.IncreaseValue">
<summary>
Increases the value of the control.
</summary>
</member>
<member name="M:DevComponents.Editors.NumericInputBase.ShowDropDown">
<summary>
Shows drop-down popup. Note that popup will be shown only if there is a DropDownControl assigned or DropDownItems collection has at least one item.
</summary>
</member>
<member name="M:DevComponents.Editors.NumericInputBase.CloseDropDown">
<summary>
Closes the drop-down popup if it is open.
</summary>
</member>
<member name="M:DevComponents.Editors.NumericInputBase.OnButtonClearClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises the ButtonClearClick event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.Editors.NumericInputBase.OnButtonDropDownClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises the ButtonDropDownClick event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.Editors.NumericInputBase.OnValueChanged(System.EventArgs)">
<summary>
Raises the ValueChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.Editors.NumericInputBase.OnValueChangedDirect(System.EventArgs)">
<summary>
Raises the ValueChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.Editors.NumericInputBase.OnCommandChanged">
<summary>
Called when Command property value changes.
</summary>
</member>
<member name="M:DevComponents.Editors.NumericInputBase.OnButtonFreeTextClick(System.ComponentModel.CancelEventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="E:DevComponents.Editors.NumericInputBase.ValueChanged">
<summary>
Occurs when the Value or IsEmpty property changes.
<remarks>
This event is not raised when the entered date is earlier than MinDateTime or later than MaxDateTime.
</remarks>
</summary>
</member>
<member name="E:DevComponents.Editors.NumericInputBase.ValueObjectChanged">
<summary>
Occurs when the Value or IsEmpty property changes. This event occurs at the same time and has same function as ValueChanged event. It is provided for binding support.
</summary>
</member>
<member name="E:DevComponents.Editors.NumericInputBase.ButtonClearClick">
<summary>
Occurs when Clear button is clicked and allows you to cancel the default action performed by the button.
</summary>
</member>
<member name="E:DevComponents.Editors.NumericInputBase.ButtonDropDownClick">
<summary>
Occurs when Drop-Down button that shows calendar is clicked and allows you to cancel showing of the popup.
</summary>
</member>
<member name="E:DevComponents.Editors.NumericInputBase.LockUpdateChanged">
<summary>
Occurs when ShowCheckBox property is set to true and user changes the lock status of the control by clicking the check-box.
</summary>
</member>
<member name="P:DevComponents.Editors.NumericInputBase.IsInputReadOnly">
<summary>
Gets or sets whether input part of the control is read-only. When set to true the input part of the control becomes read-only and does not allow the typing. However, drop-down and up/down buttons part if visible still allows user to possibly change the value of the control through the method you can provide on drop-down or through up/down buttons. Use this property to allow change of the value through drop-down or up/down buttons only.
</summary>
</member>
<member name="P:DevComponents.Editors.NumericInputBase.ShowCheckBox">
<summary>
Gets or sets a value indicating whether a check box is displayed to the left of the input value.
Set to true if a check box is displayed to the left of the input value; otherwise, false. The default is false.
<remarks>
When the ShowCheckBox property is set to true, a check box is displayed to the left of the input in the control. When the check box is selected, the value can be updated. When the check box is cleared, the value is unable to be changed.
You can handle the LockUpdateChanged event to be notified when this check box is checked and unchecked. Use LockUpdateChecked property
to get or sets whether check box is checked.
</remarks>
</summary>
</member>
<member name="P:DevComponents.Editors.NumericInputBase.LockUpdateChecked">
<summary>
Gets or sets whether check box shown using ShowCheckBox property which locks/unlocks the control update is checked.
</summary>
</member>
<member name="P:DevComponents.Editors.NumericInputBase.ButtonDropDown">
<summary>
Gets the object that describes the settings for the button that shows drop-down when clicked.
</summary>
</member>
<member name="P:DevComponents.Editors.NumericInputBase.ButtonClear">
<summary>
Gets the object that describes the settings for the button that clears the content of the control when clicked.
</summary>
</member>
<member name="P:DevComponents.Editors.NumericInputBase.ButtonFreeText">
<summary>
Gets the object that describes the settings for the button that switches the control into the free-text entry mode when clicked.
</summary>
</member>
<member name="P:DevComponents.Editors.NumericInputBase.ButtonCalculator">
<summary>
Gets the object that describes the settings for the button that displays popup calculator.
</summary>
</member>
<member name="P:DevComponents.Editors.NumericInputBase.DisplayFormat">
<summary>
Gets or sets the Numeric String Format that is used to format the numeric value entered for display purpose. Read more about
available formats in MSDN under "Standard Numeric Format Strings" and "Custom Numeric Format Strings" topics.
<remarks>
The format specified here indicates the format for display purpose only, not for the input purpose.
For example to display the number in system Currency format set the DisplayFormat to 'C'.
</remarks>
</summary>
</member>
<member name="P:DevComponents.Editors.NumericInputBase.AllowEmptyState">
<summary>
Gets or sets whether empty null/nothing state of the control is allowed. Default value is true which means that IsEmpty property
may return true if input value is resets or ValueObject set to null/nothing.
</summary>
</member>
<member name="P:DevComponents.Editors.NumericInputBase.IsEmpty">
<summary>
Gets or sets whether control is empty i.e. it does not hold a valid value.
</summary>
</member>
<member name="P:DevComponents.Editors.NumericInputBase.ValueChangedTrigger">
<summary>
Specifies the behavior of ValueChanged event triggering.
</summary>
</member>
<member name="P:DevComponents.Editors.NumericInputBase.InputHorizontalAlignment">
<summary>
Gets or sets the input field alignment inside the control
</summary>
</member>
<member name="P:DevComponents.Editors.NumericInputBase.DropDownControl">
<summary>
Gets or sets the reference of the control that will be displayed on popup that is shown when drop-down button is clicked.
</summary>
</member>
<member name="P:DevComponents.Editors.NumericInputBase.DropDownItems">
<summary>
Gets the collection of BaseItem derived items displayed on popup menu.
</summary>
</member>
<member name="P:DevComponents.Editors.NumericInputBase.AutoOverwrite">
<summary>
Gets or sets whether auto-overwrite functionality for input is enabled. When in auto-overwrite mode input field will erase existing entry
and start new one if typing is continued after InputComplete method is called.
</summary>
</member>
<member name="P:DevComponents.Editors.NumericInputBase.Command">
<summary>
Gets or sets the command assigned to the item. Default value is null.
<remarks>Note that if this property is set to null Enabled property will be set to false automatically to disable the item.</remarks>
</summary>
</member>
<member name="P:DevComponents.Editors.NumericInputBase.CommandParameter">
<summary>
Gets or sets user defined data value that can be passed to the command when it is executed.
</summary>
</member>
<member name="P:DevComponents.Editors.NumericInputBase.FreeTextEntryToggleKey">
<summary>
Gets or sets the keyboard key that will toggle FreeTextEntryMode. Default value is Keys.None.
</summary>
</member>
<member name="E:DevComponents.Editors.NumericInputBase.ConvertFreeTextEntry">
<summary>
Occurs if Free-Text entry value is not natively recognized by the control and provides you with opportunity to convert that value to the
value control expects.
</summary>
</member>
<member name="E:DevComponents.Editors.NumericInputBase.ButtonFreeTextClick">
<summary>
Occurs when Free-Text button is clicked and allows you to cancel its default action.
</summary>
</member>
<member name="P:DevComponents.Editors.NumericInputBase.AutoResolveFreeTextEntries">
<summary>
Gets or sets whether free text entries are attempted to be auto-resolved to dates like Today to today's date or Now to date and time now etc. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.NumericInputBase.AutoOffFreeTextEntry">
<summary>
Gets or sets whether free-text entry is automatically turned off when control loses input focus. Default value is false.
</summary>
</member>
<member name="P:DevComponents.Editors.NumericInputBase.FreeTextEntryMode">
<summary>
Gets or sets whether control input is in free-text input mode. Default value is false.
</summary>
</member>
<member name="M:DevComponents.Editors.IntegerInput.DecreaseValue">
<summary>
Decreases value of the control.
</summary>
</member>
<member name="M:DevComponents.Editors.IntegerInput.IncreaseValue">
<summary>
Increases the value of the control.
</summary>
</member>
<member name="M:DevComponents.Editors.IntegerInput.Copy">
<summary>
Copies the current value in the control to the Clipboard.
</summary>
</member>
<member name="M:DevComponents.Editors.IntegerInput.Paste">
<summary>
Pastes the current Clipboard content if possible as the value into the control.
</summary>
</member>
<member name="M:DevComponents.Editors.IntegerInput.Cut">
<summary>
Moves the current control value to the Clipboard.
</summary>
</member>
<member name="M:DevComponents.Editors.IntegerInput.OnParseValue(DevComponents.Editors.ParseIntegerValueEventArgs)">
<summary>
Raises the ParseValue event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="E:DevComponents.Editors.IntegerInput.ParseValue">
<summary>
Occurs when ValueObject property is set and it allows you to provide custom parsing for the values.
</summary>
</member>
<member name="P:DevComponents.Editors.IntegerInput.MouseWheelValueChangeEnabled">
<summary>
Gets or sets whether mouse wheel increases or decreases the input value when used.
</summary>
</member>
<member name="P:DevComponents.Editors.IntegerInput.Value">
<summary>
Gets or sets the value displayed in the control.
</summary>
</member>
<member name="P:DevComponents.Editors.IntegerInput.ValueObject">
<summary>
Gets or sets the value of the control as an object. This property allows you to bind to the database fields and supports
null values. Expected value is int type or null.
</summary>
</member>
<member name="P:DevComponents.Editors.IntegerInput.MaxValue">
<summary>
Gets or sets the maximum value that can be entered.
</summary>
</member>
<member name="P:DevComponents.Editors.IntegerInput.MinValue">
<summary>
Gets or sets the minimum value that can be entered.
</summary>
</member>
<member name="P:DevComponents.Editors.IntegerInput.Increment">
<summary>
Gets or sets the value to increment or decrement the value of the control when the up or down buttons are clicked.
</summary>
</member>
<member name="T:DevComponents.Editors.DoubleInput">
<summary>
Control for input of the integer value.
</summary>
</member>
<member name="M:DevComponents.Editors.DoubleInput.Copy">
<summary>
Copies the current value in the control to the Clipboard.
</summary>
</member>
<member name="M:DevComponents.Editors.DoubleInput.Paste">
<summary>
Pastes the current Clipboard content if possible as the value into the control.
</summary>
</member>
<member name="M:DevComponents.Editors.DoubleInput.Cut">
<summary>
Moves the current control value to the Clipboard.
</summary>
</member>
<member name="M:DevComponents.Editors.DoubleInput.OnParseValue(DevComponents.Editors.ParseDoubleValueEventArgs)">
<summary>
Raises the ParseValue event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.Editors.DoubleInput.DecreaseValue">
<summary>
Decreases value of the control.
</summary>
</member>
<member name="M:DevComponents.Editors.DoubleInput.IncreaseValue">
<summary>
Increases the value of the control.
</summary>
</member>
<member name="E:DevComponents.Editors.DoubleInput.ParseValue">
<summary>
Occurs when ValueObject property is set and it allows you to provide custom parsing for the values.
</summary>
</member>
<member name="P:DevComponents.Editors.DoubleInput.MouseWheelValueChangeEnabled">
<summary>
Gets or sets whether mouse wheel increases or decreases the input value when used.
</summary>
</member>
<member name="P:DevComponents.Editors.DoubleInput.Value">
<summary>
Gets or sets the value displayed in the control.
</summary>
</member>
<member name="P:DevComponents.Editors.DoubleInput.ValueObject">
<summary>
Gets or sets the value of the control as an object. This property allows you to bind to the database fields and supports
null values. Expected value is int type or null.
</summary>
</member>
<member name="P:DevComponents.Editors.DoubleInput.MaxValue">
<summary>
Gets or sets the maximum value that can be entered.
</summary>
</member>
<member name="P:DevComponents.Editors.DoubleInput.MinValue">
<summary>
Gets or sets the minimum value that can be entered.
</summary>
</member>
<member name="P:DevComponents.Editors.DoubleInput.Increment">
<summary>
Gets or sets the value to increment or decrement the value of the control when the up or down buttons are clicked.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeInput.#ctor">
<summary>
Initializes a new instance of the DateTimeInput class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeInput.Copy">
<summary>
Copies the current value in the control to the Clipboard.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeInput.Paste">
<summary>
Pastes the current Clipboard content if possible as the value into the control.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeInput.Cut">
<summary>
Moves the current control value to the Clipboard.
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.DateTimeInput.DateTimeDefaults">
<summary>
Gets or sets the default date-time values that are used by the control.
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.DateTimeInput._ShowUpDown">
<summary>
Gets or sets a value indicating whether a spin button control (up-down control) is used to adjust the date/time value. The default is false.
<remarks>
When the ShowUpDown property is set to true, a spin button control is shown to adjust value of currently focused input item.
The date and time can be adjusted by selecting each element individually and using the up and down buttons to change the value.
</remarks>
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeInput.ShouldSerializeValue">
<summary>
Gets whether Value property should be serialized by Windows Forms designer.
</summary>
<returns>true if value serialized otherwise false.</returns>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeInput.ResetValue">
<summary>
Resets Value property to default value. Used by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeInput.OnParseValue(DevComponents.Editors.DateTimeAdv.ParseDateTimeValueEventArgs)">
<summary>
Raises the ParseValue event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeInput.ShouldSerializeMinDate">
<summary>
Gets whether Value property should be serialized by Windows Forms designer.
</summary>
<returns>true if value serialized otherwise false.</returns>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeInput.ResetMinDate">
<summary>
Reset the MinDate property to its default value.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeInput.ShouldSerializeMaxDate">
<summary>
Gets whether Value property should be serialized by Windows Forms designer.
</summary>
<returns>true if value serialized otherwise false.</returns>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeInput.ResetMaxDate">
<summary>
Reset the MaxDate property to its default value.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeInput.GetActiveCulture">
<summary>
Gets the Culture used by the date time input and month calendar controls
</summary>
<returns>reference to CultureInfo</returns>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeInput.OnLockUpdateChanged(System.EventArgs)">
<summary>
Raises the LockUpdateChanged event.
</summary>
<param name="e">Provides event data./</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeInput.OnValueChanged(System.EventArgs)">
<summary>
Raises the ValueChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeInput.OnButtonClearClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises the ButtonClearClick event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeInput.OnButtonDropDownClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises the ButtonDropDownClick event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeInput.OnDateTimeSelectorVisibilityChanged(DevComponents.Editors.DateTimeAdv.eDateTimeSelectorVisibility,DevComponents.Editors.DateTimeAdv.eDateTimeSelectorVisibility)">
<summary>
Called when DateTimeSelectorVisibility property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeInput.OnTimeSelectorTimeFormatChanged(DevComponents.Editors.DateTimeAdv.eTimeSelectorFormat,DevComponents.Editors.DateTimeAdv.eTimeSelectorFormat)">
<summary>
Called when TimeFormat property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeInput.OnTimeSelectorTypeChanged(DevComponents.Editors.DateTimeAdv.eTimeSelectorType,DevComponents.Editors.DateTimeAdv.eTimeSelectorType)">
<summary>
Called when TimeSelectorType property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeInput.OnCommandChanged">
<summary>
Called when Command property value changes.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeInput.OnButtonFreeTextClick(System.ComponentModel.CancelEventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.DateTimeInput.ValueChanged">
<summary>
Occurs when the Value or IsEmpty property changes.
<remarks>
This event is not raised when the entered date is earlier than MinDateTime or later than MaxDateTime.
</remarks>
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.DateTimeInput.ValueObjectChanged">
<summary>
Occurs when the Value or IsEmpty property changes. This event occurs at the same time and has same function as ValueChanged event. It is provided for binding support.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.DateTimeInput.FormatChanged">
<summary>
Occurs when the Format property value has changed.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.DateTimeInput.ButtonClearClick">
<summary>
Occurs when Clear button is clicked and allows you to cancel the default action performed by the button.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.DateTimeInput.ButtonDropDownClick">
<summary>
Occurs when Drop-Down button that shows calendar is clicked and allows you to cancel showing of the popup.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.DateTimeInput.ParseValue">
<summary>
Occurs when ValueObject property is set and it allows you to provide custom parsing for the values.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.DateTimeInput.LockUpdateChanged">
<summary>
Occurs when ShowCheckBox property is set to true and user changes the lock status of the control by clicking the check-box.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.IsPopupCalendarOpen">
<summary>
Gets whether popup calendar is open.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.PopupCalendarKeyboardNavigationEnabled">
<summary>
Gets or sets whether selected date on popup calendar can be changed using keyboard arrow keys.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.ShowCheckBox">
<summary>
Gets or sets a value indicating whether a check box is displayed to the left of the selected date.
Set to true if a check box is displayed to the left of the selected date; otherwise, false. The default is false.
<remarks>
When the ShowCheckBox property is set to true, a check box is displayed to the left of the date in the control. When the check box is selected, the date/time value can be updated. When the check box is cleared, the date/time value is unable to be changed.
You can handle the LockUpdateChanged event to be notified when this check box is checked and unchecked. Use LockUpdateChecked property
to get or sets whether check box is checked.
</remarks>
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.Value">
<summary>
Gets or sets the date time value of the control. You can use IsEmpty property to check whether control holds an empty value.
Setting this property to System.DateTime(0) will also make the control Empty if AllowEmptyState=true.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.ValueObject">
<summary>
Gets or sets the date/time value of the control as an object. This property allows you to bind to the database fields and supports
null values. Expected value is DateTime object or null to indicate no date selected.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.Values">
<summary>
Gets or sets the values of the nested DateTimeGroup items.
<remarks>
When nested date-time groups are used note that some of the features of the control are disabled, notably minimum and maximum values
for nested date-times.
</remarks>
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.AllowEmptyState">
<summary>
Gets or sets whether empty null/nothing state of the control is allowed. Default value is true which means that IsEmpty property
may return true if input value is resets or ValueObject set to null/nothing.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.IsEmpty">
<summary>
Gets or sets whether control is empty i.e. it does not hold a valid DateTime value.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.MinDate">
<summary>
Gets or sets the minimum date and time that can be selected in the control.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.MaxDate">
<summary>
Gets or sets the maximum date and time that can be selected in the control.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.Format">
<summary>
Gets or sets the format date/time is displayed in. To specify custom format set this value to Custom and specify custom format using CustomFormat property.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.CustomFormat">
<summary>
Gets or sets the custom date/time format string.
</summary>
<remarks>
<para>
To display string literals that contain date and time separators or format strings listed below,
you must use escape characters in the substring. For example, to display the date as "June 15 at 12:00 PM",
set the CustomFormat property to "MMMM dd 'at' t:mm tt". If the "at" substring is not enclosed by escape characters,
the result is "June 15 aP 12:00PM" because the "t" character is read as the one-letter A.M./P.M. format string (see the format string table below).
</para>
<para>
To display single quote in custom format use two single quotes characters like so '' after each other and they will be displayed as single quote.
</para>
The following list shows all the valid format strings and their descriptions:
<list type="table">
<listheader>
<term>Format String</term>
<description>Description</description>
</listheader>
<item>
<term>d</term>
<description>The one- or two-digit day.</description>
</item>
<item>
<term>dd</term>
<description>The two-digit day. Single-digit day values are preceded by a 0. </description>
</item>
<item>
<term>ddd</term>
<description>The three-character day-of-week abbreviation.</description>
</item>
<item>
<term>dddd</term>
<description>The full day-of-week name.</description>
</item>
<item>
<term>jjj</term>
<description>The three-digit day-of-year day. Single and two-digit values are preceded by 0.</description>
</item>
<item>
<term>j</term>
<description>The three-digit day-of-year day.</description>
</item>
<item>
<term>h</term>
<description>The one- or two-digit hour in 12-hour format.</description>
</item>
<item>
<term>hh</term>
<description>The two-digit hour in 12-hour format. Single digit values are preceded by a 0. </description>
</item>
<item>
<term>H</term>
<description>The one- or two-digit hour in 24-hour format. </description>
</item>
<item>
<term>HH</term>
<description>The two-digit hour in 24-hour format. Single digit values are preceded by a 0.</description>
</item>
<item>
<term>m</term>
<description>The one- or two-digit minute.</description>
</item>
<item>
<term>mm</term>
<description>The two-digit minute. Single digit values are preceded by a 0.</description>
</item>
<item>
<term>M</term>
<description>The one- or two-digit month number.</description>
</item>
<item>
<term>MM</term>
<description>The two-digit month number. Single digit values are preceded by a 0.</description>
</item>
<item>
<term>MMM</term>
<description>The three-character month abbreviation.</description>
</item>
<item>
<term>MMMM</term>
<description>The full month name.</description>
</item>
<item>
<term>s</term>
<description>The one- or two-digit seconds.</description>
</item>
<item>
<term>ss</term>
<description>The two-digit seconds. Single digit values are preceded by a 0.</description>
</item>
<item>
<term>t</term>
<description>The one-letter A.M./P.M. abbreviation (A.M. is displayed as "A").</description>
</item>
<item>
<term>tt</term>
<description>The two-letter A.M./P.M. abbreviation (A.M. is displayed as "AM").</description>
</item>
<item>
<term>y</term>
<description>The one-digit year (2001 is displayed as "1").</description>
</item>
<item>
<term>yy</term>
<description>The last two digits of the year (2001 is displayed as "01").</description>
</item>
<item>
<term>yyyy</term>
<description>The full year (2001 is displayed as "2001").</description>
</item>
<item>
<term>{</term>
<description>Starts the nested date-time group inside of the control. Note that nested groups must always be closed.
Nested date-time groups can be used to represent range of input date/time values in the control
To access nested values use Values property. For example to have control represent the input from two time values you could set
CustomFormat to 'from' {HH:mm} 'to' {HH:mm} which will create two nested date/time groups that represent the time value. Entered
time values can be accessed through Values property which return an array of all input values.</description>
</item>
<item>
<term>}</term>
<description>Ends the nested date-time input group.</description>
</item>
</list>
</remarks>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.CurrentCulture">
<summary>
Gets or sets the CultureInfo for the culture used by the DateTime Input controls and Month Calendar controls.
Default value is null which indicates that controls will use CurrentUICulture.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.AutoOverwrite">
<summary>
Gets or sets whether auto-overwrite functionality for input is enabled. When in auto-overwrite mode input field will erase existing entry
and start new one if typing is continued after InputComplete method is called.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.LockUpdateChecked">
<summary>
Gets or sets whether check box shown using ShowCheckBox property which locks/unlocks the control update is checked.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.ButtonDropDown">
<summary>
Gets the object that describes the settings for the button that shows drop-down calendar when clicked.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.ButtonClear">
<summary>
Gets the object that describes the settings for the button that clears the content of the control when clicked.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.ButtonFreeText">
<summary>
Gets the object that describes the settings for the button that switches the control into the free-text entry mode when clicked.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.IsInputReadOnly">
<summary>
Gets or sets whether input part of the control is read-only. When set to true the input part of the control becomes
read-only and does not allow the typing. However, drop-down part if visible still allows user to change the value of the control
Use this property to allow change of the value through drop-down picker only.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.DefaultInputValues">
<summary>
Gets or sets whether empty input values (year, month or day) are set to defaults while user is entering data. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.MonthCalendar">
<summary>
Gets the reference to the internal MonthCalendarItem control which is used to display calendar when drop-down is open.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.AutoSelectDate">
<summary>
Gets or sets whether first day in month is automatically selected on popup date picker when month or year is changed.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.AutoAdvance">
<summary>
Gets or sets whether input focus is automatically advanced to next input field when input is complete in current one.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.SelectNextInputCharacters">
<summary>
List of characters that when pressed would select next input field. For example if you are
allowing time input you could set this property to : so when user presses the : character,
the input is forwarded to the next input field.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.DateTimeSelectorVisibility">
<summary>
Gets or sets the date-time selectors visibility on popup. Default value is Auto which will select selector visibility based on Format property setting.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.TimeSelectorItem">
<summary>
Returns reference to internal time selector item which is used on drop-down to select time when control is used in time entry mode.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.TimeSelectorTimeFormat">
<summary>
Gets or sets the popup time selector time format used to present time by the selector i.e. 12H or 24H format.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.TimeSelectorType">
<summary>
Indicates the type of popup time selector used.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.Command">
<summary>
Gets or sets the command assigned to the item. Default value is null.
<remarks>Note that if this property is set to null Enabled property will be set to false automatically to disable the item.</remarks>
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.CommandParameter">
<summary>
Gets or sets user defined data value that can be passed to the command when it is executed.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.DateTimeInput.ConvertFreeTextEntry">
<summary>
Occurs if Free-Text entry value is not natively recognized by the control and provides you with opportunity to convert that value to the
value control expects.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.DateTimeInput.ButtonFreeTextClick">
<summary>
Occurs when Free-Text button is clicked and allows you to cancel its default action.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.AutoResolveFreeTextEntries">
<summary>
Gets or sets whether free text entries are attempted to be auto-resolved to dates like Today to today's date or Now to date and time now etc. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.AutoOffFreeTextEntry">
<summary>
Gets or sets whether free-text entry is automatically turned off when control loses input focus. Default value is false.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeInput.FreeTextEntryMode">
<summary>
Gets or sets whether control input is in free-text input mode. Default value is false.
</summary>
</member>
<member name="M:DevComponents.AdvTree.DateTimeCellEditor.#ctor">
<summary>
Initializes a new instance of the DateTimeCellEditor class.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Display.CellDisplay">
<summary>
Represents cell display class.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Display.CellDisplayInfo">
<summary>
Represents information necessary to paint the cell on canvas.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Display.ColorTableInitializer">
<summary>
Initializes the tree color tables.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Display.ColumnHeaderRendererEventArgs">
<summary>
Provides data for RenderColumnHeader event.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.ColumnHeaderRendererEventArgs.ColumnHeader">
<summary>
Gets the column header that is rendered.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.ColumnHeaderRendererEventArgs.Graphics">
<summary>
Target Graphics canvas.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.ColumnHeaderRendererEventArgs.Bounds">
<summary>
Gets the bounds of the column header.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.ColumnHeaderRendererEventArgs.Style">
<summary>
Gets the effective style for the column.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.ColumnHeaderRendererEventArgs.Tree">
<summary>
Gets the AdvTree control header is rendered for.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.ColumnHeaderRendererEventArgs.SortIndicatorColor">
<summary>
Gets or sets the color of the column sort indicator.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Display.ColumnHeaderRendererEventArgs.#ctor">
<summary>
Initializes a new instance of the ColumnHeaderRendererEventArgs class.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Display.ColumnHeaderRendererEventArgs.#ctor(DevComponents.AdvTree.AdvTree,DevComponents.AdvTree.ColumnHeader,System.Drawing.Graphics,System.Drawing.Rectangle,DevComponents.DotNetBar.ElementStyle)">
<summary>
Initializes a new instance of the ColumnHeaderRendererEventArgs class.
</summary>
<param name="columnHeader"></param>
<param name="graphics"></param>
<param name="bounds"></param>
<param name="style"></param>
</member>
<member name="T:DevComponents.AdvTree.Display.ConnectorRendererEventArgs">
<summary>
Represents helper class for node connector display.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.ConnectorRendererEventArgs.FromNode">
<summary>
From node reference.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.ConnectorRendererEventArgs.StyleFromNode">
<summary>
From node style reference.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.ConnectorRendererEventArgs.ToNode">
<summary>
To node reference.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.ConnectorRendererEventArgs.StyleToNode">
<summary>
To node style reference.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.ConnectorRendererEventArgs.Graphics">
<summary>
Graphics object used for drawing.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.ConnectorRendererEventArgs.Offset">
<summary>
Node offset since some node coordinates are relative.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.ConnectorRendererEventArgs.IsRootNode">
<summary>
Indicates whether from node is a root node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.ConnectorRendererEventArgs.NodeConnector">
<summary>
Reference to node connector object that describes connector type.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.ConnectorRendererEventArgs.LinkConnector">
<summary>
Gets or sets whether connector is link connector.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.ConnectorRendererEventArgs.ConnectorPoints">
<summary>
Reference to the collection of the connector path points. Default value is null indicating there are no path points.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Display.DragDropMarkerRendererEventArgs">
<summary>
Provides data for the NodeRenderer.RenderDragDropMarker event.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.DragDropMarkerRendererEventArgs.Graphics">
<summary>
Gets or sets reference to Graphics object, canvas node is rendered on.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.DragDropMarkerRendererEventArgs.Bounds">
<summary>
Gets or sets the selection bounds.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Display.DragDropMarkerRendererEventArgs.#ctor">
<summary>
Initializes a new instance of the DragDropMarkerRendererEventArgs class.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Display.DragDropMarkerRendererEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Initializes a new instance of the DragDropMarkerRendererEventArgs class.
</summary>
<param name="graphics"></param>
<param name="bounds"></param>
</member>
<member name="T:DevComponents.AdvTree.Display.LineConnectorDisplay">
<summary>
Represents the line connector display class.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Display.NodeConnectorDisplay">
<summary>
Base class for drawing node connectors.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeConnectorDisplay.#ctor">
<summary>
Creates new instance of the object.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeConnectorDisplay.DrawConnector(DevComponents.AdvTree.Display.ConnectorRendererEventArgs)">
<summary>
Draws connector line between two nodes.
</summary>
<param name="info">Connector context information.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeConnectorDisplay.GetLinePen(DevComponents.AdvTree.Display.ConnectorRendererEventArgs)">
<summary>
Returns new instance of pen object for node connector line. Caller is responsible for
disposing of this object.
</summary>
<param name="info">Node connector display info.</param>
<returns>New instance of Pen object.</returns>
</member>
<member name="M:DevComponents.AdvTree.Display.LineConnectorDisplay.DrawConnector(DevComponents.AdvTree.Display.ConnectorRendererEventArgs)">
<summary>
Draws connector line between two nodes.
</summary>
<param name="info">Connector context information.</param>
</member>
<member name="T:DevComponents.AdvTree.Display.NodeCellRendererEventArgs">
<summary>
Provides information for cell rendering methods and events.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Display.NodeRendererEventArgs">
<summary>
Summary description for NodeRendererEventArgs.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.NodeRendererEventArgs.Graphics">
<summary>
Gets or sets reference to Graphics object, canvas node is rendered on.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.NodeRendererEventArgs.Node">
<summary>
Gets or sets the reference to Node object being rendered.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.NodeRendererEventArgs.NodeBounds">
<summary>
Gets or sets the absolute node bounds.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.NodeRendererEventArgs.Style">
<summary>
Gets or sets the reference to element style for rendered node or cell. Style provided here is the style
for current node or cell state.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.NodeRendererEventArgs.Color">
<summary>
Gets or sets color that is passed to renderer. May be Color.Empty.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeRendererEventArgs.#ctor">
<summary>
Creates new instance of the class.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.NodeCellRendererEventArgs.Cell">
<summary>
Gets or sets the cell being rendered.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.NodeCellRendererEventArgs.CellBounds">
<summary>
Gets or sets absolute cell bounds.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.NodeCellRendererEventArgs.CellOffset">
<summary>
Gets or sets the internal cell offset.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.NodeCellRendererEventArgs.ColorScheme">
<summary>
Gets or sets the color scheme.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeCellRendererEventArgs.#ctor">
<summary>
Creates new instance of the class.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeCellRendererEventArgs.#ctor(System.Drawing.Graphics,DevComponents.AdvTree.Node,System.Drawing.Rectangle,DevComponents.DotNetBar.ElementStyle,DevComponents.AdvTree.Cell,System.Drawing.Rectangle)">
<summary>
Creates new instance of the class and initializes it with default values.
</summary>
<param name="g">Reference to graphics object.</param>
<param name="node">Reference to context node.</param>
<param name="bounds">Reference to node bounds</param>
<param name="style">Reference to cell style</param>
<param name="cell">Reference to cell</param>
<param name="cellBounds">Reference to cell bounds</param>
</member>
<member name="T:DevComponents.AdvTree.ConnectorPointInfo">
<summary>
Represents custom connector path info.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Display.NodeDisplay">
<summary>
Summary description for NodeDisplay.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeDisplay.#ctor(DevComponents.AdvTree.AdvTree)">
<summary>Creates new instance of the class</summary>
<param name="tree">Object to initialize class with.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeDisplay.Paint(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints the layout on canvas.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeDisplay.SetLockedOffset(System.Drawing.Point)">
<summary>
Sets locked offset to specific value. Point.Empty means there is no locked offset set.
</summary>
<param name="p">New locked offset.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeDisplay.GetLockedOffset">
<summary>
</summary>
<returns></returns>
</member>
<member name="P:DevComponents.AdvTree.Display.NodeDisplay.Offset">
<summary>
Gets or sets the offset of the tree content relative to the size of the container control.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Display.NodeDisplay.LockOffset">
<summary>Gets or sets whether offset is locked, i.e. cannot be changed.</summary>
</member>
<member name="P:DevComponents.AdvTree.Display.NodeDisplay.DefaultOffset">
<summary>
Returns the default offset for the tree content relative to the size of the container.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Display.NodeDisplay.Tree">
<summary>
Gets or sets the reference to the tree control managed by display class.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Display.NodeExpandDisplay">
<summary>
Base class for node expand button display.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeExpandDisplay.#ctor">
<summary>Creates new instance of the class</summary>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeExpandDisplay.DrawExpandButton(DevComponents.AdvTree.NodeExpandPartRendererEventArgs)">
<summary>Draws expand button.</summary>
<param name="e">Context parameters for drawing expand button.</param>
</member>
<member name="T:DevComponents.AdvTree.Display.NodeExpandEllipseDisplay">
<summary>
Represents class that paints elliptical expand button.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeExpandEllipseDisplay.DrawExpandButton(DevComponents.AdvTree.NodeExpandPartRendererEventArgs)">
<summary>Draws ellipse type expand button.</summary>
<param name="e">Expand context drawing information.</param>
</member>
<member name="T:DevComponents.AdvTree.Display.NodeExpandImageDisplay">
<summary>
Represents expand button display using predefined images.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeExpandImageDisplay.DrawExpandButton(DevComponents.AdvTree.NodeExpandPartRendererEventArgs)">
<summary>
Draws image type expand button.
</summary>
<param name="e">Expand context information</param>
</member>
<member name="T:DevComponents.AdvTree.NodeExpandPartRendererEventArgs">
<summary>
Represents event arguments for RenderExpandPart event.
</summary>
</member>
<member name="F:DevComponents.AdvTree.NodeExpandPartRendererEventArgs.Graphics">
<summary>
Gets or sets reference to Graphics object, canvas node is rendered on.
</summary>
</member>
<member name="F:DevComponents.AdvTree.NodeExpandPartRendererEventArgs.Node">
<summary>
Gets or sets the reference to Node object being rendered.
</summary>
</member>
<member name="F:DevComponents.AdvTree.NodeExpandPartRendererEventArgs.ExpandPartBounds">
<summary>Expand part bounds</summary>
</member>
<member name="F:DevComponents.AdvTree.NodeExpandPartRendererEventArgs.BorderColor">
<summary>Expand part border color</summary>
</member>
<member name="F:DevComponents.AdvTree.NodeExpandPartRendererEventArgs.ExpandLineColor">
<summary>Expand part line color</summary>
</member>
<member name="F:DevComponents.AdvTree.NodeExpandPartRendererEventArgs.BackColor">
<summary>Expand part background color</summary>
</member>
<member name="F:DevComponents.AdvTree.NodeExpandPartRendererEventArgs.BackColor2">
<summary>Expand part target gradient background color</summary>
</member>
<member name="F:DevComponents.AdvTree.NodeExpandPartRendererEventArgs.BackColorGradientAngle">
<summary>Gradient angle</summary>
</member>
<member name="F:DevComponents.AdvTree.NodeExpandPartRendererEventArgs.ExpandImage">
<summary>Expand part image when node is expanded</summary>
</member>
<member name="F:DevComponents.AdvTree.NodeExpandPartRendererEventArgs.ExpandImageCollapse">
<summary>Expand part image when node is collapsed</summary>
</member>
<member name="F:DevComponents.AdvTree.NodeExpandPartRendererEventArgs.ExpandButtonType">
<summary>Internal support for expand button types</summary>
</member>
<member name="F:DevComponents.AdvTree.NodeExpandPartRendererEventArgs.IsMouseOver">
<summary>Gets whether mouse is over expand part</summary>
</member>
<member name="M:DevComponents.AdvTree.NodeExpandPartRendererEventArgs.#ctor(System.Drawing.Graphics)">
<summary>
Creates new instance of the class and initializes it with default values.
</summary>
<param name="g">Reference to graphics object.</param>
</member>
<member name="T:DevComponents.AdvTree.Display.NodeExpandRectDisplay">
<summary>
Represents class that paints rectangular expand button.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeExpandRectDisplay.DrawExpandButton(DevComponents.AdvTree.NodeExpandPartRendererEventArgs)">
<summary>
Draw rectangular type expand button.
</summary>
<param name="e">Expand button context information.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeExpandTriangleDisplay.DrawExpandButton(DevComponents.AdvTree.NodeExpandPartRendererEventArgs)">
<summary>
Draw triangular type expand button.
</summary>
<param name="e">Expand button context information.</param>
</member>
<member name="T:DevComponents.AdvTree.Display.NodeSelectionDisplay">
<summary>
Represent class that paints selection around node.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Display.NodeSystemRenderer">
<summary>
Represents default system node and cell renderer.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Display.TreeRenderer">
<summary>
Represents abstract renderer class for node objects.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.DrawNodeBackground(DevComponents.AdvTree.Display.NodeRendererEventArgs)">
<summary>
Draws node background. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderNodeBackground method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.OnRenderNodeBackground(DevComponents.AdvTree.Display.NodeRendererEventArgs)">
<summary>
Raises RenderNodeBackground event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.DrawNodeExpandPart(DevComponents.AdvTree.NodeExpandPartRendererEventArgs)">
<summary>
Draws node expand part. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderNodeExpandPart method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.OnRenderNodeExpandPart(DevComponents.AdvTree.NodeExpandPartRendererEventArgs)">
<summary>
Raises RenderNodeExpandPart event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.DrawCellBackground(DevComponents.AdvTree.Display.NodeCellRendererEventArgs)">
<summary>
Draws cell background. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderCellBackground method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.OnRenderCellBackground(DevComponents.AdvTree.Display.NodeCellRendererEventArgs)">
<summary>
Raises RenderCellBackground event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.DrawCellCheckBox(DevComponents.AdvTree.Display.NodeCellRendererEventArgs)">
<summary>
Draws cell check box. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderCellCheckBox method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.OnRenderCellCheckBox(DevComponents.AdvTree.Display.NodeCellRendererEventArgs)">
<summary>
Raises RenderCellCheckBox event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.DrawCellImage(DevComponents.AdvTree.Display.NodeCellRendererEventArgs)">
<summary>
Draws cell image. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderCellImage method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.OnRenderCellImage(DevComponents.AdvTree.Display.NodeCellRendererEventArgs)">
<summary>
Raises RenderCellImage event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.DrawCellText(DevComponents.AdvTree.Display.NodeCellRendererEventArgs)">
<summary>
Draws cell text. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderCellText method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.OnRenderCellText(DevComponents.AdvTree.Display.NodeCellRendererEventArgs)">
<summary>
Raises RenderCellImage event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.DrawSelection(DevComponents.AdvTree.SelectionRendererEventArgs)">
<summary>
Draws selection for SelectedNode. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderSelection method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.OnRenderSelection(DevComponents.AdvTree.SelectionRendererEventArgs)">
<summary>
Raises RenderSelection event.
</summary>
<param name="e">Event data.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.DrawHotTracking(DevComponents.AdvTree.SelectionRendererEventArgs)">
<summary>
Draws hot-tracking marker for mouse over node. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderHotTracking method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.OnRenderHotTracking(DevComponents.AdvTree.SelectionRendererEventArgs)">
<summary>
Raises RenderHotTracking event.
</summary>
<param name="e">Event data.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.DrawConnector(DevComponents.AdvTree.Display.ConnectorRendererEventArgs)">
<summary>
Draws connector between nodes. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderConnector method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.OnRenderConnector(DevComponents.AdvTree.Display.ConnectorRendererEventArgs)">
<summary>
Raises RenderConnector event.
</summary>
<param name="e">Event data.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.DrawTreeBackground(DevComponents.AdvTree.Display.TreeBackgroundRendererEventArgs)">
<summary>
Draws the tree background. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderTreeBackground method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.OnRenderTreeBackground(DevComponents.AdvTree.Display.TreeBackgroundRendererEventArgs)">
<summary>
Raises RenderTreeBackground event.
</summary>
<param name="e">Event data.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.DrawDragDropMarker(DevComponents.AdvTree.Display.DragDropMarkerRendererEventArgs)">
<summary>
Draws the drag &amp; drop marker that indicates the insertion point for the node. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderDragDropMarker method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.OnRenderDragDropMarker(DevComponents.AdvTree.Display.DragDropMarkerRendererEventArgs)">
<summary>
Raises RenderDragDropMarker event.
</summary>
<param name="e">Event data.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.DrawColumnHeader(DevComponents.AdvTree.Display.ColumnHeaderRendererEventArgs)">
<summary>
Draws the column header. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderColumnHeader method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.OnRenderColumnHeader(DevComponents.AdvTree.Display.ColumnHeaderRendererEventArgs)">
<summary>
Raises RenderDragDropMarker event.
</summary>
<param name="e">Event data.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.DrawTileGroupLine(DevComponents.AdvTree.Display.NodeRendererEventArgs)">
<summary>
Draws node group line when in tile view. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderTileGroupLine method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeRenderer.OnRenderTileGroupLine(DevComponents.AdvTree.Display.NodeRendererEventArgs)">
<summary>
Raises RenderNodeBackground event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="E:DevComponents.AdvTree.Display.TreeRenderer.RenderNodeBackground">
<summary>
Occurs when node background is being drawn.
</summary>
</member>
<member name="E:DevComponents.AdvTree.Display.TreeRenderer.RenderNodeExpandPart">
<summary>
Occurs when node expand part is being drawn.
</summary>
</member>
<member name="E:DevComponents.AdvTree.Display.TreeRenderer.RenderCellBackground">
<summary>
Occurs when cell background is being drawn.
</summary>
</member>
<member name="E:DevComponents.AdvTree.Display.TreeRenderer.RenderCellCheckBox">
<summary>
Occurs when cell check-box is being drawn.
</summary>
</member>
<member name="E:DevComponents.AdvTree.Display.TreeRenderer.RenderCellImage">
<summary>
Occurs when cell image is being drawn.
</summary>
</member>
<member name="E:DevComponents.AdvTree.Display.TreeRenderer.RenderCellText">
<summary>
Occurs when cell text is being drawn.
</summary>
</member>
<member name="E:DevComponents.AdvTree.Display.TreeRenderer.RenderSelection">
<summary>
Occurs when node selection marker is rendered.
</summary>
</member>
<member name="E:DevComponents.AdvTree.Display.TreeRenderer.RenderHotTracking">
<summary>
Occurs when node hot-tracking marker is rendered.
</summary>
</member>
<member name="E:DevComponents.AdvTree.Display.TreeRenderer.RenderConnector">
<summary>
Occurs when node connector is being drawn.
</summary>
</member>
<member name="E:DevComponents.AdvTree.Display.TreeRenderer.RenderTreeBackground">
<summary>
Occurs when tree background is rendered.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "E:DevComponents.AdvTree.Display.TreeRenderer.RenderDragDropMarker" -->
<member name="E:DevComponents.AdvTree.Display.TreeRenderer.RenderColumnHeader">
<summary>
Renders the Column Header.
</summary>
</member>
<member name="E:DevComponents.AdvTree.Display.TreeRenderer.RenderTileGroupLine">
<summary>
Occurs when node group line is being rendered while control is in tile view.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Display.TreeRenderer.ColorTable">
<summary>
Gets or sets the color table used by the renderer.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Display.TreeRenderer.Office2007ColorTable">
<summary>
Gets or sets the color table used by the renderer.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeSystemRenderer.GetElementStyleDisplayInfo(DevComponents.DotNetBar.ElementStyle,System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Returns ElementStyleDisplayInfo class that provides information for ElementStyle rendering.
</summary>
<param name="style">Reference to style.</param>
<param name="g">Reference to graphics object.</param>
<param name="bounds">Style bounds</param>
<returns>New instance of ElementStyleDisplayInfo</returns>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeSystemRenderer.DrawNodeBackground(DevComponents.AdvTree.Display.NodeRendererEventArgs)">
<summary>
Draws node background. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderNodeBackground method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeSystemRenderer.DrawNodeExpandPart(DevComponents.AdvTree.NodeExpandPartRendererEventArgs)">
<summary>
Draws node expand part. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderNodeExpandPart method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeSystemRenderer.DrawCellBackground(DevComponents.AdvTree.Display.NodeCellRendererEventArgs)">
<summary>
Draws cell background. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderCellBackground method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeSystemRenderer.DrawCellCheckBox(DevComponents.AdvTree.Display.NodeCellRendererEventArgs)">
<summary>
Draws cell check box. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderCellCheckBox method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeSystemRenderer.DrawCellImage(DevComponents.AdvTree.Display.NodeCellRendererEventArgs)">
<summary>
Draws cell image. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderCellImage method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeSystemRenderer.DrawCellText(DevComponents.AdvTree.Display.NodeCellRendererEventArgs)">
<summary>
Draws cell text. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderCellText method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeSystemRenderer.DrawSelection(DevComponents.AdvTree.SelectionRendererEventArgs)">
<summary>
Draws selection for SelectedNode. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderSelection method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeSystemRenderer.DrawHotTracking(DevComponents.AdvTree.SelectionRendererEventArgs)">
<summary>
Draws hot-tracking marker for mouse over node. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderHotTracking method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeSystemRenderer.DrawConnector(DevComponents.AdvTree.Display.ConnectorRendererEventArgs)">
<summary>
Draws connector between nodes. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderConnector method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeSystemRenderer.DrawTreeBackground(DevComponents.AdvTree.Display.TreeBackgroundRendererEventArgs)">
<summary>
Draws the tree background. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderTreeBackground method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeSystemRenderer.DrawDragDropMarker(DevComponents.AdvTree.Display.DragDropMarkerRendererEventArgs)">
<summary>
Draws the drag &amp; drop marker that indicates the insertion point for the node. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderDragDropMarker method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeSystemRenderer.DrawColumnHeader(DevComponents.AdvTree.Display.ColumnHeaderRendererEventArgs)">
<summary>
Draws the column header. If you need to provide custom rendering this is the method that you should override in your custom renderer. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderColumnHeader method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeSystemRenderer.DrawTileGroupLine(DevComponents.AdvTree.Display.NodeRendererEventArgs)">
<summary>
Draws node group line when in tile view. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderTileGroupLine method so events can occur.
</summary>
<param name="e">Information provided for rendering.</param>
</member>
<member name="T:DevComponents.AdvTree.Display.NodeTreeDisplay">
<summary>
Summary description for NodeTreeDisplay.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeTreeDisplay.#ctor(DevComponents.AdvTree.AdvTree)">
<summary>Creates new instance of the class</summary>
<param name="tree">Object to initialize class with.</param>
</member>
<member name="M:DevComponents.AdvTree.Display.NodeTreeDisplay.Paint(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints the tree on canvas.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Display.SelectionColorTable">
<summary>
Defines the color table for tree selection.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.SelectionColorTable.Border">
<summary>
Gets or sets the outer border for the selection.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.SelectionColorTable.BorderCornerRadius">
<summary>
Gets or sets the outer border corner radius.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.SelectionColorTable.InnerBorder">
<summary>
Gets or sets the inner border for the selection.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.SelectionColorTable.Fill">
<summary>
Gets or sets the selection fill.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.SelectionColorTable.TextColor">
<summary>
Gets or sets the selection text color.
</summary>
</member>
<member name="T:DevComponents.AdvTree.SelectionRendererEventArgs">
<summary>
Data form RenderSelection event.
</summary>
</member>
<member name="F:DevComponents.AdvTree.SelectionRendererEventArgs.Graphics">
<summary>
Gets or sets reference to Graphics object, canvas node is rendered on.
</summary>
</member>
<member name="F:DevComponents.AdvTree.SelectionRendererEventArgs.Node">
<summary>
Gets or sets the reference to selected Node object.
</summary>
</member>
<member name="F:DevComponents.AdvTree.SelectionRendererEventArgs.Bounds">
<summary>
Gets or sets the selection bounds.
</summary>
</member>
<member name="F:DevComponents.AdvTree.SelectionRendererEventArgs.SelectionBoxStyle">
<summary>
Gets or sets the node selection box style.
</summary>
</member>
<member name="F:DevComponents.AdvTree.SelectionRendererEventArgs.TreeActive">
<summary>
Gets or sets whether tree control is active, focused.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Display.TreeBackgroundRendererEventArgs">
<summary>
Provides data for tree background rendering events.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeBackgroundRendererEventArgs.Graphics">
<summary>
Gets or sets reference to Graphics object, canvas tree background is rendered on.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeBackgroundRendererEventArgs.AdvTree">
<summary>
Gets or sets the reference to AdvTree control.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Display.TreeBackgroundRendererEventArgs.#ctor(System.Drawing.Graphics,DevComponents.AdvTree.AdvTree)">
<summary>
Creates new instance of the class and initializes it with default values.
</summary>
<param name="g">Reference to graphics object.</param>
</member>
<member name="T:DevComponents.AdvTree.Display.TreeColorTable">
<summary>
Defines the Tree color table.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeColorTable.Selection">
<summary>
Gets or sets the color table used for the node selection display.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeColorTable.DragDropMarker">
<summary>
Gets or sets the color for node drag &amp; drop marker.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeColorTable.ExpandRectangle">
<summary>
Gets or sets the color of tree expand button type of rectangle.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeColorTable.ExpandEllipse">
<summary>
Gets or sets the color of tree expand button type of Ellipse.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeColorTable.ExpandTriangle">
<summary>
Gets or sets the color of tree expand button type of Triangle.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeColorTable.GridLines">
<summary>
Gets or sets the color for tree grid lines.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeColorTable.ColumnSortIndicatorColor">
<summary>
Gets or sets the color of the column sort indicator which is rendered on columns when sorted.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Display.TreeExpandColorTable">
<summary>
Defines the color table for node expand button.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeExpandColorTable.ExpandBorder">
<summary>
Gets or sets the border for the expand button which expands the node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeExpandColorTable.ExpandFill">
<summary>
Gets or sets the expand button fill for button that expands the node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeExpandColorTable.ExpandForeground">
<summary>
Gets or sets the expand button foreground for button that expands the node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeExpandColorTable.ExpandMouseOverBorder">
<summary>
Gets or sets the border for the expand button which expands the node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeExpandColorTable.ExpandMouseOverFill">
<summary>
Gets or sets the expand button fill for button that expands the node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeExpandColorTable.ExpandMouseOverForeground">
<summary>
Gets or sets the expand button foreground for button that expands the node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeExpandColorTable.CollapseBorder">
<summary>
Gets or sets the border for the expand button which collapses the node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeExpandColorTable.CollapseFill">
<summary>
Gets or sets the expand button fill for button that collapses the node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeExpandColorTable.CollapseForeground">
<summary>
Gets or sets the expand button foreground for button that expands the node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeExpandColorTable.CollapseMouseOverBorder">
<summary>
Gets or sets the border for the expand button which collapses the node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeExpandColorTable.CollapseMouseOverFill">
<summary>
Gets or sets the expand button fill for button that collapses the node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeExpandColorTable.CollapseMouseOverForeground">
<summary>
Gets or sets the expand button foreground for button that expands the node.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Display.TreeSelectionColors">
<summary>
Defines the color table for tree selection.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeSelectionColors.FullRowSelect">
<summary>
Gets or sets the color table for FullRowSelect selection type.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeSelectionColors.FullRowSelectInactive">
<summary>
Gets or sets the color table for FullRowSelect selection type when tree control is inactive.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeSelectionColors.HighlightCells">
<summary>
Gets or sets the color table for HighlightCells selection type.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeSelectionColors.HighlightCellsInactive">
<summary>
Gets or sets the color table for HighlightCells selection type when tree control is inactive.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeSelectionColors.NodeMarker">
<summary>
Gets or sets the color table for NodeMarker selection type.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeSelectionColors.NodeMarkerInactive">
<summary>
Gets or sets the color table for NodeMarker selection type when tree control is inactive.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Display.TreeSelectionColors.NodeHotTracking">
<summary>
Gets or sets the color table used for node hot-tracking.
</summary>
</member>
<member name="M:DevComponents.WinForms.Drawing.Border.CreatePen">
<summary>
Creates the pen for the border.
</summary>
<returns>Returns pen or null if pen cannot be created.</returns>
</member>
<member name="P:DevComponents.WinForms.Drawing.Border.Width">
<summary>
Gets or sets the border width. Default value is 0.
</summary>
</member>
<member name="T:DevComponents.WinForms.Drawing.ColorBlendCollection">
<summary>
Represents Collection for the ColorStop objects.
</summary>
</member>
<member name="M:DevComponents.WinForms.Drawing.ColorBlendCollection.#ctor">
<summary>Creates new instance of the class.</summary>
</member>
<member name="M:DevComponents.WinForms.Drawing.ColorBlendCollection.Add(DevComponents.WinForms.Drawing.ColorStop)">
<summary>
Adds new object to the collection.
</summary>
<param name="item">Object to add.</param>
<returns>Index of newly added object.</returns>
</member>
<member name="M:DevComponents.WinForms.Drawing.ColorBlendCollection.AddRange(DevComponents.WinForms.Drawing.ColorStop[])">
<summary>
Adds array of new objects to the collection.
</summary>
<param name="items">Array of object to add.</param>
</member>
<member name="M:DevComponents.WinForms.Drawing.ColorBlendCollection.Insert(System.Int32,DevComponents.WinForms.Drawing.ColorStop)">
<summary>
Inserts new object into the collection.
</summary>
<param name="index">Position of the object.</param>
<param name="value">Object to insert.</param>
</member>
<member name="M:DevComponents.WinForms.Drawing.ColorBlendCollection.IndexOf(DevComponents.WinForms.Drawing.ColorStop)">
<summary>
Returns index of the object inside of the collection.
</summary>
<param name="value">Reference to the object.</param>
<returns>Index of the object.</returns>
</member>
<member name="M:DevComponents.WinForms.Drawing.ColorBlendCollection.Contains(DevComponents.WinForms.Drawing.ColorStop)">
<summary>
Returns whether collection contains specified object.
</summary>
<param name="value">Object to look for.</param>
<returns>true if object is part of the collection, otherwise false.</returns>
</member>
<member name="M:DevComponents.WinForms.Drawing.ColorBlendCollection.Remove(DevComponents.WinForms.Drawing.ColorStop)">
<summary>
Removes specified object from the collection.
</summary>
<param name="value"></param>
</member>
<member name="M:DevComponents.WinForms.Drawing.ColorBlendCollection.CopyTo(DevComponents.WinForms.Drawing.ColorStop[],System.Int32)">
<summary>
Copies collection into the specified array.
</summary>
<param name="array">Array to copy collection to.</param>
<param name="index">Starting index.</param>
</member>
<member name="M:DevComponents.WinForms.Drawing.ColorBlendCollection.CopyTo(DevComponents.WinForms.Drawing.ColorStop[])">
<summary>
Copies contained items to the ColorStop array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="M:DevComponents.WinForms.Drawing.ColorBlendCollection.GetColorBlend">
<summary>
Creates ColorBlend object based on the members of the collection. ColorBlend object will be valid only if all members of the collection
represents relative/percentage based color blends.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.WinForms.Drawing.ColorBlendCollection.CopyFrom(DevComponents.WinForms.Drawing.ColorBlendCollection)">
<summary>
Adds the ColorStop objects from the collection.
</summary>
<param name="col">Collection to copy objects from</param>
</member>
<member name="M:DevComponents.WinForms.Drawing.ColorBlendCollection.InitializeCollection(DevComponents.WinForms.Drawing.ColorBlendCollection,System.Drawing.Color,System.Drawing.Color)">
<summary>
Initializes the collection with the two color blend.
</summary>
<param name="collection">Collection to initialize.</param>
<param name="backColor1">Start color.</param>
<param name="backColor2">End color.</param>
</member>
<member name="P:DevComponents.WinForms.Drawing.ColorBlendCollection.Item(System.Int32)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="T:DevComponents.WinForms.Drawing.ColorStop">
<summary>
Defines single color blend point for the multicolor gradient fills.
</summary>
</member>
<member name="M:DevComponents.WinForms.Drawing.ColorStop.#ctor">
<summary>
Creates new instance of the class. When defining multicolor gradient blends and using the percentage positions the positions created
must start with 0f and end with 1f.
</summary>
</member>
<member name="M:DevComponents.WinForms.Drawing.ColorStop.#ctor(System.Drawing.Color,System.Single)">
<summary>
Creates new instance of the class and initialize it with default values.
</summary>
</member>
<member name="P:DevComponents.WinForms.Drawing.ColorStop.Color">
<summary>
Gets or sets Color to use in multicolor gradient blend at specified position.
</summary>
</member>
<member name="P:DevComponents.WinForms.Drawing.ColorStop.Position">
<summary>
Gets or sets the color position in multicolor gradient blend. Values less or equal to 1 are used as percentage specifing percentages of distance along the gradient line.
Values greater than 1 are used as absolute pixel values of distance along the gradient line.
</summary>
</member>
<member name="T:DevComponents.WinForms.Drawing.ColorStopConverter">
<summary>
Represents BackgroundColorBlend object converter.
</summary>
</member>
<member name="M:DevComponents.WinForms.Drawing.Fill.CreateBrush(System.Drawing.Rectangle)">
<summary>
Creates the brush for fill.
</summary>
<param name="bounds">Bounds for the brush</param>
<returns>Returns brush or null if brush cannot be created for given bounds or colors are not set. It is responsibility of caller to Dispose the brush.</returns>
</member>
<member name="M:DevComponents.WinForms.Drawing.Fill.CreatePen(System.Int32)">
<summary>
Creates a pen based on fill parameters.
</summary>
<param name="width">Width of the pen to create</param>
<returns>new instance of pen or null if pen cannot be created.</returns>
</member>
<member name="M:DevComponents.WinForms.Drawing.GradientFill.#ctor">
<summary>
Initializes a new instance of the GradientFill class.
</summary>
</member>
<member name="M:DevComponents.WinForms.Drawing.GradientFill.#ctor(System.Drawing.Color,System.Drawing.Color)">
<summary>
Initializes a new instance of the GradientFill class.
</summary>
<param name="color1"></param>
<param name="color2"></param>
</member>
<member name="M:DevComponents.WinForms.Drawing.GradientFill.#ctor(System.Drawing.Color,System.Drawing.Color,System.Single)">
<summary>
Initializes a new instance of the GradientFill class.
</summary>
<param name="color1"></param>
<param name="color2"></param>
<param name="angle"></param>
</member>
<member name="M:DevComponents.WinForms.Drawing.GradientFill.#ctor(DevComponents.WinForms.Drawing.ColorStop[])">
<summary>
Initializes a new instance of the GradientFill class.
</summary>
<param name="interpolationColors"></param>
</member>
<member name="M:DevComponents.WinForms.Drawing.GradientFill.#ctor(DevComponents.WinForms.Drawing.ColorStop[],System.Int32)">
<summary>
Initializes a new instance of the GradientFill class.
</summary>
<param name="interpolationColors"></param>
</member>
<member name="M:DevComponents.WinForms.Drawing.GradientFill.CreateBrush(System.Drawing.Rectangle)">
<summary>
Creates the brush for fill.
</summary>
<param name="bounds">Bounds for the brush</param>
<returns>Returns brush or null if brush cannot be created for given bounds or colors are not set. It is responsibility of caller to Dispose the brush.</returns>
</member>
<member name="M:DevComponents.WinForms.Drawing.GradientFill.ShouldSerializeColor1">
<summary>
Gets whether property should be serialized.
</summary>
<returns>true if property should be serialized</returns>
</member>
<member name="M:DevComponents.WinForms.Drawing.GradientFill.ResetColor1">
<summary>
Sets the property to its default value.
</summary>
</member>
<member name="M:DevComponents.WinForms.Drawing.GradientFill.ShouldSerializeColor2">
<summary>
Gets whether property should be serialized.
</summary>
<returns>true if property should be serialized</returns>
</member>
<member name="M:DevComponents.WinForms.Drawing.GradientFill.ResetColor2">
<summary>
Sets the property to its default value.
</summary>
</member>
<member name="M:DevComponents.WinForms.Drawing.GradientFill.CreatePen(System.Int32)">
<summary>
Creates a pen based on fill parameters.
</summary>
<param name="width">Width of the pen to create</param>
<returns>new instance of pen or null if pen cannot be created.</returns>
</member>
<member name="P:DevComponents.WinForms.Drawing.GradientFill.Color1">
<summary>
Gets or sets the starting gradient fill color.
</summary>
</member>
<member name="P:DevComponents.WinForms.Drawing.GradientFill.Color2">
<summary>
Gets or sets the end gradient fill color.
</summary>
</member>
<member name="P:DevComponents.WinForms.Drawing.GradientFill.InterpolationColors">
<summary>
Gets the collection that defines the multicolor gradient background.
</summary>
<remarks>
Setting this property creates a multicolor gradient with one color at each position along the gradient line. Setting this property nullifies all previous color, position, and falloff settings for this gradient fill.
</remarks>
</member>
<member name="P:DevComponents.WinForms.Drawing.GradientFill.Angle">
<summary>
Gets or sets the gradient fill angle. Default value is 90.
</summary>
</member>
<member name="T:DevComponents.WinForms.Drawing.Shape">
<summary>
Defines a visual shape.
</summary>
</member>
<member name="M:DevComponents.WinForms.Drawing.Shape.Paint(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Renders shape on canvas.
</summary>
<param name="g">Target graphics to render shape on.</param>
<param name="bounds">Shape bounds.</param>
</member>
<member name="P:DevComponents.WinForms.Drawing.Shape.Content">
<summary>
Gets or sets the single piece of content inside of the shape.
</summary>
</member>
<member name="P:DevComponents.WinForms.Drawing.Shape.ClipToBounds">
<summary>
Gets or sets whether to clip the Content of this shape. Default value is false.
</summary>
</member>
<member name="M:DevComponents.WinForms.Drawing.RectangleShape.Paint(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Renders rectangle on canvas.
</summary>
<param name="g">Target graphics to render shape on.</param>
<param name="bounds">Shape bounds.</param>
</member>
<member name="M:DevComponents.WinForms.Drawing.RectangleShape.ShouldSerializeCornerRadius">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.WinForms.Drawing.RectangleShape.ResetCornerRadius">
<summary>
Resets the property to its default value.
</summary>
</member>
<member name="P:DevComponents.WinForms.Drawing.RectangleShape.Border">
<summary>
Gets or sets shape border.
</summary>
</member>
<member name="P:DevComponents.WinForms.Drawing.RectangleShape.Fill">
<summary>
Gets or sets the shape fill.
</summary>
</member>
<member name="P:DevComponents.WinForms.Drawing.RectangleShape.CornerRadius">
<summary>
Gets or sets the CornerRadius.
</summary>
</member>
<member name="M:DevComponents.WinForms.Drawing.SolidBorder.#ctor(System.Drawing.Color,System.Int32)">
<summary>
Initializes a new instance of the SolidBorder class.
</summary>
<param name="color"></param>
<param name="width"></param>
</member>
<member name="M:DevComponents.WinForms.Drawing.SolidBorder.#ctor(System.Drawing.Color)">
<summary>
Initializes a new instance of the SolidBorder class.
</summary>
<param name="color"></param>
</member>
<member name="M:DevComponents.WinForms.Drawing.SolidBorder.#ctor">
<summary>
Initializes a new instance of the SolidBorder class.
</summary>
</member>
<member name="M:DevComponents.WinForms.Drawing.SolidBorder.CreatePen">
<summary>
Creates the pen for the border.
</summary>
<returns>Returns pen or null if pen cannot be created.</returns>
</member>
<member name="M:DevComponents.WinForms.Drawing.SolidBorder.ShouldSerializeColor">
<summary>
Gets whether property should be serialized.
</summary>
<returns>true if property should be serialized</returns>
</member>
<member name="M:DevComponents.WinForms.Drawing.SolidBorder.ResetColor">
<summary>
Sets the property to its default value.
</summary>
</member>
<member name="P:DevComponents.WinForms.Drawing.SolidBorder.Color">
<summary>
Gets or sets the fill color.
</summary>
</member>
<member name="M:DevComponents.WinForms.Drawing.SolidFill.#ctor(System.Drawing.Color)">
<summary>
Initializes a new instance of the SolidFill class.
</summary>
<param name="color"></param>
</member>
<member name="M:DevComponents.WinForms.Drawing.SolidFill.#ctor">
<summary>
Initializes a new instance of the SolidFill class.
</summary>
</member>
<member name="M:DevComponents.WinForms.Drawing.SolidFill.CreateBrush(System.Drawing.Rectangle)">
<summary>
Creates the brush for fill.
</summary>
<param name="bounds">Bounds for the brush</param>
<returns>Returns brush or null if brush cannot be created for given bounds or colors are not set. It is responsibility of caller to Dispose the brush.</returns>
</member>
<member name="M:DevComponents.WinForms.Drawing.SolidFill.ShouldSerializeColor">
<summary>
Gets whether property should be serialized.
</summary>
<returns>true if property should be serialized</returns>
</member>
<member name="M:DevComponents.WinForms.Drawing.SolidFill.ResetColor">
<summary>
Sets the property to its default value.
</summary>
</member>
<member name="P:DevComponents.WinForms.Drawing.SolidFill.Color">
<summary>
Gets or sets the fill color.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eView">
<summary>
Specifies layout of the items in AdvTree control.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eView.Tree">
<summary>
Standard TreeView layout.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eView.Tile">
<summary>
ListView style tile layout.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eStyleBackgroundImage">
<summary>Specifies the way background image is displayed on background.</summary>
</member>
<member name="F:DevComponents.AdvTree.eStyleBackgroundImage.Stretch">
<summary>Image is stretched to fill the background</summary>
</member>
<member name="F:DevComponents.AdvTree.eStyleBackgroundImage.Center">
<summary>Image is centered inside the background</summary>
</member>
<member name="F:DevComponents.AdvTree.eStyleBackgroundImage.Tile">
<summary>Image is tiled inside the background</summary>
</member>
<member name="F:DevComponents.AdvTree.eStyleBackgroundImage.TopLeft">
<summary>
Image is drawn in top left corner of container space.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eStyleBackgroundImage.TopRight">
<summary>
Image is drawn in top right corner of container space.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eStyleBackgroundImage.BottomLeft">
<summary>
Image is drawn in bottom left corner of container space.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eStyleBackgroundImage.BottomRight">
<summary>
Image is drawn in bottom right corner of container space.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eCellPartAlignment">
<summary>Indicates alignment of a part of the cell like image or check box in relation to the text.</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellPartAlignment.NearCenter">
<summary>
Part is aligned to the left center of the text assuming left-to-right
orientation.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellPartAlignment.FarCenter">
<summary>
Part is aligned to the right center of the text assuming left-to-right
orientation.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellPartAlignment.NearTop">
<summary>
Part is aligned to the top left of the text assuming left-to-right
orientation.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellPartAlignment.CenterTop">
<summary>Part is aligned above the text and centered.</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellPartAlignment.FarTop">
<summary>
Part is aligned to the top right of the text assuming left-to-right
orientation.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellPartAlignment.NearBottom">
<summary>
Part is aligned to the bottom left of the text assuming left-to-right
orientation.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellPartAlignment.CenterBottom">
<summary>Part is aligned below the text and centered.</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellPartAlignment.FarBottom">
<summary>
Part is aligned to the bottom right of the text assuming left-to-right
orientation.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellPartAlignment.Default">
<summary>
Part has default alignment that depends on the parent control view.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eStyleTextTrimming">
<summary>
Specifies how to trim characters from a text that does not completely fit into a element's shape.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eStyleTextTrimming.Character">
<summary>
Specifies that the text is trimmed to the nearest character.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eStyleTextTrimming.EllipsisCharacter">
<summary>
Specifies that the text is trimmed to the nearest character, and an ellipsis is inserted at the end of a trimmed line.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eStyleTextTrimming.EllipsisPath">
<summary>
The center is removed from trimmed lines and replaced by an ellipsis. The algorithm keeps as much of the last slash-delimited segment of the line as possible.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eStyleTextTrimming.EllipsisWord">
<summary>
Specifies that text is trimmed to the nearest word, and an ellipsis is inserted at the end of a trimmed line.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eStyleTextTrimming.None">
<summary>
Specifies no trimming.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eStyleTextTrimming.Word">
<summary>
Specifies that text is trimmed to the nearest word.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eVerticalAlign">
<summary>
Indicates absolute vertical alignment of the content.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eVerticalAlign.Top">
<summary>
Content is aligned to the top
</summary>
</member>
<member name="F:DevComponents.AdvTree.eVerticalAlign.Middle">
<summary>
Content is aligned in the middle
</summary>
</member>
<member name="F:DevComponents.AdvTree.eVerticalAlign.Bottom">
<summary>
Content is aligned at the bottom
</summary>
</member>
<member name="T:DevComponents.AdvTree.eHorizontalAlign">
<summary>
Indicates absolute horizontal alignment
</summary>
</member>
<member name="F:DevComponents.AdvTree.eHorizontalAlign.Left">
<summary>
Content is left aligned
</summary>
</member>
<member name="F:DevComponents.AdvTree.eHorizontalAlign.Center">
<summary>
Content is centered
</summary>
</member>
<member name="F:DevComponents.AdvTree.eHorizontalAlign.Right">
<summary>
Content is right aligned
</summary>
</member>
<member name="T:DevComponents.AdvTree.eMapPosition">
<summary>
Indicates prefered node layout position on Map tree layout when node is the child node of the top-level root node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eMapPosition.Default">
<summary>
Node is positioned based on default algorithm.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eMapPosition.Near">
<summary>
Sub-root node and all nodes after it are positioned to the left of the root.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eMapPosition.Far">
<summary>
Sub-root node and all nodes before it are positioned to the right of the root.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eNodeHeaderVisibility">
<summary>
Specifies the column header visibility for the node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eNodeHeaderVisibility.Automatic">
<summary>
Column header is automatically shown/hidden based on the node's position in the tree. When
Node is first child node i.e. with index=0 the header will be shown, otherwise header will
be hidden.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eNodeHeaderVisibility.AlwaysShow">
<summary>
Column header is always displayed regardless of node's position.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eNodeHeaderVisibility.AlwaysHide">
<summary>
Column header is always hidden regardless of node's position.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eNodeRectanglePart">
<summary>
Indicates the part of the node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eNodeRectanglePart.NodeContentBounds">
<summary>
Bounds of complete node content except expand button. This also includes the child node bounds if node is expanded.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eNodeRectanglePart.ExpandBounds">
<summary>
Bounds of the expand button which collapses/expands the node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eNodeRectanglePart.ExpandHitTestBounds">
<summary>
Hit test bounds of the expand button which collapses/expands the node used by mouse routines to trigger node expansion/collapse.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eNodeRectanglePart.ChildNodeBounds">
<summary>
Bounds of all child nodes of give node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eNodeRectanglePart.CellsBounds">
<summary>
Bounds for cells inside a node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eNodeRectanglePart.NodeBounds">
<summary>
Complete node bounds including expand button.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eNodeRectanglePart.CommandBounds">
<summary>
Bounds of the command button.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eNodeRectanglePart.ColumnsBounds">
<summary>
Bounds of child node columns if node has columns defined.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eCellRectanglePart">
<summary>
Indicates the part of the cell.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellRectanglePart.CheckBoxBounds">
<summary>
Bounds of check box or Rectangle.Empty if there is no check-box.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellRectanglePart.ImageBounds">
<summary>
Bounds of image inside the cell or Rectangle.Empty if there is no image.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellRectanglePart.TextBounds">
<summary>
Text bounds inside of cell.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellRectanglePart.CellBounds">
<summary>
Cell bounds
</summary>
</member>
<member name="T:DevComponents.AdvTree.eMouseOverNodePart">
<summary>
Indicates part of the node mouse is placed over.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eMouseOverNodePart.None">
<summary>
Mouse is not over any node part.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eMouseOverNodePart.Node">
<summary>
Mouse is placed over the node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eMouseOverNodePart.Expand">
<summary>
Mouse is placed over node expand button.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eMouseOverNodePart.Cell">
<summary>
Mouse is placed over the cell.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eMouseOverNodePart.Command">
<summary>
Mouse is placed over the command button.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eNodeExpandVisibility">
<summary>
Indicates the visibility of node expand part which allows user to expand/collaps node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eNodeExpandVisibility.Auto">
<summary>
Default setting which indicates that when node has child nodes expand part is visible otherwise it is hidden.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eNodeExpandVisibility.Visible">
<summary>
Expand part is always visible regardless of whether child nodes are present or not.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eNodeExpandVisibility.Hidden">
<summary>
Expand part is always hidden regardless of whether child nodes are present or not.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eTreeAction">
<summary>
Specifies the action that raised a AdvTreeEventArgs event
</summary>
</member>
<member name="F:DevComponents.AdvTree.eTreeAction.Keyboard">
<summary>
The event was caused by a keystroke.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eTreeAction.Mouse">
<summary>
The event was caused by a mouse operation.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eTreeAction.Collapse">
<summary>
The event was caused by the Node collapsing.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eTreeAction.Expand">
<summary>
The event was caused by the Node expanding.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eTreeAction.Code">
<summary>
The event is caused programmatically from user code.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eNodeConnectorType">
<summary>
Specifies node connector type. Node connector is the type of the line/connection that is drawn to connect child node to it's parent node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eNodeConnectorType.Line">
<summary>
Straight line connector type.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eCellLayout">
<summary>
Specifies the layout type used to position the cells within the nodes.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellLayout.Default">
<summary>
Specifies that default setting is to be used for cell layout. Default is Horizontal. When set to default on the Node, setting from Tree control is used.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellLayout.Horizontal">
<summary>Horizontal layout positions the cells horizontally next to each other.</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellLayout.Vertical">
<summary>
Vertical layout positions cell vertically on top of each other.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eCellPartLayout">
<summary>
Specifies the layout type used to position the parts of the cell like image, checkbox and text.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellPartLayout.Default">
<summary>
Specifies that default setting is to be used for cell parts layout. Default is Horizontal. When set to default on the Cell, setting from Tree control is used.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellPartLayout.Horizontal">
<summary>Horizontal layout positions the parts of the cell horizontally next to each other.</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellPartLayout.Vertical">
<summary>
Vertical layout positions parts of the cell vertically on top of each other.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eColorSchemeStyle">
<summary>
Specifies the color scheme loaded by ColorScheme object.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eColorSchemeStyle.Office2003">
<summary>
Indicates Office 2003 like color scheme.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eColorSchemeStyle.VS2005">
<summary>
Indicates VS.NET 2005 like color scheme.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eColorSchemeStyle.Office2007">
<summary>
Indicates Office 2007 like color scheme.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eWinXPColorScheme">
<summary>
Specifies the currently selected system color scheme if running on Windows XP.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eWinXPColorScheme.Undetermined">
<summary>
Color scheme cannot be determined.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eWinXPColorScheme.Blue">
<summary>
Blue color scheme.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eWinXPColorScheme.OliveGreen">
<summary>
Olive green color scheme.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eWinXPColorScheme.Silver">
<summary>
Silver color scheme.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eDiagramFlow">
<summary>
Specifies the flow of diagram layout related to the root node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eDiagramFlow.LeftToRight">
<summary>
Nodes are positioned from left to right with root node being the left-most node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eDiagramFlow.RightToLeft">
<summary>
Nodes are positioned from right to left with root node being the right-most
node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eDiagramFlow.TopToBottom">
<summary>
Nodes are positioned from top to bottom with root node being the top node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eDiagramFlow.BottomToTop">
<summary>
Nodes are positioned from bottom to top with root node being bottom node.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eMapFlow">
<summary>
Specifies the flow of the map layout.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eMapFlow.Spread">
<summary>
Nodes are arranged around the root node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eMapFlow.TopToBottom">
<summary>
Nodes are arranged from below the root node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eMapFlow.BottomToTop">
<summary>
Nodes are arranged above the root node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eMapFlow.LeftToRight">
<summary>
Nodes are arranged to the right of the root node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eMapFlow.RightToLeft">
<summary>
Nodes are arranged to the left of the root node.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eExpandButtonType">
<summary>
Specifies the type of the expand button.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eExpandButtonType.Ellipse">
<summary>
Indicates elliptical expand button.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eExpandButtonType.Rectangle">
<summary>
Indicates rectangular expand button.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eExpandButtonType.Image">
<summary>
Indicates that images are used for expand button.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eExpandButtonType.Triangle">
<summary>
Indicates the Windows Vista style expand button.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eVisualStyle">
<summary>
Specifies the visual style for the tree control.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eVisualStyle.Default">
<summary>
Indicates default visual style.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eNodeLayout">
<summary>
Specifies the layout type for the nodes.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eNodeLayout.Map">
<summary>
Nodes are arranged around root node in map format.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eNodeLayout.Diagram">
<summary>
Nodes are arranged from left-to-right in diagram format.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eNodeRenderMode">
<summary>
Specifies renderer type used to render nodes.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eNodeRenderMode.Default">
<summary>
Specifies default renderer which allows most customization through AdvTree
properties. Default renderer integrates with the Style architecture to provide
customization on renderer behavior.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eNodeRenderMode.Custom">
<summary>
Specifies that custom renderer is used. When set you must also set NodeRenderer
to renderer you want to use.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eSelectionStyle">
<summary>
Specifies the node selection style.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eSelectionStyle.FullRowSelect">
<summary>
Node selector highlights the complete node row when node is selected.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eSelectionStyle.HighlightCells">
<summary>
Node selector draws the rectangle that highlights the node content. Appearance similar to system tree view in Windows Vista.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eSelectionStyle.NodeMarker">
<summary>
Node selector draws hollow selection rectangle around the node.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eMultiSelectRule">
<summary>
Specifies the rule for multi-node selection.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eMultiSelectRule.SameParent">
<summary>
Allows multiple selection of nodes with same parent node only.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eMultiSelectRule.AnyNode">
<summary>
Allows multiple selection of any node.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eColumnImageAlignment">
<summary>
Gets or sets the image alignment inside of column header.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eColumnImageAlignment.Left">
<summary>
Image is left aligned.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eColumnImageAlignment.Right">
<summary>
Image is right aligned.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eCellEditorType">
<summary>
Specifies the editor type used when cell is edited.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellEditorType.Default">
<summary>
Indicates default, text based editor.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellEditorType.NumericInteger">
<summary>
Indicates that Integer numeric editor will be used for editing the value of the cell or column.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellEditorType.NumericDouble">
<summary>
Indicates that Double numeric editor will be used for editing the value of the cell or column.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellEditorType.NumericCurrency">
<summary>
Indicates that Currency numeric editor will be used for editing the value of the cell or column.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellEditorType.Date">
<summary>
Indicates that date editor will be used for editing the value of the cell or column.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellEditorType.Time">
<summary>
Indicates that time editor will be used for editing the value of the cell or column.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellEditorType.DateTime">
<summary>
Indicates that date and time editor will be used for editing the value of the cell or column.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eCellEditorType.Custom">
<summary>
Indicates that cell will use custom editor that you provide by handling AdvTree.ProvideCustomCellEditor event.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eSortDirection">
<summary>
Specifies the sort direction for the column header.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eSortDirection.None">
<summary>
No sort is specified.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eSortDirection.Ascending">
<summary>
Ascending sorting is in effect, i.e. A-Z
</summary>
</member>
<member name="F:DevComponents.AdvTree.eSortDirection.Descending">
<summary>
Descending sorting is in effect, i.e. Z-A
</summary>
</member>
<member name="T:DevComponents.AdvTree.AdvTreeCellEventHandler">
<summary>
Defines the delegate for AdvTree cell based action events.
</summary>
</member>
<member name="T:DevComponents.AdvTree.AdvTreeCellCancelEventHandler">
<summary>
Defines the delegate for AdvTree cell based action events.
</summary>
</member>
<member name="T:DevComponents.AdvTree.AdvTreeNodeCancelEventHandler">
<summary>
Defines the delegate for AdvTree node based action events that can be cancelled.
</summary>
</member>
<member name="T:DevComponents.AdvTree.AdvTreeNodeEventHandler">
<summary>
Defines the delegate for AdvTree node based action events.
</summary>
</member>
<member name="T:DevComponents.AdvTree.CommandButtonEventHandler">
<summary>
Defines delegate for Command button events.
</summary>
</member>
<member name="T:DevComponents.AdvTree.CellEditEventHandler">
<summary>
Defines delegate for label editing events.
</summary>
</member>
<member name="T:DevComponents.AdvTree.TreeNodeCollectionEventHandler">
<summary>
Defines the delegate for AdvTree node based action events.
</summary>
</member>
<member name="T:DevComponents.AdvTree.TreeDragDropEventHandler">
<summary>
Defines the delegate for BeforeNodeDrop and AfterNodeDrop events
</summary>
</member>
<member name="T:DevComponents.AdvTree.TreeDragFeedbackEventHander">
<summary>
Defines the delegate for NodeDragFeedback event.
</summary>
</member>
<member name="T:DevComponents.AdvTree.TreeNodeMouseEventHandler">
<summary>
Defines the delegate for mouse based node events
</summary>
</member>
<member name="T:DevComponents.AdvTree.NodeRendererEventHandler">
<summary>
Defines delegate for node rendering events.
</summary>
</member>
<member name="T:DevComponents.AdvTree.NodeCellRendererEventHandler">
<summary>
Defines delegate for cell rendering events.
</summary>
</member>
<member name="T:DevComponents.AdvTree.NodeExpandPartRendererEventHandler">
<summary>
Defines delegate for RenderExpandPart event.
</summary>
</member>
<member name="T:DevComponents.AdvTree.SelectionRendererEventHandler">
<summary>
Defines delegate for RenderExpandPart event.
</summary>
</member>
<member name="T:DevComponents.AdvTree.ConnectorRendererEventHandler">
<summary>
Defines delegate for RenderConnector event.
</summary>
</member>
<member name="T:DevComponents.AdvTree.TreeBackgroundRendererEventHandler">
<summary>
Defines delegate for TreeBackgroundRenderer events.
</summary>
</member>
<member name="T:DevComponents.AdvTree.DragDropMarkerRendererEventHandler">
<summary>
Defines delegate for RenderDragDropMarker event.
</summary>
</member>
<member name="T:DevComponents.AdvTree.ColumnHeaderRendererEventHandler">
<summary>
Defines delegate for RenderColumnHeader event.
</summary>
</member>
<member name="T:DevComponents.AdvTree.CustomCellEditorEventArgs">
<summary>
Provides data for the ProvideCustomCellEditor event.
</summary>
</member>
<member name="F:DevComponents.AdvTree.CustomCellEditorEventArgs.EditControl">
<summary>
Gets or sets the cell editor. You must set this property in your event handler to the custom
editor to be used for cell editing.
</summary>
</member>
<member name="F:DevComponents.AdvTree.CustomCellEditorEventArgs.Cell">
<summary>
Gets the cell editor will be used for.
</summary>
</member>
<member name="M:DevComponents.AdvTree.CustomCellEditorEventArgs.#ctor(DevComponents.AdvTree.Cell)">
<summary>
Initializes a new instance of the CustomCellEditorEventArgs class.
</summary>
<param name="cell"></param>
</member>
<member name="T:DevComponents.AdvTree.CustomCellEditorEventHandler">
<summary>
Defines delegate for ProvideCustomCellEditor event.
</summary>
</member>
<member name="T:DevComponents.AdvTree.MarkupLinkClickEventArgs">
<summary>
Provides more information about MarkupLinkClick event.
</summary>
</member>
<member name="F:DevComponents.AdvTree.MarkupLinkClickEventArgs.HRef">
<summary>
Gets the value of href attribute from the markup link that was clicked.
</summary>
</member>
<member name="F:DevComponents.AdvTree.MarkupLinkClickEventArgs.Name">
<summary>
Gets the value of name attribute from the markup link that was clicked.
</summary>
</member>
<member name="M:DevComponents.AdvTree.MarkupLinkClickEventArgs.#ctor(System.String,System.String)">
<summary>
Creates new instance of the object.
</summary>
<param name="name">Value of name attribute.</param>
<param name="href">Value of href attribute.</param>
</member>
<member name="T:DevComponents.AdvTree.MarkupLinkClickEventHandler">
<summary>
Defines delegate for MarkupLinkClick event.
</summary>
</member>
<member name="T:DevComponents.AdvTree.SerializeNodeEventArgs">
<summary>
Represents arguments for SerializeNode event which allows you to add custom serialization data to definitions saved by control.
</summary>
</member>
<member name="F:DevComponents.AdvTree.SerializeNodeEventArgs.Node">
<summary>
Gets reference to the node being serialized or de-serialized.
</summary>
</member>
<member name="F:DevComponents.AdvTree.SerializeNodeEventArgs.ItemXmlElement">
<summary>
Gets reference to instance of XmlElement that item is serialized to or is being de-serialized from. You should not change any data directly on this element.
</summary>
</member>
<member name="F:DevComponents.AdvTree.SerializeNodeEventArgs.CustomXmlElement">
<summary>
Gets the reference to XmlElement that you can serialize to or de-serialize any custom data from. You can add child elements or set the attributes on
this XmlElement when handling SerializeItem event. When handling DeserializeItem event you can load your data from this element.
</summary>
</member>
<member name="T:DevComponents.AdvTree.SerializeNodeEventHandler">
<summary>
Defines delegate for SerializeItem event.
</summary>
</member>
<member name="T:DevComponents.AdvTree.HeaderDefinition">
<summary>
Represents the table header.
</summary>
</member>
<member name="M:DevComponents.AdvTree.HeaderDefinition.#ctor">
<summary>
Default constructor.
</summary>
</member>
<member name="P:DevComponents.AdvTree.HeaderDefinition.Columns">
<summary>
Gets the reference to the collection that contains the columns associated with header.
</summary>
</member>
<member name="P:DevComponents.AdvTree.HeaderDefinition.Name">
<summary>
Gets or sets the name associated with this header definition.
</summary>
</member>
<member name="T:DevComponents.AdvTree.HeadersCollection">
<summary>
Represents collection for HeaderDefinition objects.
</summary>
</member>
<member name="M:DevComponents.AdvTree.HeadersCollection.SetParent(DevComponents.AdvTree.AdvTree)">
<summary>
Sets the node collection belongs to.
</summary>
<param name="parent">HeaderDefinition that is parent of this collection.</param>
</member>
<member name="M:DevComponents.AdvTree.HeadersCollection.Add(DevComponents.AdvTree.HeaderDefinition)">
<summary>
Adds new object to the collection.
</summary>
<param name="ch">Object to add.</param>
<returns>Index of newly added object.</returns>
</member>
<member name="M:DevComponents.AdvTree.HeadersCollection.Insert(System.Int32,DevComponents.AdvTree.HeaderDefinition)">
<summary>
Inserts new object into the collection.
</summary>
<param name="index">Position of the object.</param>
<param name="value">Object to insert.</param>
</member>
<member name="M:DevComponents.AdvTree.HeadersCollection.IndexOf(DevComponents.AdvTree.HeaderDefinition)">
<summary>
Returns index of the object inside of the collection.
</summary>
<param name="value">Reference to the object.</param>
<returns>Index of the object.</returns>
</member>
<member name="M:DevComponents.AdvTree.HeadersCollection.Contains(DevComponents.AdvTree.HeaderDefinition)">
<summary>
Returns whether collection contains specified object.
</summary>
<param name="value">Object to look for.</param>
<returns>true if object is part of the collection, otherwise false.</returns>
</member>
<member name="M:DevComponents.AdvTree.HeadersCollection.Remove(DevComponents.AdvTree.HeaderDefinition)">
<summary>
Removes specified object from the collection.
</summary>
<param name="value"></param>
</member>
<member name="M:DevComponents.AdvTree.HeadersCollection.CopyTo(DevComponents.AdvTree.HeaderDefinition[],System.Int32)">
<summary>
Copies collection into the specified array.
</summary>
<param name="array">Array to copy collection to.</param>
<param name="index">Starting index.</param>
</member>
<member name="M:DevComponents.AdvTree.HeadersCollection.CopyTo(DevComponents.AdvTree.HeaderDefinition[])">
<summary>
Copies contained items to the HeaderDefinition array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="P:DevComponents.AdvTree.HeadersCollection.Parent">
<summary>
Gets or sets the node this collection is associated with.
</summary>
</member>
<member name="P:DevComponents.AdvTree.HeadersCollection.Item(System.Int32)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Interop.WinApi">
<summary>
Provides WinApi functions to rest of the application.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Interop.WinApi.ResetHover(System.Windows.Forms.Control)">
<summary>
Resets Hoover timer for specified control.
</summary>
</member>
<member name="T:DevComponents.AdvTree.KeyNavigation">
<summary>
Provides AdvTree Keyboard handling.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Layout.CellLayout">
<summary>
Represents class for Node's cell layout.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Layout.CellLayout.Offset(DevComponents.AdvTree.Cell,System.Int32,System.Int32)">
<summary>
Offset cell bounds, check box bounds, image bounds and text bounds by specified offset.
</summary>
<param name="cell">Cell to offset.</param>
<param name="x">Horizontal offset in pixels.</param>
<param name="y">Vertical offset in pixels.</param>
</member>
<member name="P:DevComponents.AdvTree.Layout.CellLayout.ImageCheckBoxSpacing">
<summary>
Returns spacing between check box and image if both are displayed
</summary>
</member>
<member name="P:DevComponents.AdvTree.Layout.CellLayout.ImageTextSpacing">
<summary>
Returns spacing between image or checkbox and text
</summary>
</member>
<member name="P:DevComponents.AdvTree.Layout.CellLayout.CellVerticalSpacing">
<summary>
Returns vertical spacing between cells in a node
</summary>
</member>
<member name="P:DevComponents.AdvTree.Layout.CellLayout.CellPartSpacing">
<summary>
Spacing between different parts of the cell, like image, option button, text and expand button area
</summary>
</member>
<member name="M:DevComponents.AdvTree.Layout.CellTileLayout.#ctor(DevComponents.AdvTree.Layout.LayoutSettings)">
<summary>
Initializes a new instance of the CellTileLayout class.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Layout.ColumnHeaderLayout">
<summary>
Class that is used to layout column header.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Layout.LayoutSettings.NodeVerticalSpacing">
<summary>
Gets or sets the vertical spacing between nodes in pixels.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Layout.LayoutSettings.NodeHorizontalSpacing">
<summary>
Gets or sets the horizontal spacing between nodes in pixels.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Layout.LayoutSettings.CellHorizontalSpacing">
<summary>
Returns horizontal spacing between cells in a node
</summary>
</member>
<member name="P:DevComponents.AdvTree.Layout.LayoutSettings.ExpandAreaWidth">
<summary>
Returns width of the expand button area. Default is 24 pixels.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Layout.LayoutSettings.ExpandPartSize">
<summary>
Gets or sets the size of the expand part that is expanding/collapsing the node. Default value is 8,8.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Layout.LayoutSettings.CommandAreaWidth">
<summary>
Gets or sets width of command button area. Default is 8 pixels.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Layout.NodeLayout">
<summary>
Summary description for NodeLayout.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Layout.NodeLayout.PerformLayout">
<summary>
Performs layout of the nodes inside of the tree control.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Layout.NodeLayout.PerformSingleNodeLayout(DevComponents.AdvTree.Node)">
<summary>
Performs layout for single unassigned node. Node does not have to be part of the tree control.
</summary>
<param name="node">Node to perform layout on.</param>
</member>
<member name="M:DevComponents.AdvTree.Layout.NodeLayout.PrepareStyles">
<summary>
Resizes all styles and prepares them for layout.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Layout.NodeLayout.GetDefaultColumnInfo">
<summary>
Returns default top-level columns for tree control.
</summary>
<returns>Returns array list of ColumnInfo objects.</returns>
</member>
<member name="M:DevComponents.AdvTree.Layout.NodeLayout.GetNodeColumnInfo(DevComponents.AdvTree.Node)">
<summary>
Returns column information for a given node.
</summary>
<param name="node">Node to return column information for</param>
<returns>Returns array list of ColumnInfo objects or null if there are no columns defined.</returns>
</member>
<member name="M:DevComponents.AdvTree.Layout.NodeLayout.GetColumnHeader(System.String)">
<summary>
Returns column header collection for the given column template name.
</summary>
<param name="name">Name of the column template.</param>
<returns>Column header collection or null if template name cannot be found.</returns>
</member>
<member name="M:DevComponents.AdvTree.Layout.NodeLayout.LayoutCommandPart(DevComponents.AdvTree.Layout.NodeLayoutContextInfo,DevComponents.DotNetBar.ElementStyle)">
<summary>
Sets the position and size of the node command button.
</summary>
<param name="layoutInfo">Node layout context information</param>
</member>
<member name="M:DevComponents.AdvTree.Layout.NodeLayout.LayoutExpandPart(DevComponents.AdvTree.Layout.NodeLayoutContextInfo,System.Boolean,System.Int32)">
<summary>
Determines the rectangle of the +/- part of the tree node that is used to expand node.
</summary>
<param name="layoutInfo">Node layout context information</param>
</member>
<member name="M:DevComponents.AdvTree.Layout.NodeLayout.GetExpandPartSize">
<summary>
Returns the size of the node expand part.
</summary>
<returns>Size of the expand part, default 8,8.</returns>
</member>
<member name="M:DevComponents.AdvTree.Layout.NodeLayout.LayoutNode(DevComponents.AdvTree.Layout.NodeLayoutContextInfo)">
<summary>
Provides the layout for single node.
</summary>
<param name="layoutInfo">Layout information.</param>
</member>
<member name="M:DevComponents.AdvTree.Layout.NodeLayout.HasExpandPart(DevComponents.AdvTree.Layout.NodeLayoutContextInfo)">
<summary>
Returns true if given node has expand part.
</summary>
<param name="layoutInfo">Layout context information.</param>
<returns></returns>
</member>
<member name="M:DevComponents.AdvTree.Layout.NodeLayout.HasCommandPart(DevComponents.AdvTree.Layout.NodeLayoutContextInfo)">
<summary>
Returns whether given node has command part.
</summary>
<param name="layoutInfo">Layout context information.</param>
<returns>True if command part should be drawn otherwise false.</returns>
</member>
<member name="M:DevComponents.AdvTree.Layout.NodeLayout.GetCellLayout">
<summary>
Returns class responsible for cell layout.
</summary>
<returns>Cell layout class.</returns>
</member>
<member name="M:DevComponents.AdvTree.Layout.NodeLayout.OffsetNodeLocation(DevComponents.AdvTree.Node,System.Int32,System.Int32)">
<summary>
Offsets node location and location of it's child nodes bounds.
</summary>
<param name="node">Node to offset.</param>
<param name="x">Horizontal offset.</param>
<param name="y">Vertical offset.</param>
</member>
<member name="P:DevComponents.AdvTree.Layout.NodeLayout.LayoutSettings">
<summary>
Gets or sets layout settings.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Layout.NodeLayout.TreeLayoutChildNodeIndent">
<summary>
Gets or sets the child node indent in pixels.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Layout.NodeLayout.RootHasExpandedPart">
<summary>
Returns true if root node should have expanded part
</summary>
</member>
<member name="P:DevComponents.AdvTree.Layout.NodeLayout.ReserveExpandPartSpace">
<summary>
Returns true if expand part space should be accounted for even if they expand part is not visible or need to be displayed. Default value is false.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Layout.NodeColumnInfo.#ctor(System.Collections.Generic.List{DevComponents.AdvTree.ColumnInfo},System.Boolean)">
<summary>
Initializes a new instance of the NodeColumnInfo structure.
</summary>
<param name="columnInfo"></param>
<param name="hasAutoSizeColumn"></param>
</member>
<member name="F:DevComponents.AdvTree.Layout.NodeColumnInfo.ColumnInfo">
<summary>
Gets or sets the list of column info object for the columns.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Layout.NodeColumnInfo.HasAutoSizeColumn">
<summary>
Gets or sets whether columns have auto-size column.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Layout.NodeLayoutContextInfo">
<summary>
Used to pass node contextual information used for layout of the node.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Layout.NodeTileLayout">
<summary>
Performs ListView Tile style layout.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Layout.NodeTileLayout.GetDefaultColumnInfo">
<summary>
Returns default top-level columns for tree control.
</summary>
<returns>Returns array list of ColumnInfo objects.</returns>
</member>
<member name="M:DevComponents.AdvTree.Layout.NodeTileLayout.ExpandPartAlignedNear(DevComponents.AdvTree.Node)">
<summary>
Gets whether the expand part of the node +/- is aligned to the left of the node in left-to-right layout.
</summary>
<param name="node">Node to get expand part alignment for</param>
<returns>true if node expand part is aligned to the left in left-to-right layout.</returns>
</member>
<member name="M:DevComponents.AdvTree.Layout.NodeTileLayout.GetNodeColumnInfo(DevComponents.AdvTree.Node)">
<summary>
Returns column information for a given node.
</summary>
<param name="node">Node to return column information for</param>
<returns>Returns array list of ColumnInfo objects or null if there are no columns defined.</returns>
</member>
<member name="M:DevComponents.AdvTree.Layout.NodeTileLayout.HasExpandPart(DevComponents.AdvTree.Layout.NodeLayoutContextInfo)">
<summary>
Returns true if given node has expand part.
</summary>
<param name="layoutInfo">Layout context information.</param>
<returns></returns>
</member>
<member name="M:DevComponents.AdvTree.Layout.NodeTileLayout.GetCellLayout">
<summary>
Returns class responsible for cell layout.
</summary>
<returns>Cell layout class.</returns>
</member>
<member name="P:DevComponents.AdvTree.Layout.NodeTileLayout.ReserveExpandPartSpace">
<summary>
Returns true if expand part space should be accounted for even if they expand part is not visible or need to be displayed. Default value is false.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Layout.NodeTileLayout.Groupping">
<summary>
Gets or sets whether parent/child node relationship is displayed as groups.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Layout.NodeTreeLayout">
<summary>
Performs classic TreeView layout.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Layout.NodeTreeLayout.ExpandPartAlignedNear(DevComponents.AdvTree.Node)">
<summary>
Gets whether the expand part of the node +/- is aligned to the left of the node in left-to-right layout.
</summary>
<param name="node">Node to get expand part alignment for</param>
<returns>true if node expand part is aligned to the left in left-to-right layout.</returns>
</member>
<member name="P:DevComponents.AdvTree.Layout.NodeTreeLayout.ReserveExpandPartSpace">
<summary>
Returns true if expand part space should be accounted for even if they expand part is not visible or need to be displayed. Default value is false.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Node">
<summary>
Represents the Node in Tree control.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.#ctor">
<summary>Default Constructor.</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.#ctor(System.String)">
<summary>
Creates node and initializes its text.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.#ctor(System.String,DevComponents.DotNetBar.ElementStyle)">
<summary>
Creates node and initializes its text and Style property.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.SetBounds(System.Drawing.Rectangle)">
<summary>
Sets the bounds of the node.
</summary>
<param name="r">New location and size of the node.</param>
</member>
<member name="M:DevComponents.AdvTree.Node.SetContentBounds(System.Drawing.Rectangle)">
<summary>
Sets the content bounds of the node. Content bound is bound for the the cells inside the node
and it excludes the expand rectangle. Bounds also include the node style padding and
reflect node margin.
</summary>
<param name="r">New location and size of the node.</param>
</member>
<member name="M:DevComponents.AdvTree.Node.SetCellsBounds(System.Drawing.Rectangle)">
<summary>
Sets cell bounds.
</summary>
<param name="r">New cells bounds.</param>
</member>
<member name="M:DevComponents.AdvTree.Node.SetParent(DevComponents.AdvTree.Node)">
<summary>
Sets node parent.
</summary>
<param name="parent">Parent node object.</param>
</member>
<member name="M:DevComponents.AdvTree.Node.OnParentChanged">
<summary>
Called when Parent of the node has changed.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.SetExpandPartRectangle(System.Drawing.Rectangle)">
<summary>
Sets the bounds of the expand part.
</summary>
<param name="r">New part bounds.</param>
</member>
<member name="M:DevComponents.AdvTree.Node.SetChecked(System.Boolean,DevComponents.AdvTree.eTreeAction)">
<summary>
Sets the Checked or CheckState properties.
</summary>
<param name="value">New value for checked state.</param>
<param name="actionSource">Action source.</param>
</member>
<member name="M:DevComponents.AdvTree.Node.SetChecked(System.Windows.Forms.CheckState,DevComponents.AdvTree.eTreeAction)">
<summary>
Sets the Checked or CheckState properties.
</summary>
<param name="value">New value for checked state.</param>
<param name="actionSource">Action source.</param>
</member>
<member name="M:DevComponents.AdvTree.Node.SetEditing(System.Boolean)">
<summary>
Sets whether node is in edit mode or not.
</summary>
<param name="b">True indicating that node is in edit mode false otherwise.</param>
</member>
<member name="M:DevComponents.AdvTree.Node.SetSelectedCell(DevComponents.AdvTree.Cell,DevComponents.AdvTree.eTreeAction)">
<summary>
Sets selected cell and provides information on the action that caused the selection change.
</summary>
<param name="value">New selected cell.</param>
<param name="actionSource">Action source.</param>
</member>
<member name="M:DevComponents.AdvTree.Node.ResetImageDisabled">
<summary>
Resets image to its default value. Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.ResetImage">
<summary>
Resets image to its default value. Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.ResetImageMouseOver">
<summary>
Resets ImageMouseOver to its default value. Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.ResetImageExpanded">
<summary>
Resets ImageExpanded to its default value. Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.OnDeselected(DevComponents.AdvTree.eTreeAction)">
<summary>
Called after node has been deselected.
</summary>
<param name="action">Provides information on how selection was performed</param>
</member>
<member name="M:DevComponents.AdvTree.Node.OnSelected(DevComponents.AdvTree.eTreeAction)">
<summary>
Called after node has been selected.
</summary>
<param name="action">Provides information on how selection was performed</param>
</member>
<member name="M:DevComponents.AdvTree.Node.GetCellAt(System.Int32,System.Int32)">
<summary>
Returns cell within a node which contains specified coordinates.
</summary>
<param name="x"></param>
<param name="y"></param>
<returns>Cell which contains specified coordinates or null/nothing if no cell contains coordinates.</returns>
</member>
<member name="M:DevComponents.AdvTree.Node.InvalidateLayout">
<summary>
Invalidates the layout for this node and causes the layout to be performed on next layout request.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.InvalidateLayout(System.Boolean)">
<summary>
Invalidates the layout for this node and causes the layout to be performed on next layout request.
</summary>
<param name="invalidateChildNodes">Indicates whether to invalidate layout for all child nodes as well.</param>
</member>
<member name="M:DevComponents.AdvTree.Node.Invalidate">
<summary>
Invalidates node and causes a paint message to be sent to the tree.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.BeginEdit">
<summary>Initiates the editing of node text.</summary>
<remarks>
This method by default edits text stored in Node.Text. Call to this method is
same as calling the overload method BeginData(0) with zero as parameter. Use BeginData
overload method to begin editing the specific column for multi-column nodes.
</remarks>
</member>
<member name="M:DevComponents.AdvTree.Node.BeginEdit(System.String)">
<summary>Initiates the editing of node text.</summary>
<param name="initialText">
The initial text to be entered into the edit TextBox. Specify null to use existing text.
</param>
</member>
<member name="M:DevComponents.AdvTree.Node.BeginEdit(System.Int32)">
<summary>Initiates text editing of certain Node column.</summary>
<param name="iColumnIndex">
Zero based index of a column to begin editing for. Column 0 always corresponds to
Node.Text property.
</param>
</member>
<member name="M:DevComponents.AdvTree.Node.BeginEdit(System.Int32,System.String)">
<summary>Initiates text editing of certain Node column.</summary>
<param name="iColumnIndex">
Zero based index of a column to begin editing for. Column 0 always corresponds to
Node.Text property.
</param>
<param name="initialText">
The initial text to be entered into the edit TextBox. Specify null to edit existing text.
</param>
</member>
<member name="M:DevComponents.AdvTree.Node.CreateCopyInstance">
<summary>
Creates new instance of the node for the Copy() and DeepCopy() methods. Allows you to returns your own node type copy if you inherit from node to add custom properties.
</summary>
<returns>New instance of a node.</returns>
</member>
<member name="M:DevComponents.AdvTree.Node.Copy">
<summary>Makes a "shallow" copy of a Node.</summary>
<remarks>
Shallow copy of a Node is a exact copy of Node but <strong>without</strong> copy
of all child nodes in Nodes collection.
</remarks>
</member>
<member name="M:DevComponents.AdvTree.Node.CopyTo(DevComponents.AdvTree.Node)">
<summary>
Copies this node properties to a node.
</summary>
<param name="n">Node top copy properties to.</param>
</member>
<member name="M:DevComponents.AdvTree.Node.DeepCopy">
<summary>Makes a "deep" copy of a node.</summary>
<remarks>
Deep copy of Node is a exact copy of Node including exact copies of all child nodes
in this node's Nodes collection.
</remarks>
</member>
<member name="M:DevComponents.AdvTree.Node.Collapse">
<summary>
Collapses the tree node.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.Collapse(DevComponents.AdvTree.eTreeAction)">
<summary>
Collapses the tree node.
</summary>
<param name="action">Action that caused the event</param>
</member>
<member name="M:DevComponents.AdvTree.Node.CollapseAll">
<summary>
Collapses all the child tree nodes.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.EndEdit(System.Boolean)">
<summary>
Ends the editing of the node text or column.
</summary>
<param name="cancelChanges"><strong>true</strong> if the editing of the tree node label text was canceled without being saved; otherwise, <strong>false</strong>. </param>
</member>
<member name="M:DevComponents.AdvTree.Node.EnsureVisible">
<summary>
Ensures that the node is visible, expanding nodes and scrolling the control as necessary.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.EnsureVisible(DevComponents.AdvTree.eEnsureVisibleOption)">
<summary>
Ensures that the node is visible, expanding nodes and scrolling the control as necessary.
</summary>
<param name="ensureVisibleOption">Indicates the position within a tree visible area node is scrolled to</param>
</member>
<member name="M:DevComponents.AdvTree.Node.Expand">
<summary>
Expands the node.
</summary>
<remarks>
The Expand method expands the current Node down to the next level of nodes.
The state of a Node is persisted. For example, if the next level of child nodes was not collapsed previously, when the Expand method is called, the child nodes appear in their previously expanded state.
</remarks>
</member>
<member name="M:DevComponents.AdvTree.Node.Expand(DevComponents.AdvTree.eTreeAction)">
<summary>
Expands the node.
</summary>
<remarks>
The Expand method expands the current Node down to the next level of nodes.
The state of a Node is persisted. For example, if the next level of child nodes was not collapsed previously, when the Expand method is called, the child nodes appear in their previously expanded state.
</remarks>
<param name="action">Action that caused the event.</param>
</member>
<member name="M:DevComponents.AdvTree.Node.ExpandAll">
<summary>
Expands all the child tree nodes.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.ExpandAll(DevComponents.AdvTree.eTreeAction)">
<summary>
Expands all the child tree nodes.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.Remove">
<summary>
Removes the current node from the control.
</summary>
<remarks>
When the Remove method is called, the node and any child nodes assigned to the Node are removed from the Tree. The removed child nodes are removed from the Tree, but are still attached to this node.
</remarks>
</member>
<member name="M:DevComponents.AdvTree.Node.Remove(DevComponents.AdvTree.eTreeAction)">
<summary>
Removes the current node from the control and provides information about source of action
</summary>
<remarks>
When the Remove method is called, the node and any child nodes assigned to the Node are removed from the Tree. The removed child nodes are removed from the Tree, but are still attached to this node.
</remarks>
</member>
<member name="M:DevComponents.AdvTree.Node.Toggle">
<summary>
Toggles the node to either the expanded or collapsed state.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.Toggle(DevComponents.AdvTree.eTreeAction)">
<summary>
Toggles the node to either the expanded or collapsed state.
</summary>
<param name="action">Action that caused the event.</param>
</member>
<member name="M:DevComponents.AdvTree.Node.ToString">
<summary>Returns string representation of the Node.</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.OnCellInserted(DevComponents.AdvTree.Cell)">
<summary>
Called after new cell has been added to Cells collection.
</summary>
<param name="cell">Reference to the new cell added.</param>
</member>
<member name="M:DevComponents.AdvTree.Node.OnCellRemoved(DevComponents.AdvTree.Cell)">
<summary>
Called after cell has been removed from Cells collection.
</summary>
<param name="cell">Reference to the removed cell.</param>
</member>
<member name="M:DevComponents.AdvTree.Node.OnSizeChanged">
<summary>
Occurs when property on the node has changed that influences the size of the node.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.OnImageChanged">
<summary>
Occurs when any image property for the cell has changed.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.OnChildNodesSizeChanged">
<summary>
Occurs when size of the child nodes has changed.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.OnExpandChanging(System.Boolean,DevComponents.AdvTree.eTreeAction)">
<summary>
Called before Expanded state of the node has changed.
</summary>
<param name="expanded">New Expand State</param>
<param name="action">Action Source</param>
</member>
<member name="M:DevComponents.AdvTree.Node.OnDisplayChanged">
<summary>
Called when visual part of the node has changed due to the changes of its properties or properties of the cells contained by node.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.OnChildNodeInserted(DevComponents.AdvTree.Node)">
<summary>
Called after new node has been added to Nodes collection.
</summary>
<param name="node">Reference to the new node.</param>
</member>
<member name="M:DevComponents.AdvTree.Node.OnChildNodeRemoved(DevComponents.AdvTree.Node)">
<summary>
Called after node has been removed from Nodes collection.
</summary>
<param name="node">Reference to the node that is removed.</param>
</member>
<member name="M:DevComponents.AdvTree.Node.CreateCells">
<summary>
Creates new cells based on the columns defined on either parent node or the columns in tree control. Node
must be parented so it can get reference to a parent tree control.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.RaiseClick">
<summary>
Raises the Click event on node and parent tree if available.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Node.CompareTo(System.Object)">
<summary>
Provides implementation for IComparable interface. This is used for sorting and it compares the Text property on nodes.
</summary>
<param name="obj"></param>
<returns></returns>
</member>
<member name="E:DevComponents.AdvTree.Node.NodeMouseDown">
<summary>
Occurs when the mouse pointer is over the node and a mouse button is pressed.
</summary>
</member>
<member name="E:DevComponents.AdvTree.Node.NodeMouseUp">
<summary>
Occurs when the mouse pointer is over the node and a mouse button is released.
</summary>
</member>
<member name="E:DevComponents.AdvTree.Node.NodeMouseMove">
<summary>
Occurs when the mouse pointer is moved over the node.
</summary>
</member>
<member name="E:DevComponents.AdvTree.Node.NodeMouseEnter">
<summary>
Occurs when the mouse enters the node.
</summary>
</member>
<member name="E:DevComponents.AdvTree.Node.NodeMouseLeave">
<summary>
Occurs when the mouse leaves the node.
</summary>
</member>
<member name="E:DevComponents.AdvTree.Node.NodeMouseHover">
<summary>
Occurs when the mouse hovers over the node.
</summary>
</member>
<member name="E:DevComponents.AdvTree.Node.NodeClick">
<summary>
Occurs when the node is clicked with left mouse button. If you need to know more information like if another mouse button is clicked etc. use
NodeMouseDown event.
</summary>
</member>
<member name="E:DevComponents.AdvTree.Node.NodeDoubleClick">
<summary>
Occurs when the node is double-clicked.
</summary>
</member>
<member name="E:DevComponents.AdvTree.Node.MarkupLinkClick">
<summary>
Occurs when hyperlink in text-markup is clicked.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.HasChildNodes">
<summary>
Gets whether node has child nodes.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.ContextMenu">
<summary>
Gets or sets the context menu assigned to this node. Standard Context Menus, VS.NET 2005 Context Menus and DotNetBar Suite context menus are supported.
Default value is null (Nothing) which indicates that no context menu is assigned.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.HasHostedControls">
<summary>
Gets whether any of the cells inside the node has HostedControl property set.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.NodeRenderer">
<summary>
Gets or sets custom node renderer. You can set this property to your custom renderer. When set the RenderMode should be set to custom to enable
your custom renderer. To choose one of the system renderer use RenderMode property. Default value is null.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.RenderMode">
<summary>
Gets or sets the render mode used to render the node. Default value is eNodeRenderMode.Default which indicates that system default renderer is used.
Note that if you specify custom renderer you need to set either AdvTree.NodeRenderer or Node.NodeRenderer property.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.Expanded">
<summary>
Gets or sets whether node is expanded. Expanded node shows it's child nodes.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.Name">
<summary>
Returns name of the node that can be used to identify it from the code.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.DragDropEnabled">
<summary>
Gets or sets whether node can be dragged and dropped. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.ExpandVisibility">
<summary>
Gets or sets visibility of the expand button. Default value is <strong>Auto</strong> meaning that
expand button is displayed only if node has at least one child node.
</summary>
<remarks>
You can use this property for example to dynamically load the child nodes when user
tries to expand the node. You could for example handle BeforeExpand event to load child
nodes into the node.
</remarks>
</member>
<member name="P:DevComponents.AdvTree.Node.SizeChanged">
<summary>
Gets or sets whether any operation on the node has been performed that would affect node's size. Size changed flag
internally indicates that node's size needs to be recalculated because it has changed
due to the changes in data.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.BoundsRelative">
<summary>
Gets the relative bounds of the tree node including the expand part of the node.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.Bounds">
<summary>
Gets the absolute bounds of the tree node including the expand part of the node.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.ContentBounds">
<summary>
Gets the node content bounds.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.CellsBoundsRelative">
<summary>
Gets the bounds for all the cells inside the node. The bounds do not include the expand part.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.CellsBounds">
<summary>
Gets the bounds for all the cells inside the node. The bounds do not include the expand part.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.ChildNodesBounds">
<summary>
Gets or sets the bounds of child nodes.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.ExpandPartRectangleRelative">
<summary>
Gets the expand part rectangle. Expand part is used to expand/collapse node.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.ExpandPartRectangle">
<summary>
Gets the expand part rectangle. Expand part is used to expand/collapse node.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.ExpandPartVerticalAlignment">
<summary>
Indicates vertical alignment within the node bounds of expand part of the node, if one is visible.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.CommandBounds">
<summary>
Gets or sets the Command part bounds if command part is visible.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.Checked">
<summary>
Gets or sets a value indicating whether the tree node is in a checked state.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.CheckBoxAlignment">
<summary>
Gets or sets the checkbox alignment in relation to the text displayed by first default cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.CheckBoxVisible">
<summary>
Gets or sets whether check box is visible inside the cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.CheckBoxStyle">
<summary>
Gets or sets the appearance style of the item. Default value is CheckBox. Item can also assume the style of radio-button.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.CheckBoxThreeState">
<summary>
Gets or sets a value indicating whether the CheckBox will allow three check states rather than two. If the ThreeState property is set to true
CheckState property should be used instead of Checked property to set the extended state of the control.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.CheckState">
<summary>
Specifies the state of a control, such as a check box, that can be checked, unchecked, or set to an indeterminate state.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.Editable">
<summary>
Gets or sets whether first cell content is editable when cell editing is enabled on tree control. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.FullPath">
<summary>
Gets the path from the root tree node to the current tree node. The path consists of the labels of all the tree nodes that must be navigated to get to this tree node, starting at the root tree node. The node labels are separated by the delimiter character specified in the PathSeparator property of the Tree control that contains this node.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.Index">
<summary>
Gets the zero based index of position of the tree node in the tree node collection. -1 is returned if node is not parented. If node is root node
the index of node in AdvTree.Nodes collection is returned.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.IsEditing">
<summary>
Gets a value indicating whether the tree node is in an editable state. true if the tree node is in editable state; otherwise, false.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.IsMouseDown">
<summary>
Gets whether left mouse button is pressed on any cell contained by this node.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.IsMouseOver">
<summary>
Gets whether mouse cursor is over on any cell contained by this node.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.IsSelected">
<summary>
Gets a value indicating whether the tree node is in the selected state. true if the tree node is in the selected state; otherwise, false.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.Selectable">
<summary>
Gets or sets whether node can be selected by user by clicking it with the mouse or using keyboard. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.CanSelect">
<summary>
Gets whether node can be selected. Node must be Visible, Enabled and Selectable in order for it to be selected.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.SelectedCell">
<summary>
Gets or sets a cell that is in selected state otherwise it returns null.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.IsVisible">
<summary>
Gets a value indicating whether the tree node is visible. Node is considered to be visible when it's Visible property is set to true and path to the node is available i.e. all parent nodes are expanded.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.IsDisplayed">
<summary>
Returns whether node is displayed on the screen and visible to the user. When node is outside of the viewable area this property will return false. It will also return false if node is not visible.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.LastNode">
<summary>
Gets the last child tree node. The LastNode is the last child Node in the NodeCollection stored in the Nodes property of the current tree node. If the Node has no child tree node, the LastNode property returns a null reference (Nothing in Visual Basic).
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.NextNode">
<summary>
Gets the next sibling tree node. The NextNode is the next sibling Node in the NodeCollection stored in the Nodes property of the tree node's parent Node. If there is no next tree node, the NextNode property returns a null reference (Nothing in Visual Basic).
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.NextVisibleNode">
<summary>
Gets the next visible tree node. The NextVisibleNode can be a child, sibling, or a tree node from another branch. If there is no next tree node, the NextVisibleNode property returns a null reference (Nothing in Visual Basic).
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.Level">
<summary>
Gets the zero-based depth of the tree node in the tree control. The root node is considered the first level of nesting and returns 0.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.Nodes">
<summary>
Gets the collection of Node objects assigned to the current tree node. The Nodes property can hold a collection of other Node objects. Each of the tree node in the collection has a Nodes property that can contain its own NodeCollection. Nesting of tree nodes can make it difficult to navigate a tree structure. The FullPath property makes it easier to determine your location in a tree.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.AnyVisibleNodes">
<summary>
Gets whether there is at least one child node that has its Visible property set to true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.Parent">
<summary>
Gets the parent tree node of the current tree node. If the tree node is at the root level, the Parent property returns a null reference (Nothing in Visual Basic).
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.PrevNode">
<summary>
Gets the previous sibling tree node. The PrevNode is the previous sibling Node in the NodeCollection stored in the Nodes property of the tree node's parent Node. If there is no previous tree node, the PrevNode property returns a null reference (Nothing in Visual Basic).
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.PrevVisibleNode">
<summary>
Gets the previous visible tree node. The PrevVisibleNode can be a child, sibling, or a tree node from another branch. If there is no previous tree node, the PrevVisibleNode property returns a null reference (Nothing in Visual Basic).
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.Tag">
<summary>
Gets or sets the object that contains data about the tree node. Any Object derived type can be assigned to this property. If this property is being set through the Windows Forms designer, only text can be assigned.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.TagString">
<summary>
Gets or sets the object that contains data about the tree node. Any Object derived type can be assigned to this property. If this property is being set through the Windows Forms designer, only text can be assigned.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.BindingIndex">
<summary>
Gets or sets the Binding index in CurrencyManager list if node is bound. You should not change this value directly since
it is used internally by the control for data binding scenarios.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.DataKey">
<summary>
Gets or sets the object that contains additional data about the tree node. Any Object derived type can be assigned to this property. If this property is being set through the Windows Forms designer, only text can be assigned.
This property has same function as Tag property and provides you with additional separate storage of data.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.DataKeyString">
<summary>
Gets or sets the object that contains additional data about the tree node. Any Object derived type can be assigned to this property. If this property is being set through the Windows Forms designer, only text can be assigned.
This property has same function as Tag property and provides you with additional separate storage of data.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.TextDisplayFormat">
<summary>
Gets or sets the format that is applied to the value of Text property for display purposes (applies to first cell in a node, i.e. Cells[0]). See "Formatting Overview" in MSDN
for description on available format strings. For example you can specify "C" to format text as currency, or "D" to format text as decimal number etc.
<seealso cref="!:http://msdn.microsoft.com/en-us/library/26etazsy.aspx"/>
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.Text">
<summary>
Gets or sets the text displayed in the tree node.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.HostedControl">
<summary>
Gets or sets the control hosted inside of the first node cell.
</summary>
<remarks>
<para>When control is hosted inside of the cell, cell size is determined by the
size of the control hosted inside of it. The cell will not display its text but it will display any image assigned
or check box when control is hosted inside of it. The Style settings like Margin
and Padding will still apply.</para>
</remarks>
</member>
<member name="P:DevComponents.AdvTree.Node.HostedItem">
<summary>
Gets or sets the item hosted inside of the first cell. Only items that do not generate
popups are supported. Note that cell can only host either HostedItem or HostedControl but not both.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.TreeControl">
<summary>
Gets the parent tree control that the tree node is assigned to.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.CellLayout">
<summary>
Gets or sets the layout of the cells inside the node. Default value is Horizontal layout which
means that cell are positioned horizontally next to each other.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.VerticalCellLayoutAlignment">
<summary>
Gets or sets the cell alignment when CellLayout=Vertical. Default value is center which means that cells are center aligned.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.CellPartLayout">
<summary>
Gets or sets the layout of the cell parts like check box, image and text. Layout can be horizontal (default)
where parts of the cell are positioned next to each other horizontally, or vertical where
parts of the cell are positioned on top of each other vertically.
Alignment of the each part is controlled by alignment properties. This property affects only the first cell inside of the node.
Use Cell.Layout property to change the part layout on each cell contained by node.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.Tooltip">
<summary>
Gets/Sets informational text (tooltip) for the cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.Cells">
<summary>
Gets the collection of all Cells assigned to this node. There should be always at least one cell in a node which is default cell. Default
collection contains a single cell.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.NodesColumnsHeaderVisible">
<summary>
Gets or sets whether column header for child nodes if defined is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.HasColumns">
<summary>
Gets whether node has child nodes columns defined.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.NodesColumns">
<summary>
Get collection of child node columns.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.StyleExpanded">
<summary>Gets or sets the style of the cells when node is expanded.</summary>
<value>
Reference to the style assigned to the node/cell or null value indicating that
default style setting from tree control is applied. Default value is null.
</value>
<remarks>
<para>When node is expanded the style specified here will be used on all cells
associated with this node instead of the
<see cref="P:DevComponents.AdvTree.Cell.StyleNormal">Cell.StyleNormal</see>. That way you can give
different appearance to your node's cells when node is expanded.</para>
<para>When property is set to null value the style setting from parent tree
controls is used. <see cref="P:DevComponents.AdvTree.AdvTree.NodeStyleExpanded">NodeStyleExpanded</see> on
AdvTree control is a root style for a cell.</para>
</remarks>
</member>
<member name="P:DevComponents.AdvTree.Node.StyleExpandedName">
<summary>
Gets or sets the expanded style name used by node. This member is provided for internal use only. To set or get the style use StyleExpanded property instead.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.StyleSelected">
<summary>
Gets or sets the style used when Node is selected. Default value is NULL (VB
Nothing)
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.StyleSelectedName">
<summary>
Gets or sets the selected style name used by node. This member is provided for internal use only. To set or get the style use StyleSelected property instead.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.StyleMouseOver">
<summary>
Gets or sets the style used when mouse is over the Node. Default value is NULL
(VB Nothing)
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.StyleMouseOverName">
<summary>
Gets or sets the mouse over style name used by node. This member is provided for internal use only. To set or get the style use StyleMouseOver property instead.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.Style">
<summary>
Gets or sets the node style.
</summary>
<value>
Reference to the style assigned to the node or null value indicating that default
style setting from tree control is applied. Default value is null.
</value>
<remarks>
<para>Style specified by this property will be used as default style for the node.
Each cell within the node can also specify it's own style. Since node contains the
cells using this style property can you for example create a border around all cell
contained by the node.</para>
<para>When this property is set to null value (default value) NodeStyle
property on AdvTree control is used.</para>
</remarks>
</member>
<member name="P:DevComponents.AdvTree.Node.StyleName">
<summary>
Gets or sets the style name used by node. This member is provided for internal use only. To set or get the style use Style property instead.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.MouseOverNodePart">
<summary>
Gets or sets the part of the node mouse is over.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.Offset">
<summary>
Gets or sets the node horizontal offset from the position determined by the layout manager.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.ImageAlignment">
<summary>
Gets or sets the image alignment in relation to the text displayed by cell. This property affects only first default cell inside the node.
Property with same name is available on each cell and you can use it to affect each cell individually.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.Enabled">
<summary>
Gets or sets whether node is enabled. Default value is true. Setting this value to false will set Enabled=false on all child cells.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.ImageDisabled">
<summary>
Gets or sets the image displayed when the tree node is disabled. If image is not specified control will create
gray-scale disabled image automatically.
</summary>
<remarks>
Image specified will be used as image when node is disabled.
</remarks>
</member>
<member name="P:DevComponents.AdvTree.Node.ImageDisabledIndex">
<summary>
Gets or sets the image-list index value of the disabled image.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.Image">
<summary>
Gets or sets the image displayed when the tree node is in the unselected state.
</summary>
<remarks>
Image specified will be used as a default image for any other node state where
different image is not specified.
</remarks>
</member>
<member name="P:DevComponents.AdvTree.Node.ImageKey">
<summary>
Gets or sets the image-list key value of the default image that is displayed by the tree nodes.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.ImageIndex">
<summary>
Gets or sets the image-list index value of the default image that is displayed by the tree nodes.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.ImageMouseOver">
<summary>
Gets or sets the image displayed when mouse is over the tree node.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.ImageMouseOverIndex">
<summary>
Gets or sets the image-list index value of the image that is displayed by the tree nodes when mouse is over the node.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.ImageMouseOverKey">
<summary>
Gets or sets the image-list key value of the image that is displayed by the tree nodes when mouse is over the node.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.ImageExpanded">
<summary>
Gets or sets the image displayed when node is expanded.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.ImageExpandedIndex">
<summary>
Gets or sets the image-list index value of the image that is displayed by the tree nodes when node is expanded.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.ImageExpandedKey">
<summary>
Gets or sets the image-list key value of the image that is displayed by the tree nodes when node is expanded.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.ImageList">
<summary>
Property Editor support for ImageIndex selection
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.ParentConnector">
<summary>
Gets or sets the NodeConnector object that describes the type of the connector used for
displaying connection between current node and its parent node.
Default value is null which means that settings from AdvTree control are used.
</summary>
<seealso cref="!:AdvTree.RootConnector">RootConnector Property (DevComponents.AdvTree.AdvTree)</seealso>
<seealso cref="P:DevComponents.AdvTree.AdvTree.NodesConnector">NodesConnector Property (DevComponents.AdvTree.AdvTree)</seealso>
</member>
<member name="P:DevComponents.AdvTree.Node.Visible">
<summary>
Gets or sets whether node is visible.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.CommandButton">
<summary>
Gets or sets whether command button is visible. Default value is false.
Command button can be used to display for example popup menu with commands for node,
or to display the list of linked nodes.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.SelectedConnectorMarker">
<summary>
Gets or sets internal value that indicates that node is on "path" of the selected node.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.AdvTree.Node.IsDragNode" -->
<member name="P:DevComponents.AdvTree.Node.IsSelectionVisible">
<summary>
Gets or sets whether node selection is visible in UI when node is selected. Default value is true. You can
set this value to false to temporary disable the display of selection for a node.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.NodesIndent">
<summary>
Gets or sets the additional indent for the child nodes that is added to the AdvTree.Indent value when performing child node layout. Default value i 0.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.CellNavigationEnabled">
<summary>
Gets or sets whether Left/Right navigation through the cells when SingleCellSelection on tree is set is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.FullRowBackground">
<summary>
Gets or sets whether style background that is applied to the node is drawn across the width of the tree control instead of only
behind the node content. Default value is false.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.ColumnHeaderHeight">
<summary>
Gets or sets the child column header height.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.AccessibleObject">
<summary>
Gets the AccessibleObject assigned to the item.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.AccessibleDefaultActionDescription">
<summary>
Gets or sets the default action description of the control for use by accessibility client applications.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.AccessibleDescription">
<summary>
Gets or sets the description of the control used by accessibility client applications.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.AccessibleName">
<summary>
Gets or sets the name of the control used by accessibility client applications.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.AccessibleRole">
<summary>
Gets or sets the accessible role of the item.
</summary>
</member>
<member name="P:DevComponents.AdvTree.Node.IsAccessible">
<summary>
Gets or sets a value indicating whether the node is visible to accessibility applications.
</summary>
</member>
<member name="T:DevComponents.AdvTree.NodeCollection">
<summary>
Represents collection for Node objects.
</summary>
</member>
<member name="M:DevComponents.AdvTree.NodeCollection.SetParentNode(DevComponents.AdvTree.Node)">
<summary>
Sets the node collection belongs to.
</summary>
<param name="parent">Node that is parent of this collection.</param>
</member>
<member name="M:DevComponents.AdvTree.NodeCollection.Add(DevComponents.AdvTree.Node)">
<summary>
Adds new object to the collection.
</summary>
<param name="node">Object to add.</param>
<returns>Index of newly added object.</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeCollection.Add(DevComponents.AdvTree.Node,DevComponents.AdvTree.eTreeAction)">
<summary>
Adds new object to the collection and provides information about the source of the command
</summary>
<param name="node">Node to add</param>
<param name="action">Source action</param>
<returns></returns>
</member>
<member name="M:DevComponents.AdvTree.NodeCollection.AddRange(DevComponents.AdvTree.Node[])">
<summary>
Adds an array of objects to the collection.
</summary>
<param name="nodes">Array of Node objects.</param>
</member>
<member name="M:DevComponents.AdvTree.NodeCollection.Insert(System.Int32,DevComponents.AdvTree.Node)">
<summary>
Inserts new object into the collection.
</summary>
<param name="index">Position of the object.</param>
<param name="value">Object to insert.</param>
</member>
<member name="M:DevComponents.AdvTree.NodeCollection.Insert(System.Int32,DevComponents.AdvTree.Node,DevComponents.AdvTree.eTreeAction)">
<summary>
Inserts new object into the collection.
</summary>
<param name="index">Position of the object.</param>
<param name="value">Object to insert.</param>
<param name="action">Action that is causing the event</param>
</member>
<member name="M:DevComponents.AdvTree.NodeCollection.IndexOf(DevComponents.AdvTree.Node)">
<summary>
Returns index of the object inside of the collection.
</summary>
<param name="value">Reference to the object.</param>
<returns>Index of the object.</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeCollection.Contains(DevComponents.AdvTree.Node)">
<summary>
Returns whether collection contains specified object.
</summary>
<param name="value">Object to look for.</param>
<returns>true if object is part of the collection, otherwise false.</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeCollection.Remove(DevComponents.AdvTree.Node)">
<summary>
Removes specified object from the collection.
</summary>
<param name="value"></param>
</member>
<member name="M:DevComponents.AdvTree.NodeCollection.Remove(DevComponents.AdvTree.Node,DevComponents.AdvTree.eTreeAction)">
<summary>
Removes specified object from the collection and provides information about source of the command
</summary>
<param name="node">Node to remove</param>
<param name="action">Source action</param>
</member>
<member name="M:DevComponents.AdvTree.NodeCollection.CopyTo(DevComponents.AdvTree.Node[],System.Int32)">
<summary>
Copies collection into the specified array.
</summary>
<param name="array">Array to copy collection to.</param>
<param name="index">Starting index.</param>
</member>
<member name="M:DevComponents.AdvTree.NodeCollection.CopyTo(DevComponents.AdvTree.Node[])">
<summary>
Copies contained items to the Node array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="M:DevComponents.AdvTree.NodeCollection.Sort">
<summary>
Sorts the elements in the entire collection using the IComparable implementation of each element.
</summary>
</member>
<member name="M:DevComponents.AdvTree.NodeCollection.Sort(System.Collections.IComparer)">
<summary>
Sorts the elements in the entire collection using the specified comparer.
</summary>
<param name="comparer">The IComparer implementation to use when comparing elements.-or- null to use the IComparable implementation of each element.</param>
</member>
<member name="M:DevComponents.AdvTree.NodeCollection.Sort(System.Int32,System.Int32,System.Collections.IComparer)">
<summary>
Sorts the elements in a range of elements in collection using the specified comparer.
</summary>
<param name="index"></param>
<param name="count"></param>
<param name="comparer"></param>
</member>
<member name="M:DevComponents.AdvTree.NodeCollection.Find(System.String,System.Boolean)">
<summary>
Finds the tree nodes with specified key, optionally searching sub-nodes.
</summary>
<param name="name">The name of the tree node to search for.</param>
<param name="searchAllChildren">true to search child nodes of tree nodes; otherwise, false. </param>
<returns>An array of Node objects whose Name property matches the specified key.</returns>
</member>
<member name="P:DevComponents.AdvTree.NodeCollection.ParentNode">
<summary>
Gets or sets the node this collection is associated with.
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeCollection.Item(System.Int32)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="M:DevComponents.AdvTree.NodeComparer.#ctor">
<summary>
Creates new instance of NodeComparer class. You can use NodeComparer to sort the nodes by specific column/cell by calling
NodeCollection.Sort method and pass new instance of NodeComparer class.
</summary>
</member>
<member name="M:DevComponents.AdvTree.NodeComparer.#ctor(System.Int32)">
<summary>
Creates new instance of NodeComparer class. You can use NodeComparer to sort the nodes by specific column/cell by calling
NodeCollection.Sort method and pass new instance of NodeComparer class.
</summary>
<param name="columnIndex">Column/Cell index to use for sorting.</param>
</member>
<member name="P:DevComponents.AdvTree.NodeComparer.ColumnIndex">
<summary>
Gets or sets the Column/Cell index that is used for sorting.
</summary>
</member>
<member name="T:DevComponents.AdvTree.NodeComparerReverse">
<summary>
Reverse sort nodes.
</summary>
</member>
<member name="M:DevComponents.AdvTree.NodeComparerReverse.#ctor(System.Int32)">
<summary>
Creates new instance of NodeComparer class. You can use NodeComparer to sort the nodes by specific column/cell by calling
NodeCollection.Sort method and pass new instance of NodeComparer class.
</summary>
<param name="columnIndex">Column/Cell index to use for sorting.</param>
</member>
<member name="T:DevComponents.AdvTree.NodeFlatIndexComparer">
<summary>
Sort by flat node index.
</summary>
</member>
<member name="M:DevComponents.AdvTree.NodeFlatIndexComparer.#ctor(DevComponents.AdvTree.AdvTree)">
<summary>
Creates new instance of NodeComparer class. You can use NodeComparer to sort the nodes by specific column/cell by calling
NodeCollection.Sort method and pass new instance of NodeComparer class.
</summary>
</member>
<member name="T:DevComponents.AdvTree.NodeConnector">
<summary>
Represents node connector. Node connector is the line that is drawn to indicate connection between child and parent node.
</summary>
</member>
<member name="M:DevComponents.AdvTree.NodeConnector.#ctor">
<summary>
Default Constructor.
</summary>
</member>
<member name="M:DevComponents.AdvTree.NodeConnector.#ctor(System.Int32,DevComponents.AdvTree.eNodeConnectorType)">
<summary>
Creates new instance of the object with specified parameters.
</summary>
<param name="lineWidth">Connector line width.</param>
<param name="type">Connector type.</param>
</member>
<member name="M:DevComponents.AdvTree.NodeConnector.ShouldSerializeLineColor">
<summary>
Returns true if editor should serialize LineColor property.
</summary>
</member>
<member name="E:DevComponents.AdvTree.NodeConnector.AppearanceChanged">
<summary>
Occurs when appearance of the connector has changed as result of changed settings on the connector.
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeConnector.LineWidth">
<summary>
Gets or sets the connector line width.
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeConnector.LineColor">
<summary>
Gets or sets the color of the connector line.
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeConnector.ConnectorType">
<summary>
Gets or sets the type of the connector.
</summary>
<remarks>
See <see cref="T:DevComponents.AdvTree.eNodeConnectorType">eNodeConnectorType</see> enum for list of
available connectors.
</remarks>
<seealso cref="T:DevComponents.AdvTree.eNodeConnectorType">eNodeConnectorType Enumeration</seealso>
</member>
<member name="P:DevComponents.AdvTree.NodeConnector.DashStyle">
<summary>
Gets or sets the DashStyle for the connector line. Default value is DashStyle.Dot.
</summary>
</member>
<member name="T:DevComponents.AdvTree.NodeOperations">
<summary>
Represents node operations.
</summary>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetFullPath(DevComponents.AdvTree.Node,System.String)">
<summary>
Returns full path to the given node.
</summary>
<param name="node">Node to return path to.</param>
<returns>Full path to the node.</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetLastNode(DevComponents.AdvTree.Node)">
<summary>
Gets the last child tree node. The LastNode is the last child Node in the NodeCollection stored in the Nodes property of the current tree node. If the Node has no child tree node, the LastNode property returns a null reference (Nothing in Visual Basic).
</summary>
<param name="node">Reference node.</param>
<returns>Last node if found or null if there is no last node.</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetLastDisplayedNode(DevComponents.AdvTree.AdvTree)">
<summary>
Returns last rendered node on screen.
</summary>
<param name="tree">Tree control.</param>
<returns>Last rendered node or null</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetFirstDisplayedNode(DevComponents.AdvTree.AdvTree)">
<summary>
Returns first rendered node on screen.
</summary>
<param name="tree">Tree control.</param>
<returns>Last rendered node or null</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetFirstVisibleNode(DevComponents.AdvTree.AdvTree)">
<summary>
Gets first visible node.
</summary>
<param name="tree">Reference to tree.</param>
<returns>Last visible node found or null</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetLastVisibleNode(DevComponents.AdvTree.AdvTree)">
<summary>
Gets last visible node in tree control.
</summary>
<param name="tree">Reference to tree.</param>
<returns>Last visible node found or null</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetLastVisibleTopLevelNode(DevComponents.AdvTree.AdvTree)">
<summary>
Gets last visible top-level node in tree control.
</summary>
<param name="tree">Reference to tree.</param>
<returns>Last visible node found or null</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetNextNode(DevComponents.AdvTree.Node)">
<summary>
Gets the next sibling tree node. The NextNode is the next sibling Node in the NodeCollection stored in the Nodes property of the tree node's parent Node. If there is no next tree node, the NextNode property returns a null reference (Nothing in Visual Basic).
</summary>
<param name="node">Reference node.</param>
<returns>Node object or null if node cannot be found.</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetNextVisibleSibling(DevComponents.AdvTree.Node)">
<summary>
Returns next visible sibling tree node.
</summary>
<param name="node">Reference node</param>
<returns>Node object or null if next visible node cannot be found</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetNextVisibleNode(DevComponents.AdvTree.Node)">
<summary>
Gets the next visible tree node. The NextVisibleNode can be a child, sibling, or a tree node from another branch. If there is no next tree node, the NextVisibleNode property returns a null reference (Nothing in Visual Basic).
</summary>
<param name="node">Reference node.</param>
<returns>Node object or null if node cannot be found.</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetAnyNextNode(DevComponents.AdvTree.Node)">
<summary>
Gets the next visible tree node. The NextVisibleNode can be a child, sibling, or a tree node from another branch. If there is no next tree node, the NextVisibleNode property returns a null reference (Nothing in Visual Basic).
</summary>
<param name="node">Reference node.</param>
<returns>Node object or null if node cannot be found.</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetIsNodeVisible(DevComponents.AdvTree.Node)">
<summary>
Gets a value indicating whether the tree node is visible. Node is considered to be visible when it's Visible property is set to true and path to the node is available i.e. all parent nodes are expanded.
</summary>
<param name="node"></param>
<returns></returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetIsNodeDisplayed(DevComponents.AdvTree.Node)">
<summary>
Returns whether node is displayed on the screen and visible to the user. When node is outside of the viewable area this property will return false. It will also return false if node is not visible.
</summary>
<param name="node"></param>
<returns></returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetNodeIndex(DevComponents.AdvTree.Node)">
<summary>
Gets the zero based index of position of the tree node in the tree node collection. -1 is returned if node is not added to the nodes collection.
</summary>
<param name="node">Reference node.</param>
<returns>Zero based index or -1 if node is not in collection.</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetPreviousNode(DevComponents.AdvTree.Node)">
<summary>
Gets the previous sibling tree node. The PrevNode is the previous sibling Node in the NodeCollection stored in the Nodes property of the tree node's parent Node. If there is no previous tree node, the PrevNode property returns a null reference (Nothing in Visual Basic).
</summary>
<param name="node">Reference node.</param>
<returns>Node object or null if node cannot be found.</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetPreviousVisibleNode(DevComponents.AdvTree.Node)">
<summary>
Gets the previous visible tree node. The PrevVisibleNode can be a child, sibling, or a tree node from another branch. If there is no previous tree node, the PrevVisibleNode property returns a null reference (Nothing in Visual Basic).
</summary>
<param name="node">Reference node.</param>
<returns>Node object or null if node cannot be found.</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetAnyPreviousNode(DevComponents.AdvTree.Node)">
<summary>
Gets the previous tree node. The Previous Node can be a child, sibling, or a tree node from another branch. If there is no previous tree node, the PrevNode property returns a null reference (Nothing in Visual Basic).
</summary>
<param name="node">Reference node.</param>
<returns>Node object or null if node cannot be found.</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.IsRootNode(DevComponents.AdvTree.AdvTree,DevComponents.AdvTree.Node)">
<summary>
Returns true if node passed is considered root node for display purposes.
</summary>
<param name="tree">Reference to the tree control.</param>
<param name="node">Node to test.</param>
<returns>true if node is root node for display purposes otherwise false.</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.EnsureVisible(DevComponents.AdvTree.Cell)">
<summary>
Ensures that the cell is visible, expanding nodes and scrolling the control as necessary.
</summary>
<param name="reference">Cell to be made visible.</param>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.EnsureVisible(DevComponents.AdvTree.Node,System.Boolean)">
<summary>
Ensures that the node is visible, expanding nodes and scrolling the control as necessary.
</summary>
<param name="reference">Node to be made visible.</param>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.EnsureVisible(DevComponents.AdvTree.Node,System.Boolean,DevComponents.AdvTree.eEnsureVisibleOption)">
<summary>
Ensures that the node is visible, expanding nodes and scrolling the control as necessary.
</summary>
<param name="reference">Node to be made visible.</param>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetVisibleNodesCount(DevComponents.AdvTree.Node)">
<summary>
Returns number of visible child nodes for given node.
</summary>
<param name="node">Reference node.</param>
<returns>Number of visible child nodes.</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetAnyVisibleNodes(DevComponents.AdvTree.Node)">
<summary>
Returns true if node has at least single visible child node.
</summary>
<param name="node">Reference node.</param>
<returns>True if at least single child node is visible otherwise false.</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetNodeAt(DevComponents.AdvTree.AdvTree,System.Drawing.Point)">
<summary>
Retrieves the tree node that is at the specified location.
</summary>
<returns>The Node at the specified point, in tree view coordinates.</returns>
<remarks>
<para>You can pass the MouseEventArgs.X and MouseEventArgs.Y coordinates of the
MouseDown event as the x and y parameters.</para>
</remarks>
<param name="p">The Point to evaluate and retrieve the node from.</param>
<param name="tree">Tree control to find node at.</param>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetNodeAt(DevComponents.AdvTree.AdvTree,System.Int32,System.Int32)">
<summary>
Retrieves the tree node that is at the specified location.
</summary>
<returns>The TreeNode at the specified location, in tree view coordinates.</returns>
<remarks>
<para>You can pass the MouseEventArgs.X and MouseEventArgs.Y coordinates of the
MouseDown event as the x and y parameters.</para>
</remarks>
<param name="x">The X position to evaluate and retrieve the node from.</param>
<param name="y">The Y position to evaluate and retrieve the node from.</param>
<param name="tree">Tree control to find node at.</param>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetNodeAt(DevComponents.AdvTree.AdvTree,System.Int32,System.Int32,System.Boolean)">
<summary>
Retrieves the tree node that is at the specified location.
</summary>
<returns>The TreeNode at the specified location, in tree view coordinates.</returns>
<remarks>
<para>You can pass the MouseEventArgs.X and MouseEventArgs.Y coordinates of the
MouseDown event as the x and y parameters.</para>
</remarks>
<param name="tree">Tree control to find node at.</param>
<param name="x">The X position to evaluate and retrieve the node from.</param>
<param name="y">The Y position to evaluate and retrieve the node from.</param>
<param name="paintedOnly">Enumerates rendered nodes only.</param>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetNodeAt(DevComponents.AdvTree.AdvTree,System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Retrieves the tree node that is at the specified location.
</summary>
<returns>The TreeNode at the specified location, in tree view coordinates.</returns>
<remarks>
<para>You can pass the MouseEventArgs.X and MouseEventArgs.Y coordinates of the
MouseDown event as the x and y parameters.</para>
</remarks>
<param name="tree">Tree control to find node at.</param>
<param name="x">The X position to evaluate and retrieve the node from.</param>
<param name="y">The Y position to evaluate and retrieve the node from.</param>
<param name="paintedOnly">Enumerates rendered nodes only.</param>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetNodeAt(DevComponents.AdvTree.AdvTree,System.Int32)">
<summary>
Retrieves the tree node that is at the specified vertical location.
</summary>
<returns>The TreeNode at the specified location, in tree view coordinates.</returns>
<remarks>
<para>You can pass the MouseEventArgs.X and MouseEventArgs.Y coordinates of the
MouseDown event as the x and y parameters.</para>
</remarks>
<param name="y">The Y position to evaluate and retrieve the node from.</param>
<param name="tree">Tree control to find node at.</param>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetNodeAt(DevComponents.AdvTree.AdvTree,System.Int32,System.Boolean)">
<summary>
Retrieves the tree node that is at the specified vertical location.
</summary>
<returns>The TreeNode at the specified location, in tree view coordinates.</returns>
<remarks>
<para>You can pass the MouseEventArgs.X and MouseEventArgs.Y coordinates of the
MouseDown event as the x and y parameters.</para>
</remarks>
<param name="y">The Y position to evaluate and retrieve the node from.</param>
<param name="tree">Tree control to find node at.</param>
<param name="paintedOnly">Enumerates rendered nodes only.</param>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetNodeAt(DevComponents.AdvTree.AdvTree,System.Int32,System.Boolean,System.Boolean)">
<summary>
Retrieves the tree node that is at the specified vertical location.
</summary>
<returns>The TreeNode at the specified location, in tree view coordinates.</returns>
<remarks>
<para>You can pass the MouseEventArgs.X and MouseEventArgs.Y coordinates of the
MouseDown event as the x and y parameters.</para>
</remarks>
<param name="y">The Y position to evaluate and retrieve the node from.</param>
<param name="tree">Tree control to find node at.</param>
<param name="paintedOnly">Enumerates rendered nodes only.</param>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetVisibleChildNodesCount(DevComponents.AdvTree.Node)">
<summary>
Gets the count of visible child nodes (Visible=true) for given node.
</summary>
<param name="parent">Reference to Node object.</param>
<returns>Number of visible nodes.</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetFirstVisibleChildNode(DevComponents.AdvTree.Node)">
<summary>
Gets the first visible child node or returns null if node cannot be found.
</summary>
<param name="parent">Reference to Node object.</param>
<returns>First visible node or null if node cannot be found.</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetLastVisibleChildNode(DevComponents.AdvTree.Node)">
<summary>
Gets the last visible child node or returns null if node cannot be found.
</summary>
<param name="parent">Reference to Node object.</param>
<returns>Last visible node or null if node cannot be found.</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.IsChildNode(DevComponents.AdvTree.Node,DevComponents.AdvTree.Node[])">
<summary>
Gets whether any node from array is child node of parent on any level.
</summary>
<param name="parent">Reference to parent node.</param>
<param name="child">Reference to child nodes.</param>
<returns></returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.IsChildNode(DevComponents.AdvTree.Node,DevComponents.AdvTree.Node)">
<summary>
Gets whether node is child node of parent on any level.
</summary>
<param name="parent">Reference to parent node.</param>
<param name="child">Reference to child node.</param>
<returns></returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.IsChildOfAnyParent(DevComponents.AdvTree.Node[],DevComponents.AdvTree.Node)">
<summary>
Returns true if child node is child of any parent node at any level.
</summary>
<param name="parents">Parent nodes array</param>
<param name="child">Child node</param>
<returns>true if child otherwise false</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.FindNodeByName(DevComponents.AdvTree.AdvTree,System.String)">
<summary>
Finds the node based on the Node.Name property.
</summary>
<param name="advTree">Reference to a tree control.</param>
<param name="name">Reference to a node with given name or null if node cannot be found.</param>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.FindNodeByDataKey(DevComponents.AdvTree.AdvTree,System.Object)">
<summary>
Finds the node based on the Node.DataKey property.
</summary>
<param name="advTree">Reference to a tree control.</param>
<param name="name">Reference to a node with given key or null if node cannot be found.</param>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.FindNodeByBindingIndex(DevComponents.AdvTree.AdvTree,System.Int32)">
<summary>
Finds the node based on the Node.BindingIndex property.
</summary>
<param name="advTree">Reference to a tree control.</param>
<param name="bindingIndex">Index to look for</param>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetNextVisibleCell(DevComponents.AdvTree.Node,System.Int32)">
<summary>
Returns next visible cell in node.
</summary>
<param name="node">Reference to a node</param>
<param name="startIndex">The index at which to start search.</param>
<returns>Reference to cell or null if there are no visible cells</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetPreviousVisibleCell(DevComponents.AdvTree.Node,System.Int32)">
<summary>
Returns previous visible cell in node.
</summary>
<param name="node">Reference to a node</param>
<param name="startIndex">The index at which to start search.</param>
<returns>Reference to cell or null if there are no visible cells</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetNodeFlatIndex(DevComponents.AdvTree.AdvTree,DevComponents.AdvTree.Node)">
<summary>
Returns the zero based flat index of the node. Flat index is the index of the node as if tree structure
has been flattened into the list.
</summary>
<param name="tree">Reference to parent tree control.</param>
<param name="node">Reference to the node to return index for.</param>
<returns>Zero based node index or -1 if index cannot be determined.</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.GetNodeByFlatIndex(DevComponents.AdvTree.AdvTree,System.Int32)">
<summary>
Returns node based on the flat index. Flat index is the index of the node as if tree structure
has been flattened into the list.
</summary>
<param name="advTree">Parent tree control.</param>
<param name="index">Index to return node for.</param>
<returns>Reference to a node or null if node at specified index cannot be found.</returns>
</member>
<member name="M:DevComponents.AdvTree.NodeOperations.FindNodeByText(DevComponents.AdvTree.AdvTree,System.String,DevComponents.AdvTree.Node,System.Boolean)">
<summary>
Finds the first node that starts with the specified text. Node.Text property is searched.
</summary>
<param name="advTree">Parent tree control.</param>
<param name="text">Partial text to look for</param>
<param name="startFromNode">Reference node to start searching from</param>
<param name="ignoreCase">Gets or sets whether search ignores the letter case</param>
<returns>Reference to a node or null if no node is found.</returns>
</member>
<member name="T:DevComponents.AdvTree.NodeHitTestInfo">
<summary>
Returned as information about the node or its column header at given coordinates.
</summary>
</member>
<member name="T:DevComponents.AdvTree.eEnsureVisibleOption">
<summary>
Defines options for EnsureVisible method which brings node into the view.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eEnsureVisibleOption.Bottom">
<summary>
Scrolls the tree so node is displayed at the bottom of the tree, if possible.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eEnsureVisibleOption.Middle">
<summary>
Scrolls the tree so node is displayed in the middle of the tree, if possible.
</summary>
</member>
<member name="F:DevComponents.AdvTree.eEnsureVisibleOption.Top">
<summary>
Scrolls the tree so node is displayed at the top of the tree, if possible.
</summary>
</member>
<member name="T:DevComponents.AdvTree.NodeStyles">
<summary>
Class that provides predefined styles for the nodes. Styles are defined as static memeber of the class
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeStyles.Apple">
<summary>
Returns Apple element style
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeStyles.Blue">
<summary>
Returns Blue element style
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeStyles.BlueLight">
<summary>
Returns BlueLight element style
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeStyles.BlueNight">
<summary>
Returns BlueNight element style
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeStyles.BlueMist">
<summary>
Returns BlueMist element style
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeStyles.Cyan">
<summary>
Returns Cyan element style
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeStyles.Green">
<summary>
Returns Green element style
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeStyles.Lemon">
<summary>
Returns Lemon element style
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeStyles.Magenta">
<summary>
Returns Magenta element style
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeStyles.Orange">
<summary>
Returns Orange element style
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeStyles.OrangeLight">
<summary>
Returns OrangeLight element style
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeStyles.Purple">
<summary>
Returns Purple element style
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeStyles.PurpleMist">
<summary>
Returns PurpleMist element style
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeStyles.Red">
<summary>
Returns Red element style
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeStyles.Silver">
<summary>
Returns Silver element style
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeStyles.SilverMist">
<summary>
Returns SilverMist element style
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeStyles.Tan">
<summary>
Returns Tan element style
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeStyles.Teal">
<summary>
Returns Teal element style
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeStyles.Yellow">
<summary>
Returns Yellow element style
</summary>
</member>
<member name="P:DevComponents.AdvTree.NodeStyles.Gray">
<summary>
Returns Gray element style
</summary>
</member>
<member name="T:DevComponents.AdvTree.ePredefinedElementStyle">
<summary>
Indicates predefined element style.
</summary>
</member>
<member name="T:DevComponents.AdvTree.SelectedNodesCollection">
<summary>
Represents the selected nodes collection.
</summary>
</member>
<member name="M:DevComponents.AdvTree.SelectedNodesCollection.#ctor">
<summary>
Initializes a new instance of the SelectedNodesCollection class.
</summary>
</member>
<member name="M:DevComponents.AdvTree.SelectedNodesCollection.Add(DevComponents.AdvTree.Node,DevComponents.AdvTree.eTreeAction)">
<summary>
Adds new object to the collection and provides information about the source of the command
</summary>
<param name="node">Node to add</param>
<param name="action">Source action</param>
<returns></returns>
</member>
<member name="M:DevComponents.AdvTree.SelectedNodesCollection.AddRange(DevComponents.AdvTree.Node[])">
<summary>
Adds an array of objects to the collection.
</summary>
<param name="nodes">Array of Node objects.</param>
</member>
<member name="T:DevComponents.AdvTree.TextBoxEx">
<summary>
Represents the text box for editing cell's text.
</summary>
</member>
<member name="P:DevComponents.AdvTree.TextBoxEx.EditWordWrap">
<summary>
Gets or sets whether the editing is in word-wrap mode.
</summary>
</member>
<member name="P:DevComponents.AdvTree.TextBoxEx.PreventEnterBeep">
<summary>
Gets or sets whether control prevents Beep sound when Enter key is pressed.
</summary>
</member>
<member name="T:DevComponents.AdvTree.TreeAreaInfo">
<summary>
Summary description for TreeAreaInfo.
</summary>
</member>
<member name="F:DevComponents.AdvTree.TreeAreaInfo.ParentAreaNode">
<summary>
Reference to parent node in which child bounds the coordinates are. Can be null if no parent node contains given coordinates.
</summary>
</member>
<member name="F:DevComponents.AdvTree.TreeAreaInfo.NodeAt">
<summary>
Node which contains specified coordinates. Can be null if no node contains coordinates.
</summary>
</member>
<member name="F:DevComponents.AdvTree.TreeAreaInfo.PreviousNode">
<summary>
Previous reference node for given coordinates. If coordinates fall between two nodes this will indicate previous node or null.
</summary>
</member>
<member name="F:DevComponents.AdvTree.TreeAreaInfo.NextNode">
<summary>
Next reference node for given coordinates. If coordinates fall between two nodes this will indicate next node or null.
</summary>
</member>
<member name="F:DevComponents.AdvTree.NodeDragInfo.Parent">
<summary>
Gets or sets the parent node drag node will be added to. When null the drag node is being added as top-level node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.NodeDragInfo.InsertIndex">
<summary>
Gets or sets the insert index of drag node into the parent's node Nodes collection.
</summary>
</member>
<member name="M:DevComponents.AdvTree.NodeDragInfo.#ctor">
<summary>
Initializes a new instance of the NodeDragInfo class.
</summary>
</member>
<member name="M:DevComponents.AdvTree.NodeDragInfo.#ctor(DevComponents.AdvTree.Node,System.Int32)">
<summary>
Initializes a new instance of the NodeDragInfo class.
</summary>
<param name="parent"></param>
<param name="insertIndex"></param>
</member>
<member name="T:DevComponents.AdvTree.TreeCellCancelEventArgs">
<summary>
Provides data for AdvTree Cell events that can be canceled.
</summary>
</member>
<member name="T:DevComponents.AdvTree.AdvTreeCellEventArgs">
<summary>
Provides data for AdvTree Cell events.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTreeCellEventArgs.#ctor(DevComponents.AdvTree.eTreeAction,DevComponents.AdvTree.Cell)">
<summary>
Default constructor for event data.
</summary>
<param name="action">Type of the action event is raised for.</param>
<param name="cell">Cell that event is raised for.</param>
</member>
<member name="F:DevComponents.AdvTree.AdvTreeCellEventArgs.Action">
<summary>
Indicates the type of the action performed on a cell.
</summary>
</member>
<member name="F:DevComponents.AdvTree.AdvTreeCellEventArgs.Cell">
<summary>
Indicates the cell that action is performed on.
</summary>
</member>
<member name="M:DevComponents.AdvTree.TreeCellCancelEventArgs.#ctor(DevComponents.AdvTree.eTreeAction,DevComponents.AdvTree.Cell)">
<summary>
Default constructor for event data.
</summary>
<param name="action">Type of the action event is raised for.</param>
<param name="cell">Cell that event is raised for.</param>
</member>
<member name="F:DevComponents.AdvTree.TreeCellCancelEventArgs.Cancel">
<summary>
Indicates that event action should be canceled.
</summary>
</member>
<member name="T:DevComponents.AdvTree.AdvTreeCellBeforeCheckEventArgs">
<summary>
Provides data for AdvTree.BeforeCheck event.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTreeCellBeforeCheckEventArgs.#ctor(DevComponents.AdvTree.eTreeAction,DevComponents.AdvTree.Cell,System.Windows.Forms.CheckState)">
<summary>
Initializes a new instance of the AdvTreeCellBeforeCheckEventArgs class.
</summary>
<param name="newCheckState"></param>
</member>
<member name="T:DevComponents.AdvTree.TreeDragDropEventArgs">
<summary>
Represents event arguments for BeforeNodeDrop and AfterNodeDrop events
</summary>
</member>
<member name="T:DevComponents.AdvTree.AdvTreeMultiNodeCancelEventArgs">
<summary>
Provides data for AdvTree Node events that can be cancelled.
</summary>
</member>
<member name="T:DevComponents.AdvTree.AdvTreeNodeCancelEventArgs">
<summary>
Provides data for AdvTree Node events that can be cancelled.
</summary>
</member>
<member name="T:DevComponents.AdvTree.AdvTreeNodeEventArgs">
<summary>
Provides data for AdvTree Node events.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTreeNodeEventArgs.#ctor(DevComponents.AdvTree.eTreeAction,DevComponents.AdvTree.Node)">
<summary>
Default constructor.
</summary>
<param name="action">Default action</param>
<param name="node">Default node.</param>
</member>
<member name="F:DevComponents.AdvTree.AdvTreeNodeEventArgs.Action">
<summary>
Indicates the type of the action performed on a node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.AdvTreeNodeEventArgs.Node">
<summary>
Indicates the node that action is performed on.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTreeNodeCancelEventArgs.#ctor(DevComponents.AdvTree.eTreeAction,DevComponents.AdvTree.Node)">
<summary>
Default constructor.
</summary>
<param name="action">Default action</param>
<param name="node">Default node.</param>
</member>
<member name="F:DevComponents.AdvTree.AdvTreeNodeCancelEventArgs.Cancel">
<summary>
Indicates that event action should be canceled.
</summary>
</member>
<member name="M:DevComponents.AdvTree.AdvTreeMultiNodeCancelEventArgs.#ctor(DevComponents.AdvTree.eTreeAction,DevComponents.AdvTree.Node[])">
<summary>
Default constructor.
</summary>
<param name="action">Default action</param>
<param name="node">Default node.</param>
</member>
<member name="F:DevComponents.AdvTree.AdvTreeMultiNodeCancelEventArgs.Nodes">
<summary>
Indicates the array of nodes that action is performed on.
</summary>
</member>
<member name="F:DevComponents.AdvTree.TreeDragDropEventArgs.OldParentNode">
<summary>
Returns reference to the old parent node.
</summary>
</member>
<member name="F:DevComponents.AdvTree.TreeDragDropEventArgs.NewParentNode">
<summary>
Reference to the new parent node if event is not cancelled.
</summary>
</member>
<member name="F:DevComponents.AdvTree.TreeDragDropEventArgs.IsCopy">
<summary>
Gets or sets whether drag node is being copied instead of moved.
</summary>
</member>
<member name="F:DevComponents.AdvTree.TreeDragDropEventArgs.InsertPosition">
<summary>
Gets or sets the new insert position inside of NewParentNode.Nodes collection for the node being dragged. If InsertPosition is -1
the ParentNode refers to the current mouse over node and drag &amp; drop node will be added as child node to it.
</summary>
</member>
<member name="T:DevComponents.AdvTree.TreeDragFeedbackEventArgs">
<summary>
Defines the data for NodeDragFeedback event.
</summary>
</member>
<member name="F:DevComponents.AdvTree.TreeDragFeedbackEventArgs.AllowDrop">
<summary>
Gets or sets whether this drop location is accepted. Default value is true. You can set this to false to disable drop at this location.
</summary>
</member>
<member name="F:DevComponents.AdvTree.TreeDragFeedbackEventArgs.ParentNode">
<summary>
Gets or sets the parent node for the node that is being dragged. This can be null/nothing value to indicate a root top-level node that
is in AdvTree.Nodes collection.
</summary>
</member>
<member name="F:DevComponents.AdvTree.TreeDragFeedbackEventArgs.InsertPosition">
<summary>
Gets or sets the new insert position inside of ParentNode.Nodes collection for the node being dragged. If InsertPosition is -1
the ParentNode refers to the current mouse over node and drag &amp; drop node will be added as child node to it.
</summary>
</member>
<member name="M:DevComponents.AdvTree.TreeDragFeedbackEventArgs.#ctor(DevComponents.AdvTree.Node,System.Int32,DevComponents.AdvTree.Node)">
<summary>
Initializes a new instance of the TreeDragFeedbackEventArgs class.
</summary>
<param name="parentNode"></param>
<param name="insertPosition"></param>
</member>
<member name="M:DevComponents.AdvTree.TreeDragFeedbackEventArgs.#ctor(DevComponents.AdvTree.Node,System.Int32,DevComponents.AdvTree.Node,System.Windows.Forms.DragDropEffects)">
<summary>
Initializes a new instance of the TreeDragFeedbackEventArgs class.
</summary>
<param name="parentNode"></param>
<param name="insertPosition"></param>
</member>
<member name="M:DevComponents.AdvTree.TreeDragFeedbackEventArgs.#ctor">
<summary>
Initializes a new instance of the TreeDragFeedbackEventArgs class.
</summary>
</member>
<member name="P:DevComponents.AdvTree.TreeDragFeedbackEventArgs.DragNode">
<summary>
Gets reference to the node being dragged.
</summary>
</member>
<member name="P:DevComponents.AdvTree.TreeDragFeedbackEventArgs.Effect">
<summary>
Gets or sets the drop effect for the drag-drop operation.
</summary>
</member>
<member name="M:DevComponents.AdvTree.MultiNodeTreeDragFeedbackEventArgs.#ctor(DevComponents.AdvTree.Node,System.Int32,DevComponents.AdvTree.Node[])">
<summary>
Initializes a new instance of the TreeDragFeedbackEventArgs class.
</summary>
<param name="parentNode"></param>
<param name="insertPosition"></param>
</member>
<member name="M:DevComponents.AdvTree.MultiNodeTreeDragFeedbackEventArgs.#ctor(DevComponents.AdvTree.Node,System.Int32,DevComponents.AdvTree.Node[],System.Windows.Forms.DragDropEffects)">
<summary>
Initializes a new instance of the TreeDragFeedbackEventArgs class.
</summary>
<param name="parentNode"></param>
<param name="insertPosition"></param>
</member>
<member name="P:DevComponents.AdvTree.MultiNodeTreeDragFeedbackEventArgs.DragNodes">
<summary>
Gets reference to the node being dragged.
</summary>
</member>
<member name="T:DevComponents.AdvTree.TreeNodeCollectionEventArgs">
<summary>
Represents event arguments for NodeCollection based events, like BeforeNodeInsert, AfterNodeInsert etc.
</summary>
</member>
<member name="M:DevComponents.AdvTree.TreeNodeCollectionEventArgs.#ctor(DevComponents.AdvTree.eTreeAction,DevComponents.AdvTree.Node,DevComponents.AdvTree.Node)">
<summary>
Creates new instance of the class.
</summary>
<param name="action">Source action</param>
<param name="node">Affected node</param>
<param name="parentNode">Parent of the node if any</param>
</member>
<member name="F:DevComponents.AdvTree.TreeNodeCollectionEventArgs.ParentNode">
<summary>
Indicates parent node of the affected node. For example if event handled is BeforeNodeInsert parent of the Node is has
not been set yet so this property provides information on the node that will become parent. If this property returns null
then node is being added or removed from the main AdvTree.Nodes collection.
</summary>
</member>
<member name="T:DevComponents.AdvTree.TreeNodeMouseEventArgs">
<summary>
Represents event arguments for node mouse based events.
</summary>
</member>
<member name="F:DevComponents.AdvTree.TreeNodeMouseEventArgs.Node">
<summary>
Gets node affected by mouse action.
</summary>
</member>
<member name="F:DevComponents.AdvTree.TreeNodeMouseEventArgs.Button">
<summary>
Gets which mouse button was pressed.
</summary>
</member>
<member name="F:DevComponents.AdvTree.TreeNodeMouseEventArgs.Clicks">
<summary>
Gets the number of times the mouse button was pressed and released.
</summary>
</member>
<member name="F:DevComponents.AdvTree.TreeNodeMouseEventArgs.Delta">
<summary>
Gets a signed count of the number of detents the mouse wheel has rotated. A detent is one notch of the mouse wheel.
</summary>
</member>
<member name="F:DevComponents.AdvTree.TreeNodeMouseEventArgs.X">
<summary>
Gets the x-coordinate of the mouse.
</summary>
</member>
<member name="F:DevComponents.AdvTree.TreeNodeMouseEventArgs.Y">
<summary>
Gets the y-coordinate of the mouse.
</summary>
</member>
<member name="T:DevComponents.AdvTree.TreeSerializer">
<summary>
Provides means for AdvTree serialization.
</summary>
</member>
<member name="M:DevComponents.AdvTree.TreeSerializer.Save(DevComponents.AdvTree.AdvTree,System.String)">
<summary>
Saves Nodes to specified file.
</summary>
<param name="tree">AdvTree to save</param>
<param name="fileName">Target file name</param>
</member>
<member name="M:DevComponents.AdvTree.TreeSerializer.Save(DevComponents.AdvTree.AdvTree,System.IO.Stream)">
<summary>
Saves Nodes to stream.
</summary>
<param name="tree">AdvTree to save</param>
<param name="outStream">Stream to save nodes to.</param>
</member>
<member name="M:DevComponents.AdvTree.TreeSerializer.Save(DevComponents.AdvTree.AdvTree,System.IO.TextWriter)">
<summary>
Saves Nodes to TextWriter
</summary>
<param name="tree">AdvTree to save</param>
<param name="writer">TextWriter to write nodes to.</param>
</member>
<member name="M:DevComponents.AdvTree.TreeSerializer.Save(DevComponents.AdvTree.AdvTree,System.Xml.XmlWriter)">
<summary>
Saves nodes to XmlWriter.
</summary>
<param name="tree">AdvTree to save</param>
<param name="writer">XmlWriter to write nodes to</param>
</member>
<!-- Badly formed XML comment ignored for member "M:DevComponents.AdvTree.TreeSerializer.Save(DevComponents.AdvTree.AdvTree)" -->
<member name="M:DevComponents.AdvTree.TreeSerializer.Save(DevComponents.AdvTree.AdvTree,System.Xml.XmlDocument)">
<summary>
Saves AdvTree to an existing XmlDocument. New node AdvTree is created in document and Nodes are serialized into it.
</summary>
<param name="tree">AdvTree to serialize</param>
<param name="document">XmlDocument instance.</param>
</member>
<member name="M:DevComponents.AdvTree.TreeSerializer.Save(DevComponents.AdvTree.AdvTree,System.Xml.XmlElement)">
<summary>
Serializes AdvTree object to XmlElement object.
</summary>
<param name="tree">Instance of AdvTree to serialize.</param>
<param name="parent">XmlElement to serialize to.</param>
</member>
<member name="M:DevComponents.AdvTree.TreeSerializer.Save(DevComponents.AdvTree.Node,DevComponents.AdvTree.NodeSerializationContext)">
<summary>
Serializes Node and all child nodes to XmlElement object.
</summary>
<param name="node">Node to serialize.</param>
<param name="context">Provides serialization context.</param>
</member>
<member name="M:DevComponents.AdvTree.TreeSerializer.Load(DevComponents.AdvTree.AdvTree,System.String)">
<summary>
Load AdvTree Nodes from file.
</summary>
<param name="tree">Reference to AdvTree to populate</param>
<param name="fileName">File name.</param>
</member>
<member name="M:DevComponents.AdvTree.TreeSerializer.Load(DevComponents.AdvTree.AdvTree,System.IO.Stream)">
<summary>
Load AdvTree Nodes from stream.
</summary>
<param name="tree">Reference to AdvTree to populate</param>
<param name="inStream">Reference to stream</param>
</member>
<member name="M:DevComponents.AdvTree.TreeSerializer.Load(DevComponents.AdvTree.AdvTree,System.IO.TextReader)">
<summary>
Load AdvTree Nodes from reader.
</summary>
<param name="tree">Reference to AdvTree to populate</param>
<param name="reader">Reference to reader.</param>
</member>
<member name="M:DevComponents.AdvTree.TreeSerializer.Load(DevComponents.AdvTree.AdvTree,System.Xml.XmlReader)">
<summary>
Load AdvTree Nodes from reader.
</summary>
<param name="tree">Reference to AdvTree to populate</param>
<param name="reader">Reference to reader.</param>
</member>
<member name="M:DevComponents.AdvTree.TreeSerializer.Load(DevComponents.AdvTree.AdvTree,System.Xml.XmlDocument)">
<summary>
Load AdvTree from XmlDocument that was created by Save method.
</summary>
<param name="tree">Tree Control to load</param>
<param name="document">XmlDocument to load control from</param>
</member>
<member name="M:DevComponents.AdvTree.TreeSerializer.Load(DevComponents.AdvTree.AdvTree,System.Xml.XmlElement)">
<summary>
Load nodes from XmlElement.
</summary>
<param name="tree">Reference to AdvTree to be populated.</param>
<param name="parent">XmlElement that tree was serialized to.</param>
</member>
<member name="M:DevComponents.AdvTree.TreeSerializer.LoadNode(DevComponents.AdvTree.Node,DevComponents.AdvTree.NodeSerializationContext)">
<summary>
Load single node and it's child nodes if any.
</summary>
<param name="nodeToLoad">New instance of node that is populated with loaded data.</param>
<param name="context">Provides deserialization context.</param>
</member>
<member name="T:DevComponents.AdvTree.NodeSerializationContext">
<summary>
Provides context information for serialization.
</summary>
</member>
<member name="F:DevComponents.AdvTree.NodeSerializationContext.RefXmlElement">
<summary>
Gets or sets reference to context parent XmlElement when serializing or actual Node element when deserializing.
</summary>
</member>
<member name="F:DevComponents.AdvTree.NodeSerializationContext.HasSerializeNodeHandlers">
<summary>
Gets or sets whether SerializeNode event handler has been defined and whether event should be fired.
</summary>
</member>
<member name="F:DevComponents.AdvTree.NodeSerializationContext.HasDeserializeNodeHandlers">
<summary>
Gets or sets whether DeserializeNode event handler has been defined and whether event should be fired.
</summary>
</member>
<member name="F:DevComponents.AdvTree.NodeSerializationContext.AdvTree">
<summary>
Provides access to serializer.
</summary>
</member>
<member name="T:DevComponents.AdvTree.Utilities">
<summary>
Represents class for static tree utilities.
</summary>
</member>
<member name="M:DevComponents.AdvTree.Utilities.InitializeTree(DevComponents.AdvTree.AdvTree)">
<summary>
Initializes control with default settings for connectors and nodes.
</summary>
<param name="tree">Control to initialize.</param>
</member>
<member name="M:DevComponents.AdvTree.Utilities.InitializeTree(DevComponents.AdvTree.AdvTree,DevComponents.AdvTree.ComponentFactory)">
<summary>
Initializes control with default settings for connectors and nodes.
</summary>
<param name="tree">Control to initialize.</param>
<param name="factory">Factory to use to create new instances of objects.</param>
</member>
<member name="M:DevComponents.AdvTree.Utilities.CreateStyle(DevComponents.AdvTree.ComponentFactory,System.String,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Int32,System.Drawing.Color)">
<summary>
Creates new style and adds it to styles collection
</summary>
<param name="tree">Tree to assign style to</param>
<param name="factory">Style factory</param>
<param name="backColor"></param>
<param name="backColor2"></param>
<param name="gradientAngle"></param>
<param name="textColor"></param>
</member>
<member name="M:DevComponents.AdvTree.Utilities.FindNodeForControl(DevComponents.AdvTree.AdvTree,System.Windows.Forms.Control)">
<summary>
Returns reference to a node that is hosting given control.
</summary>
<param name="tree">Reference to the AdvTree control instance</param>
<param name="c">Control instance to look for</param>
<returns>Reference to a node hosting control or null if node could not be found</returns>
</member>
<member name="T:DevComponents.AdvTree.ComponentFactory">
<summary>
Represents internal component factory with design-time support.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ComponentFactory.#ctor(System.ComponentModel.Design.IDesignerHost)">
<summary>
Creates new instance of the class.
</summary>
<param name="designer">Reference to DesignerHost to use for creation of new components.</param>
</member>
<member name="M:DevComponents.AdvTree.ComponentFactory.#ctor">
<summary>
Creates new instance of the class.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ComponentFactory.CreateComponent(System.Type)">
<summary>
Creates component and returns reference to the new instance.
</summary>
<param name="type">Type that identifies component to create.</param>
<returns>New instance of the component.</returns>
</member>
<member name="T:DevComponents.AdvTree.Padding">
<summary>
Represents class that holds padding information for user interface elements.
</summary>
</member>
<member name="F:DevComponents.AdvTree.Padding.Left">
<summary>
Gets or sets padding on left side. Default value is 0
</summary>
</member>
<member name="F:DevComponents.AdvTree.Padding.Right">
<summary>
Gets or sets padding on right side. Default value is 0
</summary>
</member>
<member name="F:DevComponents.AdvTree.Padding.Top">
<summary>
Gets or sets padding on top side. Default value is 0
</summary>
</member>
<member name="F:DevComponents.AdvTree.Padding.Bottom">
<summary>
Gets or sets padding on bottom side. Default value is 0
</summary>
</member>
<member name="M:DevComponents.AdvTree.Padding.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates new instance of the class and initializes it.
</summary>
<param name="left">Left padding</param>
<param name="right">Right padding</param>
<param name="top">Top padding</param>
<param name="bottom">Bottom padding</param>
</member>
<member name="P:DevComponents.AdvTree.Padding.Horizontal">
<summary>
Gets amount of horizontal padding (Left+Right)
</summary>
</member>
<member name="P:DevComponents.AdvTree.Padding.Vertical">
<summary>
Gets amount of vertical padding (Top+Bottom)
</summary>
</member>
<member name="P:DevComponents.AdvTree.Padding.IsEmpty">
<summary>
Gets whether Padding is empty.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.AnalogClockControl">
<summary>
Analog clock control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.AnalogClockControl.ResetClockStyleData">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.AnalogClockControl.OnValueChanging(DevComponents.DotNetBar.Controls.TimeValueChangingEventArgs)">
<summary>
Raises ValueChanging event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.AnalogClockControl.OnValueChanged(System.EventArgs)">
<summary>
Raises ValueChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.AnalogClockControl.ResetValue">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.AnalogClockControl.#ctor">
<summary>
Initializes a new instance of the ClockControl class
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.AnalogClockControl.Dispose(System.Boolean)">
<summary>
Releases all resources used by the class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.AnalogClockControl.DrawCap(System.Drawing.Graphics,System.Drawing.RectangleF)">
<summary>
Renders the clock's center cap.
</summary>
<param name="gfx">Graphics object used for rendering.</param>
<param name="rect">Bounding rectangle.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.AnalogClockControl.DrawGlassOverlay(System.Drawing.Graphics,System.Drawing.RectangleF)">
<summary>
Renders the clock's glass overlay.
</summary>
<param name="gfx">Graphics object used for rendering.</param>
<param name="rect">Bounding rectangle.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.AnalogClockControl.DrawHands(System.Drawing.Graphics,System.Drawing.RectangleF,System.Boolean)">
<summary>
Renders the clock's hands.
</summary>
<param name="gfx">Graphics object used for rendering.</param>
<param name="rect">Bounding rectangle.</param>
<param name="overCap">True if this is the rending pass after the cap has been rendered.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.AnalogClockControl.DrawNumbers(System.Drawing.Graphics,System.Drawing.RectangleF)">
<summary>
Renders the clock's numeric hour indicators.
</summary>
<param name="gfx">Graphics object used for rendering.</param>
<param name="rect">Bounding rectangle.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.AnalogClockControl.DrawTicks(System.Drawing.Graphics,System.Drawing.RectangleF)">
<summary>
Renders the clock's tick hour/minute indicators.
</summary>
<param name="gfx">Graphics object used for rendering.</param>
<param name="rect">Bounding rectangle.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.AnalogClockControl.OnTimeZoneChanged(System.String,System.String)">
<summary>
Called when TimeZone property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.AnalogClockControl.DefaultMinimumSize">
<summary>
Default minimum size. Defaults to 100, 100.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.AnalogClockControl.AntiAlias">
<summary>
Gets or sets whether anti-aliasing is used when rendering the control. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.AnalogClockControl.AutomaticMode">
<summary>
Gets or sets the state for automatic mode. When true the clock will auto redraw once a second and display the current date/time. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.AnalogClockControl.ClockStyle">
<summary>
Gets or sets clock style for this control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.AnalogClockControl.ClockStyleData">
<summary>
Gets or sets the clock style data elements for this control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.AnalogClockControl.IndicatorStyle">
<summary>
Gets or sets a the indicator style the clock control. Default value is Ticks.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.AnalogClockControl.IsEditable">
<summary>
Gets or sets whether the time can be changed by moving the clock hands. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.AnalogClockControl.ShowGlassOverlay">
<summary>
Gets or sets a value indicating whether to display the glass overlay on the clock control. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.AnalogClockControl.ShowSecondHand">
<summary>
Gets or sets a value indicating whether to display the second hand on the clock control. Default value is true.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.AnalogClockControl.ValueChanging">
<summary>
Occurs while user is dragging the mouse in order to change time.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.AnalogClockControl.ValueChanged">
<summary>
Occurs when Value i.e. time clock is displaying has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.AnalogClockControl.Value">
<summary>
Gets or sets the current date/time value for this control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.AnalogClockControl.TimeZone">
<summary>
Gets or sets the time-zone string identifier that is used to display the time when AutomaticMode=true and clock is displaying current time.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eClockIndicatorStyles">
<summary>
Enumeration containing the available hour/minute indicators.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eClockIndicatorStyles.Ticks">
<summary>
Control will use ticks for hour/minute indicators.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eClockIndicatorStyles.Numbers">
<summary>
Control will use numbers for hour indicators.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eClockEditStates">
<summary>
Enumeration containing the available mouse edit states.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eClockEditStates.None">
<summary>
Control is not currently in an edit state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eClockEditStates.Hour">
<summary>
Control is currently in an hour edit state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eClockEditStates.Minute">
<summary>
Control is currently in an minute edit state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eClockEditStates.Second">
<summary>
Control is currently in an second edit state.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.TimeValueChangingEventArgs">
<summary>
Provides event arguments for TimeValueChanging event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TimeValueChangingEventArgs.Time">
<summary>
Gets the current time represented by the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TimeValueChangingEventArgs.#ctor(System.DateTime)">
<summary>
Initializes a new instance of the TimeValueChangingEventArgs class.
</summary>
<param name="time"></param>
</member>
<member name="T:DevComponents.DotNetBar.Controls.TimeValueChangingEventHandler">
<summary>
Defines delegate for TimeValueChanging event.
</summary>
<param name="sender">Source of event.</param>
<param name="e">Event arguments</param>
</member>
<member name="T:DevComponents.DotNetBar.Controls.ClockHandStyleData">
<summary>
Data storage class for clock hand visual style.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ClockHandStyleData.ResetHandColor">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ClockHandStyleData.#ctor">
<summary>
Initializes a new instance of the ClockHand class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ClockHandStyleData.#ctor(DevComponents.DotNetBar.Controls.eHandStyles,System.Single,System.Single)">
<summary>
Initializes a new instance of the ClockHand class.
</summary>
<param name="handStyle">The hand style for this item.</param>
<param name="length">The length of this clock hand as a percentage value ranging from 0.0 to 1.0, with 1.0 being half the width/height of the bounding rectangle</param>
<param name="width">The width of this clock hand as a percentage value ranging from 0.0 to 1.0, with 1.0 being half the width/height of the bounding rectangle.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ClockHandStyleData.ContainsPoint(System.Drawing.RectangleF,System.Single,System.Drawing.Point)">
<summary>
Indicates whether the specified point is contained within the bounds of this hand.
</summary>
<param name="boundingRect">The bounding rectangle of the parent clock control.</param>
<param name="angle">The clockwise angle for this clock hand in degrees from the 12 o'clock position.</param>
<param name="pt">A Point that represents the point to test.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ClockHandStyleData.GenerateHandPath(System.Drawing.RectangleF,System.Single)">
<summary>
Generates a scaled and rotated graphics path based on the given style, rectangle and angle.
</summary>
<param name="boundingRect">The bounding rectangle of the parent clock control.</param>
<param name="angle">The clockwise angle for this clock hand in degrees from the 12 o'clock position.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ClockHandStyleData.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Raises the PropertyChanged event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockHandStyleData.DrawOverCap">
<summary>
Gets or sets a value indicating whether the hand is drawn over the cap.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockHandStyleData.HandColor">
<summary>
Gets or sets the hand color data for this hand.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockHandStyleData.HandStyle">
<summary>
Gets or sets the hand style for this clock hand. Default value is Style1.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockHandStyleData.Length">
<summary>
Gets or sets the length of this clock hand as a percentage value ranging from 0.0 to 1.0, with 1.0 being half the width/height of the bounding rectangle. Default value is 1.0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockHandStyleData.Width">
<summary>
Gets or sets the width of this clock hand as a percentage value ranging from 0.0 to 1.0, with 1.0 being half the width/height of the bounding rectangle. Default value is 0.1.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ClockHandStyleData.PropertyChanged">
<summary>
Occurs when property value has changed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eHandStyles">
<summary>
Enumeration containing the available hand styles.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eHandStyles.Style1">
<summary>
Style 1.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eHandStyles.Style2">
<summary>
Style 2.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eHandStyles.Style3">
<summary>
Style 3.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eHandStyles.Style4">
<summary>
Style 4.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.ClockStyleData">
<summary>
Data storage class for clock visual styles.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ClockStyleData.ResetBezelColor">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ClockStyleData.ResetFaceColor">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ClockStyleData.ResetHourHandStyle">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ClockStyleData.ResetMinuteHandStyle">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ClockStyleData.ResetSecondHandStyle">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ClockStyleData.ResetCapColor">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ClockStyleData.ResetNumberFont">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ClockStyleData.ResetLargeTickColor">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ClockStyleData.ResetSmallTickColor">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ClockStyleData.#ctor">
<summary>
Initializes a new instance of the ClockStyle class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ClockStyleData.#ctor(DevComponents.DotNetBar.Controls.eClockStyles)">
<summary>
Initializes a new instance of the ClockStyle class.
</summary>
<param name="style">Predefined style from the PredefinedStyles enum.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ClockStyleData.#ctor(DevComponents.DotNetBar.Controls.eClockStyles,DevComponents.DotNetBar.Controls.AnalogClockControl)">
<summary>
Initializes a new instance of the ClockStyle class.
</summary>
<param name="style">Predefined style from the PredefinedStyles enum.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ClockStyleData.Dispose">
<summary>
Releases all resources used by the class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ClockStyleData.LoadStyle(DevComponents.DotNetBar.Controls.eClockStyles)">
<summary>
Loads a predefined style
</summary>
<param name="style">The predefined style to load.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ClockStyleData.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Raises the PropertyChanged event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockStyleData.Style">
<summary>
Gets or sets the PredefinedStyles value for this style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockStyleData.ClockShape">
<summary>
Gets or sets the clock shape value for this style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockStyleData.BezelColor">
<summary>
Gets or sets the bezel color data for this style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockStyleData.BezelWidth">
<summary>
Gets or sets the width of clock bezel as a percentage value ranging from 0.0 to 1.0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockStyleData.FaceColor">
<summary>
Gets or sets the face color data for this style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockStyleData.FaceBackgroundImage">
<summary>
Gets or sets the face background image for this style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockStyleData.HourHandStyle">
<summary>
Gets or sets the hour hand style for this style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockStyleData.MinuteHandStyle">
<summary>
Gets or sets the minute hand style for this style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockStyleData.SecondHandStyle">
<summary>
Gets or sets the second hand style for this style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockStyleData.CapColor">
<summary>
Gets or sets the center cap color data for this style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockStyleData.CapSize">
<summary>
Gets or sets the center cap diameter as a percentage value ranging from 0.0 to 1.0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockStyleData.NumberColor">
<summary>
Gets or sets the face number color for this style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockStyleData.NumberFont">
<summary>
Gets or sets the center cap color data for this style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockStyleData.LargeTickColor">
<summary>
Gets or sets the large tick color data for this style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockStyleData.LargeTickLength">
<summary>
Gets or sets the large tick length as a percentage value ranging from 0.0 to 1.0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockStyleData.LargeTickWidth">
<summary>
Gets or sets the large tick width as a percentage value ranging from 0.0 to 1.0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockStyleData.SmallTickColor">
<summary>
Gets or sets the small tick color data for this style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockStyleData.SmallTickLength">
<summary>
Gets or sets the small tick length as a percentage value ranging from 0.0 to 1.0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockStyleData.SmallTickWidth">
<summary>
Gets or sets the small tick width as a percentage value ranging from 0.0 to 1.0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockStyleData.GlassAngle">
<summary>
Gets or sets the overlay glass angle, in degrees for this style.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ClockStyleData.PropertyChanged">
<summary>
Occurs when property value has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ClockStyleData.Parent">
<summary>
Gets the parent of the style.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eClockStyles">
<summary>
Enumeration containing the predefined clock styles.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eClockStyles.Style1">
<summary>
Style 1. Default style,
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eClockStyles.Style2">
<summary>
Style 2.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eClockStyles.Custom">
<summary>
No predefined style.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eClockShapes">
<summary>
Enumeration containing the predefined clock shapes.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eClockShapes.Round">
<summary>
Round clock shape.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.ColorData">
<summary>
Data storage and utility class for defining gradient colors.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ColorData.#ctor">
<summary>
Creates new instance of the object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ColorData.#ctor(DevComponents.DotNetBar.Controls.eBrushTypes,System.Drawing.Color,System.Drawing.Color)">
<summary>
Creates new instance of the object.
</summary>
<param name="color1">The first color for this entry.</param>
<param name="color2">The second color for this entry.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ColorData.#ctor(DevComponents.DotNetBar.Controls.eBrushTypes,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Single)">
<summary>
Creates new instance of the object.
</summary>
<param name="color1">The first color for this entry.</param>
<param name="color2">The second color for this entry.</param>
<param name="borderColor">The border color for this entry.</param>
<param name="borderWidth">The border width for this entry.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ColorData.#ctor(DevComponents.DotNetBar.Controls.eBrushTypes,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Single,System.Single)">
<summary>
Creates new instance of the object.
</summary>
<param name="color1">The first color for this entry.</param>
<param name="color2">The second color for this entry.</param>
<param name="borderColor">The border color for this entry.</param>
<param name="borderWidth">The border width for this entry.</param>
<param name="brushAngle">The gradient angle.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ColorData.#ctor(DevComponents.DotNetBar.Controls.eBrushTypes,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Single,System.Single,System.Single)">
<summary>
Creates new instance of the object.
</summary>
<param name="color1">The first color for this entry.</param>
<param name="color2">The second color for this entry.</param>
<param name="borderColor">The border color for this entry.</param>
<param name="borderWidth">The border width for this entry.</param>
<param name="brushSBSFocus">The focus for the SigmaBellShape.</param>
<param name="brushSBSScale">The scale for the SigmaBellShape.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ColorData.LoadData(DevComponents.DotNetBar.Controls.eBrushTypes,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Single,System.Single,System.Single,System.Single)">
<summary>
Loads data into the class, called by constructors.
</summary>
<param name="color1">The first color for this entry.</param>
<param name="color2">The second color for this entry.</param>
<param name="borderColor">The border color for this entry.</param>
<param name="borderWidth">The border width for this entry.</param>
<param name="brushSBSFocus">The focus for the SigmaBellShape.</param>
<param name="brushSBSScale">The scale for the SigmaBellShape.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ColorData.GetBorderPen(System.Single,System.Drawing.Drawing2D.PenAlignment)">
<summary>
Creates Pen object using the BorderColor and BorderWidth properties.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ColorData.GetBrush(System.Drawing.Drawing2D.GraphicsPath)">
<summary>
Creates a brush of the type specified by BrushType.
</summary>
<param name="path">The graphics path used to construct the brush.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ColorData.GetBrush(System.Drawing.Drawing2D.GraphicsPath,System.Single)">
<summary>
Creates a brush of the type specified by BrushType.
</summary>
<param name="path">The graphics path used to construct the brush.</param>
<param name="angle">The angle used for the gradients, allowing an override of BrushAngle</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ColorData.GetBrush(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.PointF)">
<summary>
Creates a brush of the type specified by BrushType.
</summary>
<param name="path">The graphics path used to construct the brush.</param>
<param name="center">The center point of the gradient as a percentage value typically ranging from 0.0 to 1.0.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ColorData.GetBrush(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.PointF,System.Single)">
<summary>
Creates a brush of the type specified by BrushType.
</summary>
<param name="path">The graphics path used to construct the brush.</param>
<param name="center">The center point of the gradient as a percentage value typically ranging from 0.0 to 1.0.</param>
<param name="angle">The angle used for the gradients, allowing an override of BrushAngle</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ColorData.GetSolidBrush">
<summary>
Creates SolidBrushObject using Color1.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ColorData.GetLinearBrush(System.Drawing.Drawing2D.GraphicsPath,System.Int32)">
<summary>
Creates a LinearGradientBrush object.
</summary>
<param name="path">The graphics path used to construct the brush.</param>
<param name="angle">The gradient angle.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ColorData.GetCenteredBrush(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.PointF)">
<summary>
Creates a PathGradientBrush object.
</summary>
<param name="path">The graphics path used to construct the brush.</param>
<param name="center">The center point of the gradient.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ColorData.GetReflectedBrush(System.Drawing.Drawing2D.GraphicsPath,System.Int32)">
<summary>
Creates a LinearGradientBrush object.
</summary>
<param name="path">The graphics path used to construct the brush.</param>
<param name="angle">The gradient angle.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ColorData.GetReflectedBrush(System.Drawing.Drawing2D.GraphicsPath,System.Int32,System.Single)">
<summary>
Creates a LinearGradientBrush object.
</summary>
<param name="path">The graphics path used to construct the brush.</param>
<param name="angle">The gradient angle.</param>
<param name="focus">The focus for the SigmaBellShape.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ColorData.GetReflectedBrush(System.Drawing.Drawing2D.GraphicsPath,System.Int32,System.Single,System.Single)">
<summary>
Creates a LinearGradientBrush object.
</summary>
<param name="path">The graphics path used to construct the brush.</param>
<param name="angle">The gradient angle.</param>
<param name="focus">The focus for the SigmaBellShape.</param>
<param name="scale">The scale for the SigmaBellShape.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ColorData.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Raises the PropertyChanged event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ColorData.BorderColor">
<summary>
Gets or sets the border color for this item. Default value is white.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ColorData.BorderWidth">
<summary>
Gets or sets the border width for this item. Default value is 0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ColorData.BrushAngle">
<summary>
Gets or sets the brush angle for this item. Only applies to Linear and Reflected brush types. Default value is 0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ColorData.BrushSBSFocus">
<summary>
Gets or sets the brush SigmaBellShape focus for this item. Only applies to Reflected brush types. Default value is 0.5.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ColorData.BrushSBSScale">
<summary>
Gets or sets the brush SigmaBellShape scale for this item. Only applies to Reflected brush types. Default value is 0.5.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ColorData.BrushType">
<summary>
Gets or sets the brush type for this item. Default value is Solid.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ColorData.Color1">
<summary>
Gets or sets the first color for this item. Default value is white.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ColorData.Color2">
<summary>
Gets or sets the second color for this item. Default value is white.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ColorData.PropertyChanged">
<summary>
Occurs when property value has changed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eBrushTypes">
<summary>
Enumeration containing predefined brush types for the ColorData class.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eBrushTypes.Solid">
<summary>
Solid brush.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eBrushTypes.Linear">
<summary>
Linear gradient brush.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eBrushTypes.Centered">
<summary>
Centered path gradient brush.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eBrushTypes.Reflected">
<summary>
Reflected linear gradient brush.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.MathHelper">
<summary>
Math helper class
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MathHelper.GetDegrees(System.Double)">
<summary>
Converts radians to degrees.
</summary>
<param name="radians">Value to be converted in radians.</param>
<returns>Converted value in degrees.</returns>
</member>
<member name="M:DevComponents.DotNetBar.MathHelper.GetRadians(System.Double)">
<summary>
Converts degrees to radians.
</summary>
<param name="degrees">Value to be converted in degrees.</param>
<returns>Converted value in radians.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Animation.Animation.OnAnimationCompleted(System.EventArgs)">
<summary>
Raises AnimationCompleted event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Animation.Animation.#ctor(DevComponents.DotNetBar.Animation.AnimationEasing,System.Int32)">
<summary>
Initializes a new instance of the Animation class.
</summary>
<param name="target">Target object for animation</param>
<param name="targetPropertyName">Target property name for animation</param>
</member>
<member name="M:DevComponents.DotNetBar.Animation.Animation.#ctor(DevComponents.DotNetBar.Animation.AnimationRequest,DevComponents.DotNetBar.Animation.AnimationEasing,System.Int32)">
<summary>
Initializes a new instance of the Animation class.
</summary>
<param name="target">Target object for animation</param>
<param name="targetPropertyName">Target property name for animation</param>
</member>
<member name="M:DevComponents.DotNetBar.Animation.Animation.#ctor(DevComponents.DotNetBar.Animation.AnimationRequest[],DevComponents.DotNetBar.Animation.AnimationEasing,System.Int32)">
<summary>
Initializes a new instance of the Animation class.
</summary>
<param name="target">Target object for animation</param>
<param name="targetPropertyName">Target property name for animation</param>
</member>
<member name="M:DevComponents.DotNetBar.Animation.Animation.Stop">
<summary>
Stops animation if one is currently running.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Animation.Animation.SetStepUpdateMethod(System.Delegate)">
<summary>
Sets the method which is called each time value on target object property is set. This method may execute the visual updates on animation client.
</summary>
<param name="method">Method to call</param>
</member>
<member name="E:DevComponents.DotNetBar.Animation.Animation.AnimationCompleted">
<summary>
Occurs after animation has completed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Animation.Animation.AutoDispose">
<summary>
Gets or sets whether animation is auto-disposed once its completed. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Animation.Animation.IsCompleted">
<summary>
Gets whether animation run is complete.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Animation.Animation.Duration">
<summary>
Gets the animation duration in milliseconds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Animation.Animation.EasingFunction">
<summary>
Gets the animation easing function.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Animation.Animation.FixedStepCount">
<summary>
Gets or sets the number of fixed steps animation will perform from star to finish instead of using the easing function in time.
Stepped animation executes specified number of steps always with Duration specifying delays between each step.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Animation.AnimationRequest.#ctor(System.Object,System.String,System.Object)">
<summary>
Initializes a new instance of the AnimationRequest class.
</summary>
<param name="target">Target object for animation.</param>
<param name="targetPropertyName">Target property name for animation.</param>
<param name="from">From value.</param>
<param name="to">To value.</param>
</member>
<member name="M:DevComponents.DotNetBar.Animation.AnimationRequest.#ctor(System.Object,System.String,System.Object,System.Object)">
<summary>
Initializes a new instance of the AnimationRequest class.
</summary>
<param name="target">Target object for animation.</param>
<param name="targetPropertyName">Target property name for animation.</param>
<param name="from">From value.</param>
<param name="to">To value.</param>
</member>
<member name="P:DevComponents.DotNetBar.Animation.AnimationRequest.Target">
<summary>
Target object for animation.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Animation.AnimationRequest.From">
<summary>
Animation from value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Animation.AnimationRequest.To">
<summary>
Animation to value.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Animation.AnimationEasing">
<summary>
Specifies the animation easing function
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Animation.AnimationDouble.#ctor(DevComponents.DotNetBar.Animation.AnimationEasing,System.Int32)">
<summary>
Initializes a new instance of the Animation class.
</summary>
<param name="target">Target object for animation</param>
<param name="targetPropertyName">Target property name for animation</param>
</member>
<member name="M:DevComponents.DotNetBar.Animation.AnimationDouble.#ctor(DevComponents.DotNetBar.Animation.AnimationRequest,DevComponents.DotNetBar.Animation.AnimationEasing,System.Int32)">
<summary>
Initializes a new instance of the Animation class.
</summary>
<param name="target">Target object for animation</param>
<param name="targetPropertyName">Target property name for animation</param>
</member>
<member name="M:DevComponents.DotNetBar.Animation.AnimationDouble.#ctor(DevComponents.DotNetBar.Animation.AnimationRequest[],DevComponents.DotNetBar.Animation.AnimationEasing,System.Int32)">
<summary>
Initializes a new instance of the Animation class.
</summary>
<param name="target">Target object for animation</param>
<param name="targetPropertyName">Target property name for animation</param>
</member>
<member name="M:DevComponents.DotNetBar.Animation.AnimationInt.#ctor(DevComponents.DotNetBar.Animation.AnimationEasing,System.Int32)">
<summary>
Initializes a new instance of the Animation class.
</summary>
<param name="target">Target object for animation</param>
<param name="targetPropertyName">Target property name for animation</param>
</member>
<member name="M:DevComponents.DotNetBar.Animation.AnimationInt.#ctor(DevComponents.DotNetBar.Animation.AnimationRequest,DevComponents.DotNetBar.Animation.AnimationEasing,System.Int32)">
<summary>
Initializes a new instance of the Animation class.
</summary>
<param name="target">Target object for animation</param>
<param name="targetPropertyName">Target property name for animation</param>
</member>
<member name="M:DevComponents.DotNetBar.Animation.AnimationInt.#ctor(DevComponents.DotNetBar.Animation.AnimationRequest[],DevComponents.DotNetBar.Animation.AnimationEasing,System.Int32)">
<summary>
Initializes a new instance of the Animation class.
</summary>
<param name="target">Target object for animation</param>
<param name="targetPropertyName">Target property name for animation</param>
</member>
<member name="M:DevComponents.DotNetBar.Animation.AnimationPoint.#ctor(DevComponents.DotNetBar.Animation.AnimationEasing,System.Int32)">
<summary>
Initializes a new instance of the Animation class.
</summary>
<param name="target">Target object for animation</param>
<param name="targetPropertyName">Target property name for animation</param>
</member>
<member name="M:DevComponents.DotNetBar.Animation.AnimationPoint.#ctor(DevComponents.DotNetBar.Animation.AnimationRequest,DevComponents.DotNetBar.Animation.AnimationEasing,System.Int32)">
<summary>
Initializes a new instance of the Animation class.
</summary>
<param name="target">Target object for animation</param>
<param name="targetPropertyName">Target property name for animation</param>
</member>
<member name="M:DevComponents.DotNetBar.Animation.AnimationPoint.#ctor(DevComponents.DotNetBar.Animation.AnimationRequest[],DevComponents.DotNetBar.Animation.AnimationEasing,System.Int32)">
<summary>
Initializes a new instance of the Animation class.
</summary>
<param name="target">Target object for animation</param>
<param name="targetPropertyName">Target property name for animation</param>
</member>
<member name="M:DevComponents.DotNetBar.Animation.AnimationRectangle.#ctor(DevComponents.DotNetBar.Animation.AnimationEasing,System.Int32)">
<summary>
Initializes a new instance of the Animation class.
</summary>
<param name="target">Target object for animation</param>
<param name="targetPropertyName">Target property name for animation</param>
</member>
<member name="M:DevComponents.DotNetBar.Animation.AnimationRectangle.#ctor(DevComponents.DotNetBar.Animation.AnimationRequest,DevComponents.DotNetBar.Animation.AnimationEasing,System.Int32)">
<summary>
Initializes a new instance of the Animation class.
</summary>
<param name="target">Target object for animation</param>
<param name="targetPropertyName">Target property name for animation</param>
</member>
<member name="M:DevComponents.DotNetBar.Animation.AnimationRectangle.#ctor(DevComponents.DotNetBar.Animation.AnimationRequest[],DevComponents.DotNetBar.Animation.AnimationEasing,System.Int32)">
<summary>
Initializes a new instance of the Animation class.
</summary>
<param name="target">Target object for animation</param>
<param name="targetPropertyName">Target property name for animation</param>
</member>
<member name="M:DevComponents.DotNetBar.Animation.Storyline.Run">
<summary>
Runs all animations from Animations list.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Animation.Storyline.IsDisposed">
<summary>
Returns whether Storyline is disposed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Animation.Storyline.Animations">
<summary>
Gets the list of animations to run using this storyline.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Animation.Storyline.RepeatStoryTimes">
<summary>
Gets or sets number of times storyline is repeated. Default value is 0 which indicates that storyline is run only once meaning not repeated.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Animation.Storyline.AutoDispose">
<summary>
Gets or sets whether storyline is auto-disposed when finished.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.AutoHidePanel.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.AutoHidePanel.HitTest(System.Int32,System.Int32)">
<summary>
Returns the reference to DockContainerItem tab if any under specified coordinates.
</summary>
<param name="x">X - client mouse coordinate</param>
<param name="y">Y - client mouse coordinate</param>
<returns>Reference to DockContainerItem whose tab is at specified coordinates or null if there is no tab at given coordinates</returns>
</member>
<member name="M:DevComponents.DotNetBar.AutoHidePanel.SetBarPosition(DevComponents.DotNetBar.Bar,System.Int32)">
<summary>
Sets bars position on the auto-hide panel.
</summary>
<param name="bar">Bar for which position should be changed.</param>
<param name="iIndex">New indexed position of the bar.</param>
</member>
<member name="P:DevComponents.DotNetBar.AutoHidePanel.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AutoHidePanel.AutoHideShowTimeout">
<summary>
Gets or sets the timeout in milliseconds for auto hide/show action.
When timeout has elapsed and mouse has left the bar the bar will be automatically hidden.
If mouse is hovering over the collapsed bar and timeout has elapsed the bar will be displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AutoHidePanel.EnableHoverExpand">
<summary>
Gets or sets whether bars on auto-hide panel are displayed when mouse hovers over the tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AutoHidePanel.EnableFocusCollapse">
<summary>
Gets or sets whether bars that have focus are collapsed automatically or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AutoHidePanel.Style">
<summary>
Gets or sets the style of auto-hide panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AutoHidePanel.ColorScheme">
<summary>
Gets or sets the ColorScheme object used by this panel. Default value is null which means that ColorScheme is
automatically created as specified by Style property. Note that if your DotNetBarManager has UseGlobalColorScheme set to true
ColorScheme from DotNetBarManager will be used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.AutoHidePanel.VS2005TabDisplay.#ctor(DevComponents.DotNetBar.AutoHidePanel,DevComponents.DotNetBar.ColorScheme)">
<summary>
Creates new instance of the class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.AutoHidePanel.VS2012TabDisplay.#ctor(DevComponents.DotNetBar.AutoHidePanel,DevComponents.DotNetBar.ColorScheme)">
<summary>
Creates new instance of the class.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eTipPosition">
<summary>
Indicates the Balloon tip position.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTipPosition.Top">
<summary>
Tip is on the top.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTipPosition.Left">
<summary>
Tip is on the left side.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTipPosition.Right">
<summary>
Tip is on the right side.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTipPosition.Bottom">
<summary>
Tip is on the bottom.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eBallonStyle">
<summary>
Indicates the style of the balloon.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eAlertAnimation">
<summary>
Indicates type of Alert animation performed when alert is displayed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eAlertAnimation.None">
<summary>
No animation take place when alert is displayed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eAlertAnimation.BottomToTop">
<summary>
Alert is animated from bottom to top. (Default)
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eAlertAnimation.TopToBottom">
<summary>
Alert is animated from top to bottom.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eAlertAnimation.LeftToRight">
<summary>
Alert is animated from left to right.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eAlertAnimation.RightToLeft">
<summary>
Alert is animated from right to left.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.CustomPaintEventHandler">
<summary>
Delegate for custom paint event handler.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Balloon">
<summary>
Summary description for Balloon.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Balloon.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Balloon.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Balloon.AutoResize">
<summary>
Auto resize balloon to the content. Balloon width is calculated so image and caption text can fit in single line.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Balloon.RecalcLayout">
<summary>
Recalculates layout of the balloon.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Balloon.Show(System.Windows.Forms.Control)">
<summary>
Displays balloon using control to automatically calculate balloon location. Method is usually used display balloon that is showing information for the certain control.
</summary>
<param name="referenceControl">Control used for balloon positioning.</param>
</member>
<member name="M:DevComponents.DotNetBar.Balloon.Show(System.Windows.Forms.Control,System.Boolean)">
<summary>
Displays balloon using control to automatically calculate balloon location. Method is usually used display balloon that is showing information for the certain control.
</summary>
<param name="referenceControl">Control used for balloon positioning.</param>
<param name="balloonFocus">Indicates whether balloon receives input focus.</param>
</member>
<member name="M:DevComponents.DotNetBar.Balloon.Show(System.Drawing.Rectangle,System.Boolean)">
<summary>
Displays balloon using rectangle to automatically calculate balloon location. Method is usually used display balloon that is showing information for the certain screen region.
</summary>
<param name="referenceScreenRect">Rectangle in screen coordinates used for balloon positioning.</param>
<param name="balloonFocus">Indicates whether balloon receives input focus.</param>
</member>
<member name="M:DevComponents.DotNetBar.Balloon.Show(DevComponents.DotNetBar.BaseItem,System.Boolean)">
<summary>
Displays balloon using item to automatically calculate balloon location. Method is usually used display balloon that is showing information for the certain item.
</summary>
<param name="item">Item used for balloon positioning.</param>
<param name="balloonFocus">Indicates whether balloon receives input focus.</param>
</member>
<member name="M:DevComponents.DotNetBar.Balloon.Show(System.Boolean)">
<summary>
Display balloon.
</summary>
<param name="balloonFocus">Indicates whether balloon receives input focus.</param>
</member>
<member name="M:DevComponents.DotNetBar.Balloon.Show">
<summary>
Displays balloon.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Balloon.HideBalloon">
<summary>
Called when balloon is hidden.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Balloon.Hide">
<summary>
Hides balloon.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Balloon.PaintBackground">
<summary>
Occurs when background is redrawn.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Balloon.PaintCaptionImage">
<summary>
Occurs when caption image is redrawn.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Balloon.PaintCaptionText">
<summary>
Occurs when caption text is redrawn.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Balloon.PaintText">
<summary>
Occurs when text is redrawn.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Balloon.CloseButtonClick">
<summary>
Occurs when close button is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Balloon.TipPositionChanged">
<summary>
Occurs when TipPosition property has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.MinimumBalloonWidth">
<summary>
Gets or sets the minimum balloon width when auto sizing balloon. Default value is 180.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Balloon.MarkupLinkClick">
<summary>
Occurs when text markup link is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.BackColor2">
<summary>
Gets or sets the target gradient background color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.BackColorGradientAngle">
<summary>
Gets or sets gradient fill angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.BackgroundImageAlpha">
<summary>
Specifies the transparency of background image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.BackgroundImagePosition">
<summary>
Specifies background image position when container is larger than image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.BorderColor">
<summary>
Gets or sets the border color..
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.Style">
<summary>
Specifies balloon style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.ShowCloseButton">
<summary>
Gets or sets whether the Close button is displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.AlertAnimation">
<summary>
Gets or sets the animation type used to display Alert type balloon.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.AlertAnimationDuration">
<summary>
Gets or sets the total time in milliseconds alert animation takes.
Default value is 200.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.AutoClose">
<summary>
Gets or sets whether balloon will close automatically when user click the close button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.AutoCloseTimeOut">
<summary>
Gets or sets time period in seconds after balloon closes automatically.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.CloseButtonNormal">
<summary>
Gets or sets the custom image for Close Button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.CloseButtonHot">
<summary>
Gets or sets the custom image for Close Button when mouse is over the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.CloseButtonPressed">
<summary>
Gets or sets the custom image for Close Button when button is pressed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.CaptionImage">
<summary>
Gets or sets the Caption image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.CaptionIcon">
<summary>
Gets or sets the Caption icon. Icon is used to provide support for alpha-blended images in caption.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.CaptionFont">
<summary>
Gets or sets the Caption font.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.CaptionText">
<summary>
Gets or sets text displayed in caption.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.CaptionColor">
<summary>
Gets or sets color of caption text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.TipPosition">
<summary>
Gets or set position of the balloon tip.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.TipOffset">
<summary>
Gets or sets tip distance from the edge of the balloon.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.TipLength">
<summary>
Returns length of the tip.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Balloon.Visible">
<summary>
Gets/Sets whether Balloon is visible.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BalloonTip">
<summary>
Represents a balloon style pop-up window that displays a brief description of a control's purpose when the mouse hovers over the control or when controls receives input focus.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BalloonTip.#ctor">
<summary>
Initializes a new instance of the BalloonTip class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BalloonTip.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BalloonTip.GetBalloonCaption(System.Windows.Forms.Control)">
<summary>
Retrieves the Balloon Caption text associated with the specified control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BalloonTip.SetBalloonCaption(System.Windows.Forms.Control,System.String)">
<summary>
Associates Balloon Caption text with the specified control.
</summary>
<param name="control">The Control to associate the Balloon Caption text with.</param>
<param name="value">The Balloon Caption text to display on the Balloon.</param>
</member>
<member name="M:DevComponents.DotNetBar.BalloonTip.GetBalloonText(System.Windows.Forms.Control)">
<summary>
Retrieves the Balloon text associated with the specified control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BalloonTip.SetBalloonText(System.Windows.Forms.Control,System.String)">
<summary>
Associates Balloon text with the specified control.
</summary>
<param name="control">The Control to associate the Balloon text with.</param>
<param name="value">The Balloon text to display on the Balloon.</param>
</member>
<member name="M:DevComponents.DotNetBar.BalloonTip.RemoveAll">
<summary>
Removes all Balloon texts currently associated with the BalloonTip control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BalloonTip.Remove(System.Windows.Forms.Control)">
<summary>
Removes specific Balloon texts currently associated with the BalloonTip control.
</summary>
<param name="control">Control that has Balloon texts associated.</param>
</member>
<member name="M:DevComponents.DotNetBar.BalloonTip.ShowBalloon(System.Windows.Forms.Control)">
<summary>
Shows Balloon for specific control. Control must have Balloon already assigned to it.
</summary>
<param name="control">Control that has Balloon already assigned.</param>
</member>
<member name="M:DevComponents.DotNetBar.BalloonTip.CloseBalloon">
<summary>
Closes Balloon control if visible.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BalloonTip.BalloonDisplaying">
<summary>
Occurs before balloon is displayed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BalloonTip.BalloonClosing">
<summary>
Occurs before balloon is closed and allows to cancel the action.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BalloonTip.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BalloonTip.Enabled">
<summary>
Gets or sets a value indicating whether the BalloonTip is currently active.
true if the BalloonTip is currently active; otherwise, false. The default is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BalloonTip.BalloonTriggerControl">
<summary>
Returns reference to the control that triggered balloon.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BalloonTip.MinimumBalloonWidth">
<summary>
Gets or sets the minimum balloon width when auto sizing balloon. Default value is 180.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BalloonTip.BalloonFocus">
<summary>
Gets or sets a value indicating whether Balloon receives input focus when displayed.
Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BalloonTip.InitialDelay">
<summary>
Gets or sets the time (in milliseconds) that passes before the BalloonTip appears.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BalloonTip.ShowAlways">
<summary>
Gets or sets a value indicating whether a Balloon window is displayed even when its parent form is not active. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BalloonTip.BalloonControl">
<summary>
Gets or sets the internal Balloon control that is used to display Balloon.
This property will have valid value only during time Balloon is actually
displayed on the screen. Value will also be valid during BalloonDisplaying event.
You can use this property to further customize Balloon control before it is
displayed to the user. You can also set it to your own instance of the Balloon
control (or the control that is inheriting it) for ultimate customization options.
Note that new instance of Balloon control is created each time Balloon needs to be displayed.
Once Balloon is closed control is disposed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BalloonTip.Style">
<summary>
Specifies balloon style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BalloonTip.AlertAnimation">
<summary>
Gets or sets the animation type used to display Alert type balloon.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BalloonTip.AlertAnimationDuration">
<summary>
Gets or sets the total time in milliseconds alert animation takes.
Default value is 200.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BalloonTip.AutoClose">
<summary>
Gets or sets whether balloon will close automatically when user click the close button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BalloonTip.AutoCloseTimeOut">
<summary>
Gets or sets time period in seconds after balloon closes automatically.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BalloonTip.ShowBalloonOnFocus">
<summary>
Gets or sets whether Balloon is shown after control receives input focus. Default value is false. When set to true Balloon will not be displayed on mouse hover.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BalloonTip.ShowCloseButton">
<summary>
Gets or sets whether the Balloon Close button is displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BalloonTip.DefaultBalloonWidth">
<summary>
Gets or sets default balloon width. Usually the width of the balloon is calculated based on the width of the caption text. If caption text is not set then this value will be used as default width of the balloon.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BalloonTip.CaptionImage">
<summary>
Gets or sets the Balloon Caption image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BalloonTip.CaptionIcon">
<summary>
Gets or sets the Balloon Caption icon. Icon is used to provide support for alpha-blended images in caption.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Bar">
<summary>
Represents bar control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.IDockInfo">
<summary>
Interface used for docking support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.IDockInfo.MinimumDockSize(DevComponents.DotNetBar.eOrientation)">
<summary>
Returns Minimum docked size of the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.IDockInfo.PreferredDockSize(DevComponents.DotNetBar.eOrientation)">
<summary>
Returns Preferrred size of the docked control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.IDockInfo.SetDockLine(System.Int32)">
<summary>
Sets the dock line for the control. Used internaly by dock manager.
</summary>
<param name="iLine">New Dock line.</param>
</member>
<member name="P:DevComponents.DotNetBar.IDockInfo.CanDockTop">
<summary>
Indicated whether control can be docked on top dock site.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IDockInfo.CanDockBottom">
<summary>
Indicated whether control can be docked on bottom dock site.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IDockInfo.CanDockLeft">
<summary>
Indicated whether control can be docked on left dock site.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IDockInfo.CanDockRight">
<summary>
Indicated whether control can be docked on right dock site.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IDockInfo.CanDockDocument">
<summary>
Indicates whether control can be docked as document i.e. middle (fill) dock site.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IDockInfo.CanDockTab">
<summary>
Indicates whether control can be docked as tab to another bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IDockInfo.Stretch">
<summary>
Indicated whether control can be stretched to fill dock site.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IDockInfo.DockOffset">
<summary>
Holds the left position (dock offset) of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IDockInfo.DockLine">
<summary>
Specifies the dock line for the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IDockInfo.DockOrientation">
<summary>
Specifies current dock orientation.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IDockInfo.Docked">
<summary>
Gets whether control is docked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IDockInfo.DockedSite">
<summary>
Returns the dock site of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IDockInfo.DockSide">
<summary>
Gets or sets the control dock side.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IDockInfo.LockDockPosition">
<summary>
Gets or sets whether bar is locked to prevent docking below it.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.IBarDesignerServices">
<summary>
Interface implemented by target Bar interested in access to designer.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IBarDesignerServices.Designer">
<summary>
Gets or sets the BarBaseControlDesigner instance.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ICustomSerialization">
<summary>
Desribes interface that provides custom serialization support for items.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ICustomSerialization.InvokeSerializeItem(DevComponents.DotNetBar.SerializeItemEventArgs)">
<summary>
Invokes SerializeItem event.
</summary>
<param name="e">Provides data for the event.</param>
</member>
<member name="M:DevComponents.DotNetBar.ICustomSerialization.InvokeDeserializeItem(DevComponents.DotNetBar.SerializeItemEventArgs)">
<summary>
Invokes DeserializeItem event.
</summary>
<param name="e">Provides data for the event.</param>
</member>
<member name="E:DevComponents.DotNetBar.ICustomSerialization.SerializeItem">
<summary>
Occurs after an item has been serialized to XmlElement and provides you with opportunity to add any custom data
to serialized XML. This allows you to serialize any data with the item and load it back up in DeserializeItem event.
</summary>
<remarks>
<para>To serialize custom data to XML definition control creates handle this event and use CustomXmlElement
property on SerializeItemEventArgs to add new nodes or set attributes with custom data you want saved.</para>
</remarks>
</member>
<member name="E:DevComponents.DotNetBar.ICustomSerialization.DeserializeItem">
<summary>
Occurs after an item has been de-serialized (load) from XmlElement and provides you with opportunity to load any custom data
you have serialized during SerializeItem event.
</summary>
<remarks>
<para>To de-serialize custom data from XML definition handle this event and use CustomXmlElement
property on SerializeItemEventArgs to retrive any data you saved in SerializeItem event.</para>
</remarks>
</member>
<member name="P:DevComponents.DotNetBar.ICustomSerialization.HasSerializeItemHandlers">
<summary>
Gets whether any handlers have been defined for SerializeItem event. If no handles have been defined to optimize performance SerializeItem event will not be attempted to fire.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ICustomSerialization.HasDeserializeItemHandlers">
<summary>
Gets whether any handlers have been defined for DeserializeItem event. If no handles have been defined to optimize performance DeserializeItem event will not be attempted to fire.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.OnBarStateChanged(DevComponents.DotNetBar.BarStateChangedEventArgs)">
<summary>
Raises BarStateChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.#ctor">
<summary>
Initializes a new instance of the Bar class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.#ctor(System.String)">
<summary>
Initializes a new instance of the Control class.
</summary>
<param name="BarCaption">Bar Caption</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.ReleaseFocus">
<summary>
Releases the focus from the bar and selects the control that had focus before bar was selected. If control that had focus could not be determined focus will stay on the bar.
This method is used by internal DotNetBar implementation and you should not use it.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.CreateGraphics">
<summary>
Creates the Graphics object for the control.
</summary>
<returns>The Graphics object for the control.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Bar.GetRenderer">
<summary>
Returns the renderer control will be rendered with.
</summary>
<returns>The current renderer.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Bar.OnPreRender(DevComponents.DotNetBar.RenderBarEventArgs)">
<summary>
Raises the PreRender event.
</summary>
<param name="e">Provides the event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.OnPostRender(DevComponents.DotNetBar.RenderBarEventArgs)">
<summary>
Raises the PostRender event.
</summary>
<param name="e">Provides the event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.PaintGrabHandle(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Drawns bar grab handle if one specified.
</summary>
<param name="pa">Context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.PaintSideBar(System.Drawing.Graphics)">
<summary>
Paints bar side bar.
</summary>
<param name="g">Reference to graphics object.</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.RecalcLayout">
<summary>
Recalculates the layout of the Bar, resizes the Bar if necessary and repaints it.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.RecalcSize">
<summary>
Recalculates the layout of the Bar and repaints it. This will not change the size of the Bar it will only force the recalculation of the size for each contained item and it will repaint the bar. To ensure that Bar is resized if necessary as well call RecalcLayout method.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.OnItemLayoutUpdated(System.EventArgs)">
<summary>
Raises ItemLayoutUpdated event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.OnEscapeKey">
<summary>
Method is called by DotNetBarManager when bar is being moved and Escape key is pressed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.OnIsMaximizedChanged(System.Boolean,System.Boolean)">
<summary>
Called when IsMaximized property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.CloseDockTab(DevComponents.DotNetBar.DockContainerItem)">
<summary>
Closes the DockContainerItem with event source set to Code.
</summary>
<param name="dockTab">DockContainerItem to close.</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.CloseDockTab(DevComponents.DotNetBar.DockContainerItem,DevComponents.DotNetBar.eEventSource)">
<summary>
Closes the DockContainerItem.
</summary>
<param name="dockTab">DockContainerItem to close.</param>
<param name="source">Source of the event.</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.OnItemClick(DevComponents.DotNetBar.BaseItem,System.EventArgs)">
<summary>
Raises the ItemClick event.
</summary>
<param name="item">Item that was clicked.</param>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.SuspendLayout">
<summary>
Suspends normal layout logic.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.ResumeLayout">
<summary>
Resumes normal layout logic.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.ResumeLayout(System.Boolean)">
<summary>
Resumes normal layout logic. Optionally forces an immediate layout of pending layout requests.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.DevComponents#DotNetBar#ICustomSerialization#InvokeSerializeItem(DevComponents.DotNetBar.SerializeItemEventArgs)">
<summary>
Invokes SerializeItem event.
</summary>
<param name="e">Provides data for the event.</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.DevComponents#DotNetBar#ICustomSerialization#InvokeDeserializeItem(DevComponents.DotNetBar.SerializeItemEventArgs)">
<summary>
Invokes DeserializeItem event.
</summary>
<param name="e">Provides data for the event.</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.SaveDefinition(System.String)">
<summary>
Saves the Bar definition to file.
</summary>
<param name="FileName">Definition file name.</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.LoadDefinition(System.String)">
<summary>
Loads the Bar definition from file.
</summary>
<param name="FileName">Definition file name.</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.SaveLayout(System.String)">
<summary>
Saves the Bar layout to file.
</summary>
<param name="FileName">Definition file name.</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.LoadLayout(System.String)">
<summary>
Loads the Bar definition from file.
</summary>
<param name="FileName">Definition file name.</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.SetSize(System.Int32,System.Int32)">
<summary>
Sets the client size of the bar excluding caption. This method is useful when setting the size of the bars with layout type DockContainer.
</summary>
<param name="width">Width of bar in pixels.</param>
<param name="height">Height of bar in pixels.</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.SetSize(System.Drawing.Size)">
<summary>
Sets the client size of the bar excluding caption. This method is useful when setting the size of the bars with layout type DockContainer.
</summary>
<param name="size">New bar size</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.ShouldSerializeFont">
<summary>
Returns true if Font property should be serialized by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.ResetFont">
<summary>
Designer method to reset the property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.ResetColorScheme">
<summary>
Resets the ColorScheme property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.OnCanMaximizeFloatingChanged(System.Boolean,System.Boolean)">
<summary>
Called when CanMaximizeFloating property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.Show">
<summary>
Makes the Bar display by setting the visible property to true.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.Hide">
<summary>
Hides the Bar.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.ShouldSerializeSize">
<summary>
Returns whether Size property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.GetItem(System.String)">
<summary>
Returns the first child item with specified name regardless of it's hierarchy.
</summary>
<param name="name">Item name.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Bar.GetItems(System.String)">
<summary>
Returns the collection of items with the specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Bar.GetItems(System.String,System.Type)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Bar.GetItems(System.String,System.Type,System.Boolean)">
<summary>
Returns the collection of items with the specified name and type. This member is not implemented and should not be used.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<param name="useGlobalName">Indicates whether GlobalName property is used for searching.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Bar.GetAutoHidePanel">
<summary>
Returns AutoHidePanel that bar is on if in auto-hide state otherwise returns null.
</summary>
<returns>AutoHidePanel object or null if bar is not in auto-hide state.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Bar.OnBeforeAutoHideDisplayed(System.ComponentModel.CancelEventArgs)">
<summary>
Raises BeforeAutoHideDisplayed event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.OnBeforeAutoHideHidden(System.ComponentModel.CancelEventArgs)">
<summary>
Raises BeforeAutoHideHidden event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.HideToolTip">
<summary>
Destroys tooltip window.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.ShowToolTip(System.String)">
<summary>
Shows tooltip for this item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.ReDock">
<summary>
Re-docks the floating bar to its previous docking position.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.InvokeCaptionButtonClick">
<summary>
Invokes CaptionButtonClick event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.ToggleCaptionMenu">
<summary>
Displays or hides the automatic caption button popup menu.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.OnDockTabStripHeightChanged(System.Int32,System.Int32)">
<summary>
Called when DockTabStripHeight property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Bar.MinimumDockSize(DevComponents.DotNetBar.eOrientation)">
<summary>
Returns the Minimum Size for specified orientation.
</summary>
<param name="dockOrientation">Orientation to return minimum size for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Bar.PreferredDockSize(DevComponents.DotNetBar.eOrientation)">
<summary>
Returns the preferred size of the Bar when docked.
</summary>
<param name="dockOrientation">Orientation to return preferred size for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Bar.SetDockLine(System.Int32)">
<summary>
Sets the dock line but it does not forces the Bar to change position. The position will be changed on next layout request or when dock site needs to recalculate the layout of the bat. Used internally only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.BeginInit">
<summary>
ISupportInitialize.BeginInit implementation.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.EndInit">
<summary>
ISupportInitialize.EndInit implementation.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.DevComponents#DotNetBar#IDockInfo#MinimumDockSize(DevComponents.DotNetBar.eOrientation)">
<summary>
Returns Minimum docked size of the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.DevComponents#DotNetBar#IDockInfo#PreferredDockSize(DevComponents.DotNetBar.eOrientation)">
<summary>
Returns Preferrred size of the docked control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bar.DevComponents#DotNetBar#IDockInfo#SetDockLine(System.Int32)">
<summary>
Sets the dock line for the control. Used internaly by dock manager.
</summary>
<param name="iLine">New Dock line.</param>
</member>
<member name="E:DevComponents.DotNetBar.Bar.BarStateChanged">
<summary>
Occurs after bar state has changed, like selected dock tab has changed, bar has closed, bar has been docked or undocked etc.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.ItemClick">
<summary>
Occurs when Item is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.BarDock">
<summary>
Occurs after Bar is docked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.BarUndock">
<summary>
Occurs after Bar is undocked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.DefinitionLoaded">
<summary>
Occurs after Bar definition is loaded.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.DockTabChange">
<summary>
Occurs when current Dock tab has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.UserVisibleChanged">
<summary>
Occurs when bar visibility has changed as a result of user action.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.AutoHideChanged">
<summary>
Occurs when bar auto hide state has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.Closing">
<summary>
Occurs when Bar is about to be closed as a result of user clicking the Close button on the bar.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.AutoHideDisplay">
<summary>
Occurs when Bar in auto-hide state is about to be displayed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.PopupClose">
<summary>
Occurs when popup item is closing. Event is fired only when Bar is used independently of DotNetBarManager.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.PopupContainerLoad">
<summary>
Occurs when popup of type container is loading. Event is fired only when Bar is used independently of DotNetBarManager.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.PopupContainerUnload">
<summary>
Occurs when popup of type container is unloading. Event is fired only when Bar is used independently of DotNetBarManager.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.PopupOpen">
<summary>
Occurs when popup item is about to open. Event is fired only when Bar is used independently of DotNetBarManager.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.PopupShowing">
<summary>
Occurs just before popup window is shown. Event is fired only when Bar is used independently of DotNetBarManager.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.BeforeDockTabDisplayed">
<summary>
Occurs before dock tab is displayed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.CaptionButtonClick">
<summary>
Occurs when caption button is clicked. Caption button is button displayed on bars with grab handle style task pane.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.DockTabClosing">
<summary>
Occurs on dockable bars when end-user attempts to close the individual DockContainerItem objects using system buttons on dock tab.
Event can be canceled by setting the Cancel property of event arguments to true. This even will occur only after user presses the
X button on tab that is displaying the dockable windows/documents.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.DockTabClosed">
<summary>
Occurs on dockable bars after DockContainerItem is closed by end-user. This action cannot be cancelled.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.SerializeItem">
<summary>
Occurs after an item has been serialized to XmlElement and provides you with opportunity to add any custom data
to serialized XML. This allows you to serialize any data with the item and load it back up in DeserializeItem event.
</summary>
<remarks>
<para>To serialize custom data to XML definition control creates handle this event and use CustomXmlElement
property on SerializeItemEventArgs to add new nodes or set attributes with custom data you want saved.</para>
</remarks>
</member>
<member name="E:DevComponents.DotNetBar.Bar.DeserializeItem">
<summary>
Occurs after an item has been de-serialized (load) from XmlElement and provides you with opportunity to load any custom data
you have serialized during SerializeItem event.
</summary>
<remarks>
<para>To de-serialize custom data from XML definition handle this event and use CustomXmlElement
property on SerializeItemEventArgs to retrive any data you saved in SerializeItem event.</para>
</remarks>
</member>
<member name="E:DevComponents.DotNetBar.Bar.TabStripStyleChanged">
<summary>
Occurs after the TabStrip style which used on dockable windows has changed. This event gives you opportunity to
change the style of the tab strip by accessing Bar.DockTabControl.Style property.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.PreRender">
<summary>
Occurs before the bar control is rendered. This event is fired once for each part of the bar control being rendered. Check the Part property of the event arguments to identify the part being rendered.
You can cancel internal rendering by setting Cancel property.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.PostRender">
<summary>
Occurs after the bar control is rendered and allows you to render on top of the default rendering provided by the control.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.LocalizeString">
<summary>
Occurs when DotNetBar is looking for translated text for one of the internal text that are
displayed on menus, toolbars and customize forms. You need to set Handled=true if you want
your custom text to be used instead of the built-in system value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.Owner">
<summary>
Gets/Sets the owner of the Bar object.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DevComponents#DotNetBar#IAccessibilitySupport#DoDefaultActionItem">
<summary>
Gets or sets the item default accessibility action will be performed on.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.LastFocusControl">
<summary>
Returns the reference to the control that last had input focus. This property should be used to
determine which control had input focus before bar gained the focus. Use it to apply
the menu command to active control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.BorderColors">
<summary>
Indicates the array of colors that when set are used to draw the border of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.RenderMode">
<summary>
Gets or sets the redering mode used by control. Default value is eRenderMode.Global which means that static GlobalManager.Renderer is used. If set to Custom then Renderer property must
also be set to the custom renderer that will be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.Renderer">
<summary>
Gets or sets the custom renderer used by the items on this control. RenderMode property must also be set to eRenderMode.Custom in order renderer
specified here to be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DrawThemedCaption">
<summary>
Gets whether caption of floating bar will be drawn using themes.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.ParentItem">
<summary>
Gets/Sets the parent item of the Bar. The parents item sub-items are displayed on the bar.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.ItemLayoutUpdated">
<summary>
Occurs after internal item layout has been updated and items have valid bounds assigned.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CaptionHeight">
<summary>
Gets or sets docked bar caption height. Default value is 0 which means system predefined height is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.LoadingHideFloating">
<summary>
Gets or sets whether bar when changed over to floating state is hidden instead of shown. This property is used
internally to optimize loading of hidden floating bars. You should not use this property in your code. It is for internal DotNetBar
infrastructure use only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.IsBarMoving">
<summary>
Returns true if bar is being moved/dragged by user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.IsMaximized">
<summary>
Gets or sets whether floating dockable window is maximized.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DoubleClickBehavior">
<summary>
Specifies the bar behavior when its title is double-clicked
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DisplayShadow">
<summary>
Returns whether popup bar should display shadow.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.AlphaShadow">
<summary>
Returns whether popup bar shadow should be alpha-blended.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.PopupAnimation">
<summary>
Gets/Sets the popup animation that will be applied when popup is shown.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DevComponents#DotNetBar#ICustomSerialization#HasSerializeItemHandlers">
<summary>
Gets whether any handlers have been defined for SerializeItem event. If no handles have been defined to optimize performance SerializeItem event will not be attempted to fire.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DevComponents#DotNetBar#ICustomSerialization#HasDeserializeItemHandlers">
<summary>
Gets whether any handlers have been defined for DeserializeItem event. If no handles have been defined to optimize performance DeserializeItem event will not be attempted to fire.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.Definition">
<summary>
Gets/Sets Bar definition as XML string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.SaveLayoutChanges">
<summary>
Gets or sets whether layout changes are saved for this bar when DotNetBarManager.SaveLayout method is used to save layout for all bars. Default value is true which means that layout changes are saved.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.LayoutDefinition">
<summary>
Gets/Sets Bar layout as XML string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.BackgroundImagePosition">
<summary>
Specifies background image position when container is larger than image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.BackgroundImageAlpha">
<summary>
Specifies the transparency of background image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.SideBar">
<summary>
Sets/Gets the side bar image structure.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.Text">
<summary>
Gets/Sets the caption of the Bar. This text is displayed in title of the Bar when Bar is floating.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.ThemeAware">
<summary>
Specifies whether Bar is drawn using Themes when running on OS that supports themes like Windows XP.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.BarState">
<summary>
Returns current Bar state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.Items">
<summary>
Returns the collection of sub-items hosted on the Bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.ItemsContainer">
<summary>
Returns the reference to the container that containing the sub-items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DisplayMoreItemsOnMenu">
<summary>
Gets/Sets whether the items that could not be displayed on the non-wrap Bar are displayed on popup menu or popup Bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.ItemSpacing">
<summary>
Gets/Sets the spacing in pixels between the sub-items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.PaddingTop">
<summary>
Gets/Sets the padding in pixels. This represents the spacing between the top edge of the bar and the top of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.PaddingBottom">
<summary>
Gets/Sets the padding in pixels. This represents the spacing between the bottom edge of the bar and the bottom of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.PaddingLeft">
<summary>
Gets/Sets the padding in pixels. This represents the spacing between the left edge of the bar and the left side of the first item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.PaddingRight">
<summary>
Gets/Sets the padding in pixels. This represents the spacing between the right edge of the bar and the right side of the last item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.MenuBar">
<summary>
Sets/Gets whether bar is menu bar. Menu bar will show system icons
for Maximized forms in MDI Applications. Only one bar can be a Menu bar in an application.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.BarType">
<summary>
Gets or sets the visual type of the bar. The type specified here is used to determine the appearance of the bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.ColorScheme">
<summary>
Gets or sets Bar Color Scheme.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CaptionBackColor">
<summary>
Gets or sets Caption (Title bar) background color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CaptionForeColor">
<summary>
Gets or sets Caption (Title bar) text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.RoundCorners">
<summary>
Gets or sets whether toolbars with appropriate style appear with rounded corners. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.Style">
<summary>
Gets/Sets the visual style of the Bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.WrapItems">
<summary>
Gets/Sets whether the items will be wrapped into next line when Bar is full. Applies to both docked and floating Bar states.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.WrapItemsDock">
<summary>
Gets/Sets whether the items will be wrapped into next line when Bar is full. Applies only to Bars that are docked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.WrapItemsFloat">
<summary>
Gets/Sets whether the items will be wrapped into next line when Bar is full. Applies only to Bars that are floating.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.GrabHandleStyle">
<summary>
Gets/Sets the grab handle style of the docked Bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.GrabHandleRect">
<summary>
Gets the grab handle client rectangle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CanHideResolved">
<summary>
Returns CanClose based on the selected dock-container item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CanHide">
<summary>
Gets/Sets whether the Bar can be hidden by end-user. Applies to Document docked bars only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CanMaximizeFloating">
<summary>
Indicates whether Maximize button is visible on floating dock windows.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DockedBorderStyle">
<summary>
Gets/Sets border style when Bar is docked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.HideFloatingInactive">
<summary>
Gets/Sets whether floating bar is hidden when application loses focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.TabNavigation">
<summary>
Gets/Sets whether tab navigation buttons are shown for tabbed dockable bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.SingleLineColor">
<summary>
Gets or sets the border line color when docked border is a single line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.Visible">
<summary>
Gets/Sets whether Bar is visible or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.VisibleItemCount">
<summary>
Returns number of items that have Visible property set to true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.AcceptDropItems">
<summary>
Gets or sets whether bar is valid drop target for end-user bar customization. Default value is true.
When bar is used as dock container then you can use this property to prevent docking of other bars as dock tabs.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CanCustomize">
<summary>
Gets or sets whether items on the Bar can be customized.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CustomBar">
<summary>
Specifies whether Bar was created by user using Customize dialog.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.Name">
<summary>
Gets/Sets the Bar name used to identify Bar from code.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.ImageSize">
<summary>
Gets/Sets the Image size for all sub-items on the Bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.LayoutType">
<summary>
Gets or sets the layout type.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.EqualButtonSize">
<summary>
Gets or sets whether all buttons are automatically resized to the largest button in collection.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CornerSize">
<summary>
Gets or sets rounded corner size for styles that use rounded corners.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.FadeEffect">
<summary>
Gets or sets whether mouse over fade effect is enabled for buttons. Default value is false. Note that Fade effect
will work only when Office2007 style is used. For other styles this property has no effect and fade animation is not used regardless
this property setting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.IsFadeEnabled">
<summary>
Gets whether fade effect should be in use.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.BackColor">
<summary>
Gets or sets the Bar back color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CustomizeMenu">
<summary>
Gets or sets the Bar customize menu (Applies to the bars with LayoutType set to DockWindow only).
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.AutoHideSide">
<summary>
Indicates the auto-hide side of the parent form where bar is positioned.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.AutoHideTabTextAlwaysVisible">
<summary>
Gets or sets whether tab text is always visible while bar is in auto-hide state. Default value is false which indicates that only text for the active dock tab is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.AutoHide">
<summary>
Indicates whether Bar is in auto-hide state. Applies to non-document dockable bars only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.AutoHideVisible">
<summary>
Gets or sets the visibility of the bar when bar is in auto-hide state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CanAutoHide">
<summary>
Indicates whether Bar can be auto hidden.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.GlobalParentComponent">
<summary>
Gets or sets the global parent control used as part of Global Items feature when bar is used as context menu bar. This property is used internally by
DotNetBar and should not be set directly.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.AutoHideAnimationTime">
<summary>
Gets or sets how long it takes to play the auto-hide animation, in milliseconds. Maximum value is 2000, 0 disables animation.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.BeforeAutoHideDisplayed">
<summary>
Occurs before the bar in auto-hide state is displayed on popup and allows you to cancel display by setting Cancel=true on event arguments.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Bar.BeforeAutoHideHidden">
<summary>
Occurs before the bar in auto-hide state is hidden and allows you to cancel display by setting Cancel=true on event arguments.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.ToolTipVisible">
<summary>
Gets whether tooltip is visible or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DockTabVisible">
<summary>
Indicates whether dock tabs are visible when bar is acting as dock-container and it needs to display tabs to represents multiple DockContainerItem objects hosted by the bar. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DockTabStripHeight">
<summary>
Gets or sets height of the docked bar tab strip which displays docked tabs.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DockTabControl">
<summary>
Returns the reference to internal TabStrip control used to display contained DockContainerItems.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.SelectedDockContainerItem">
<summary>
Gets or sets the selected DockContainerItem if bar represents dockable window.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.SelectedDockTab">
<summary>
Gets or sets the tab (DockContainerItem) index for Bars with LayoutType set to eLayoutType.DockContainer. Index corresponds to the index of the DockContainerItem in Bar.Items collection.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.BackgroundImage">
<summary>
Indicates Bar background image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.AutoCreateCaptionMenu">
<summary>
Gets or sets whether caption button menu for bars with grab handle task pane is automatically created.
Caption menu when automatically created will display the list of all items from Items collection
and it will maintain only one item from the list as visible item.
To create custom caption menu that is displayed when user clicks the caption button handle CaptionButtonClick event.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.AutoSyncBarCaption">
<summary>
Gets or sets whether caption (text) of the bars with dock container layout is automatically set to the
selected dock container item text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CanUndock">
<summary>
Specifies whether Bar can be undocked. Does not apply to stand alone bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CanTearOffTabs">
<summary>
Specifes whether end-user can tear-off (deattach) the tabs on dockable window.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CanReorderTabs">
<summary>
Specifes whether end-user can reorder the tabs on dockable window.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CanDockTab">
<summary>
Gets or sets whether bar or DockContainerItem that is torn-off this bar can be docked
as tab to another bar. Default value is true which indicates that bar can be docked as tab to another bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CanMove">
<summary>
Gets or sets whether dock bar can be moved by dragging its caption using the mouse.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CanDockTop">
<summary>
Specifies whether Bar can be docked on Top dock site or not. Does not apply to stand alone bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CanDockBottom">
<summary>
Specifies whether Bar can be docked on Bottom dock site or not. Does not apply to stand alone bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CanDockLeft">
<summary>
Specifes whether Bar can be docked on Left dock site or not. Does not apply to stand alone bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CanDockRight">
<summary>
Specifes whether Bar can be docked on Right dock site or not. Does not apply to stand alone bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CanDockDocument">
<summary>
Specifies whether Bar can be docked as document. Default value is false. See DotNetBarManager.EnableDocumentDocking for more details.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.Stretch">
<summary>
Specifies whether Bar will stretch to always fill the space in dock site. Applies to the dockable bars only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DisabledImagesGrayScale">
<summary>
Gets or sets whether gray-scale algorithm is used to create automatic gray-scale images. Default is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DockOffset">
<summary>
Gets/Sets the distance from the far left/top side of the docking site or suggests the order of the docked bar. Upon serialization this property
will contain actual left/top position of the bar. You can use it to re-order the bars docked on the same line. Property value is relative to the other
bars docked on the same line when it is used to change the order. For example setting DockOffset value to 10 will place the bar just after the last bar on the
same line that has DockOffset value less than 10. If there is no bar with DockOffset value less than 10 the bar will be placed in first position.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DockLine">
<summary>
Gets/Sets the dock line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DockTabAlignment">
<summary>
Gets or sets the dock tab alignment.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.CloseSingleTab">
<summary>
Gets or sets whether selected dock tab is closed when Bar caption close button is pressed. Default value is false which indicates that whole bar will be hidden when bars close button is pressed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DockTabCloseButtonVisible">
<summary>
Gets or sets whether close button is displayed on each dock tab that allows closing of the tab. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.AlwaysDisplayDockTab">
<summary>
Gets or sets whether tab that shows all dock containers on the bar is visible all the time. By default
tab is hidden when there is only one item displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.LockDockPosition">
<summary>
Gets or sets whether bar is locked to prevent docking below it. Applies to undockable bars only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DockOrientation">
<summary>
Gets/Sets the orientation of the Bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.Docked">
<summary>
Returns whether Bar is docked or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DockedSite">
<summary>
Returns the Bars dock site.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DockSide">
<summary>
Gets/Sets the dock side for the Bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.InitalFloatLocation">
<summary>
Gets or sets the inital floating location. This location will be used when DockSide is set to None.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.ShowToolTips">
<summary>
Indicates whether Tooltips are shown on Bars and menus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DesignerSelection">
<summary>
Gets or sets whether control is selected in designer.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.AlwaysDisplayKeyAccelerators">
<summary>
Gets or sets whether accelerator letters for menu or toolbar commands are underlined regardless of
current Windows settings. Accelerator keys allow easy access to menu commands by using
Alt + choosen key (letter). Default value is false which indicates that system setting is used
to determine whether accelerator letters are underlined. Setting this property to true
will always display accelerator letter underlined.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.Images">
<summary>
ImageList for images used on Items. Images specified here will always be used on menu-items and are by default used on all Bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.ImagesMedium">
<summary>
ImageList for medium-sized images used on Items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.ImagesLarge">
<summary>
ImageList for large-sized images used on Items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.UseHook">
<summary>
Gets or sets whether hooks are used for internal DotNetBar system functionality. Using hooks is recommended only if DotNetBar is used in hybrid environments like Visual Studio designers or IE.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.ProcessMnemonics">
<summary>
Indicates whether mnemonic keys, accelerator keys, which are set through item Text property used ampersand character are processed by control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DevComponents#DotNetBar#IDockInfo#CanDockTop">
<summary>
Specifes whether Bar can be docked on Top dock site or not. Does not apply to stand alone bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DevComponents#DotNetBar#IDockInfo#CanDockBottom">
<summary>
Specifes whether Bar can be docked on Bottom dock site or not. Does not apply to stand alone bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DevComponents#DotNetBar#IDockInfo#CanDockLeft">
<summary>
Specifes whether Bar can be docked on Left dock site or not. Does not apply to stand alone bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DevComponents#DotNetBar#IDockInfo#CanDockRight">
<summary>
Specifes whether Bar can be docked on Right dock site or not. Does not apply to stand alone bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DevComponents#DotNetBar#IDockInfo#CanDockDocument">
<summary>
Specifes whether Bar can be docked as document. Default value is false. See DotNetBarManager.EnableDocumentDocking for more details.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DevComponents#DotNetBar#IDockInfo#Stretch">
<summary>
Indicated whether control can be stretched to fill dock site.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DevComponents#DotNetBar#IDockInfo#DockOffset">
<summary>
Holds the left position (dock offset) of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DevComponents#DotNetBar#IDockInfo#DockLine">
<summary>
Specifies the dock line for the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DevComponents#DotNetBar#IDockInfo#DockOrientation">
<summary>
Specifies current dock orientation.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DevComponents#DotNetBar#IDockInfo#Docked">
<summary>
Gets whether control is docked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DevComponents#DotNetBar#IDockInfo#DockedSite">
<summary>
Returns the dock site of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DevComponents#DotNetBar#IDockInfo#DockSide">
<summary>
Gets or sets the control dock side.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bar.DevComponents#DotNetBar#IDockInfo#LockDockPosition">
<summary>
Gets or sets whether bar is locked to prevent docking below it.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RenderBarEventHandler">
<summary>
Defines delegate for the PreRender and PostRender Bar control events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RenderBarEventArgs">
<summary>
Represents event arguments for PreRender and PostRender Bar control event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RenderBarEventArgs.Bar">
<summary>
Gets the reference to the Bar being rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RenderBarEventArgs.Bounds">
<summary>
Gets or sets the rectangle of the part being rendered. Certain parts of bar like the title buttons allow you to set this property to the custom size of your button.
Default value is the system size of the part being rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RenderBarEventArgs.Part">
<summary>
Gets the Bar part being rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RenderBarEventArgs.Cancel">
<summary>
When used in PreRender event allows you to cancel the default rendering by setting this property to true.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RenderBarEventArgs.Graphics">
<summary>
Gets the reference to the Graphics object to render the tab on.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RenderBarEventArgs.#ctor(DevComponents.DotNetBar.Bar,System.Drawing.Graphics,DevComponents.DotNetBar.eBarRenderPart,System.Drawing.Rectangle)">
<summary>
Creates new instance of the class and initializes it with default values.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eBarRenderPart">
<summary>
Defines the part of the Bar control for custom rendering.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarRenderPart.Background">
<summary>
Indicates the Bar background and border.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarRenderPart.Caption">
<summary>
Indicates the Bar caption.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarRenderPart.CloseButton">
<summary>
Indicates the Bar close button displayed inside of caption.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarRenderPart.CustomizeButton">
<summary>
Indicates the Bar customize button displayed inside of caption.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarRenderPart.CaptionText">
<summary>
Indicates the Bar caption text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarRenderPart.GrabHandle">
<summary>
Indicates the Bar grab handle.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarRenderPart.ResizeHandle">
<summary>
Indicates the Bar resize handle.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarRenderPart.AutoHideButton">
<summary>
Indicates the Bar auto-hide button displayed inside of caption.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarRenderPart.CaptionTaskPane">
<summary>
Indicates the Bar caption task pane.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarRenderPart.MaximizeButton">
<summary>
Indicates the Bar maximize button displayed inside of caption.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarRenderPart.All">
<summary>
Indicates the complete bar area. This part is used for the PostRender event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BarStateChangedEventHandler">
<summary>
Defines delegate for BarStateChanged event.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="T:DevComponents.DotNetBar.BarStateChangedEventArgs">
<summary>
Provides event arguments for ActiveDockContainerChanged event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.BarStateChangedEventArgs.Bar">
<summary>
Gets the Bar that is changed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.BarStateChangedEventArgs.AffectedState">
<summary>
Gets the type of the change that affected the bar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.BarStateChangedEventArgs.ContextInformation">
<summary>
Provides any optional context information about the state change.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BarStateChangedEventArgs.#ctor(DevComponents.DotNetBar.Bar,DevComponents.DotNetBar.eBarStateChange)">
<summary>
Initializes a new instance of the BarStateChangedEventArgs class.
</summary>
<param name="bar"></param>
<param name="affectedState"></param>
</member>
<member name="M:DevComponents.DotNetBar.BarStateChangedEventArgs.#ctor(DevComponents.DotNetBar.Bar,DevComponents.DotNetBar.eBarStateChange,System.Object)">
<summary>
Initializes a new instance of the BarStateChangedEventArgs class.
</summary>
<param name="bar"></param>
<param name="affectedState"></param>
<param name="contextInformation"></param>
</member>
<member name="T:DevComponents.DotNetBar.eBarStateChange">
<summary>
Defines bar state changes for BarStateChanged event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarStateChange.SelectedDockTabChanging">
<summary>
Indicates that Bar selected dock tab is about to change.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarStateChange.SelectedDockTabChanged">
<summary>
Indicates that Bar selected dock tab has changed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarStateChange.BarDocked">
<summary>
Indicates that bar docking has changed and bar was docked.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarStateChange.BarUndocked">
<summary>
Indicates that bar has been undocked from dock site.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarStateChange.DockTabClosed">
<summary>
Indicates that bar dock tab has closed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarStateChange.AutoHideFolded">
<summary>
Indicates that bar in auto-hide state has been folded, i.e. returned to collapsed state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarStateChange.AutoHideOpen">
<summary>
Indicates that bar in auto-hide state has been open, shown.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarStateChange.AutoHideChanged">
<summary>
Indicates that bar AutoHide property has changed meaning that bar has been either placed in auto-hide mode or taken out of auto-hide mode.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarStateChange.DockTabMoved">
<summary>
Indicates that tab has been moved within a bar tab-strip by end user.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eDoubleClickBarBehavior">
<summary>
Specifies the behavior of bar when its title is double clicked.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eDoubleClickBarBehavior.None">
<summary>
Double clicking bar title does not do anything.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eDoubleClickBarBehavior.Float">
<summary>
Double clicking bar title when bar is docked will float the bar if CanUndock=true
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eDoubleClickBarBehavior.ReDock">
<summary>
Double clicking floating bar title will re-dock it if any of CanDock*** properties is true.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eDoubleClickBarBehavior.FloatAndReDock">
<summary>
Double clicking will toggle bar state between float and dock state if all CanDock*** and CanUndock properties allow it.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BarBaseControl">
<summary>
Represents base control for bars.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BarBaseControl.InternalAccessibilityNotifyClients(System.Windows.Forms.AccessibleEvents,System.Int32)">
<summary>
Notifies the accessibility client applications of the specified AccessibleEvents for the specified child control.
</summary>
<param name="accEvent">The AccessibleEvents object to notify the accessibility client applications of. </param>
<param name="childID">The child Control to notify of the accessible event.</param>
</member>
<member name="M:DevComponents.DotNetBar.BarBaseControl.GetItems(System.String)">
<summary>
Returns the collection of items with the specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.BarBaseControl.GetItems(System.String,System.Type)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.BarBaseControl.GetItems(System.String,System.Type,System.Boolean)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.BarBaseControl.GetItem(System.String)">
<summary>
Returns the first item that matches specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.BarBaseControl.DevComponents#DotNetBar#IOwner#Customize">
<summary>
Invokes the DotNetBar Customize dialog.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BarBaseControl.OnItemDoubleClick(DevComponents.DotNetBar.BaseItem,System.Windows.Forms.MouseEventArgs)">
<summary>
Invokes ItemDoubleClick event.
</summary>
<param name="objItem">Reference to item double-clicked</param>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.BarBaseControl.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BarBaseControl.SetDesignTimeDefaults">
<summary>
Applies design-time defaults to control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BarBaseControl.CreateGraphics">
<summary>
Creates the Graphics object for the control.
</summary>
<returns>The Graphics object for the control.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BarBaseControl.GetRenderer">
<summary>
Returns the renderer control will be rendered with.
</summary>
<returns>The current renderer.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BarBaseControl.PaintContentOnTop(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Called after control has painted its content and allows painting on top of the controls content.
</summary>
<param name="pa">Paint arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.BarBaseControl.OnItemLayoutUpdated(System.EventArgs)">
<summary>
Raises ItemLayoutUpdated event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.BarBaseControl.RecalcLayout">
<summary>
Applies any layout changes and repaint the control.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.ButtonCheckedChanged">
<summary>
Occurs when Checked property of an button has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.ItemClick">
<summary>
Occurs when Item is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.ItemDoubleClick">
<summary>
Occurs when Item is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.PopupContainerLoad">
<summary>
Occurs when popup of type container is loading.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.PopupContainerUnload">
<summary>
Occurs when popup of type container is unloading.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.PopupOpen">
<summary>
Occurs when popup item is about to open.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.PopupClose">
<summary>
Occurs when popup item is closing.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.PopupShowing">
<summary>
Occurs just before popup window is shown.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.ExpandedChange">
<summary>
Occurs when Item Expanded property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.MouseDown">
<summary>
Occurs when mouse button is pressed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.MouseUp">
<summary>
Occurs when mouse button is released.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.MouseEnter">
<summary>
Occurs when mouse enters the item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.MouseLeave">
<summary>
Occurs when mouse leaves the item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.MouseMove">
<summary>
Occurs when mouse moves over the item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.MouseHover">
<summary>
Occurs when mouse remains still inside an item for an amount of time.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.LostFocus">
<summary>
Occurs when item loses input focus.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.GotFocus">
<summary>
Occurs when item receives input focus.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.UserCustomize">
<summary>
Occurs when user changes the item position, removes the item, adds new item or creates new bar.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.ItemRemoved">
<summary>
Occurs after an Item is removed from SubItemsCollection.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.ItemAdded">
<summary>
Occurs after an Item has been added to the SubItemsCollection.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.ContainerLoadControl">
<summary>
Occurs when ControlContainerControl is created and contained control is needed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.ItemTextChanged">
<summary>
Occurs when Text property of an Item has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.ContainerControlSerialize">
<summary>
Use this event if you want to serialize the hosted control state directly into the DotNetBar definition file.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.ContainerControlDeserialize">
<summary>
Use this event if you want to deserialize the hosted control state directly from the DotNetBar definition file.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.DefinitionLoaded">
<summary>
Occurs after DotNetBar definition is loaded.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.LocalizeString">
<summary>
Occurs when DotNetBar is looking for translated text for one of the internal text that are
displayed on menus, toolbars and customize forms. You need to set Handled=true if you want
your custom text to be used instead of the built-in system value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.OptionGroupChanging">
<summary>
Occurs before an item in option group is checked and provides opportunity to cancel that.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.ToolTipShowing">
<summary>
Occurs before tooltip for an item is shown. Sender could be the BaseItem or derived class for which tooltip is being displayed or it could be a ToolTip object itself it tooltip is not displayed for any item in particular.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.ApplicationActivate">
<summary>
Occurs after main application form is activated.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.ApplicationDeactivate">
<summary>
Occurs after main application form is deacticated.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.ApplicationMouseDown">
<summary>
Occurs on application wide mouse down event.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarBaseControl.DevComponents#DotNetBar#IOwner#ParentForm">
<summary>
Gets or sets the form SideBar is attached to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarBaseControl.DevComponents#DotNetBar#IOwner#ShowResetButton">
<summary>
Indicates whether Reset buttons is shown that allows end-user to reset the toolbar state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarBaseControl.Images">
<summary>
ImageList for images used on Items. Images specified here will always be used on menu-items and are by default used on all Bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarBaseControl.ImagesMedium">
<summary>
ImageList for medium-sized images used on Items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarBaseControl.ImagesLarge">
<summary>
ImageList for large-sized images used on Items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarBaseControl.ShowToolTips">
<summary>
Indicates whether Tooltips are shown on Bars and menus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarBaseControl.ShowShortcutKeysInToolTips">
<summary>
Indicates whether item shortcut is displayed in Tooltips.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarBaseControl.DevComponents#DotNetBar#IAccessibilitySupport#DoDefaultActionItem">
<summary>
Gets or sets the item default accessibility action will be performed on.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarBaseControl.BackgroundStyle">
<summary>
Specifies the background style of the Explorer Bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarBaseControl.DispatchShortcuts">
<summary>
Indicates whether shortucts handled by items are dispatched to the next handler or control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarBaseControl.ColorScheme">
<summary>
Gets or sets Bar Color Scheme.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarBaseControl.DisabledImagesGrayScale">
<summary>
Gets or sets whether gray-scale algorithm is used to create automatic gray-scale images. Default is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarBaseControl.ThemeAware">
<summary>
Specifies whether SideBar is drawn using Themes when running on OS that supports themes like Windows XP.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarBaseControl.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarBaseControl.RenderMode">
<summary>
Gets or sets the redering mode used by control. Default value is eRenderMode.Global which means that static GlobalManager.Renderer is used. If set to Custom then Renderer property must
also be set to the custom renderer that will be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarBaseControl.Renderer">
<summary>
Gets or sets the custom renderer used by the items on this control. RenderMode property must also be set to eRenderMode.Custom in order renderer
specified here to be used.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BarBaseControl.ItemLayoutUpdated">
<summary>
Occurs after internal item layout has been updated and items have valid bounds assigned.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BarBaseControl.ItemRemovedEventHandler">
<summary>
Represents the method that will handle the ItemRemoved event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BarBaseControlAccessibleObject">
<summary>
Represents class for Accessibility support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BarBaseControlAccessibleObject.#ctor(DevComponents.DotNetBar.BarBaseControl)">
<summary>
Creates new instance of the object and initializes it with owner control.
</summary>
<param name="owner">Reference to owner control.</param>
</member>
<member name="M:DevComponents.DotNetBar.BarBaseControlAccessibleObject.GetChildCount">
<summary>
Returns number of child objects.
</summary>
<returns>Total number of child objects.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BarBaseControlAccessibleObject.GetChild(System.Int32)">
<summary>
Returns reference to child object given the index.
</summary>
<param name="iIndex">0 based index of child object.</param>
<returns>Reference to child object.</returns>
</member>
<member name="P:DevComponents.DotNetBar.BarBaseControlAccessibleObject.Role">
<summary>
Gets accessible role.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarBaseControlAccessibleObject.Parent">
<summary>
Gets parent accessibility object.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarBaseControlAccessibleObject.Bounds">
<summary>
Returns bounds of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarBaseControlAccessibleObject.State">
<summary>
Returns current accessible state.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BarFunctions">
<summary>
Summary description for BarFunctions.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BarFunctions.InvokeRecalcLayout(System.Windows.Forms.Control,System.Boolean)">
<summary>
Tries to invoke the RecalcLayout method on the control and return true if such method was invoked.
</summary>
<param name="c">Reference to the control</param>
<param name="invalidate">Indicates whether to invalidate control if no recalc layout method is found</param>
<returns>return true if method is invoked.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BarFunctions.CreateDuplicateDockBar(DevComponents.DotNetBar.Bar)">
<summary>
Creates copy of a bar to be used as new dock bar. This function is used to create new bar for tabs that are torn off the existing dock bars.
</summary>
<param name="instance">Original base bar to base the new bar on.</param>
<returns>New instance of a bar. Note that bar is not added to the DotNetBarManager.Bars collection and DockSide is not set.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BarFunctions.IsHandleValid(System.Windows.Forms.Control)">
<summary>
Returns if passed control is ready for painting.
</summary>
<param name="objCtrl">Control to test.</param>
<returns>true if handle is valid otherwise false</returns>
</member>
<member name="M:DevComponents.DotNetBar.BarFunctions.DeserializeImage(System.Xml.XmlElement)">
<summary>
XML element is expected to be something like <image>Image data Base64 encoded</image>
</summary>
<param name="xml">Image data</param>
<returns></returns>
</member>
<member name="T:DevComponents.DotNetBar.Bars">
<summary>
Collection of Bar objects.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bars.Dispose">
<summary>
Releases the resources used by the Component.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Bars.Add(DevComponents.DotNetBar.Bar)">
<summary>
Adds an Bar to the end of Bars collection.
</summary>
<param name="bar">The Bar to be added to the end of the Bars collection.</param>
</member>
<member name="M:DevComponents.DotNetBar.Bars.Remove(DevComponents.DotNetBar.Bar)">
<summary>
Removes specified bar from collection.
</summary>
<param name="bar">Bar to remove</param>
</member>
<member name="M:DevComponents.DotNetBar.Bars.Contains(DevComponents.DotNetBar.Bar)">
<summary>
Determines whether an Bar is in the collection.
</summary>
<param name="bar">The Bar to locate in the collection.</param>
<returns><b>true</b> if item is found in the collection; otherwise, <b>false</b>.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Bars.Contains(System.String)">
<summary>
Determines whether bar with given name is in collection.
</summary>
<param name="name">Name of the bar</param>
<returns>True if bar is part of this collection, otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Bars.IndexOf(DevComponents.DotNetBar.Bar)">
<summary>
Returns the zero-based index of the Bar in the collection.
</summary>
<param name="bar">Bar to locate.</param>
<returns></returns>
</member>
<member name="P:DevComponents.DotNetBar.Bars.Item(System.Int32)">
<summary>
Gets the Bar at the specified index.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Bars.Item(System.String)">
<summary>
Gets the Bar with the specified name.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BarSerializationXml">
<summary>
Holds the XML element and attribute names for bar serialization.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BarUtilities">
<summary>
Represents class with static functions that provide commonly used utility functions when working with
Bar objects and items hosted by Bar object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BarUtilities.SetBarVisible(DevComponents.DotNetBar.Bar,System.Boolean)">
<summary>
Sets Bar visible property and remembers the auto-hide state.
</summary>
<param name="bar">Bar to set visibility for.</param>
<param name="visible">true if visible otherwise false</param>
</member>
<member name="M:DevComponents.DotNetBar.BarUtilities.SetDockContainerVisible(DevComponents.DotNetBar.DockContainerItem,System.Boolean)">
<summary>
Sets the visible property of DockContainerItem and hides the bar if the given item is the last visible item on the bar.
It will also automatically display the bar if bar is not visible.
</summary>
<param name="item">DockContainerItem to set visibility for.</param>
<param name="visible">Indicates the visibility of the item</param>
</member>
<member name="M:DevComponents.DotNetBar.BarUtilities.CreateDocumentBar">
<summary>
Creates new instance of the bar and sets its properties so bar can be used as Document bar.
</summary>
<returns>Returns new instance of the bar.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BarUtilities.InitializeDocumentBar(DevComponents.DotNetBar.Bar)">
<summary>
Sets the properties on a bar so it can be used as Document bar.
</summary>
<param name="bar">Bar to set properties of.</param>
</member>
<member name="M:DevComponents.DotNetBar.BarUtilities.ChangeMDIClientBorder(System.Windows.Forms.MdiClient,System.Boolean)">
<summary>
Changes the MDI Client border edge to remove 3D border or to add it.
</summary>
<param name="c">Reference to MDI Client object.</param>
<param name="removeBorder">Indicates whether to remove border.</param>
</member>
<member name="M:DevComponents.DotNetBar.BarUtilities.ChangeMDIClientBorder(System.Windows.Forms.Form,System.Boolean)">
<summary>
Changes the MDI Client border edge to remove 3D border or to add it.
</summary>
<param name="c">Reference to MDI parent form.</param>
<param name="removeBorder">Indicates whether to remove border.</param>
</member>
<member name="M:DevComponents.DotNetBar.BarUtilities.DisposeImage(System.Drawing.Image@)">
<summary>
Disposes image reference and sets it to null.
</summary>
<param name="image">Reference to image to dispose.</param>
</member>
<member name="M:DevComponents.DotNetBar.BarUtilities.DisposeImage(System.Drawing.Icon@)">
<summary>
Disposes image reference and sets it to null.
</summary>
<param name="image">Reference to image to dispose.</param>
</member>
<member name="M:DevComponents.DotNetBar.BarUtilities.InvokeDelayed(System.Windows.Forms.MethodInvoker)">
<summary>
Invokes the method asynchronously using the WinForms Timer.
</summary>
<param name="method">Method to invoke.</param>
</member>
<member name="M:DevComponents.DotNetBar.BarUtilities.InvokeDelayed(System.Windows.Forms.MethodInvoker,System.Int32)">
<summary>
Invokes the method asynchronously using the WinForms Timer.
</summary>
<param name="method">Method to invoke.</param>
<param name="delayInterval">Time in milliseconds after which method is invoked.</param>
</member>
<member name="P:DevComponents.DotNetBar.BarUtilities.FadeAnimatorEnabled">
<summary>
Gets or sets whether Fade Animation is enabled on system level for DotNetBar items which use this. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarUtilities.UseGenericDefaultStringFormat">
<summary>
Gets or sets whether StringFormat internally used by all DotNetBar controls to render text is GenericDefault. Default value is false
which indicates that GenericTypographic is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarUtilities.AntiAliasTextRenderingHint">
<summary>
Gets or sets the anti-alias text rendering hint that will be used to render text on controls that have AntiAlias property set to true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarUtilities.UseTextRenderer">
<summary>
Gets or sets whether .NET Framework TextRenderer class is used for text rendering instead of Graphics.DrawString.
Default value is false.
Using TextRenderer will disable the Fade and Animation effects on controls because of issues in TextRenderer when drawing text on transparent
surfaces.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarUtilities.AlwaysGenerateAccessibilityFocusEvent">
<summary>
Gets or sets whether items always generate the Focus accessibility event when mouse enters the item. Default value is false which indicates
that focus event will be raised only when item is on menu bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarUtilities.AutoRemoveMessageFilter">
<summary>
Gets or sets whether Application Message Filter that is registered by popup controls
is automatically unregistered when last control is disposed. Default value is false and
in most cases should not be changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarUtilities.TextMarkupCultureSpecificPadding">
<summary>
Get or sets the text-markup padding for text measurement when running on Japanese version of Windows.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BarUtilities.DisposeItemImages">
<summary>
Gets or sets whether Image and Icon resources assigned to items and controls are automatically disposed when
control or item is disposed. Default value is false.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BaseItem">
<summary>
Defines the base class for items that are used by DotNetBar.
</summary>
</member>
<member name="T:DevComponents.UI.ContentManager.IBlock">
<summary>
Represents a content block interface.
</summary>
</member>
<member name="P:DevComponents.UI.ContentManager.IBlock.Bounds">
<summary>
Gets or sets the bounds of the content block.
</summary>
</member>
<member name="P:DevComponents.UI.ContentManager.IBlock.Visible">
<summary>
Gets or sets whether content block is visible.
</summary>
</member>
<member name="P:DevComponents.UI.ContentManager.IBlock.Margin">
<summary>
Gets or sets the block margins.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.#ctor">
<summary>
Creates new instance of BaseItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.#ctor(System.String)">
<summary>
Creates new instance of BaseItem and assigns item name.
</summary>
<param name="sItemName">Item name.</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.#ctor(System.String,System.String)">
<summary>
Creates new instance of BaseItem and assigns item name and item text.
</summary>
<param name="sItemName">Item Name</param>
<param name="ItemText">Item Text</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.Serialize(DevComponents.DotNetBar.ItemSerializationContext)">
<summary>
Serializes the item and all sub-items into the XmlElement.
</summary>
<param name="ThisItem">XmlElement to serialize the item to.</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.Deserialize(DevComponents.DotNetBar.ItemSerializationContext)">
<summary>
Deserialize the Item from the XmlElement.
</summary>
<param name="ItemXmlSource">Source XmlElement.</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.ShouldSerializeSubItems">
<summary>
Indicates whether SubItems collection is serialized. Default value is true.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.ScaleItem(System.Drawing.SizeF)">
<summary>
Called on each item when ScaleControl method of parent control is called and gives opportunity to item to adjust its displayed based on current scaling.
</summary>
<param name="factor">Scale factor.</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnContainerChanged(System.Object)">
<summary>
Called when item container has changed. If you override this method you must call the base implementation to allow default processing to occur.
</summary>
<param name="objOldContainer">Previous container of the item.</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnParentChanged">
<summary>
Called when item parent has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.GetEnabled(System.Windows.Forms.Control)">
<summary>
Returns whether item is enabled including the parent control item is on.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.GetEnabled">
<summary>
Returns whether item is enabled including the parent control item is on.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnExternalSizeChange">
<summary>
Called when size of the item is changed externally.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnVisibleChanged(System.Boolean)">
<summary>
Called when Visibility of the items has changed.
</summary>
<param name="newValue">New Visible state.</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnDisplayedChanged">
<summary>
Called when item Display state has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnOwnerChanged">
<summary>
Called when item owner has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnSubItemsChanged(System.ComponentModel.CollectionChangeEventArgs)">
<summary>
Raises SubItemsChanged event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnItemAdded(DevComponents.DotNetBar.BaseItem)">
<summary>
Occurs after an item has been added to the container. This procedure is called on both item being added and the parent of the item. To distinguish between those two states check the item parameter.
</summary>
<param name="item">When occurring on the parent this will hold the reference to the item that has been added. When occurring on the item being added this will be null (Nothing).</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnAfterItemRemoved(DevComponents.DotNetBar.BaseItem,System.Int32)">
<summary>
Occurs after an item has been removed.
</summary>
<param name="item">Item being removed.</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnClick">
<summary>
Occurs just before Click event is fired.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnSubItemsClear">
<summary>
Occurs after SubItems Collection has been cleared.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnBeforeItemRemoved(DevComponents.DotNetBar.BaseItem)">
<summary>
Occurs before an item is removed.
</summary>
<param name="item">Item being removed.</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnIsOnCustomizeMenuChanged">
<summary>
Occurs when IsOnCustomizeMenu property has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnIsOnCustomizeDialogChanged">
<summary>
Occurs when IsOnCustomizeDialogChanged property has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnDesignModeChanged">
<summary>
Occurs when item enter or exists the design mode.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnTooltip(System.Boolean)">
<summary>
Occurs when tooltip is about to be shown or hidden.
</summary>
<param name="bShow">Specifies whether tooltip is shown or hidden.</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnSubItemGotFocus(DevComponents.DotNetBar.BaseItem)">
<summary>
Occurs after item has received the input focus.
</summary>
<param name="item">Item that received the focus.</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnSubItemLostFocus(DevComponents.DotNetBar.BaseItem)">
<summary>
Occurs after item has lost the input focus.
</summary>
<param name="item">Item that lost the input focus.</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnEnabledChanged">
<summary>
Indicates whether the item enabled property has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnTopLocationChanged(System.Int32)">
<summary>
Called after TopInternal property has changed
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnLeftLocationChanged(System.Int32)">
<summary>
Called after LeftInternal property has changed
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.InternalMouseEnter">
<summary>
Occurs when the mouse pointer enters the item. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.InternalMouseHover">
<summary>
Occurs when the mouse pointer hovers the item. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.InternalMouseLeave">
<summary>
Occurs when the mouse pointer leaves the item. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.InternalMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Occurs when the mouse pointer is over the item and a mouse button is pressed. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.InternalMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
Occurs when the mouse pointer is over the item and a mouse button is released. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.InternalKeyDown(System.Windows.Forms.KeyEventArgs)">
<summary>
Occurs when a key is pressed down while the item has focus. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.LeaveHotSubItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Processes the MouseLeave for the current mouse over item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.InternalMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
Occurs when the mouse pointer is moved over the item. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.InternalClick(System.Windows.Forms.MouseButtons,System.Drawing.Point)">
<summary>
Occurs when the item is clicked. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.RaiseClick(DevComponents.DotNetBar.eEventSource)">
<summary>
Raises the click event and provide the information about the source of the event.
</summary>
<param name="source"></param>
</member>
<member name="F:DevComponents.DotNetBar.BaseItem.m_InClickEvent">
<summary>
Raises the Click event with default source as Code.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.InternalDoubleClick(System.Windows.Forms.MouseButtons,System.Drawing.Point)">
<summary>
Occurs when the item is double clicked. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.InvokeDoubleClick">
<summary>
Invokes DoubleClick event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnGotFocus">
<summary>
Occurs when the item receives focus. If overridden base implementation must be called so default processing can occur.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnLostFocus">
<summary>
Occurs when the item has lost the focus. If overridden base implementation must be called so default processing can occur.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.Focus">
<summary>
Sets the input focus to the item. If overridden base implementation must be called so default processing can occur.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.ReleaseFocus">
<summary>
Releases the input focus. If overridden base implementation must be called so default processing can occur.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.ContainerLostFocus(System.Boolean)">
<summary>
Occurs when item container has lost the input focus. If overridden base implementation must be called so default processing can occur.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.ContainerGotFocus">
<summary>
Occurs when item container receives the input focus. If overridden base implementation must be called so default processing can occur.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.SubItemSizeChanged(DevComponents.DotNetBar.BaseItem)">
<summary>
Indicates that item size has changed. It must be called by child item to let the parent know that its size
has been changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.ItemAtLocation(System.Int32,System.Int32)">
<summary>
Return Sub Item at specified location
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.ExpandedItem">
<summary>
Gets the current expanded subitem.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.FocusedItem">
<summary>
Gets the item that has input focus.
</summary>
<returns>Item that has focus or Null (Nothing) if none of the subitems have focus.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.GetOwner">
<summary>
Gets the owner of the item.
</summary>
<returns>DotNetBarManager that owns the item.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.RecalcSize">
<summary>
Recalculate the size of the item. If overridden base implementation must be called so default processing can occur.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Must be overridden by class that is inheriting to provide the painting for the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.Copy">
<summary>
Must be overridden by class that is inheriting to provide the method to
return copy of an item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Internal Copy implementation.
</summary>
<param name="objCopy">Item to copy to.</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.Clone">
<summary>
Returns copy of the item.
</summary>
<returns>Copy of the item.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.Refresh">
<summary>
Forces the repaint the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnExpandChange">
<summary>
Occurs when Expanded state changes. If overridden base implementation must be called so default processing can occur.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.RaiseExpandChange(System.EventArgs)">
<summary>
Raises ExpandChange event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnSubItemExpandChange(DevComponents.DotNetBar.BaseItem)">
<summary>
Occurs when sub item expanded state has changed.
</summary>
<param name="item">Sub item affected.</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.Dispose(System.Boolean)">
<summary>
Releases all resurces used in this control. After calling Dispose()
object is not in valid state and cannot be recovered to the valid state.
Recreation of the object is required.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnStyleChanged">
<summary>
Occurs after item visual style has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnTextChanged">
<summary>
Occurs after text has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.IsHandleValid(System.Windows.Forms.Control)">
<summary>
Returns if passed control is valid.
</summary>
<param name="objCtrl">Control to test.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.ResetHover">
<summary>
Resets Hoover timer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.IsAnyOnHandle(System.IntPtr)">
<summary>
Returns true if any subitem is contained on the control with a given handle.
</summary>
<param name="iHandle">Container handle to test.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnTooltipChanged">
<summary>
Occurs after Tooltip text has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.SetOrientation(DevComponents.DotNetBar.eOrientation)">
<summary>
Sets orientation of the item but it does not cause the recalculate layout flag setting on the parent item.
</summary>
<param name="o">New orientation value.</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.HideToolTip">
<summary>
Destroys tooltip window.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnHotSubItemChanged(DevComponents.DotNetBar.BaseItem,DevComponents.DotNetBar.BaseItem)">
<summary>
Called when HotSubItem has changed.
</summary>
<param name="newValue">New value.</param>
<param name="oldValue">Old value.</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.ShowToolTip">
<summary>
Shows tooltip for this item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.GetTooltipShortcutString">
<summary>
Returns the shortcut string that is displayed on tooltip.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.PointToScreen(System.Drawing.Point)">
<summary>
Returns the point in screen coordinates.
</summary>
<param name="clientPoint">Client point</param>
<returns>Point in screen coordinates if there is a parent Control otherwise clientPoint</returns>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.CollapseSubItems(DevComponents.DotNetBar.BaseItem)">
<summary>
Collapses all sub items by setting their Expanded property to false.
</summary>
<param name="item">Item to collapse.</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.CollapseSubItemsTree(DevComponents.DotNetBar.BaseItem)">
<summary>
Collapses all sub items by setting their Expanded property to false. Enumerates all child items as well.
</summary>
<param name="item">Item to collapse.</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.CollapseAll(DevComponents.DotNetBar.BaseItem)">
<summary>
Collapses whole tree for the item starting with its parent.
</summary>
<param name="objItem">Item to collapse.</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.IsOnPopup(DevComponents.DotNetBar.BaseItem)">
<summary>
Returns whether item is hosted on popup menu or bar.
</summary>
<param name="item">Item to get information for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.GetHashCode">
<summary>
Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table.
</summary>
<returns>Hash code.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnDragStartPointChanged(System.Drawing.Point,System.Drawing.Point)">
<summary>
Called when DragStartPoint property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.OnCommandChanged">
<summary>
Called when Command property value changes.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.TextMarkupLinkClick(System.Object,System.EventArgs)">
<summary>
Occurs when text markup link is clicked.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.UpdateBindings">
<summary>
Updates data bindings for item and its sub-items in response to binding context change on parent control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.Invoke(System.Delegate,System.Object[])">
<summary>
Executes the specified delegate, on the thread that owns the control's underlying window handle, with the specified list of arguments.
This property calls directly the ContainerControl.Invoke and is provided as shortcut convenience property only.
</summary>
<param name="method">A delegate to a method that takes parameters of the same number and type that are contained in the args parameter.</param>
<param name="args">An array of objects to pass as arguments to the specified method. This parameter can be null reference (Nothing in Visual Basic) if the method takes no arguments.</param>
<returns>An Object that contains the return value from the delegate being invoked, or nullNothingnullptra null reference (Nothing in Visual Basic) if the delegate has no return value.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.Invoke(System.Delegate)">
<summary>
Executes the specified delegate, on the thread that owns the control's underlying window handle, with the specified list of arguments.
This property calls directly the ContainerControl.Invoke and is provided as shortcut convenience property only.
</summary>
<param name="method">A delegate to a method that takes parameters of the same number and type that are contained in the args parameter.</param>
<returns>An Object that contains the return value from the delegate being invoked, or nullNothingnullptra null reference (Nothing in Visual Basic) if the delegate has no return value.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BaseItem.BeginInvoke(System.Delegate)">
<summary>
Executes the specified delegate, on the thread that owns the control's underlying window handle, with the specified list of arguments.
This property calls directly the ContainerControl.BeginInvoke and is provided as shortcut convenience property only.
</summary>
<param name="method">A delegate to a method that takes parameters of the same number and type that are contained in the args parameter.</param>
<returns>An Object that contains the return value from the delegate being invoked, or nullNothingnullptra null reference (Nothing in Visual Basic) if the delegate has no return value.</returns>
</member>
<member name="E:DevComponents.DotNetBar.BaseItem.Click">
<summary>
Occurs when Item is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BaseItem.DoubleClick">
<summary>
Occurs when Item is double-clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BaseItem.ExpandChange">
<summary>
Occurs when Item Expanded property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BaseItem.LostFocus">
<summary>
Occurs when item loses input focus.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BaseItem.GotFocus">
<summary>
Occurs when item receives input focus.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BaseItem.MouseDown">
<summary>
Occurs when mouse button is pressed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BaseItem.MouseUp">
<summary>
Occurs when mouse button is released.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BaseItem.MouseEnter">
<summary>
Occurs when mouse enters the item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BaseItem.MouseLeave">
<summary>
Occurs when mouse leaves the item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BaseItem.MouseMove">
<summary>
Occurs when mouse moves over the item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BaseItem.MouseHover">
<summary>
Occurs when mouse remains still inside an item for an amount of time.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BaseItem.ItemCopied">
<summary>
Occurs when copy of the item is made.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BaseItem.TextChanged">
<summary>
Occurs when Text property of an Item has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BaseItem.VisibleChanged">
<summary>
Occurs when Visible property of an Item has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BaseItem.EnabledChanged">
<summary>
Occurs when Enabled property of an Item has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BaseItem.ToolTipVisibleChanged">
<summary>
Occurs when item's tooltip visibility has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BaseItem.SubItemsChanged">
<summary>
Occurs when content of SubItems collection has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.IsRendered">
<summary>
Gets or sets whether item is rendered.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.DesignTimeVisible">
<summary>
Gets or sets whether item is selectable at design-time. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.ContainerControl">
<summary>
Control Container (System.Windows.Forms.Control or its descendant)
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.Parent">
<summary>
Returns the Parent of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.Enabled">
<summary>
Gets or sets a value indicating whether the item is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.BeginGroup">
<summary>
Gets or sets whether item separator is shown before this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.LeftInternal">
<summary>
Gets or sets Left position of this item
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.TopInternal">
<summary>
Gets or sets Top position of this item
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.WidthInternal">
<summary>
Gets or sets Width of this item
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.IsRightToLeft">
<summary>
Gets whether item is in right-to-left layout mode.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.HeightInternal">
<summary>
Gets or sets Height of this item
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.Visible">
<summary>
Gets or sets a value indicating whether the item is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.Expanded">
<summary>
Gets or sets a value indicating whether the item is expanded or not. For Popup items this would indicate whether the item is popped up or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.AutoCollapseOnClick">
<summary>
Indicates whether the item will auto-collapse (fold) when clicked.
When item is on popup menu and this property is set to false, menu will not
close when item is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.AutoExpand">
<summary>
Gets or sets whether item will auto expand when mouse is over the item or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.DisplayRectangle">
<summary>
Gets the rectangle that represents the display area of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.Size">
<summary>
Gets or sets the size of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.Bounds">
<summary>
IBlock member implementation
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.IsContainer">
<summary>
Specifies whether this item is visual container or not. For example
Tool Menu is not container since it drops-down its items and they are
not "visualy" contained. Also, the pop-up menus, drop-down Bars etc. are not containers.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.Displayed">
<summary>
Returns true if this item is currently displayed. This property should not be set directly since it is managed by system and container of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.MouseDownPt">
<summary>
Gets the mouse down coordinates.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.IsOnContextMenu">
<summary>
Gets whether item is on context menu created using ContextMenuBar
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.CanRaiseClick">
<summary>
Gets whether RaiseClick method will generate a click event give current item state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.CollapseAllBeforeRaisingClick">
<summary>
Indicates whether RaiseClick method collapses parent popups before raising click event. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.Focused">
<summary>
Gets whether item has input focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.IsRecalculatingSize">
<summary>
Indicates that item is recalculating its size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.SuspendLayout">
<summary>
Suspends all layout for the item including painting. Use this property carefully and only to improve performace.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.IsLayoutPass">
<summary>
Indicates whether item is performing layout pass.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.IsLayoutPassInProgress">
<summary>
Gets whether layout pass is in progress in the parent chain.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.IsDisposed">
<summary>
Gets whether item has been disposed through Dispose method call.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.SubItems">
<summary>
Returns the collection of sub items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.VisibleSubItems">
<summary>
Returns count of sub items in SubItems collection that have Visible property set to true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.Id">
<summary>
Unique ID that indentifies the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.Tag">
<summary>
Allows the user to associate custom user data with the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.Style">
<summary>
Applies new visual style to this the item and all of its sub-items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.EffectiveStyle">
<summary>
Gets the effective item style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.ShowSubItems">
<summary>
Gets or sets whether item will display sub items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.ItemAlignment">
<summary>
Gets or sets item alignment inside the container.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.Description">
<summary>
Gets or sets item description. This description is displayed in
Customize dialog to describe the item function in an application.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.Stretch">
<summary>
Gets or sets whether the item expands automatically to fill out the remaining space inside the container. Applies to Items on stretchable, no-wrap Bars only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.Tooltip">
<summary>
Gets/Sets informational text (tooltip) for the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.Category">
<summary>
Returns category for this item. If item cannot be customzied using the
customize dialog category is empty string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.Name">
<summary>
Returns name of the item that can be used to identify item from the code.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.GlobalName">
<summary>
Gets or sets the global name of the item that is used to synchronize the Global properties for the item across all instances with same
global name. Note that only instances that belong to the same control are synchronized. GlobalItem must be set to true to perform the synchronization.
You can find more information and list of
properties that are synchronized in help file.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.ShouldSyncProperties">
<summary>
Gets whether global properties should synchronized.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.SupportedOrientation">
<summary>
Gets orientation within container that is supported by this item. If item does not support certain orientation the container automatically hides it when container switches into that orientation.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.GlobalItem">
<summary>
Gets or sets whether item is global or not.
This flag is used to propagate property changes to all items with the same name.
Setting for example Visible property on the item that has GlobalItem set to true will
set visible property to the same value on all items with the same name.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.Orientation">
<summary>
Gets or sets orientation inside the container. Do not change the value of this property. It is managed by system only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.ShowToolTips">
<summary>
Gets whether tooltip for the item is displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.ToolTipVisible">
<summary>
Gets whether tooltip is visible or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.OriginalBarName">
<summary>
Gets or sets the name of the bar this item originated on. This is used to remember the
originating bar when user is moving the items from bar to bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.OriginalPosition">
<summary>
Gets or sets item's original position (index) if item position has changed due to the user customization.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.UserCustomized">
<summary>
Gets or sets flag that indicates whether item was customize by the end-user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.ToolTipControl">
<summary>
Gets reference to the tooltip control if tooltip is displayed for this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.KeyTips">
<summary>
Gets or sets the Key Tips access key or keys for the item when on Ribbon Control or Ribbon Bar. Use KeyTips property
when you want to assign the one or more letters to be used to access an item. For example assigning the FN to KeyTips property
will require the user to press F then N keys to select an item. Pressing the F letter will show only keytips for the items that start with letter F.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.Text">
<summary>
Gets or sets the text associated with this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.CanCustomize">
<summary>
Gets or sets whether item can be customized by end user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.IsOnCustomizeMenu">
<summary>
Returns whether item is hosted on Customize menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.IsOnCustomizeDialog">
<summary>
Returns whether item is hosted on Customize Dialog.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.IsOnMenu">
<summary>
Returns whether item is hosted on menu or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.IsOnMenuBar">
<summary>
Returns whether item is hosted on menu bar or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.IsOnBar">
<summary>
Returns whether item is hosted on bar or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.DesignMode">
<summary>
Returns whether item is in design mode or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.NeedRecalcSize">
<summary>
Get or sets whether item has been changed in a way that it needs its size recalculated. This is internal
property and it should not be used by your code.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.SystemItem">
<summary>
Returns whether item is System item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.AccessKeyEnabled">
<summary>
Indicates whether access key processing set using ampersand key in Text is enabled. When enabled, and access key is pressed, item will raise Click event.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.AccessKey">
<summary>
Return Access key for the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.Shortcuts">
<summary>
Gets or sets the collection of shortcut keys associated with the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.ShortcutString">
<summary>
Returns text representation of shortcut for this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.ClickAutoRepeat">
<summary>
Gets or sets whether Click event will be auto repeated when mouse button is kept pressed over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.ClickRepeatInterval">
<summary>
Gets or sets the auto-repeat interval for the click event when mouse button is kept pressed over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.DesignMarkerOrientation">
<summary>
Gets or sets the design-marker orientation for the item.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.BaseItem.IsDesignMarkHorizontal" -->
<member name="P:DevComponents.DotNetBar.BaseItem.Cursor">
<summary>
Specifes the mouse cursor displayed when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.ShouldSerialize">
<summary>
Indicates whether item will be Serialized.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.ThemeAware">
<summary>
Specifies whether item is drawn using Themes when running on OS that supports themes like Windows XP.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.AccessibleObject">
<summary>
Gets the AccessibleObject assigned to the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.AccessibleDefaultActionDescription">
<summary>
Gets or sets the default action description of the control for use by accessibility client applications.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.AccessibleDescription">
<summary>
Gets or sets the description of the control used by accessibility client applications.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.AccessibleName">
<summary>
Gets or sets the name of the control used by accessibility client applications.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.AccessibleRole">
<summary>
Gets or sets the accessible role of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.IsAccessible">
<summary>
Gets or sets a value indicating whether the item is visible to accessibility applications.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.ContainerState">
<summary>
Gets the item state inside of the parent container.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.Margin">
<summary>
Gets or sets item margin only used by certain items in certain containers. Provided only for internal DotNetBar use.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.Command">
<summary>
Gets or sets the command assigned to the item. Default value is null.
<remarks>Note that for ButtonItem instances if this property is set to null and command was assigned previously, Enabled property will be set to false automatically to disable the item.</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.CommandParameter">
<summary>
Gets or sets user defined data value that can be passed to the command when it is executed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.TextMarkupBody">
<summary>
Gets reference to parsed markup body element if text was markup otherwise returns null.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.PlainText">
<summary>
Gets plain text without text-markup if text-markup is used in Text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.IsMarkupSupported">
<summary>
Gets whether item supports text markup. Default is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItem.InvokeRequired">
<summary>
Gets a value indicating whether the caller must call an invoke method when making method calls to the item because the caller is on a different thread than the one the item was created on.
This property calls directly the ContainerControl.InvokeRequired and is provided as shortcut convinience property only.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eContainerState">
<summary>
Defines item parent container states.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eContainerState.NotSet">
<summary>
State is not set.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eContainerState.NavigationPane">
<summary>
Item in on the NavigationPane in normal size.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BaseItemController">
<summary>
Represents the controller which allows single BaseItem to be hosted on the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItemController.#ctor(DevComponents.DotNetBar.BaseItem,System.Windows.Forms.Control)">
<summary>
Initializes a new instance of the BaseItemController class.
</summary>
<param name="item"></param>
<param name="parentControl"></param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItemController.GetRenderer">
<summary>
Returns the renderer control will be rendered with.
</summary>
<returns>The current renderer.</returns>
</member>
<member name="T:DevComponents.DotNetBar.BindingDef">
<summary>
Defines class which described single binding.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BindingDef.OnFormat(DevComponents.DotNetBar.DataConvertEventArgs)">
<summary>
Raises Format event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.BindingDef.#ctor">
<summary>
Initializes a new instance of the BindingDef class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BindingDef.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the BindingDef class.
</summary>
<param name="propertyName"></param>
<param name="dataMember"></param>
</member>
<member name="M:DevComponents.DotNetBar.BindingDef.Update(System.Object,System.Object)">
<summary>
Updates specified item PropertyName with the data from data object property specified by DataMember.
</summary>
<param name="item">Item to set PropertyName on.</param>
<param name="data">Data to retrieve DataMember value from.</param>
</member>
<member name="M:DevComponents.DotNetBar.BindingDef.Update(DevComponents.DotNetBar.ItemVisualGenerator,System.Object,System.Object)">
<summary>
Updates specified item PropertyName with the data from data object property specified by DataMember.
</summary>
<param name="dataManager">CurrencyManager to use</param>
<param name="item">Item to set PropertyName on.</param>
<param name="data">Data to retrieve DataMember value from.</param>
</member>
<member name="M:DevComponents.DotNetBar.BindingDef.OnPropertyNameChanged(System.String,System.String)">
<summary>
Called when PropertyName property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.BindingDef.OnDataMemberChanged(System.String,System.String)">
<summary>
Called when DataMember property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.BindingDef.OnFormattingEnabledChanged(System.Boolean,System.Boolean)">
<summary>
Called when FormattingEnabled property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.BindingDef.OnFormatStringChanged(System.String,System.String)">
<summary>
Called when FormatString property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.BindingDef.OnFormatInfoChanged(System.IFormatProvider,System.IFormatProvider)">
<summary>
Called when FormatInfo property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.BindingDef.OnNullValueChanged(System.Object,System.Object)">
<summary>
Called when NullValue property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.BindingDef.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Raises the PropertyChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="P:DevComponents.DotNetBar.BindingDef.PropertyName">
<summary>
Gets or sets the property name binding is attached to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BindingDef.BindingMemberInfo">
<summary>
Gets the reference to BindingMemberInfo created based on DataMember.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BindingDef.DataMember">
<summary>
Gets or sets the data member name which holds data that PropertyName is populated with.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BindingDef.FormattingEnabled">
<summary>
Gets or sets whether type conversion and formatting is applied to the property data.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BindingDef.FormatString">
<summary>
Gets or sets format specifier characters that indicate how a value is to be displayed.
For more information, see Formatting Overview: http://msdn.microsoft.com/en-us/library/26etazsy%28v=vs.71%29.aspx
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BindingDef.FormatInfo">
<summary>
Gets or sets the IFormatProvider that provides custom formatting behavior.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BindingDef.NullValue">
<summary>
Gets or sets the Object to be set as the target property when the data source contains a DBNull value.
The data source must contain DBNull for the NullValue property to be correctly applied.
If the data source type is a type such as a string or integer the value of the NullValue property will be ignored.
Also, the NullValue property is ignored if it is set to null.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BindingDef.PropertyChanged">
<summary>
Occurs when property on BindingDef object has changed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DataConvertEventHandler">
<summary>
Represents the method that will handle converting for bindings.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="P:DevComponents.DotNetBar.DataConvertEventArgs.DataItem">
<summary>
Gets the reference to the item being converted.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DataConvertEventArgs.FieldName">
<summary>
Get the reference to the name of the field or property on the item that needs conversion.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BindingDefConverer">
<summary>
Represents BindingDefConverer converter.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BindingDefConverer.#ctor">
<summary>
Creates new instance of the class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BindingDefConverer.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Checks whether conversion can be made to specified type.
</summary>
<param name="context">Context Information.</param>
<param name="destinationType">Destination type.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.BindingDefConverer.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts object to specified type.
</summary>
<param name="context">Context information.</param>
<param name="culture">Culture information.</param>
<param name="value">Object to convert.</param>
<param name="destinationType">Destination type.</param>
<returns>Object converted to destination type.</returns>
</member>
<member name="T:DevComponents.DotNetBar.BubbleBar">
<summary>
Represents the toolbar control with the magnifying (bubbling) buttons.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.#ctor">
<summary>
Creates new instance of the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.ShouldSerializeTooltipTextColor">
<summary>
Indicates whether property should be serialized. Used by the Windows Forms design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.ResetTooltipTextColor">
<summary>
Resets the property to default value. Used by the Windows Forms design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.ShouldSerializeTooltipOutlineColor">
<summary>
Indicates whether property should be serialized. Used by the Windows Forms design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.ResetTooltipOutlineColor">
<summary>
Resets the property to default value. Used by the Windows Forms design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.ShouldSerializeImageSizeLarge">
<summary>
Returns whether property should be serialized by Windows Forms designer.
</summary>
<returns>True if property is different than default value otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.ShouldSerializeImageSizeNormal">
<summary>
Returns whether property should be serialized by Windows Forms designer.
</summary>
<returns>True if property is different than default value otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.RecalcLayout">
<summary>
Recalculates the layout of the control. This method should be called after all changes to the tabs, buttons are completed so
layout of the control recalculated.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.OnItemLayoutUpdated(System.EventArgs)">
<summary>
Raises ItemLayoutUpdated event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.GetButtonAt(System.Int32,System.Int32)">
<summary>
Returns reference to the button at specified location
</summary>
<param name="x">x - coordinate</param>
<param name="y">y - coordinate</param>
<returns>Reference to the button or null if no button could be found at given coordinates.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.GetButtonAt(System.Drawing.Point)">
<summary>
Returns reference to the button at specified location
</summary>
<param name="p">Location coordinates</param>
<returns>Reference to the button or null if no button could be found at given coordinates.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.GetTabAt(System.Drawing.Point)">
<summary>
Returns tab at specific location.
</summary>
<param name="p">Coordinates to get the tab from.</param>
<returns>Reference to the tab object or null if tab cannot be found at specified location</returns>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.GetTabAt(System.Int32,System.Int32)">
<summary>
Returns tab at specific location.
</summary>
<param name="x">x - coordinate </param>
<param name="y">y - coordinate</param>
<returns>Reference to the tab object or null if tab cannot be found at specified location</returns>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.OnBubbleStart(System.EventArgs)">
<summary>
Invokes BubbleStart event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.OnBubbleEnd(System.EventArgs)">
<summary>
Invokes BubbleEnd event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.InvokeButtonClick(DevComponents.DotNetBar.BubbleButton,DevComponents.DotNetBar.ClickEventArgs)">
<summary>
Invokes ButtonClick event on the control.
</summary>
<param name="button">Reference to the button that was clicked.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.OverlayInactive">
<summary>
Called after overlay window became inactive.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.StopBubbleEffect">
<summary>
Stops the bubble animation effect is one is applied currently.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.MouseMoveMessage(System.Windows.Forms.MouseEventArgs)">
<summary>
Internal processing of MouseMove event.
</summary>
<param name="e">Move move event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.MouseLeaveMessage(System.EventArgs)">
<summary>
Internal processing for MouseLeave event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.OnButtonsCollectionClear(DevComponents.DotNetBar.BubbleBarTab)">
<summary>
Called after all buttons have been removed.
</summary>
<param name="tab">Tab from which all buttons were removed.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.OnButtonRemoved(DevComponents.DotNetBar.BubbleBarTab,DevComponents.DotNetBar.BubbleButton)">
<summary>
Called after specified button has been removed.
</summary>
<param name="tab">Tab from which button was removed.</param>
<param name="button">Button that was removed.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.OnButtonInserted(DevComponents.DotNetBar.BubbleBarTab,DevComponents.DotNetBar.BubbleButton)">
<summary>
Called after new button is added to the Buttons collection.
</summary>
<param name="tab">Tab to which button was added.</param>
<param name="button">Reference to the button added.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.OnButtonVisibleChanged(DevComponents.DotNetBar.BubbleButton)">
<summary>
Called when Visible property of Button has changed.
</summary>
<param name="button">Button affected.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.GetButtonsBackground">
<summary>
Returns the button background rectangle for display purposes. Applies setting for the ButtonBackgroundStretch property.
</summary>
<returns>Background rectangle.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.OnTabRemoved(DevComponents.DotNetBar.BubbleBarTab)">
<summary>
Called after tab has been removed from the collection.
</summary>
<param name="tab">Tab that was removed.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.OnTabAdded(DevComponents.DotNetBar.BubbleBarTab)">
<summary>
Called after tab has been added to the collection.
</summary>
<param name="tab">Newly added tab.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.OnTabsCleared">
<summary>
Called after all tabs are removed from the collection.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.OnTabTextChanged(DevComponents.DotNetBar.BubbleBarTab)">
<summary>
Called after text of a tab has changed.
</summary>
<param name="tab">Tab which text has changed.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.OnTabVisibleChanged(DevComponents.DotNetBar.BubbleBarTab)">
<summary>
Called after Visible property of the tab has changed.
</summary>
<param name="tab">Tab affected.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBar.SetMouseOverTab(DevComponents.DotNetBar.BubbleBarTab)">
<summary>
Sets the tab mouse is placed over.
</summary>
<param name="tab">Tab that mouse is currently over or null if mouse is not over any tab.</param>
</member>
<member name="E:DevComponents.DotNetBar.BubbleBar.TabChanging">
<summary>
Occurs when active tab is about to change.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BubbleBar.ButtonClick">
<summary>
Occurs when any of the buttons is clicked. Sender object should be casted to BubbleButton to get the button that was actually clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BubbleBar.BubbleStart">
<summary>
Occurs when mouse first enters the control and bubble effect is employed to provide feedback.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BubbleBar.BubbleEnd">
<summary>
Occurs when mouse leaves the control and bubble effect is ended.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.TooltipTextColor">
<summary>
Gets or sets the bubble button tooltip text color. Default value is White color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.TooltipOutlineColor">
<summary>
Gets or sets the bubble button tooltip text outline color. Default value is Black color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.ButtonSpacing">
<summary>
Gets or sets the spacing in pixels between buttons. Default value is 0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.ButtonBackgroundStretch">
<summary>
Gets or sets whether background for the buttons is stretched to consume complete width of the control. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.BackgroundStyle">
<summary>
Gets the style for the background of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.ButtonBackAreaStyle">
<summary>
Gets the style for the background of the buttons.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.ButtonBackAreaBounds">
<summary>
Gets the bounds of the buttons back area.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.TabAreaBounds">
<summary>
Gets the bounds of the tabs area.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.AnimationTime">
<summary>
Gets or sets the duration of animation that is performed when mouse enters a button for the first time or when mouse has left the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.AnimationEnabled">
<summary>
Gets or sets whether bubble animation is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.Images">
<summary>
Gets or sets ImageList for images used on buttons. These images will be used as images for the buttons that are not magnified.
Use ImagesLarge to specify the magnified images for the coresponding images based on the index in this list.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.ImagesLarge">
<summary>
Gets or sets ImageList for large-sized images used on buttons when button is magnified.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.ShowTooltips">
<summary>
Gets or sets whether tooltips are displayed for the buttons.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.ImageSizeLarge">
<summary>
Gets or sets size of the images when button is enlarged, default value is 48 by 48 pixels. Note that you should provide the
images in the same size for the buttons through the image properties on the buttons or through ImagesLarge property.
If the large images are not provided the regular button image will be automatically enlarged.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.ImageSizeNormal">
<summary>
Gets or sets the normal image size for the buttons, default value is 24 by 24 pixels. This should be set to the default image size that you will use on the
buttons. If the images specified for the buttons are not of the same size as the size specified here then they will
be automatically resized. Normal size must always be smaller than the size specified by ImageSizeLarge property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.TooltipFont">
<summary>
Gets or sets the font that is used to display tooltips.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.SelectedTab">
<summary>
Gets or sets the selected tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.SelectedTabColors">
<summary>
Gets the reference to the colors that are used when tab is selected.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.MouseOverTabColors">
<summary>
Gets the reference to the colors that are used when mouse is over the tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.Tabs">
<summary>
Gets the collection of all tabs.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.Alignment">
<summary>
Gets or sets the button alignment.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBar.TabsVisible">
<summary>
Gets or sets whether tabs are visible. Default value is true.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BubbleBar.ItemLayoutUpdated">
<summary>
Occurs after internal item layout has been updated and items have valid bounds assigned.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BubbleBarTabChangingEventHadler">
<summary>
Delegate for tab change events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BubbleBarTabChangingEventArgs">
<summary>
Represents the event arguments tab changing events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.BubbleBarTabChangingEventArgs.Cancel">
<summary>
Cancels the operation.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.BubbleBarTabChangingEventArgs.Source">
<summary>
Specifies the event source.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.BubbleBarTabChangingEventArgs.NewTab">
<summary>
Specifies newly selected tab.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.BubbleBarTabChangingEventArgs.CurrentTab">
<summary>
Specifies currently selected tab.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBarTabChangingEventArgs.#ctor">
<summary>
Default Constructor.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BubbleBarOverlay">
<summary>
Represents overlay class to support bubble effects on BubbleBar control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBarOverlay.BeforeShow">
<summary>
Called just before window is shown.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBarOverlay.AfterClose">
<summary>
Called after window is closed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BubbleBarTab">
<summary>
Summary description for BubbleBarGroup.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ISimpleTab">
<summary>
Represents interface for simple text only tab.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ISimpleTab.GetTabFont">
<summary>
Returns the font used for tab text.
</summary>
<returns>Reference to font object.</returns>
</member>
<member name="P:DevComponents.DotNetBar.ISimpleTab.Text">
<summary>
Gets or sets the text displayed on the tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ISimpleTab.Visible">
<summary>
Gets or sets whether tab is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ISimpleTab.DisplayRectangle">
<summary>
Gets the display bounds of the tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ISimpleTab.BackColor">
<summary>
Gets or sets the background color of the tab when inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ISimpleTab.BackColor2">
<summary>
Gets or sets the target gradient background color of the tab when inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ISimpleTab.BackColorGradientAngle">
<summary>
Gets or sets the gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ISimpleTab.LightBorderColor">
<summary>
Gets or sets the light border color when tab is inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ISimpleTab.DarkBorderColor">
<summary>
Gets or sets the dark border color when tab is inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ISimpleTab.BorderColor">
<summary>
Gets or sets the border color when tab is inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ISimpleTab.TextColor">
<summary>
Gets or sets the text color when tab is inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ISimpleTab.Name">
<summary>
Gets or sets name of the tab item that can be used to identify item from the code.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ISimpleTab.PredefinedColor">
<summary>
Gets or sets the predefined tab color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ISimpleTab.IsSelected">
<summary>
Returns true if tab is selected tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ISimpleTab.IsMouseOver">
<summary>
Returns true if mouse is over the tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ISimpleTab.TabAlignment">
<summary>
Gets the tab alignment.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBarTab.#ctor">
<summary>
Default constructor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBarTab.#ctor(System.ComponentModel.IContainer)">
<summary>
Default constructor.
</summary>
<param name="container">Container object.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBarTab.GetTabFont">
<summary>
Returns the font for the tab text.
</summary>
<returns>Reference to the font object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBarTab.SetParent(DevComponents.DotNetBar.BubbleBar)">
<summary>
Sets the parent of the tab.
</summary>
<param name="parent">Reference to the tab parent object or null.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBarTab.OnButtonInserted(DevComponents.DotNetBar.BubbleButton)">
<summary>
Called after new button is added to the Buttons collection.
</summary>
<param name="button">Reference to the added button.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBarTab.OnButtonRemoved(DevComponents.DotNetBar.BubbleButton)">
<summary>
Called after specified button has been removed.
</summary>
<param name="button">Button that was removed.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBarTab.OnButtonsCollectionClear">
<summary>
Called after all buttons have been removed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.Buttons">
<summary>
Gets the collection of the buttons associated with the tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.Text">
<summary>
Gets or sets the text displayed on the tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.Visible">
<summary>
Gets or sets whether tab is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.DisplayRectangle">
<summary>
Gets the display bounds of the tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.Tag">
<summary>
Gets or sets the object that contains data about the tab. Any Object derived type can be assigned to this property. If this property is being set through the Windows Forms designer, only text can be assigned.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.TagString">
<summary>
Gets or sets the object that contains data about the tab. Any Object derived type can be assigned to this property. If this property is being set through the Windows Forms designer, only text can be assigned.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.BackColor">
<summary>
Gets or sets the background color of the tab when inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.BackColor2">
<summary>
Gets or sets the target gradient background color of the tab when inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.BackColorGradientAngle">
<summary>
Gets or sets the gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.LightBorderColor">
<summary>
Gets or sets the light border color when tab is inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.DarkBorderColor">
<summary>
Gets or sets the dark border color when tab is inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.BorderColor">
<summary>
Gets or sets the border color when tab is inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.TextColor">
<summary>
Gets or sets the text color when tab is inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.Name">
<summary>
Gets or sets name of the tab item that can be used to identify item from the code.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.PredefinedColor">
<summary>
Gets or sets the predefined tab color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.IsSelected">
<summary>
Returns true if tab is selected tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.IsMouseOver">
<summary>
Returns true if mouse is over the tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.DevComponents#DotNetBar#ISimpleTab#TabAlignment">
<summary>
Gets the tab alignment.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.Parent">
<summary>
Returns reference to parent object or null if tab does not have parent.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.Focus">
<summary>
Gets or sets whether tab has design-time focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.DevComponents#UI#ContentManager#IBlock#Bounds">
<summary>
Gets or sets the bounds of the content block.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTab.DevComponents#UI#ContentManager#IBlock#Margin">
<summary>
Gets or sets item margin only used by certain items in certain containers. Provided only for internal DotNetBar use.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BubbleBarTabCollection">
<summary>
Represents collection for BubbleBarTab objects.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBarTabCollection.Add(DevComponents.DotNetBar.BubbleBarTab)">
<summary>
Adds new object to the collection.
</summary>
<param name="tab">Object to add.</param>
<returns>Index of newly added object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBarTabCollection.Insert(System.Int32,DevComponents.DotNetBar.BubbleBarTab)">
<summary>
Inserts new object into the collection.
</summary>
<param name="index">Position of the object.</param>
<param name="value">Object to insert.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBarTabCollection.IndexOf(DevComponents.DotNetBar.BubbleBarTab)">
<summary>
Returns index of the object inside of the collection.
</summary>
<param name="value">Reference to the object.</param>
<returns>Index of the object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBarTabCollection.Contains(DevComponents.DotNetBar.BubbleBarTab)">
<summary>
Returns whether collection contains specified object.
</summary>
<param name="value">Object to look for.</param>
<returns>true if object is part of the collection, otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBarTabCollection.Remove(DevComponents.DotNetBar.BubbleBarTab)">
<summary>
Removes specified object from the collection.
</summary>
<param name="value"></param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBarTabCollection.CopyTo(DevComponents.DotNetBar.BubbleBarTab[],System.Int32)">
<summary>
Copies collection into the specified array.
</summary>
<param name="array">Array to copy collection to.</param>
<param name="index">Starting index.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBarTabCollection.CopyTo(DevComponents.UI.ContentManager.IBlock[])">
<summary>
Copies contained items to the IBlock array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBarTabCollection.CopyTo(DevComponents.DotNetBar.ISimpleTab[])">
<summary>
Copies contained items to the ISimpleTab array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBarTabCollection.GetNextVisibleTab(DevComponents.DotNetBar.BubbleBarTab)">
<summary>
Returns next visible tab from the reference tab.
</summary>
<param name="tabFrom">Reference tab.</param>
<returns>Next visible tab or null if next visible tab cannot be determined.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BubbleBarTabCollection.GetPreviousVisibleTab(DevComponents.DotNetBar.BubbleBarTab)">
<summary>
Returns previous visible tab from the reference tab.
</summary>
<param name="tabFrom">Reference tab.</param>
<returns>Previous visible tab or null if Previous visible tab cannot be determined.</returns>
</member>
<member name="P:DevComponents.DotNetBar.BubbleBarTabCollection.Item(System.Int32)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BubbleButton">
<summary>
Represents a button used on BubbleBar control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButton.#ctor">
<summary>
Creates new instance of button object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButton.SetDisplayRectangle(System.Drawing.Rectangle)">
<summary>
Sets the display rectangle of the button.
</summary>
<param name="r">New display rectangle of the button.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButton.SetMagnifiedDisplayRectangle(System.Drawing.Rectangle)">
<summary>
Sets the magnified display rectangle of the button.
</summary>
<param name="r">New magnified display rectangle.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButton.SetMouseOver(System.Boolean)">
<summary>
Sets whether mouse is over the button.
</summary>
<param name="value">True if mouse is over the button otherwise false.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButton.OnMouseEnter">
<summary>
Raises the MouseEnter event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButton.OnMouseLeave">
<summary>
Raises the MouseLeave event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButton.SetMouseDown(System.Boolean)">
<summary>
Sets whether left mouse button is pressed over this button.
</summary>
<param name="value">True if left mouse button is pressed otherwise false.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButton.SetParentCollection(DevComponents.DotNetBar.BubbleButtonCollection)">
<summary>
Sets the parent collection button belongs to.
</summary>
<param name="value">Parent collection of the item.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButton.GetBubbleBar">
<summary>
Returns the reference to the BubbleBar that contains this button.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButton.InvokeClick(DevComponents.DotNetBar.eEventSource,System.Windows.Forms.MouseButtons)">
<summary>
Invokes button's Click event.
</summary>
<param name="source">Indicates source of the event.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButton.OnClick(DevComponents.DotNetBar.ClickEventArgs)">
<summary>
Raises click event.
</summary>
<param name="e">Default event arguments.</param>
</member>
<member name="E:DevComponents.DotNetBar.BubbleButton.Click">
<summary>
Occurs when user clicks the button.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BubbleButton.MouseEnter">
<summary>
Occurs when mouse enters the button.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.BubbleButton.MouseLeave">
<summary>
Occurs when mouse leaves the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.Shortcut">
<summary>
Gets or sets the shortcut key to expand/collapse splitter.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.TooltipText">
<summary>
Gets or sets the tooltip for the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.ImageIndex">
<summary>
Gets or sets the default image used on the button. Note that for improved appearance of the buttons when enlarged
you should set the ImageIndexLarge to the large version of the image specified here. The image size should be the same size
that is specified by the image size properties on BubbleBar object.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.ImageCached">
<summary>
Gets reference to the internal cached image loaded from the ImageIndex.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.ImageLargeCached">
<summary>
Gets reference to the internal cached image loaded from the ImageIndex.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.Image">
<summary>
Specifies the Button image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.ImageLarge">
<summary>
Specifies enlarged the Button image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.ImageIndexLarge">
<summary>
Gets or sets the image index of the enlarged image for the button. Note that if large image is not specified the
default image will be enlarged which might not result in perfect image appearance.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.ImageList">
<summary>
Property for Property Editor support for ImageIndex selection.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.Enabled">
<summary>
Gets or sets a value indicating whether button is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.DisplayRectangle">
<summary>
Gets the display rectangle occupied by the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.MagnifiedDisplayRectangle">
<summary>
Gets or sets the magnified display rectangle of the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.MouseOver">
<summary>
Gets whether mouse is over the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.MouseDown">
<summary>
Gets whether left mouse button is pressed on the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.Name">
<summary>
Returns name of the button that can be used to identify it from the code.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.Visible">
<summary>
Gets or sets a value indicating whether button is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.Tag">
<summary>
Gets or sets the object that contains data about the tab. Any Object derived type can be assigned to this property. If this property is being set through the Windows Forms designer, only text can be assigned.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.TagString">
<summary>
Gets or sets the object that contains data about the tab. Any Object derived type can be assigned to this property. If this property is being set through the Windows Forms designer, only text can be assigned.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.Parent">
<summary>
Returns the reference to parent tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.Focus">
<summary>
Gets or sets whether button has design-time focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.Cursor">
<summary>
Gets or sets the mouse cursor that is displayed when mouse is over the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.DevComponents#UI#ContentManager#IBlock#Bounds">
<summary>
Gets or sets the bounds of the content block.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButton.DevComponents#UI#ContentManager#IBlock#Margin">
<summary>
Gets or sets item margin only used by certain items in certain containers. Provided only for internal DotNetBar use.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ClickEventArgs">
<summary>
Represents event arguments for Click event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ClickEventArgs.EventSource">
<summary>
Gets the action that caused the event, event source.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BubbleButtonCollection">
<summary>
Represents typed collection of BubbleButton objects.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection.CopyTo(DevComponents.UI.ContentManager.IBlock[])">
<summary>
Copies contained items to the IBlock array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection.#ctor(DevComponents.DotNetBar.BubbleBarTab)">
<summary>
Creates new instance of the collection.
</summary>
<param name="parent">Parent of the collection.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection._Add(DevComponents.DotNetBar.BubbleButton)">
<summary>
Adds new item to the collection but it does not raise internal events.
</summary>
<param name="item">New item to add.</param>
<returns>Index of newly added item.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection._Add(DevComponents.DotNetBar.BubbleButton,System.Int32)">
<summary>
Adds new item to the collection at specified location but it does not raise internal events.
</summary>
<param name="item">New item to add.</param>
<param name="Position">Position to add item to.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection._Clear">
<summary>
Clears the collection but it does not raise internal events.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection.OnSet(System.Int32,System.Object,System.Object)">
<summary>
Performs additional custom processes before setting a value in the CollectionBase instance.
</summary>
<param name="index">The zero-based index at which oldValue can be found.</param>
<param name="oldValue">The value to replace with newValue.</param>
<param name="newValue">The new value of the element at index.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection.OnSetComplete(System.Int32,System.Object,System.Object)">
<summary>
Performs additional custom processes after setting a value in the CollectionBase instance.
</summary>
<param name="index">The zero-based index at which oldValue can be found.</param>
<param name="oldValue">The value to replace with newValue.</param>
<param name="newValue">The new value of the element at index. </param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection.OnInsert(System.Int32,System.Object)">
<summary>
Performs additional custom processes before inserting a new element into the CollectionBase instance.
</summary>
<param name="index">The zero-based index at which to insert value. </param>
<param name="value">The new value of the element at index.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection.OnInsertComplete(System.Int32,System.Object)">
<summary>
Performs additional custom processes after inserting a new element into the CollectionBase instance.
</summary>
<param name="index">The zero-based index at which to insert value.</param>
<param name="value">The new value of the element at index.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection.OnRemove(System.Int32,System.Object)">
<summary>
Performs additional custom processes when removing an element from the CollectionBase 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="M:DevComponents.DotNetBar.BubbleButtonCollection.OnRemoveComplete(System.Int32,System.Object)">
<summary>
Performs additional custom processes after removing an element from the CollectionBase 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="M:DevComponents.DotNetBar.BubbleButtonCollection._Remove(DevComponents.DotNetBar.BubbleButton)">
<summary>
Removes an item without raising internal events.
</summary>
<param name="item">Item to remove.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection.OnClear">
<summary>
Performs additional custom processes when clearing the contents of the CollectionBase instance.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection.CopyTo(System.Collections.ArrayList)">
<summary>
Copies the collection to the ArrayList object.
</summary>
<param name="list">Target ArrayList.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection.Add(DevComponents.DotNetBar.BubbleButton)">
<summary>
Adds new item to the collection.
</summary>
<param name="item">New item to add.</param>
<returns>Index of newly added item.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection.Add(DevComponents.DotNetBar.BubbleButton,System.Int32)">
<summary>
Adds new item to the collection at specified location.
</summary>
<param name="item">New item to add.</param>
<param name="Position">Position to insert item at. Position of -1 will append the item to the end of the collection.</param>
<returns>Index of the newly added item.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection.Insert(System.Int32,DevComponents.DotNetBar.BubbleButton)">
<summary>
Inserts new item at the specified position.
</summary>
<param name="index">Position to insert item at.</param>
<param name="item">Item to insert.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection.IndexOf(DevComponents.DotNetBar.BubbleButton)">
<summary>
Returns index of an item.
</summary>
<param name="value">Item to return index for.</param>
<returns>Item at the specified position.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection.IndexOf(System.String)">
<summary>
Returns index of an item with given the item's name.
</summary>
<param name="name">Name of the item.</param>
<returns>Index of the Item with the specified name or -1 if item is not found.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection.Contains(DevComponents.DotNetBar.BubbleButton)">
<summary>
Returns true if given item is contained by this collection.
</summary>
<param name="value">Item to test.</param>
<returns>True if item is part of this collection otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection.Contains(System.String)">
<summary>
Returns true if item with given name is part of this collection.
</summary>
<param name="name">Item name.</param>
<returns>True if item is part of this collection otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection.Remove(DevComponents.DotNetBar.BubbleButton)">
<summary>
Removes an item from the collection.
</summary>
<param name="item">Item to remove.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection.Remove(System.Int32)">
<summary>
Removes an item from collection at specified index.
</summary>
<param name="index">Index of the item to remove.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection.Remove(System.String)">
<summary>
Removes item from the collection with specified name.
</summary>
<param name="name">Name of the item to remove.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection.AddRange(DevComponents.DotNetBar.BubbleButton[])">
<summary>
Adds array of the items to the collection.
</summary>
<param name="items">Array of items to add.</param>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonCollection.CopyTo(DevComponents.DotNetBar.BubbleButton[],System.Int32)">
<summary>
Copy the collection to the array.
</summary>
<param name="array">Array to copy collection to.</param>
<param name="index">The zero-based relative index in array at which copying begins.</param>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButtonCollection.Parent">
<summary>
Gets the parent of the collection.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButtonCollection.Item(System.Int32)">
<summary>
Accesses items inside of the collection based on the index.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleButtonCollection.Item(System.String)">
<summary>
Accesses items inside of the collection based on the name.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BubbleButtonDisplay">
<summary>
Represents class for displaying BubbleButton objects on canvas.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonDisplay.Paint(DevComponents.DotNetBar.BubbleButtonDisplayInfo)">
<summary>
Paints button on given canvas.
</summary>
<param name="info">Painting information.</param>
</member>
<member name="T:DevComponents.DotNetBar.BubbleButtonDisplayInfo">
<summary>
Represents class that holds information for BubbleButton painting.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.BubbleButtonDisplayInfo.Graphics">
<summary>
Graphics object.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.BubbleButtonDisplayInfo.Button">
<summary>
Button to paint.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.BubbleButtonDisplayInfo.BubbleBar">
<summary>
Reference to BubbleBar control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.BubbleButtonDisplayInfo.Magnified">
<summary>
Gets or sets whether magnified version of the button is painted.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.BubbleButtonDisplayInfo.Alignment">
<summary>
Gets or sets the button alignment inside of the bar.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BubbleButtonLayoutManager">
<summary>
Represents class for default layout of the BubbleButton objects.
</summary>
</member>
<member name="T:DevComponents.UI.ContentManager.BlockLayoutManager">
<summary>
Represents block layout manager responsible for sizing the content blocks.
</summary>
</member>
<member name="M:DevComponents.UI.ContentManager.BlockLayoutManager.Layout(DevComponents.UI.ContentManager.IBlock,System.Drawing.Size)">
<summary>
Resizes the content block and sets it's Bounds property to reflect new size.
</summary>
<param name="block">Content block to resize.</param>
<param name="availableSize">Content size available for the block in the given line.</param>
</member>
<member name="M:DevComponents.UI.ContentManager.BlockLayoutManager.FinalizeLayout(System.Drawing.Rectangle,System.Drawing.Rectangle,System.Collections.ArrayList)">
<summary>
Performs layout finalization
</summary>
<param name="containerBounds"></param>
<param name="blocksBounds"></param>
<param name="lines"></param>
<returns></returns>
</member>
<member name="P:DevComponents.UI.ContentManager.BlockLayoutManager.Graphics">
<summary>
Gets or sets the graphics object used by layout manager.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonLayoutManager.#ctor">
<summary>
Creates new instance of the class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleButtonLayoutManager.Layout(DevComponents.UI.ContentManager.IBlock,System.Drawing.Size)">
<summary>
Resizes the content block and sets it's Bounds property to reflect new size.
</summary>
<param name="block">Content block to resize.</param>
</member>
<member name="T:DevComponents.DotNetBar.BubbleContentManager">
<summary>
Represents class that provides mangification for the BubbleMar control
</summary>
</member>
<member name="T:DevComponents.UI.ContentManager.SerialContentLayoutManager">
<summary>
Represents the serial content layout manager that arranges content blocks in series next to each other.
</summary>
</member>
<member name="T:DevComponents.UI.ContentManager.IContentLayout">
<summary>
Represents interface for block layout.
</summary>
</member>
<member name="M:DevComponents.UI.ContentManager.IContentLayout.Layout(System.Drawing.Rectangle,DevComponents.UI.ContentManager.IBlock[],DevComponents.UI.ContentManager.BlockLayoutManager)">
<summary>
Performs layout of the content block.
</summary>
<param name="containerBounds">Container bounds to layout content blocks in.</param>
<param name="contentBlocks">Content blocks to layout.</param>
<param name="blockLayout">Block layout manager that resizes the content blocks.</param>
<returns>The bounds of the content blocks within the container bounds.</returns>
</member>
<member name="M:DevComponents.UI.ContentManager.SerialContentLayoutManager.#ctor">
<summary>
Creates new instance of the class.
</summary>
</member>
<member name="M:DevComponents.UI.ContentManager.SerialContentLayoutManager.Layout(System.Drawing.Rectangle,DevComponents.UI.ContentManager.IBlock[],DevComponents.UI.ContentManager.BlockLayoutManager)">
<summary>
Performs layout of the content block.
</summary>
<param name="containerBounds">Container bounds to layout content blocks in.</param>
<param name="contentBlocks">Content blocks to layout.</param>
<param name="blockLayout">Block layout manager that resizes the content blocks.</param>
<returns>The bounds of the content blocks within the container bounds.</returns>
</member>
<member name="E:DevComponents.UI.ContentManager.SerialContentLayoutManager.NextPosition">
<summary>
Occurs when X, Y position of next block is calcualted.
</summary>
</member>
<member name="E:DevComponents.UI.ContentManager.SerialContentLayoutManager.BeforeNewBlockLayout">
<summary>
Occurs before new block is layed out.
</summary>
</member>
<member name="P:DevComponents.UI.ContentManager.SerialContentLayoutManager.ReserveLeftSpace">
<summary>
Indicates whether space to the left of center and right aligned blocks is blocked out by stretching the block so it consumes that space.
</summary>
</member>
<member name="P:DevComponents.UI.ContentManager.SerialContentLayoutManager.BlockSpacing">
<summary>
Gets or sets the spacing in pixels between content blocks. Default value is 0.
</summary>
</member>
<member name="P:DevComponents.UI.ContentManager.SerialContentLayoutManager.FitContainerOversize">
<summary>
Gets or sets whether content blocks are forced to fit the container bounds if they
occupy more space than it is available by container. Default value is false.
</summary>
</member>
<member name="P:DevComponents.UI.ContentManager.SerialContentLayoutManager.FitContainer">
<summary>
Gets or sets whether content blocks are resized to fit the container bound if they
occupy less space than it is available by container. Default value is false.
</summary>
</member>
<member name="P:DevComponents.UI.ContentManager.SerialContentLayoutManager.VerticalFitContainerWidth">
<summary>
Gets or sets whether content blocks are resized (Width) to fit container bounds if they
occupy less space than the actual container width. Applies to the Vertical orientation only. Default value is false.
</summary>
</member>
<member name="P:DevComponents.UI.ContentManager.SerialContentLayoutManager.HorizontalFitContainerHeight">
<summary>
Gets or sets whether content blocks are resized (Height) to fit container bounds if they
occupy less space than the actual container height. Applies to the Horizontal orientation only. Default value is false.
</summary>
</member>
<member name="P:DevComponents.UI.ContentManager.SerialContentLayoutManager.ContentOrientation">
<summary>
Gets or sets the content orientation. Default value is Horizontal.
</summary>
</member>
<member name="P:DevComponents.UI.ContentManager.SerialContentLayoutManager.ContentVerticalAlignment">
<summary>
Gets or sets the content vertical alignment. Default value is Middle.
</summary>
</member>
<member name="P:DevComponents.UI.ContentManager.SerialContentLayoutManager.BlockLineAlignment">
<summary>
Gets or sets the block line vertical alignment. Default value is Middle.
</summary>
</member>
<member name="P:DevComponents.UI.ContentManager.SerialContentLayoutManager.ContentAlignment">
<summary>
Gets or sets the content horizontal alignment. Default value is Left.
</summary>
</member>
<member name="P:DevComponents.UI.ContentManager.SerialContentLayoutManager.EvenHeight">
<summary>
Gets or sets whether all content blocks are resized so they have same height which is height of the tallest content block. Default value is false.
</summary>
</member>
<member name="P:DevComponents.UI.ContentManager.SerialContentLayoutManager.OversizeDistribute">
<summary>
Gets or sets whether oversized blocks are resized based on the percentage reduction instead of based on equal pixel distribution. Default value is false.
</summary>
</member>
<member name="P:DevComponents.UI.ContentManager.SerialContentLayoutManager.MultiLine">
<summary>
Gets or sets whether content is wrapped into new line if it exceeds the width of the container.
</summary>
</member>
<member name="P:DevComponents.UI.ContentManager.SerialContentLayoutManager.RightToLeft">
<summary>
Gets or sets whether layout is right-to-left.
</summary>
</member>
<member name="P:DevComponents.UI.ContentManager.SerialContentLayoutManager.EqualItemSize">
<summary>
Gets or sets whether all items are equaly sized based on the size of the largest item in the list.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BubbleContentManager.Layout(System.Drawing.Rectangle,DevComponents.UI.ContentManager.IBlock[],DevComponents.UI.ContentManager.BlockLayoutManager)">
<summary>
Performs layout of the content block.
</summary>
<param name="containerBounds">Container bounds to layout content blocks in.</param>
<param name="contentBlocks">Content blocks to layout.</param>
<param name="blockLayout">Block layout manager that resizes the content blocks.</param>
<returns>The bounds of the content blocks within the container bounds.</returns>
</member>
<member name="P:DevComponents.DotNetBar.BubbleContentManager.BubbleSize">
<summary>
Gets or sets the bubble size for the mouse over item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleContentManager.Factor1">
<summary>
Gets or sets magnification factor for the item that is at the position MouseOverIndex-1
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleContentManager.Factor2">
<summary>
Gets or sets magnification factor for the item that is at the position MouseOverIndex-2
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleContentManager.Factor3">
<summary>
Gets or sets magnification factor for the item that is at the position MouseOverIndex+1
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleContentManager.Factor4">
<summary>
Gets or sets magnification factor for the item that is at the position MouseOverIndex+2
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleContentManager.MouseOverIndex">
<summary>
Gets or sets the index of the item mouse is over.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BubbleContentManager.MouseOverPosition">
<summary>
Gets or sets new X coordinate of the mouse over item when in horizontal layout or Y
coordinate when in vertical layout.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ButtonItem">
<summary>
Summary description for ButtonItem.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PopupItem">
<summary>
PopupItem Class can pop-up it's subitems on either the popup Bar
or menu.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ImageItem">
<summary>
Adds neccessary functions to base item so it supports images properly.
If your item implements images you should derive from this class instead of BaseItem
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ImageItem.#ctor">
<summary>
Create new instance of ImageItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ImageItem.#ctor(System.String)">
<summary>
Create new instance of ImageItem and assigns the item name.
</summary>
<param name="sName">Item name.</param>
</member>
<member name="M:DevComponents.DotNetBar.ImageItem.#ctor(System.String,System.String)">
<summary>
Create new instance of ImageItem and assigns the item name and text.
</summary>
<param name="sName">Item name.</param>
<param name="ItemText">Item text.</param>
</member>
<member name="M:DevComponents.DotNetBar.ImageItem.OnSubItemImageSizeChanged(DevComponents.DotNetBar.BaseItem)">
<summary>
Must be called by any sub item that implements the image when image has changed
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ImageItem.OnImageChanged">
<summary>
Called after image on an item has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ImageItem.RefreshImageSize">
<summary>
Refreshes internal image size structure.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ImageItem.OnAfterItemRemoved(DevComponents.DotNetBar.BaseItem,System.Int32)">
<summary>
Occurs after an item has been removed.
</summary>
<param name="item">Item being removed.</param>
</member>
<member name="M:DevComponents.DotNetBar.ImageItem.RefreshSubItemImageSize">
<summary>
Refreshes internal image size structure.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ImageItem.SubItemsImageSize">
<summary>
When parent items does recalc size for its sub-items it should query
image size and store biggest image size into this property.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.IDesignTimeProvider">
<summary>
Provides design-time support for DotNetBar items.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.#ctor">
<summary>
Creates new instance of PopupItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.#ctor(System.String)">
<summary>
Creates new instance of PopupItem and assigns the name to it.
</summary>
<param name="sName">Item name</param>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.#ctor(System.String,System.String)">
<summary>
Creates new instance of PopupItem and assigns the name and text to it.
</summary>
<param name="sName">Item name.</param>
<param name="ItemText">Item text.</param>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the PopupItem specific properties to new instance of the item.
</summary>
<param name="copy">New ButtonItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.InternalMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
Occurs when the mouse pointer is moved over the item. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.InternalMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
Occurs when the mouse pointer is over the item and a mouse button is released. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.PopupMenu(System.Drawing.Point)">
<summary>
Displays the sub-items on popup menu.
</summary>
<param name="p">Popup location.</param>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.OnPopupOpen(DevComponents.DotNetBar.PopupOpenEventArgs)">
<summary>
Invokes PopupOpen event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.PopupMenu(System.Int32,System.Int32)">
<summary>
Displays the sub-items on popup menu.
</summary>
<param name="x">Horizontal coordinate in pixels of the upper left corner of a popup.</param>
<param name="y">Vertical coordinate in pixels of the upper left corner of a popup.</param>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.PopupMenu(System.Int32,System.Int32,System.Boolean)">
<summary>
Displays the sub-items on popup menu.
</summary>
<param name="x">Horizontal coordinate in pixels of the upper left corner of a popup.</param>
<param name="y">Vertical coordinate in pixels of the upper left corner of a popup.</param>
<param name="verifyScreenPosition">Indicates whether screen position of the menu is verified so the menu always appears on the screen.</param>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.OnPopupShowing(System.EventArgs)">
<summary>
Raises PopupShowing event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.PopupBar(System.Drawing.Point)">
<summary>
Displays the sub-items on popup toolbar.
</summary>
<param name="p">Popup location.</param>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.PopupBar(System.Int32,System.Int32)">
<summary>
Displays the sub-items on popup toolbar.
</summary>
<param name="x">Horizontal coordinate in pixels of the upper left corner of a popup.</param>
<param name="y">Vertical coordinate in pixels of the upper left corner of a popup.</param>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.PopupContainer(System.Drawing.Point)">
<summary>
Displays popup container.
</summary>
<param name="p">Popup location.</param>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.CreatePopupContainer(System.Boolean)">
<summary>
Creates the popup container control which is a parent/holder control for the controls you want to display on the popup.
This method can be used if you do not wish to handle the PopupContainerLoad to add controls to the popup container.
After calling this method you can access PopupContainerControl property to add your controls to be displayed on the popup.
</summary>
<param name="fireLoadEvents">Indicates whether PopupContainerLoad events are fired.</param>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.PopupContainer(System.Int32,System.Int32)">
<summary>
Displays popup container.
</summary>
<param name="x">Horizontal coordinate in pixels of the upper left corner of a popup.</param>
<param name="y">Vertical coordinate in pixels of the upper left corner of a popup.</param>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.Popup(System.Drawing.Point)">
<summary>
Displays the sub-items on popup specified by PopupType.
</summary>
<param name="p">Popup location.</param>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.Popup(System.Int32,System.Int32)">
<summary>
Displays the sub-items on popup specified by PopupType.
</summary>
<param name="x">Horizontal coordinate in pixels of the upper left corner of a popup.</param>
<param name="y">Vertical coordinate in pixels of the upper left corner of a popup.</param>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.OnPopupClose(System.EventArgs)">
<summary>
Raises PopupClose event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.QueryPopupClosing(DevComponents.DotNetBar.eEventSource)">
<summary>
Queries whether popup can be closed.
</summary>
<param name="eventSource">Source of closing request.</param>
<returns>true if popup can be closed otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.ClosePopup">
<summary>
Closes the currently open popup.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.OnPopupFinalized(System.EventArgs)">
<summary>
Raises PopupFinalized event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.ShouldSerializePopupOffset">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.ResetPopupOffset">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PopupItem.SetSourceControl(System.Windows.Forms.Control)">
<summary>
Sets the SourceControl for popup menu or toolbar.
</summary>
<param name="ctrl">Control that popup menu or toolbar was invoked for.</param>
</member>
<member name="E:DevComponents.DotNetBar.PopupItem.PopupContainerLoad">
<summary>
Occurs when popup container is loading. Use this event to assign control to the popup container. If you want to use same control
that you added to the popup container after popup is closed you must handle the PopupContainerUnload event and remove the control
from the popup container so it is not disposed with the container.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.PopupItem.PopupContainerUnload">
<summary>
Occurs when popup container is unloading. Use this event to save any state associated with the control that was contained by the container or
to remove the control from the container so it is not disposed with container.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.PopupItem.PopupOpen">
<summary>
Occurs when popup item is about to open.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.PopupItem.PopupClose">
<summary>
Occurs while popup item is closing.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.PopupItem.QueryPopupClose">
<summary>
Occurs while popup item is closing.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.PopupItem.PopupFinalized">
<summary>
Occurs after popup item has been closed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.PopupItem.PopupShowing">
<summary>
Occurs just before popup window is shown.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItem.PopupSize">
<summary>
Gets the size of the popup before it is displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItem.VerifyPopupScreenPosition">
<summary>
Gets or sets whether popup on-screen position is verified and popup location adjusted so it does not cross boundaries of the screen.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItem.PopupType">
<summary>
Indicates whether sub-items are shown on popup Bar or popup menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItem.PopupFont">
<summary>
Indicates the font that will be used on the popup window.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItem.PopUpSideBar">
<summary>
Indicates side bar for pop-up window.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItem.PopupSide">
<summary>
Gets or sets the location of popup in relation to it's parent.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItem.PopupOffset">
<summary>
Gets or sets the popup offset.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItem.PopupLocation">
<summary>
Gets or sets the popup location.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItem.PersonalizedMenus">
<summary>
Indicates when menu items are displayed when MenuVisiblity is set to VisibleIfRecentlyUsed and RecentlyUsed is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItem.PopupAnimation">
<summary>
Indicates Animation type for Popups.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItem.PopupWidth">
<summary>
Specifies the inital width for the Bar that hosts pop-up items. Applies to PopupType.Toolbar only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItem.SourceControl">
<summary>
Gets the control that is displaying the context menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PopupItem.PopupContainerControl">
<summary>
Gets the reference to the internal host PopupContainerControl control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.IPersonalizedMenuItem">
<summary>
Provides support for personalized menu items.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.#ctor">
<summary>
Creates new instance of ButtonItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.#ctor(System.String)">
<summary>
Creates new instance of ButtonItem and assigns the name to it.
</summary>
<param name="sItemName">Item name.</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.#ctor(System.String,System.String)">
<summary>
Creates new instance of ButtonItem and assigns the name and text to it.
</summary>
<param name="sItemName">Item name.</param>
<param name="ItemText">item text.</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.InternalCopyToItem(DevComponents.DotNetBar.ButtonItem)">
<summary>
Copies the ButtonItem specific properties to new instance of the item.
</summary>
<param name="copy">New ButtonItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the ButtonItem specific properties to new instance of the item.
</summary>
<param name="copy">New ButtonItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.Serialize(DevComponents.DotNetBar.ItemSerializationContext)">
<summary>
Overloaded. Serializes the item and all sub-items into the XmlElement.
</summary>
<param name="ThisItem">XmlElement to serialize the item to.</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.Deserialize(DevComponents.DotNetBar.ItemSerializationContext)">
<summary>
Overloaded. Deserializes the Item from the XmlElement.
</summary>
<param name="ItemXmlSource">Source XmlElement.</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.OnNotificationMarkTextChanged(System.String,System.String)">
<summary>
Called when NotificationMarkText property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.OnNotificationMarkPositionChanged(DevComponents.DotNetBar.eNotificationMarkPosition,DevComponents.DotNetBar.eNotificationMarkPosition)">
<summary>
Called when NotificationMarkPosition property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.OnNotificationMarkSizeChanged(System.Int32,System.Int32)">
<summary>
Called when NotificationMarkSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.ShouldSerializeNotificationMarkColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.ResetNotificationMarkColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.OnNotificationMarkOffsetChanged(System.Drawing.Point,System.Drawing.Point)">
<summary>
Called when NotificationMarkOffset property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.ShouldSerializeNotificationMarkOffset">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.ResetNotificationMarkOffset">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.ShouldSerializeSymbolColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.ResetSymbolColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.OnSymbolChanged(System.String,System.String)">
<summary>
Called when Symbol property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.OnSymbolSetChanged(DevComponents.DotNetBar.eSymbolSet,DevComponents.DotNetBar.eSymbolSet)">
<summary>
Called when SymbolSet property value changes.
</summary>
<param name="oldValue">Indciates old value</param>
<param name="newValue">Indicates new value</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.OnSymbolSizeChanged(System.Single,System.Single)">
<summary>
Called when SymbolSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.OnImageChanged">
<summary>
Called when button image has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.OnContainerChanged(System.Object)">
<summary>
Called when container of the item has changed.
</summary>
<param name="objOldContainer">Previous item container.</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Overriden. Draws the item.
</summary>
<param name="g">Item paint arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.ResetImageFixedSize">
<summary>
Resets ImageFixedSize property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.ShouldSerializeImageFixedSize">
<summary>
Gets whether ImageFixedSize property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.ShouldSerializeFixedSize">
<summary>
Gets whether FixedSize property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.ResetFixedSize">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.RecalcSize">
<summary>
Overridden. Recalculates the size of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.OnExternalSizeChange">
<summary>
Overloaded. Called when size of the item is changed externally.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.Pulse">
<summary>
Starts the button pulse effect which alternates slowly between the mouse over and the default state. The pulse effect
continues indefinitely until it is stopped by call to StopPulse method.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.Pulse(System.Int32)">
<summary>
Starts the button pulse effect which alternates slowly between the mouse over and the default state. Pulse effect
will alternate between the pulse state for the number of times specified by the pulseBeatCount parameter.
</summary>
<param name="pulseBeatCount">Specifies the number of times button alternates between pulse states. 0 indicates indefinite pulse</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.StopPulse">
<summary>
Stops the button Pulse effect.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.OnEnabledChanged">
<summary>
Indicates whether the item enabled property has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.ButtonMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Provides internal implementation for ButtonItem mouse down events.
</summary>
<param name="objArg">Mouse event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.InternalDoubleClick(System.Windows.Forms.MouseButtons,System.Drawing.Point)">
<summary>
Occurs when the item is double clicked. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.GetFont(DevComponents.DotNetBar.ItemPaintArgs,System.Boolean)">
<summary>
Returns the Font object to be used for drawing the item text.
</summary>
<returns>Font object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.OnCheckedChanged">
<summary>
Called after Checked property has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.OnVisibleChanged(System.Boolean)">
<summary>
Called when Visibility of the items has changed.
</summary>
<param name="bVisible">New Visible state.</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.SetChecked(System.Boolean)">
<summary>
Sets Checked property without firing any events or performing any built-in logic.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.InvokeCheckedChanged">
<summary>
Fires CheckedChanged event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.InvokeOptionGroupChanging(DevComponents.DotNetBar.OptionGroupChangingEventArgs)">
<summary>
Fires OptionGroupChanging event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.OnClick">
<summary>
Occurs just before Click event is fired.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.GetTooltipShortcutString">
<summary>
Returns the shortcut string that is displayed on tooltip.
</summary>
<returns></returns>
</member>
<member name="F:DevComponents.DotNetBar.ButtonItem._Shape">
<summary>
Gets or sets the current font for the button.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.AddSubItems(System.String[])">
<summary>
Creates new ButtonItem with text set to corresponding item from string array and adds it to SubItems collection.
</summary>
<param name="p"></param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItem.AddSubItems(System.String[],System.EventHandler)">
<summary>
Creates new ButtonItem with text set to corresponding item from string array and adds it to SubItems collection.
</summary>
<param name="clickHandler">Click event handler assigned to each item</param>
</member>
<member name="E:DevComponents.DotNetBar.ButtonItem.CheckedChanged">
<summary>
Occurs when Checked property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ButtonItem.OptionGroupChanging">
<summary>
Occurs before an item in option group is checked and provides opportunity to cancel that.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.AutoDisposeImages">
<summary>
Indicates whether images assigned to the button are disposed when button is disposed. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.NotificationMarkText">
<summary>
Specifies maximum of 2 character text displayed inside of the notification mark on top of the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.NotificationMarkPosition">
<summary>
Indicates the position of the notification marker within the bounds of the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.NotificationMarkSize">
<summary>
Specifies diameter of notification mark. When set to 0 system default value is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.NotificationMarkColor">
<summary>
Gets or sets background color of the notification mark.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.NotificationMarkOffset">
<summary>
Specifies the offset for the notification mark relative to its position.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.ImagePosition">
<summary>
Gets/Sets the image position inside the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.CustomColorName">
<summary>
Gets or sets the custom color name. Name specified here must be represented by the corresponding object with the same name that is part
of the Office2007ColorTable.RibbonTabItemColors collection. See documentation for Office2007ColorTable.RibbonTabItemColors for more information.
If color table with specified name cannot be found default color will be used. Valid settings for this property override any
setting to the Color property.
Applies to items with Office 2007 style only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.ColorTable">
<summary>
Gets or sets the predefined color of the button. Color specified applies to buttons with Office 2007 style only. It does not have
any effect on other styles. Default value is eButtonColor.Default
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.ButtonStyle">
<summary>
Gets/Sets the button style which controls the appearance of the button elements. Changing the property can display image only, text only or image and text on the button at all times.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.AutoExpandOnClick">
<summary>
Indicates whether the item will auto-expand when clicked.
When item is on top level bar and not on menu and contains sub-items, sub-items will be shown only if user
click the expand part of the button. Setting this property to true will expand the button and show sub-items when user
clicks anywhere inside of the button. Default value is false which indicates that button is expanded only
if its expand part is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.SymbolColor">
<summary>
Gets or sets the color of the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.SymbolRealized">
<summary>
Gets the realized symbol string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.Symbol">
<summary>
Indicates the symbol displayed on face of the button instead of the image. Setting the symbol overrides the image setting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.SymbolSet">
<summary>
Gets or sets the symbol set used to represent the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.SymbolSize">
<summary>
Indicates the size of the symbol in points.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.Icon">
<summary>
Specifies the Button icon. Icons support multiple image sizes and alpha blending.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.ImageAlt">
<summary>
Specifies the Button image which is used when button background is black or very dark. Image is used when button text is white. This is provided for Metro style applications.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.Image">
<summary>
Specifies the Button image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.ImageSmall">
<summary>
Specifies the small Button image used by Ribbon control when small image variant is needed because of the automatic button resizing or
because the button is on the Quick Access Toolbar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.ImageListSizeSelection">
<summary>
Gets or sets the image size that is used by the button when multiple ImageList controls are used as source for button image.
By default ImageList assigned to Images property of parent control is used. Using this property you can selection ImagesMedium or
ImagesLarge ImageList to be used as source for image for this button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.UseSmallImage">
<summary>
Gets or sets whether button uses the ImageSmall as source of the image displayed on the button if ImageSmall is set to valid image. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.ImageIndex">
<summary>
Specifies the index of the image for the button if ImageList is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.HoverImage">
<summary>
Specifies the image for the button when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.HoverImageIndex">
<summary>
Specifies the index of the image for the button when mouse is over the item when ImageList is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.PressedImage">
<summary>
Specifies the image for the button when mouse left button is pressed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.PressedImageIndex">
<summary>
Specifies the index of the image for the button when mouse left button is pressed and ImageList is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.DisabledImage">
<summary>
Specifies the image for the button when items Enabled property is set to false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.DisabledImageIndex">
<summary>
Specifies the index of the image for the button when items Enabled property is set to false and ImageList is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.ImageFixedSize">
<summary>
Sets fixed size of the image. Image will be scaled and painted it size specified.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.FixedSize">
<summary>
Gets or sets the fixed size of the button. Both width and height must be set to value greater than 0 in order for button to use fixed size.
Setting both width and height to 0 (default value) indicates that button will be sized based on content.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.IsFadeEnabled">
<summary>
Gets whether fade effect is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.IsPulseEnabed">
<summary>
Gets whether Pulse function is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.IsPulsing">
<summary>
Gets whether the button is currently pulsing, alternating slowly between the mouse over and default state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.StopPulseOnMouseOver">
<summary>
Gets or sets whether pulse effect started with StartPulse method stops automatically when mouse moves over the button. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.PulseSpeed">
<summary>
Gets or sets the pulse speed. The value must be greater than 0 and less than 128. Higher values indicate faster pulse. Default value is 12.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.AutoExpandMenuItem">
<summary>
Gets or sets whether button auto-expands on mouse hover when button is used as menu-item and displayed on menu. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.ShouldAutoExpandOnClick">
<summary>
Indicates whether button should popup when clicked automatically.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.AutoCheckOnClick">
<summary>
Gets or sets whether Checked property is automatically inverted, button checked/unchecked, when button is clicked. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.Checked">
<summary>
Gets or set a value indicating whether the button is in the checked state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.AlternateShortCutText">
<summary>
Gets or set the alternative shortcut text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.DrawShortcutText">
<summary>
Returns shortcut text if any that needs to be displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.ImageDrawRect">
<summary>
Gets or sets the image bounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.SubItemsRect">
<summary>
Gets or sets sub items bounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.TextDrawRect">
<summary>
Gets or sets text bounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.OptionGroup">
<summary>
Gets or set the Group item belongs to. The groups allows a user to choose from mutually exclusive options within the group. The choice is reflected by Checked property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.ForeColor">
<summary>
Gets or sets the text color of the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.HotForeColor">
<summary>
Gets or sets the text color of the button when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.HotFontUnderline">
<summary>
Gets or sets whether the font used to draw the item text is underlined when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.HotFontBold">
<summary>
Gets or sets whether the font used to draw the item text is bold when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.FontBold">
<summary>
Gets or sets whether the font used to draw the item text is bold.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.FontItalic">
<summary>
Gets or sets whether the font used to draw the item text is italic.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.FontUnderline">
<summary>
Gets or sets whether the font used to draw the item text is underlined.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.SubItemsExpandWidth">
<summary>
Gets or sets the width of the expand part of the button item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.SubItems">
<summary>
Returns the collection of sub items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.SplitButton">
<summary>
Gets or sets whether button appears as split button. Split button appearance divides button into two parts. Image which raises the click event
when clicked and text and expand sign which shows button sub items on popup menu when clicked. Button must have both text and image visible (ButtonStyle property) in order to appear as a full split button.
Use AutoExpandOnClick=true if you want to make complete surface of the button display popup when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.Text">
<summary>
Gets or sets the text associated with this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.ImagePaddingHorizontal">
<summary>
Gets or sets the amount of padding added horizontally to the button images when not on menus. Default value is 10 pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.ImagePaddingVertical">
<summary>
Gets or sets the amount of padding added vertically to the button images when not on menus. Default value is 6 pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.Shape">
<summary>
Gets or sets an shape descriptor for the button which describes the shape of the button. Default value is null
which indicates that system default shape is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.MenuVisibility">
<summary>
Indicates item's visibility when on pop-up menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.RecentlyUsed">
<summary>
Indicates whether item was recently used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.IsMouseOver">
<summary>
Indicates whether mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.IsMouseOverExpand">
<summary>
Indicates whether mouse is over the expand part of the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.IsMouseDown">
<summary>
Indicates whether mouse is pressed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.HotTrackingStyle">
<summary>
Indicates the way item is painting the picture when mouse is over it. Setting the value to Color will render the image in gray-scale when mouse is not over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.RibbonWordWrap">
<summary>
Gets or sets whether the button text is automatically wrapped over multiple lines when button is used on RibbonBar control. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.EnableImageAnimation">
<summary>
Gets or sets whether image animation is enabled
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.IsMarkupSupported">
<summary>
Gets whether item supports text markup. Default is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonItem.EnableMarkup">
<summary>
Gets or sets whether text-markup support is enabled for items Text property. Default value is true.
Set this property to false to display HTML or other markup in the item instead of it being parsed as text-markup.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ButtonItem.MarkupLinkClick">
<summary>
Occurs when text markup link is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ButtonItem.ButtonItemAccessibleObject">
<summary>
Represents accessible interface for ButtonItem object.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ButtonItem.ButtonItemPartAccessibleObject">
<summary>
Represents accessible interface for ButtonItem object.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.OptionGroupChangingEventHandler">
<summary>
Delegate for OptionGroupChanging event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.OptionGroupChangingEventArgs">
<summary>
Represents event arguments for OptionGroupChanging event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.OptionGroupChangingEventArgs.Cancel">
<summary>
Set to true to cancel the checking on NewChecked button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.OptionGroupChangingEventArgs.NewChecked">
<summary>
Button that will become checked if operation is not canceled.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.OptionGroupChangingEventArgs.OldChecked">
<summary>
Button that is currently checked and which will be unchecked if operation is not canceled.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.OptionGroupChangingEventArgs.#ctor(DevComponents.DotNetBar.BaseItem,DevComponents.DotNetBar.BaseItem)">
<summary>
Default constructor.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SideBarImage">
<summary>
Stores all information for side bar images that are used by Bar or Popup menu.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SideBarImage.Picture">
<summary>
Gets or sets the side bar image.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SideBarImage.BackColor">
<summary>
Gets or sets the side bar back color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SideBarImage.GradientColor1">
<summary>
Gets or sets the gradient staring color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SideBarImage.GradientColor2">
<summary>
Gets or sets the gradient ending color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SideBarImage.GradientAngle">
<summary>
Gets or sets the gradient angle.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SideBarImage.Alignment">
<summary>
Gets or sets the gradient staring color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SideBarImage.StretchPicture">
<summary>
Gets or sets whether image is stretched so it fills the side bar or not if image is smaller than current side bar size.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ButtonItemLayout">
<summary>
Summary description for ButtonItemLayout.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItemLayout.Arrange(DevComponents.DotNetBar.ButtonItem)">
<summary>
Arranges the button inner parts when button size has changed externally.
</summary>
<param name="button">Button to arrange inner parts for.</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonX.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonX.CreateAccessibilityInstance">
<summary>
Creates new accessibility instance.
</summary>
<returns>Reference to AccessibleObject.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ButtonX.Pulse">
<summary>
Starts the button pulse effect which alternates slowly between the mouse over and the default state. The pulse effect
continues indefinitely until it is stopped by call to StopPulse method.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonX.Pulse(System.Int32)">
<summary>
Starts the button pulse effect which alternates slowly between the mouse over and the default state. Pulse effect
will alternate between the pulse state for the number of times specified by the pulseBeatCount parameter.
</summary>
<param name="pulseBeatCount">Specifies the number of times button alternates between pulse states. 0 indicates indefinite pulse</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonX.StopPulse">
<summary>
Stops the button Pulse effect.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonX.ShouldSerializeImageFixedSize">
<summary>
Gets whether ImageFixedSize property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonX.ShouldSerializeSymbolColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonX.ResetSymbolColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonX.ShouldSerializeTextColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonX.ResetTextColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonX.NotifyDefault(System.Boolean)">
<summary>
Notifies a control that it is the default button so that its appearance and behavior is adjusted accordingly.
</summary>
<param name="value">true if the control should behave as a default button; otherwise false.</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonX.PerformClick">
<summary>
Generates a Click event for the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonX.Popup(System.Drawing.Point)">
<summary>
Displays the sub-items on popup specified by PopupType.
</summary>
<param name="p">Popup location.</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonX.Popup(System.Int32,System.Int32)">
<summary>
Displays the sub-items on popup specified by PopupType.
</summary>
<param name="x">Horizontal coordinate in pixels of the upper left corner of a popup.</param>
<param name="y">Vertical coordinate in pixels of the upper left corner of a popup.</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonX.OnCommandChanged">
<summary>
Called when Command property value changes.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ButtonX.CheckedChanged">
<summary>
Occurs when Checked property has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.EnableMarkup">
<summary>
Gets or sets whether text-markup support is enabled for controls Text property. Default value is true.
Set this property to false to display HTML or other markup in the control instead of it being parsed as text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.IsPulsing">
<summary>
Gets whether the button is currently pulsing, alternating slowly between the mouse over and default state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.StopPulseOnMouseOver">
<summary>
Gets or sets whether pulse effect started with StartPulse method stops automatically when mouse moves over the button. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.PulseSpeed">
<summary>
Gets or sets the pulse speed. The value must be greater than 0 and less than 128. Higher values indicate faster pulse. Default value is 12.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.ImageFixedSize">
<summary>
Sets fixed size of the image. Image will be scaled and painted it size specified.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.TextAlignment">
<summary>
Gets or sets the text alignment. Applies only when button text is not composed using text markup. Default value is center.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.CallBasePaintBackground">
<summary>
Gets or sets whether during painting OnPaintBackground on base control is called when BackColor=Transparent.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.FocusOnLeftMouseButtonDown">
<summary>
Gets or sets whether button is focused when pressed using left mouse button. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.ExecuteCommandOnClick">
<summary>
Gets whether command is executed when button is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.SymbolColor">
<summary>
Gets or sets the color of the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.Symbol">
<summary>
Indicates the symbol displayed on face of the button instead of the image. Setting the symbol overrides the image setting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.SymbolSet">
<summary>
Gets or sets the symbol set used to represent the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.SymbolSize">
<summary>
Indicates the size of the symbol in points.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.ImageAlt">
<summary>
Specifies the Button image which is used when button background is black or very dark. Image is used when button text is white. This is provided for Metro style applications.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.Image">
<summary>
Specifies the Button image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.HoverImage">
<summary>
Specifies the image for the button when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.DisabledImage">
<summary>
Specifies the image for the button when items Enabled property is set to false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.PressedImage">
<summary>
Specifies the image for the button when mouse left button is pressed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.PopupSide">
<summary>
Gets or sets the location of popup in relation to it's parent.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.SubItems">
<summary>
Returns the collection of sub items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.SplitButton">
<summary>
Gets or sets whether button appears as split button. Split button appearance divides button into two parts. Image which raises the click event
when clicked and text and expand sign which shows button sub items on popup menu when clicked. Button must have both text and image visible (ButtonStyle property) in order to appear as a full split button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.ShowSubItems">
<summary>
Gets or sets whether button displays the expand part that indicates that button has popup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.ImagePosition">
<summary>
Gets/Sets the image position inside the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.FadeEffect">
<summary>
Gets or sets whether mouse over fade effect is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.HotTrackingStyle">
<summary>
Indicates the way button is rendering the mouse over state. Setting the value to Color will render the image in gray-scale when mouse is not over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.SubItemsExpandWidth">
<summary>
Gets or sets the width of the expand part of the button item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.Text">
<summary>
Gets or sets the text associated with this button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.Tooltip">
<summary>
Gets/Sets informational text (tooltip) for the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.EnableMnemonicWithAltKeyOnly">
<summary>
Gets or sets whether mnemonic character assigned to button is processed only if Alt key is pressed. Default value is false which indicate that Alt key is not required.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.ButtonX.UseMnemonic" -->
<member name="P:DevComponents.DotNetBar.ButtonX.AutoExpandOnClick">
<summary>
Indicates whether the button will auto-expand when clicked.
When button contains sub-items, sub-items will be shown only if user
click the expand part of the button. Setting this property to true will expand the button and show sub-items when user
clicks anywhere inside of the button. Default value is false which indicates that button is expanded only
if its expand part is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.AutoCheckOnClick">
<summary>
Gets or sets whether Checked property is automatically inverted, button checked/unchecked, when button is clicked. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.Checked">
<summary>
Gets or set a value indicating whether the button is in the checked state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.Shape">
<summary>
Gets or sets an shape descriptor for the button which describes the shape of the button. Default value is null
which indicates that system default shape is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.FocusCuesEnabled">
<summary>
Gets or sets whether control displays focus cues when focused.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.CustomColorName">
<summary>
Gets or sets the custom color name. Name specified here must be represented by the corresponding object with the same name that is part
of the Office2007ColorTable.ButtonItemColors collection. See documentation for Office2007ColorTable.ButtonItemColors for more information.
If color table with specified name cannot be found default color will be used. Valid settings for this property override any
setting to the Color property.
Applies to items with Office 2007 style only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.ColorTable">
<summary>
Gets or sets the predefined color of the button. Color specified applies to buttons with Office 2007 style only. It does not have
any effect on other styles. Default value is eButtonColor.Default
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.AutoSize">
<summary>
Gets or sets a value indicating whether the control is automatically resized to display its entire contents. You can set MaximumSize.Width property to set the maximum width used by the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.AutoSizeMode">
<summary>
Gets or sets the mode by which the Button automatically resizes itself.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.ImageTextSpacing">
<summary>
Gets or sets the amount of spacing between button image if specified and text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.TextColor">
<summary>
Gets or sets the text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.DialogResult">
<summary>
Gets or sets the value returned to the parent form when the button is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.Expanded">
<summary>
Gets or sets a value indicating whether the button is expanded (displays drop-down) or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.Shortcuts">
<summary>
Gets or sets the collection of shortcut keys associated with the button. When shortcut key is pressed button Click event is raised.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.Command">
<summary>
Gets or sets the command assigned to the item. Default value is null.
<remarks>Note that if this property is set to null Enabled property will be set to false automatically to disable the item.</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ButtonX.CommandParameter">
<summary>
Gets or sets user defined data value that can be passed to the command when it is executed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ButtonXAccessibleObject">
<summary>
Represents class for Accessibility support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonXAccessibleObject.#ctor(DevComponents.DotNetBar.ButtonX)">
<summary>
Creates new instance of the object and initializes it with owner control.
</summary>
<param name="owner">Reference to owner control.</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonXAccessibleObject.GetChildCount">
<summary>
Returns number of child objects.
</summary>
<returns>Total number of child objects.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ButtonXAccessibleObject.GetChild(System.Int32)">
<summary>
Returns reference to child object given the index.
</summary>
<param name="iIndex">0 based index of child object.</param>
<returns>Reference to child object.</returns>
</member>
<member name="P:DevComponents.DotNetBar.ButtonXAccessibleObject.State">
<summary>
Returns current accessible state.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ThemedButtonXPainter">
<summary>
Summary description for ThemedButtonItemPainter.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.CheckBoxItem">
<summary>
Represents the Check-box item. Use a CheckBox to give the user an option, such as true/false or yes/no.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CheckBoxItem.#ctor">
<summary>
Creates new instance of CheckBoxItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CheckBoxItem.#ctor(System.String)">
<summary>
Creates new instance of CheckBoxItem and assigns the name to it.
</summary>
<param name="sItemName">Item name.</param>
</member>
<member name="M:DevComponents.DotNetBar.CheckBoxItem.#ctor(System.String,System.String)">
<summary>
Creates new instance of CheckBoxItem and assigns the name and text to it.
</summary>
<param name="sItemName">Item name.</param>
<param name="ItemText">item text.</param>
</member>
<member name="M:DevComponents.DotNetBar.CheckBoxItem.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CheckBoxItem.InternalCopyToItem(DevComponents.DotNetBar.CheckBoxItem)">
<summary>
Copies the CheckBoxItem specific properties to new instance of the item.
</summary>
<param name="copy">New CheckBoxItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.CheckBoxItem.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the CheckBoxItem specific properties to new instance of the item.
</summary>
<param name="copy">New CheckBoxItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.CheckBoxItem.RaiseClick(DevComponents.DotNetBar.eEventSource)">
<summary>
Raises the click event and provide the information about the source of the event.
</summary>
<param name="source"></param>
</member>
<member name="M:DevComponents.DotNetBar.CheckBoxItem.SetChecked(System.Boolean,DevComponents.DotNetBar.eEventSource)">
<summary>
Sets the Checked property of the item, raises appropriate events and provides the information about the source of the change.
</summary>
<param name="newValue">New value for Checked property</param>
<param name="source">Source of the change.</param>
</member>
<member name="M:DevComponents.DotNetBar.CheckBoxItem.OnCommandChanged">
<summary>
Called when Command property value changes.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CheckBoxItem.SetChecked(System.Windows.Forms.CheckState,DevComponents.DotNetBar.eEventSource)">
<summary>
Sets the Checked property of the item, raises appropriate events and provides the information about the source of the change.
</summary>
<param name="newValue">New value for Checked property</param>
<param name="source">Source of the change.</param>
</member>
<member name="M:DevComponents.DotNetBar.CheckBoxItem.OnCheckStateChanged(System.EventArgs)">
<summary>
Raises CheckState changed event.
</summary>
<param name="eventArgs">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.CheckBoxItem.OnCheckedBindableChanged(System.EventArgs)">
<summary>
Raises CheckedBindableChanged changed event.
</summary>
<param name="eventArgs">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.CheckBoxItem.OnCheckedChanged(DevComponents.DotNetBar.eEventSource)">
<summary>
Called after Checked property has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CheckBoxItem.InvokeCheckedChanging(DevComponents.DotNetBar.CheckBoxChangeEventArgs)">
<summary>
Raises the CheckedChanging event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CheckBoxItem.InvokeCheckedChanged(DevComponents.DotNetBar.CheckBoxChangeEventArgs)">
<summary>
Raises the CheckedChanged event.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.CheckBoxItem.CheckedChanging">
<summary>
Occurs before Checked property is changed and allows you to cancel the change.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.CheckBoxItem.CheckedChanged">
<summary>
Occurs after Checked property is changed. Action cannot be cancelled.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.CheckBoxItem.CheckStateChanged">
<summary>
Occurs when CheckState property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.CheckBoxItem.CheckedBindableChanged">
<summary>
Occurs when CheckedBindable property has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CheckBoxItem.AutoCheck">
<summary>
Gets or set whether the Checked values and the item appearance are automatically changed when the Check-Box is clicked. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CheckBoxItem.CheckSignSize">
<summary>
Gets or sets the size of the check or radio sign. Default value is 13x13. Minimum value is 6x6.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CheckBoxItem.Text">
<summary>
Gets or sets the text associated with this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CheckBoxItem.IsMarkupSupported">
<summary>
Gets whether item supports text markup. Default is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CheckBoxItem.EnableMarkup">
<summary>
Gets or sets whether text-markup support is enabled for items Text property. Default value is true.
Set this property to false to display HTML or other markup in the item instead of it being parsed as text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CheckBoxItem.TextVisible">
<summary>
Gets or sets whether text assigned to the check box is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CheckBoxItem.TextColor">
<summary>
Gets or sets the text color. Default value is Color.Empty which indicates that default color is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CheckBoxItem.CheckBoxStyle">
<summary>
Gets or sets the appearance style of the item. Default value is CheckBox. Item can also assume the style of radio-button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CheckBoxItem.CheckBoxPosition">
<summary>
Gets or sets the check box position relative to the text. Default value is Left.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CheckBoxItem.IsMouseOver">
<summary>
Gets whether mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CheckBoxItem.IsMouseDown">
<summary>
Gets whether left mouse button is pressed on the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CheckBoxItem.Checked">
<summary>
Gets or set a value indicating whether the button is in the checked state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CheckBoxItem.CheckedBindable">
<summary>
Gets or set a value indicating whether the button is in the checked state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CheckBoxItem.ThreeState">
<summary>
Gets or sets a value indicating whether the CheckBox will allow three check states rather than two. If the ThreeState property is set to true
CheckState property should be used instead of Checked property to set the extended state of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CheckBoxItem.CheckState">
<summary>
Specifies the state of a control, such as a check box, that can be checked, unchecked, or set to an indeterminate state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CheckBoxItem.CheckBoxImageChecked">
<summary>
Gets or sets the custom image that is displayed instead default check box representation when check box is checked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CheckBoxItem.CheckBoxImageUnChecked">
<summary>
Gets or sets the custom image that is displayed instead default check box representation when check box is unchecked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CheckBoxItem.CheckBoxImageIndeterminate">
<summary>
Gets or sets the custom image that is displayed instead default check box representation when check box is in indeterminate state.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.CheckBoxChangeEventHandler">
<summary>
Delegate for OptionGroupChanging event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.CheckBoxChangeEventArgs">
<summary>
Represents event arguments for OptionGroupChanging event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.CheckBoxChangeEventArgs.Cancel">
<summary>
Set to true to cancel the checking on NewChecked button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.CheckBoxChangeEventArgs.NewChecked">
<summary>
Check-box that will become checked if operation is not cancelled.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.CheckBoxChangeEventArgs.OldChecked">
<summary>
Check-box that is currently checked and which will be unchecked if operation is not cancelled. This property will have only valid values for eCheckBoxStyle.RadioButton style CheckBoxItems.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.CheckBoxChangeEventArgs.EventSource">
<summary>
Indicates the action that has caused the event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CheckBoxChangeEventArgs.#ctor(DevComponents.DotNetBar.CheckBoxItem,DevComponents.DotNetBar.CheckBoxItem,DevComponents.DotNetBar.eEventSource)">
<summary>
Default constructor.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.CheckBoxItemPainter">
<summary>
Represents painter for CheckBoxItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.CheckBoxItemPainter.Paint(DevComponents.DotNetBar.CheckBoxItemRenderEventArgs)">
<summary>
Paints CheckBoxItem.
</summary>
<param name="e">Provides arguments for the operation.</param>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007CheckBoxItemPainter.ColorTable">
<summary>
Gets or sets color table used by renderer.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.CircularProgressItem">
<summary>
Represents circular progress indicator.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.#ctor">
<summary>
Creates new instance of circular progress indicator.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.#ctor(System.String)">
<summary>
Creates new instance of circular progress indicator and assigns the name to it.
</summary>
<param name="sItemName">Item name.</param>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.#ctor(System.String,System.String)">
<summary>
Creates new instance of circular progress indicator and assigns the name and text to it.
</summary>
<param name="sItemName">Item name.</param>
<param name="ItemText">item text.</param>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.InternalCopyToItem(DevComponents.DotNetBar.ProgressBarItem)">
<summary>
Copies the ProgressBarItem specific properties to new instance of the item.
</summary>
<param name="copy">New ProgressBarItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the ProgressBarItem specific properties to new instance of the item.
</summary>
<param name="copy">New ProgressBarItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.ShouldSerializeProgressTextColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.ResetProgressTextColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.OnValueChanged(System.EventArgs)">
<summary>
Raises ValueChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Called when property on CircularProgressBar changes.
</summary>
<param name="propertyChangedEventArgs">Property Change Arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.Start">
<summary>
Starts the progress bar loop for endless type progress bar. Progress bar will continue to run until Stop() method is called.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.Stop">
<summary>
Stops the progress bar loop for endless type progress bar.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.ShouldSerializeProgressColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.ResetProgressColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.ShouldSerializeTextColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.ResetTextColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.ShouldSerializePieBorderDark">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.ResetPieBorderDark">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.ShouldSerializePieBorderLight">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.ResetPieBorderLight">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.ShouldSerializeSpokeBorderDark">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.ResetSpokeBorderDark">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.ShouldSerializeSpokeBorderLight">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.ResetSpokeBorderLight">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CircularProgressItem.OnProgressTextFormatChanged(System.String,System.String)">
<summary>
Called when ProgressTextFormat property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="P:DevComponents.DotNetBar.CircularProgressItem.ProgressBarType">
<summary>
Gets or sets the circular progress bar type.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CircularProgressItem.Maximum">
<summary>
Gets or sets the maximum value of the progress bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CircularProgressItem.Minimum">
<summary>
Gets or sets the minimum value of the progress bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CircularProgressItem.ProgressTextColor">
<summary>
Gets or sets the color of the progress percentage text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CircularProgressItem.ProgressTextVisible">
<summary>
Gets or sets whether text that displays the progress bar completion percentage text is visible. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CircularProgressItem.ProgressText">
<summary>
Gets or sets the text displayed on top of the circular progress bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CircularProgressItem.Value">
<summary>
Gets or sets the current value of the progress bar.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.CircularProgressItem.ValueChanged">
<summary>
Occurs when Value property has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CircularProgressItem.IsRunning">
<summary>
Gets or sets whether endless type progress bar is running.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CircularProgressItem.ProgressColor">
<summary>
Gets or sets the color of the color of progress indicator.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CircularProgressItem.Diameter">
<summary>
Gets or sets circular progress indicator diameter in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CircularProgressItem.TextPosition">
<summary>
Gets or sets the text position in relation to the circular progress indicator.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CircularProgressItem.TextVisible">
<summary>
Gets or sets whether text/label displayed next to the item is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CircularProgressItem.TextWidth">
<summary>
Gets or sets the suggested text-width. If you want to make sure that text you set wraps over multiple lines you can set suggested text-width so word break is performed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CircularProgressItem.TextPadding">
<summary>
Gets or sets text padding.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CircularProgressItem.TextColor">
<summary>
Gets or sets the color of the text label.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CircularProgressItem.PieBorderDark">
<summary>
Gets or sets the color of the pie progress bar dark border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CircularProgressItem.PieBorderLight">
<summary>
Gets or sets the color of the pie progress bar light border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CircularProgressItem.SpokeBorderDark">
<summary>
Gets or sets the color of the spoke progress bar dark border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CircularProgressItem.SpokeBorderLight">
<summary>
Gets or sets the color of the spoke progress bar light border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CircularProgressItem.ProgressTextFormat">
<summary>
Gets or sets format string for progress value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CircularProgressItem.AnimationSpeed">
<summary>
Gets or sets the animation speed for endless running progress. Lower number means faster running.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eCircularProgressType">
<summary>
Defines available circular progress bar types.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eCircularProgressType.Line">
<summary>
Line spokes progress bar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eCircularProgressType.Dot">
<summary>
Dot type/FireFox progress bar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eCircularProgressType.Donut">
<summary>
Donut type progress bar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eCircularProgressType.Spoke">
<summary>
Spoke type progress bar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eCircularProgressType.Pie">
<summary>
Pie type progress bar.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ColorFunctions">
<summary>
Summary description for ColorFunctions.
</summary>
</member>
<member name="T:DevComponents.UI.ColorPicker">
<summary>
Provides popup color picker.
</summary>
</member>
<member name="F:DevComponents.UI.ColorPicker.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.UI.ColorPicker.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.UI.ColorPicker.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="P:DevComponents.UI.ColorPicker.EditorService">
<summary>
Gets or sets the reference to the IWindowsFormsEditorService interface used for Windows Forms design time support.
</summary>
</member>
<member name="P:DevComponents.UI.ColorPicker.ColorScheme">
<summary>
Gets or sets the ColorScheme object for Scheme colors.
</summary>
</member>
<member name="P:DevComponents.UI.ColorPicker.SelectedColor">
<summary>
Gets or sets currently selected color.
</summary>
</member>
<member name="P:DevComponents.UI.ColorPicker.SelectedColorSchemeName">
<summary>
Gets the selected color color scheme name if color scheme color is selected otherwise it returns an empty string.
</summary>
</member>
<member name="P:DevComponents.UI.ColorPicker.Canceled">
<summary>
Returns true if color selection was cancelled.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ColorPickers.ColorCombControl">
<summary>
Represents the color comb control that allows color choice from pre-defined color comb palette.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickers.ColorCombControl.OnSelectedColorChanged(System.EventArgs)">
<summary>
Raises SelectedColorChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="F:DevComponents.DotNetBar.ColorPickers.ColorCombControl.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickers.ColorCombControl.#ctor">
<summary>
Creates new instance of the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickers.ColorCombControl.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickers.ColorCombControl.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickers.ColorCombControl.OnMouseOverColorChanged(System.EventArgs)">
<summary>
Raises MouseOverColorChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="E:DevComponents.DotNetBar.ColorPickers.ColorCombControl.SelectedColorChanged">
<summary>
Occurs when SelectedColor has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickers.ColorCombControl.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickers.ColorCombControl.MouseOverColor">
<summary>
Gets the color mouse is currently over. If mouse is not over any color in comb Color.Empty is returned.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickers.ColorCombControl.SelectedColor">
<summary>
Gets or sets the selected color. When setting the color note that color must be already present in the color comb otherwise the selected color will be reset to Color.Empty.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ColorPickers.ColorCombControl.MouseOverColorChanged">
<summary>
Occurs when MouseOverColor property has changed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ColorPickerItem.ColorContrastControl">
<summary>
Represents the color selection control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerItem.ColorContrastControl.OnSelectedColorChanged(System.EventArgs)">
<summary>
Raises SelectedColorChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="F:DevComponents.DotNetBar.ColorPickerItem.ColorContrastControl.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerItem.ColorContrastControl.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerItem.ColorContrastControl.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ColorPickerItem.ColorContrastControl.SelectedColorChanged">
<summary>
Occurs when SelectedColor has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickerItem.ColorContrastControl.SelectedColor">
<summary>
Gets or sets the selected color.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ColorItem">
<summary>
Represents color item used for color picker control. Color item can only be used as part of the color picker DotNetBar feature.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorItem.Serialize(DevComponents.DotNetBar.ItemSerializationContext)">
<summary>
Overloaded. Serializes the item and all sub-items into the XmlElement.
</summary>
<param name="ThisItem">XmlElement to serialize the item to.</param>
</member>
<!-- Badly formed XML comment ignored for member "M:DevComponents.DotNetBar.ColorItem.Deserialize(DevComponents.DotNetBar.ItemSerializationContext)" -->
<member name="P:DevComponents.DotNetBar.ColorItem.Color">
<summary>
Gets or sets the color represented by this item. Default value is Color.Black.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorItem.DesiredSize">
<summary>
Gets or sets the size of the item when displayed. Default value is 13x13 pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorItem.Border">
<summary>
Gets or sets border drawn around the item. Default value is eColorItemBorder.All which indicates that border is drawn
on all four sides.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorItem.IsMouseOver">
<summary>
Gets whether mouse is over the item.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ColorPickerDropDown">
<summary>
Represents the color picker drop down button.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerDropDown.#ctor">
<summary>
Creates new instance of ButtonItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerDropDown.#ctor(System.String)">
<summary>
Creates new instance of ButtonItem and assigns the name to it.
</summary>
<param name="sItemName">Item name.</param>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerDropDown.#ctor(System.String,System.String)">
<summary>
Creates new instance of ButtonItem and assigns the name and text to it.
</summary>
<param name="sItemName">Item name.</param>
<param name="ItemText">item text.</param>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerDropDown.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerDropDown.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the ButtonItem specific properties to new instance of the item.
</summary>
<param name="c">New ButtonItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerDropDown.OnColorPreview(DevComponents.DotNetBar.ColorPreviewEventArgs)">
<summary>
Raises the ColorPreview event.
</summary>
<param name="e">Provides the data for the event.</param>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerDropDown.InvokeColorPreview(DevComponents.DotNetBar.ColorPreviewEventArgs)">
<summary>
Invokes the ColorPreview event.
</summary>
<param name="e">Provides data for the event.</param>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerDropDown.ShouldSerializeSubItems">
<summary>
Indicates whether SubItems collection is serialized. ColorPickerDropDown does not serialize the sub items.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerDropDown.ShouldSerializeSelectedColorImageRectangle">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerDropDown.ResetSelectedColorImageRectangle">
<summary>
Resets the property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerDropDown.OnColorItemsInitialized(System.EventArgs)">
<summary>
Raises RemovingToken event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerDropDown.DisplayMoreColorsDialog">
<summary>
Displays the Colors dialog that allows user to choose the color or create a custom color. If new color is chosen the
SelectedColorChanged event is raised.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerDropDown.OnBeforeColorDialog(DevComponents.DotNetBar.CancelObjectValueEventArgs)">
<summary>
Raises the BeforeColorDialog event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerDropDown.UpdateSelectedColorImage">
<summary>
Update the selected color image if the SelectedColorImageRectangle has been set and button is using Image property to display the image.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerDropDown.GetThemeColors">
<summary>
Gets collection of ColorItem[] arrays that represent themed colors. Each ColorItem[] array is used to represent single line of theme colors.
</summary>
<returns>Collection of ColorItem[] arrays.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerDropDown.GetStandardColors">
<summary>
Returns an array that represents the standard colors. Usually instances of ColorItem are included.
</summary>
<returns>ArrayList containing objects that describe standard colors.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerDropDown.OnSelectedColorChanged(System.EventArgs)">
<summary>
Invokes SelectedColorChanged event.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ColorPickerDropDown.SelectedColorChanged">
<summary>
Occurs when color is chosen from drop-down color picker or from Custom Colors dialog box. Selected color can be accessed through SelectedColor property.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ColorPickerDropDown.ColorPreview">
<summary>
Occurs when mouse is moving over the colors presented by the color picker. You can use it to preview the color before it is selected.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ColorPickerDropDown.BeforeColorDialog">
<summary>
Occurs before color picker dialog is shown. Data property of the event arguments will hold the reference to the Form about to be shown.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickerDropDown.SelectedColor">
<summary>
Gets or sets the last selected color from either the drop-down or Custom Color dialog box. Default value is
Color.Empty. You can use SelectedColorChanged event to be notified when this property changes.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickerDropDown.DisplayThemeColors">
<summary>
Gets or sets whether theme colors are displayed on drop-down. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickerDropDown.DisplayStandardColors">
<summary>
Gets or sets whether standard colors are displayed on drop-down. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickerDropDown.DisplayMoreColors">
<summary>
Gets or sets more colors menu item is visible which allows user to open Custom Colors dialog box. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickerDropDown.SelectedColorImageRectangle">
<summary>
Gets or sets the rectangle in Image coordinates where selected color will be painted. Setting this property will
have an effect only if Image property is used to set the image. Default value is an empty rectangle which indicates
that selected color will not be painted on the image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickerDropDown.ColorsInitialized">
<summary>
Gets whether internal representation of color items on popup has been initialized.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ColorPickerDropDown.ColorItemsInitialized">
<summary>
"Occurs after popup colors have been added to the SubItems collection. This event can be used to effectively add custom items to the popup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickerDropDown.OwnerWindow">
<summary>
Gets or sets the Owner Window that will be used as owner for the colors modal dialog when displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickerDropDown.CustomThemeColors">
<summary>
Gets or sets the array of ColorItem objects that will be used as theme colors instead of built-in color palette.
See: http://www.devcomponents.com/kb2/?p=79 for instructions.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickerDropDown.CustomStandardColors">
<summary>
Gets or sets the array of ColorItem objects that will be used as standard colors instead of built-in color palette.
See: http://www.devcomponents.com/kb2/?p=79 for instructions.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickerDropDown.ShouldAutoExpandOnClick">
<summary>
Indicates whether button should popup when clicked automatically.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ColorPickers.CustomColorBlender">
<summary>
Represents custom color blend selection control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickers.CustomColorBlender.OnSelectedColorChanged(System.EventArgs)">
<summary>
Raises SelectedColorChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="E:DevComponents.DotNetBar.ColorPickers.CustomColorBlender.SelectedColorChanged">
<summary>
Occurs when SelectedColor has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickers.CustomColorBlender.SelectedColor">
<summary>
Gets or sets the color selected by the control. Color that is assigned must be visible on the face of the control otherwise the SelectedColor will be set to Color.Empty
</summary>
</member>
<member name="T:DevComponents.DotNetBar.OfficeForm">
<summary>
Represents the form in Office style with custom borders and caption.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RibbonForm">
<summary>
Represents the form class that should be used instead of standard Form when form caption is provided by Ribbon control
and custom form look and feel in style of Office 2007 is required. This form does not have standard form caption.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonForm.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonForm.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonForm.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonForm.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonForm.OnEnableCustomStyleChanged">
<summary>
Called when EnableCustomStyle property has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonForm.IsCustomFormStyleEnabled">
<summary>
Gets whether custom form styling is enabled.
</summary>
<returns>true if custom styling is enabled otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonForm.GetBorderColors(System.Int32)">
<summary>
Gets the array of LinearGradientColorTable objects that describe the border colors. The colors with index 0 is used as the outer most
border.
</summary>
<returns>Array of LinearGradientColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonForm.GetRegion">
<summary>
Returns form custom region.
</summary>
<returns>New instance of the custom region.</returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonForm.GetFormPath(System.Drawing.Rectangle)">
<summary>
Gets the form path for the given input bounds.
</summary>
<param name="bounds">Represent the form bounds.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonForm.WindowsMessageNCPaint(System.Windows.Forms.Message@)">
<summary>
Paints the non-client area of the form.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonForm.WindowsMessageNCActivate(System.Windows.Forms.Message@)">
<summary>
Called when WM_NCACTIVATE message is received.
</summary>
<param name="m">Reference to message data.</param>
<returns>Return true to call base form implementation otherwise return false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonForm.UpdateFormGlassState">
<summary>
Invalidates non client area of the form.
</summary>
<param name="invalidateForm">Indicates whether complete form is invalidated.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonForm.RedrawNonClient">
<summary>
Redraws the non-client area of the form.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonForm.OnBackgroundImageUnderCaptionChanged(System.Boolean,System.Boolean)">
<summary>
Called when BackgroundImageUnderCaption property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonForm.OnRenderFormIconChanged(System.Boolean,System.Boolean)">
<summary>
Called when RenderFormIcon property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonForm.OnRenderFormTextChanged(System.Boolean,System.Boolean)">
<summary>
Called when RenderFormText property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="P:DevComponents.DotNetBar.RibbonForm.EnableGlass">
<summary>
Gets or sets whether Windows Vista Glass support is enabled when form is running on Windows Vista with Glass support.
Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonForm.RibbonControl">
<summary>
Gets or sets the RibbonControl that is hosted by this form. This property is for internal use only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonForm.EnableGlassExtend">
<summary>
Gets whether Vista glass effect extension over the ribbon control caption is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonForm.WindowState">
<summary>
Gets or sets the form's window state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonForm.EnableCustomStyle">
<summary>
Gets or sets whether custom style for the form is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonForm.TopLeftCornerSize">
<summary>
Gets or sets top left rounded corner size. Default value is 6.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonForm.TopRightCornerSize">
<summary>
Gets or sets top right rounded corner size. Default value is 6.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonForm.BottomLeftCornerSize">
<summary>
Gets or sets bottom left rounded corner size. Default value is 6.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonForm.BottomRightCornerSize">
<summary>
Gets or sets bottom right rounded corner size. Default value is 6.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonForm.PaintClientBorder">
<summary>
Gets whether client border is painted in OnPaint method.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonForm.PaintRibbonCaption">
<summary>
Gets whether ribbon control caption is painted
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonForm.FlattenMDIBorder">
<summary>
Gets or sets whether 3D MDI border is removed. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonForm.HasCustomRegion">
<summary>
Gets whether form uses custom region
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonForm.IsGlassEnabled">
<summary>
Gets whether Windows Glass effect is rendered on the form when supported by Operating System and enabled using EnableGlass.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonForm.IsSizable">
<summary>
Returns whether form is sizable given form state (maximized, minimized, normal) and FormBorderStyle setting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonForm.NonClientPaintEnabled">
<summary>
Gets or sets whether non-client area of the form rendering is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonForm.BackgroundImageUnderCaption">
<summary>
Indicates whether form BackgroundImage is pulled up and rendered under form caption as well.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonForm.RenderFormIcon">
<summary>
Indicates whether form icon is drawn. This is different from ShowIcon property which when set to false also removes the form icon from task-bar. Setting this property to false will keep form icon in task-bar but will hide on the form.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonForm.RenderFormText">
<summary>
Indicates whether form Text is rendered in form caption.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.OfficeForm.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.OfficeForm.OnTitleTextMarkupLinkClick(DevComponents.DotNetBar.MarkupLinkClickEventArgs)">
<summary>
Raises TitleTextMarkupLinkClick event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.OfficeForm.IsCustomFormStyleEnabled">
<summary>
Gets whether custom form styling is enabled.
</summary>
<returns>true if custom styling is enabled otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.OfficeForm.InvalidateNonClient(System.Boolean)">
<summary>
Invalidates non client area of the form.
</summary>
<param name="invalidateForm">Indicates whether complete form is invalidated.</param>
</member>
<member name="M:DevComponents.DotNetBar.OfficeForm.WindowsMessageNCActivate(System.Windows.Forms.Message@)">
<summary>
Called when WM_NCACTIVATE message is received.
</summary>
<param name="m">Reference to message data.</param>
<returns>Return true to call base form implementation otherwise return false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.OfficeForm.GetFormPath(System.Drawing.Rectangle)">
<summary>
Gets the form path for the give input bounds.
</summary>
<param name="bounds">Represents the form bounds.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.OfficeForm.UpdateFormText">
<summary>
Updates the form title bar text. Usually calling this method is not necessary but under certain conditions when form is used as MDI parent form
calling it to update combined text is necessary.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.OfficeForm.OnCloseEnabledChanged">
<summary>
Called when CloseEnabled property value has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.OfficeForm.WindowsMessageNCPaint(System.Windows.Forms.Message@)">
<summary>
Paints the non-client area of the form.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.OfficeForm.GetRenderer">
<summary>
Returns the renderer control will be rendered with.
</summary>
<returns>The current renderer.</returns>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.OfficeForm.TitleText" -->
<member name="E:DevComponents.DotNetBar.OfficeForm.TitleTextMarkupLinkClick">
<summary>
Occurs when text-markup link in TitleText is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.OfficeForm.CaptionFont">
<summary>
Gets or sets the font for the form caption text when CaptionVisible=true. Default value is NULL which means that system font is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.OfficeForm.EnableGlassExtend">
<summary>
Gets whether Vista glass effect extension over the ribbon control caption is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.OfficeForm.Icon">
<summary>
Gets or sets the icon for the form.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.OfficeForm.AutoScroll">
<summary>
Gets or sets a value indicating whether the form enables auto scrolling.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.OfficeForm.Office2007ColorTable">
<summary>
Gets or sets the Office 2007 Renderer global Color Table. Setting this property will affect all controls in application that are using Office 2007 global renderer.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.OfficeForm.PaintClientBorder">
<summary>
Gets whether client border is painted in OnPaint method.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.OfficeForm.PaintRibbonCaption">
<summary>
Gets whether ribbon control caption is painted
</summary>
</member>
<member name="P:DevComponents.DotNetBar.OfficeForm.CaptionAntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting form caption. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.OfficeForm.RenderMode">
<summary>
Gets or sets the redering mode used by control. Default value is eRenderMode.Global which means that static GlobalManager.Renderer is used. If set to Custom then Renderer property must
also be set to the custom renderer that will be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.OfficeForm.Renderer">
<summary>
Gets or sets the custom renderer used by the items on this control. RenderMode property must also be set to eRenderMode.Custom in order renderer
specified here to be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.OfficeForm.IconTooltip">
<summary>
Gets or sets the tooltip for the form system icon.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerItem.CustomColorDialog.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerItem.CustomColorDialog.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroForm.#ctor">
<summary>
Initializes a new instance of the MetroForm class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroForm.GetBorderColors(System.Int32)">
<summary>
Gets the array of LinearGradientColorTable objects that describe the border colors. The colors with index 0 is used as the outer most
border.
</summary>
<returns>Array of LinearGradientColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroForm.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroForm.GetFormPath(System.Drawing.Rectangle)">
<summary>
Gets the form path for the given input bounds.
</summary>
<param name="bounds">Represent the form bounds.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroForm.OnHelpButtonTextChanged(System.String,System.String)">
<summary>
Called when HelpButtonText property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroForm.OnSettingsButtonTextChanged(System.String,System.String)">
<summary>
Called when SettingsButtonText property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroForm.OnSettingsButtonClick(System.EventArgs)">
<summary>
Raises SettingsButtonClick event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroForm.OnHelpButtonClick(System.EventArgs)">
<summary>
Raises HelpButtonClick event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroForm.BorderColors">
<summary>
Gets or sets custom border colors for the form. When set it overrides settings from global Metro color table.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroForm.EnableGlass">
<summary>
This property is not applicable for MetroForm.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.Metro.MetroForm.SettingsButtonVisible" -->
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.Metro.MetroForm.HelpButtonVisible" -->
<member name="P:DevComponents.DotNetBar.Metro.MetroForm.HelpButtonText">
<summary>
Gets or sets the HELP button text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroForm.SettingsButtonText">
<summary>
Gets or sets the SETTINGS button text.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroForm.SettingsButtonClick">
<summary>
Occurs when SETTINGS button, if displayed, is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroForm.HelpButtonClick">
<summary>
Occurs when HELP button, if displayed, is clicked.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerItem.CustomColorDialogMetro.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerItem.CustomColorDialogMetro.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ColorScheme">
<summary>
Represents the Color scheme used by items on the Bar.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.ShouldSerializeAutoHidePanelBackground">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.ResetAutoHidePanelBackground">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.ShouldSerializeAutoHidePanelBackground2">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.ResetAutoHidePanelBackground2">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.ShouldSerializeAutoHideTabBackground">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.ResetAutoHideTabBackground">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.ShouldSerializeAutoHideTabBackground2">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.ResetAutoHideTabBackground2">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.ShouldSerializeAutoHideTabText">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.ResetAutoHideTabText">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.ShouldSerializeAutoHideTabBorder">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.ResetAutoHideTabBorder">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.ShouldSerializeAutoHideSelectedTabBackground">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.ResetAutoHideSelectedTabBackground">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.ShouldSerializeAutoHideSelectedTabBackground2">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.ResetAutoHideSelectedTabBackground2">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.ShouldSerializeAutoHideSelectedTabText">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.ResetAutoHideSelectedTabText">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.ShouldSerializeAutoHideSelectedTabBorder">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.ResetAutoHideSelectedTabBorder">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.SchemeXpBlueVS2005">
<summary>
VS.NET 2005 Blue Color Scheme
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.GetColor(System.String)">
<summary>
Converts hex string to Color type.
</summary>
<param name="rgbHex">Hexadecimal color representation.</param>
<returns>Reference to Color object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.GetColor(System.Int32)">
<summary>
Converts hex string to Color type.
</summary>
<param name="rgb">Color representation as 32-bit RGB value.</param>
<returns>Reference to Color object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ColorScheme.GetColor(System.Int32,System.Int32)">
<summary>
Converts hex string to Color type.
</summary>
<param name="rgb">Color representation as 32-bit RGB value.</param>
<returns>Reference to Color object.</returns>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.DockSiteBackColor">
<summary>
Specifies Dock Site BackColor.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.DockSiteBackColor2">
<summary>
Specifies Dock Site BackColor2.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.DockSiteBackColorGradientAngle">
<summary>
Specifies the gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.MenuBarBackground">
<summary>
Specifies the menu bar background color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.MenuBarBackground2">
<summary>
Specifies the target menu bar gradient background color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.MenuBarBackgroundGradientAngle">
<summary>
Specifies the gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.BarBackground">
<summary>
Specifies the background color for the bar when floating or when docked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.BarBackground2">
<summary>
Specifies the target gradient background color for the bar when floating or when docked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.BarBackgroundGradientAngle">
<summary>
Specifies the gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.BarCaptionBackground">
<summary>
Specifies the background color for the bar Caption.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.BarCaptionBackground2">
<summary>
Specifies the target gradient background color for the bar Caption.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.BarCaptionBackgroundGradientAngle">
<summary>
Specifies the gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.BarCaptionText">
<summary>
Specifies the color for text of the Caption.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.BarCaptionInactiveBackground">
<summary>
Specifies the Bar Caption inactive (lost focus) background color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.BarCaptionInactiveBackground2">
<summary>
Specifies the target background gradient Bar Caption inactive (lost focus) color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.BarCaptionInactiveBackgroundGAngle">
<summary>
Specifies the gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.BarCaptionInactiveText">
<summary>
Specifies the Bar inactive (lost focus) text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.BarPopupBackground">
<summary>
Specifies the background color for popup bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.BarPopupBorder">
<summary>
Specifies the border color for popup bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.BarDockedBorder">
<summary>
Specifies the border color for docked bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.BarStripeColor">
<summary>
Specifies the color of the grab handle stripes.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.BarFloatingBorder">
<summary>
Specifies the border color for floating bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemBackground">
<summary>
Specifies the item background color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemBackground2">
<summary>
Specifies the target item background gradient color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemBackgroundGradientAngle">
<summary>
Specifies the gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemText">
<summary>
Specifies the item text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemDisabledBackground">
<summary>
Specifies the background color for the item that is disabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemDisabledText">
<summary>
Specifies the text color for the item that is disabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemHotBackground">
<summary>
Specifies the background color when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemHotBackground2">
<summary>
Specifies the target gradient background color when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemHotBackgroundGradientAngle">
<summary>
Specifies the gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemHotText">
<summary>
Specifies the text color when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemHotBorder">
<summary>
Specifies the border color when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemPressedBackground">
<summary>
Specifies the background color when item is pressed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemPressedBackground2">
<summary>
Specifies the target gradient background color when item is pressed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemPressedBackgroundGradientAngle">
<summary>
Specifies the gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemPressedText">
<summary>
Specifies the text color when item is pressed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemPressedBorder">
<summary>
Specifies the border color when item is pressed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemSeparator">
<summary>
Specifies the color for the item group separator.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemSeparatorShade">
<summary>
Specifies the color for the item group separator shade.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemExpandedShadow">
<summary>
Specifies the background color for the shadow of expanded item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemExpandedBackground">
<summary>
Specifies the background color for the expanded item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemExpandedBackground2">
<summary>
Specifies the target gradient background color for the expanded item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemExpandedBackgroundGradientAngle">
<summary>
Specifies the gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemExpandedText">
<summary>
Specifies the text color for the expanded item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemExpandedBorder">
<summary>
Specifies the border color for the expanded item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemCheckedBackground">
<summary>
Specifies the background color for the checked item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemCheckedBackground2">
<summary>
Specifies the target gradient background color for the checked item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemCheckedBackgroundGradientAngle">
<summary>
Specifies the gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemCheckedBorder">
<summary>
Specifies the border color for the checked item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemCheckedText">
<summary>
Specifies the text color for the checked item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.CustomizeBackground">
<summary>
Specifies the customize item background color. Applies to Office2003 style only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.CustomizeBackground2">
<summary>
Specifies the customize item target gradient background color. Applies to Office2003 style only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.CustomizeBackgroundGradientAngle">
<summary>
Specifies the customize item background color gradient angle. Applies to Office2003 style only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.CustomizeText">
<summary>
Specifies the customize item text color. Applies to Office2003 style only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.MenuBorder">
<summary>
Specifies the color of the menu border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.MenuBackground">
<summary>
Specifies the background color of the menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.MenuBackground2">
<summary>
Specifies the target gradient background color of the menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.MenuBackgroundGradientAngle">
<summary>
Specifies the angle of the gradient fill for the menu background.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.MenuSide">
<summary>
Specifies the background color of the menu part (left side) that is showing the images.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.MenuSide2">
<summary>
Specifies the target gradient background color of the menu part (left side) that is showing the images.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.MenuSideGradientAngle">
<summary>
Specifies the angle of the gradient fill for the menu part (left side) that is showing the images.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.MenuUnusedBackground">
<summary>
Specifies the background color for the items that were not recently used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.MenuUnusedSide">
<summary>
Specifies the side bar color for the items that were not recently used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.MenuUnusedSide2">
<summary>
Specifies the target gradient side bar color for the items that were not recently used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.MenuUnusedSideGradientAngle">
<summary>
Specifies the angle of the gradient fill for the menu part (left side) that is showing the images.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ItemDesignTimeBorder">
<summary>
Specifies the border color for focused design-time item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.PredefinedColorScheme">
<summary>
Gets or sets predefined color scheme. By default DotNetBar will automatically change and generate color scheme depending on system colors.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.PanelBackground">
<summary>
Specifies the background color of the panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.PanelBackground2">
<summary>
Specifies the target background gradient color of the panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.PanelBackgroundGradientAngle">
<summary>
Specifies the angle of the gradient fill for the panel background.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.PanelBorder">
<summary>
Specifies border color of the panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.PanelText">
<summary>
Specifies color of the text on the panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ExplorerBarBackground">
<summary>
Specifies the background color of the explorer bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ExplorerBarBackground2">
<summary>
Specifies the target gradient background color of the explorer bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.ExplorerBarBackgroundGradientAngle">
<summary>
Specifies the angle of the gradient fill for the explorer bar background.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.MdiSystemItemForeground">
<summary>
Specifies the foreground color of MDI System Item buttons.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.SplitterBackground">
<summary>
Specifies the background color of the Splitter.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.SplitterBackground2">
<summary>
Specifies the target background gradient color of the Splitter.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.SplitterBackgroundGradientAngle">
<summary>
Specifies the angle of the gradient fill for the Splitter background.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.SplitterBorder">
<summary>
Specifies border color of the Splitter.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.SplitterText">
<summary>
Specifies color of the text on the Splitter.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.AutoHidePanelBackgroundImage">
<summary>
Indicates auto-hide panel background image if any.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.AutoHidePanelBackground">
<summary>
Gets or sets the color of the auto-hide panel background.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.AutoHidePanelBackground2">
<summary>
Gets or sets the color of the auto-hide panel background.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.AutoHideTabBackground">
<summary>
Gets or sets the color of the auto-hide tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.AutoHideTabBackground2">
<summary>
Gets or sets the color of the auto-hide tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.AutoHideTabBackgroundGradientAngle">
<summary>
Gets or sets the auto-hide tab background gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.AutoHideTabText">
<summary>
Gets or sets the color of the auto-hide tab text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.AutoHideTabBorder">
<summary>
Gets or sets the color of the auto-hide tab border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.AutoHideSelectedTabBackground">
<summary>
Gets or sets the color of the auto-hide tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.AutoHideSelectedTabBackground2">
<summary>
Gets or sets the color of the auto-hide tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.AutoHideSelectedTabText">
<summary>
Gets or sets the color of the auto-hide tab text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorScheme.AutoHideSelectedTabBorder">
<summary>
Gets or sets the color of the tab border.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ePredefinedColorScheme">
<summary>
Specifies the type of predefined color scheme in ColorScheme object.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ePredefinedColorScheme.AutoGenerated">
<summary>
Default value. DotNetBar will automatically change and generate color scheme depending on system colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ePredefinedColorScheme.Blue2003">
<summary>
Blue Office 2003 Color Scheme. This setting specifies that this color scheme will be used regardless of system color setting on user machine.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ePredefinedColorScheme.OliveGreen2003">
<summary>
Olive Green Office 2003 Color Scheme. This setting specifies that this color scheme will be used regardless of system color setting on user machine.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ePredefinedColorScheme.Silver2003">
<summary>
Silver Office 2003 Color Scheme. This setting specifies that this color scheme will be used regardless of system color setting on user machine.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ePredefinedColorScheme.SystemColors">
<summary>
Always use system colors to auto-generate color scheme.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eColorSchemePart">
<summary>
Specifies a color scheme member.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ColorSchemeEditor">
<summary>
Summary description for ColorSchemeEditor.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ColorSchemeEditor.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorSchemeEditor.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorSchemeEditor.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ColorSchemeVSEditor">
<summary>
Summary description for ColorSchemeVSEditor.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ColorTypeEditor">
<summary>
Represents Color type editor with support for color schemes.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorTypeEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
<summary>
Edits the value of the specified object using the editor style indicated by GetEditStyle.
</summary>
<param name="context">An ITypeDescriptorContext that can be used to gain additional context information.</param>
<param name="provider">An IServiceProvider that this editor can use to obtain services.</param>
<param name="value">The object to edit.</param>
<returns>The new value of the object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ColorTypeEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Gets the editor style used by the EditValue method.
</summary>
<param name="context">An ITypeDescriptorContext that can be used to gain additional context information.</param>
<returns>A UITypeEditorEditStyle value that indicates the style of editor used by EditValue. If the UITypeEditor does not support this method, then GetEditStyle will return None.
</returns>
</member>
<member name="T:DevComponents.DotNetBar.CommandManager">
<summary>
Provides command related utility methods that register and unregister commands.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CommandManager.RegisterCommand(DevComponents.DotNetBar.ICommandSource,DevComponents.DotNetBar.ICommand)">
<summary>
Connects the Command Source to the Command.
</summary>
<param name="commandSource">Command source to connect to the command.</param>
<param name="command">Reference to the command.</param>
</member>
<member name="M:DevComponents.DotNetBar.CommandManager.UnRegisterCommandSource(DevComponents.DotNetBar.ICommandSource,DevComponents.DotNetBar.ICommand)">
<summary>
Disconnects command source from the command.
</summary>
<param name="commandSource">Reference to command source.</param>
<param name="command">Reference to the command.</param>
</member>
<member name="M:DevComponents.DotNetBar.CommandManager.UnRegisterCommand(DevComponents.DotNetBar.ICommand)">
<summary>
Unregister command from all subscribers. Called when command is disposed.
</summary>
<param name="command">Command to unregister.</param>
</member>
<member name="M:DevComponents.DotNetBar.CommandManager.GetSubscribers(DevComponents.DotNetBar.ICommand)">
<summary>
Gets an array of Command Sources that are connected with the command.
</summary>
<param name="command">Reference to command</param>
<returns>An array of command sources.</returns>
</member>
<member name="P:DevComponents.DotNetBar.CommandManager.UseReflection">
<summary>
Gets or sets whether commands use Reflection to find the property names when applying value to the unknown types. Default value is true.
Setting this value to false will increase performance if Unknown types are used but it will at same time disable the
command setting value for these types.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CommandManager.AutoUpdateLayout">
<summary>
Gets or sets whether layout on the items of type BaseItem is automatically updated when command text or other property changes which requires layout updated. Default value is true.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.BindingNavigatorEx">
<summary>
Represents the bound data navigator in current DotNetBar style.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.BindingNavigatorEx.#ctor">
<summary>
Creates new instance of BindingNavigatorEx
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.BindingNavigatorEx.#ctor(System.Boolean)">
<summary>
Creates new instance of BindingNavigatorEx
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.BindingNavigatorEx.#ctor(System.ComponentModel.IContainer)">
<summary>
Creates new instance of BindingNavigatorEx
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.BindingNavigatorEx.#ctor(System.Windows.Forms.BindingSource)">
<summary>
Creates new instance of BindingNavigatorEx
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.BindingNavigatorEx.AddDefaultItems">
<summary>
Adds default items that make up the binding navigation control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.BindingNavigatorEx.AddNewRecordButton">
<summary>
Gets or sets the reference to Add New record button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.BindingNavigatorEx.BindingSource">
<summary>
Gets or sets the binding source for the navigator.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.BindingNavigatorEx.CountLabel">
<summary>
Gets or sets the label which represents the items count.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.BindingNavigatorEx.CountLabelFormat">
<summary>
Indicates the format string for the label which displays the number of items bound.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.BindingNavigatorEx.DeleteButton">
<summary>
Gets or sets the item which deletes current record.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.BindingNavigatorEx.MoveFirstButton">
<summary>
Gets or sets the item which moves to first record.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.BindingNavigatorEx.MoveLastButton">
<summary>
Gets or sets the item which moves to last record.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.BindingNavigatorEx.MoveNextButton">
<summary>
Gets or sets the item which moves to next record.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.BindingNavigatorEx.MovePreviousButton">
<summary>
Gets or sets the item which moves to previous record.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.BindingNavigatorEx.PositionTextBox">
<summary>
Gets or sets the text-box which shows current position.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BaseItemControl">
<summary>
Represents the class for the BaseItem non-popup based control host.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItemControl.#ctor">
<summary>
Creates new instance of the object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItemControl.GetColorScheme">
<summary>
Returns the color scheme used by control. Color scheme for Office2007 style will be retrieved from the current renderer instead of
local color scheme referenced by ColorScheme property.
</summary>
<returns>An instance of ColorScheme object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BaseItemControl.PaintFocusCues(System.Windows.Forms.PaintEventArgs)">
<summary>
Paints the control focus cues.
</summary>
<param name="e">Paint event information.</param>
</member>
<member name="M:DevComponents.DotNetBar.BaseItemControl.CreateGraphics">
<summary>
Creates the Graphics object for the control.
</summary>
<returns>The Graphics object for the control.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BaseItemControl.GetRenderer">
<summary>
Returns the renderer control will be rendered with.
</summary>
<returns>The current renderer.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BaseItemControl.ResetBackgroundStyle">
<summary>
Resets style to default value. Used by windows forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItemControl.OnVisualPropertyChanged">
<summary>
Called when visual property of the control has changed so the control can be updated.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItemControl.RecalcLayout">
<summary>
Forces the button to perform internal layout.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItemControl.RecalcSize">
<summary>
Recalculates the size of the internal item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItemControl.BeginUpdate">
<summary>
Indicates to control that all further update operations should not result in layout and refresh of control content.
Use this method to optimize the addition of new items to the control. This method supports nested calls meaning
that multiple calls are allowed but they must be ended with appropriate number of EndUpdate calls.
IsUpdateSuspended property returns whether update is suspended.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItemControl.EndUpdate">
<summary>
Indicates that update operation is complete and that control should perform layout and refresh to show changes. See BeginUpdate
for more details.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BaseItemControl.EndUpdate(System.Boolean)">
<summary>
Indicates that update operation is complete and that control should perform layout and refresh to show changes. See BeginUpdate
for more details.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItemControl.HostItem">
<summary>
Gets or sets the instance of BaseItem object hosted by this control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItemControl.CallBasePaintBackground">
<summary>
Gets or sets whether during painting OnPaintBackground on base control is called when BackColor=Transparent.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItemControl.FocusCuesEnabled">
<summary>
Gets or sets whether control displays focus cues when focused.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItemControl.RenderMode">
<summary>
Gets or sets the redering mode used by control. Default value is eRenderMode.Global which means that static GlobalManager.Renderer is used. If set to Custom then Renderer property must
also be set to the custom renderer that will be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItemControl.Renderer">
<summary>
Gets or sets the custom renderer used by the items on this control. RenderMode property must also be set to eRenderMode.Custom in order renderer
specified here to be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItemControl.BackgroundStyle">
<summary>
Specifies the background style of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItemControl.ColorScheme">
<summary>
Gets or sets Bar Color Scheme.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItemControl.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItemControl.Style">
<summary>
Gets/Sets the visual style for the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BaseItemControl.IsUpdateSuspended">
<summary>
Gets whether control layout is suspended becouse of the call to BeginUpdate method.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CircularProgress.#ctor">
<summary>
Initializes a new instance of the CircularProgress class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CircularProgress.OnValueChanged(System.EventArgs)">
<summary>
Raises ValueChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CircularProgress.ShouldSerializeProgressTextColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CircularProgress.ResetProgressTextColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CircularProgress.ShouldSerializeProgressColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CircularProgress.ResetProgressColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CircularProgress.ShouldSerializePieBorderDark">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CircularProgress.ResetPieBorderDark">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CircularProgress.ShouldSerializePieBorderLight">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CircularProgress.ResetPieBorderLight">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CircularProgress.ShouldSerializeSpokeBorderDark">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CircularProgress.ResetSpokeBorderDark">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CircularProgress.ShouldSerializeSpokeBorderLight">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CircularProgress.ResetSpokeBorderLight">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.CircularProgress.ValueChanged">
<summary>
Occurs when Value property has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CircularProgress.ProgressBarType">
<summary>
Gets or sets the circular progress bar type.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CircularProgress.Maximum">
<summary>
Gets or sets the maximum value of the progress bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CircularProgress.Minimum">
<summary>
Gets or sets the minimum value of the progress bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CircularProgress.ProgressTextColor">
<summary>
Gets or sets the color of the progress percentage text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CircularProgress.ProgressTextVisible">
<summary>
Gets or sets whether text that displays the progress bar completion percentage text is visible. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CircularProgress.ProgressText">
<summary>
Gets or sets the text displayed on top of the circular progress bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CircularProgress.Value">
<summary>
Gets or sets the current value of the progress bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CircularProgress.IsRunning">
<summary>
Gets or sets whether endless type progress bar is running.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CircularProgress.ProgressColor">
<summary>
Gets or sets the color of the color of progress indicator.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CircularProgress.PieBorderDark">
<summary>
Gets or sets the color of the pie progress bar dark border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CircularProgress.PieBorderLight">
<summary>
Gets or sets the color of the pie progress bar light border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CircularProgress.SpokeBorderDark">
<summary>
Gets or sets the color of the spoke progress bar dark border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CircularProgress.SpokeBorderLight">
<summary>
Gets or sets the color of the spoke progress bar light border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CircularProgress.ProgressTextFormat">
<summary>
Gets or sets format string for progress value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CircularProgress.AnimationSpeed">
<summary>
Gets or sets the animation speed for endless running progress. Lower number means faster running.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CollapsibleSplitContainer.#ctor">
<summary>
Initializes a new instance of the CollapsibleSplitContainer class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CollapsibleSplitContainer.OnBeforeNearCollapseButtonClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises BeforeNearCollapseButtonClick event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CollapsibleSplitContainer.OnNearCollapseButtonClicked(System.EventArgs)">
<summary>
Raises NearCollapseButtonClick event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CollapsibleSplitContainer.OnBeforeFarCollapseButtonClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises BeforeFarCollapseButtonClick event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CollapsibleSplitContainer.OnFarCollapseButtonClicked(System.EventArgs)">
<summary>
Raises FarCollapseButtonClick event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CollapsibleSplitContainer.OnButtonPositionChanged(DevComponents.DotNetBar.Controls.eSplitterButtonPosition,DevComponents.DotNetBar.Controls.eSplitterButtonPosition)">
<summary>
Called when ButtonPosition property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CollapsibleSplitContainer.OnCollapseModeChanged(DevComponents.DotNetBar.Controls.eCollapseMode,DevComponents.DotNetBar.Controls.eCollapseMode)">
<summary>
Called when CollapseMode property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<!-- Badly formed XML comment ignored for member "E:DevComponents.DotNetBar.Controls.CollapsibleSplitContainer.BeforeNearCollapseButtonClick" -->
<member name="E:DevComponents.DotNetBar.Controls.CollapsibleSplitContainer.NearCollapseButtonClicked">
<summary>
Occurs after near collapse button is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.CollapsibleSplitContainer.BeforeFarCollapseButtonClick">
<summary>
Occurs before far collapse button is clicked and allows you to cancel its action.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.CollapsibleSplitContainer.FarCollapseButtonClicked">
<summary>
Occurs after far collapse button is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CollapsibleSplitContainer.ButtonPosition">
<summary>
Indicates position of buttons inside container.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CollapsibleSplitContainer.CollapseMode">
<summary>
Specifies how panels are collapsed when collapse buttons are pressed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eSplitterButtonPosition">
<summary>
Defines available positions for buttons inside CollapsibleSplitterContainer.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eSplitterButtonPosition.Near">
<summary>
Buttons are positioned on left or top side depending on orientation.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eSplitterButtonPosition.Center">
<summary>
Buttons are positioned in center of container.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eSplitterButtonPosition.Far">
<summary>
Buttons are positioned on right or bottom side depending on orientation.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eCollapseMode">
<summary>
Defines collapse mode for the CollapsibleSplitContainer control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eCollapseMode.PanelMinSize">
<summary>
When buttons are pressed the splitter is positioned at the PanelMinSize.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eCollapseMode.PanelCollapse">
<summary>
When buttons are pressed associated panel is collapsed through Panel1Collapsed or Panel2Collapsed properties.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ColorPickerButton">
<summary>
Represents the color picker button control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerButton.#ctor">
<summary>
Creates new instance of the object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerButton.DisplayMoreColorsDialog">
<summary>
Displays the Colors dialog that allows user to choose the color or create a custom color. If new color is chosen the
SelectedColorChanged event is raised.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerButton.OnColorPreview(DevComponents.DotNetBar.ColorPreviewEventArgs)">
<summary>
Raises the ColorPreview event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerButton.OnSelectedColorChanged(System.EventArgs)">
<summary>
Raises the SelectedColorChanged event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerButton.ShouldSerializeSubItems">
<summary>
Indicates whether SubItems collection is serialized. ColorPickerDropDown does not serialize the sub items.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerButton.ShouldSerializeSelectedColorImageRectangle">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerButton.ResetSelectedColorImageRectangle">
<summary>
Resets the property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerButton.InvokeColorPreview(DevComponents.DotNetBar.ColorPreviewEventArgs)">
<summary>
Invokes the ColorPreview event.
</summary>
<param name="e">Provides data for the event.</param>
</member>
<member name="M:DevComponents.DotNetBar.ColorPickerButton.UpdateSelectedColorImage">
<summary>
Update the selected color image if the SelectedColorImageRectangle has been set and button is using Image property to display the image.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ColorPickerButton.SelectedColorChanged">
<summary>
Occurs when color is chosen from drop-down color picker or from Custom Colors dialog box. Selected color can be accessed through SelectedColor property.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ColorPickerButton.ColorPreview">
<summary>
Occurs when mouse is moving over the colors presented by the color picker. You can use it to preview the color before it is selected.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickerButton.CustomStandardColors">
<summary>
Gets or sets the array of ColorItem objects that will be used as standard colors instead of built-in color palette.
See: http://www.devcomponents.com/kb2/?p=79 for instructions.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickerButton.CustomThemeColors">
<summary>
Gets or sets the array of ColorItem objects that will be used as theme colors instead of built-in color palette.
See: http://www.devcomponents.com/kb2/?p=79 for instructions.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickerButton.ExecuteCommandOnClick">
<summary>
Gets whether command is executed when button is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickerButton.OwnerWindow">
<summary>
Gets or sets the Owner Window that will be used as owner for the colors modal dialog when displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickerButton.DisplayMoreColors">
<summary>
Gets or sets more colors menu item is visible which allows user to open Custom Colors dialog box. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickerButton.SelectedColor">
<summary>
Gets or sets the last selected color from either the drop-down or Custom Color dialog box. Default value is
Color.Empty. You can use SelectedColorChanged event to be notified when this property changes.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickerButton.DisplayThemeColors">
<summary>
Gets or sets whether theme colors are displayed on drop-down. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickerButton.DisplayStandardColors">
<summary>
Gets or sets whether standard colors are displayed on drop-down. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorPickerButton.SelectedColorImageRectangle">
<summary>
Gets or sets the rectangle in Image coordinates where selected color will be painted. Setting this property will
have an effect only if Image property is used to set the image. Default value is an empty rectangle which indicates
that selected color will not be painted on the image.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.ComboBoxEx">
<summary>
Represents enhanced Windows combo box control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboBoxEx.#ctor">
<summary>
Creates new instance of ComboBoxEx.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboBoxEx.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboBoxEx.ShouldSerializeWatermarkColor">
<summary>
Indicates whether property should be serialized by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboBoxEx.ResetWatermarkColor">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboBoxEx.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboBoxEx.LoadFonts">
<summary>
Loads all fonts available on system into the combo box.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboBoxEx.ReleaseFocus">
<summary>
Releases the focus from combo box. The control that last had focus will receive focus back when this method is called.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboBoxEx.OnDropDownColumnsChanged(System.String,System.String)">
<summary>
Called when DropDownColumns property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboBoxEx.OnDropDownColumnsHeadersChanged(System.String,System.String)">
<summary>
Called when DropDownColumnsHeaders property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboBoxEx.OnBeforeMultiColumnPopupOpen(System.ComponentModel.CancelEventArgs)">
<summary>
Raises BeforeMultiColumnPopupOpen event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboBoxEx.OnDataColumnCreated(DevComponents.DotNetBar.Controls.DataColumnEventArgs)">
<summary>
Raises the DataColumnCreated event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboBoxEx.OnSelectionChanging(DevComponents.AdvTree.AdvTreeNodeCancelEventArgs)">
<summary>
Raises SelectionChanging event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboBoxEx.OnMultiColumnControlFontChanged(System.Drawing.Font,System.Drawing.Font)">
<summary>
Called when MultiColumnControlFont property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboBoxEx.OnCommandChanged">
<summary>
Called when Command property value changes.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboBoxEx.DropDownChange">
<summary>
Occurs when drop down portion of combo box is shown or hidden.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.FocusCuesEnabled">
<summary>
Gets or sets whether control displays focus cues when focused.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.IsStandalone">
<summary>
Gets or sets whether control is stand-alone control. Stand-alone flag affects the appearance of the control in Office 2007 style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.WatermarkEnabled">
<summary>
Gets or sets whether watermark text is displayed when control is empty. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.WatermarkText">
<summary>
Gets or sets the watermark (tip) text displayed inside of the control when Text is not set and control does not have input focus. This property supports text-markup.
Note that WatermarkText is not compatible with the auto-complete feature of .NET Framework 2.0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.WatermarkBehavior">
<summary>
Gets or sets the watermark hiding behaviour. Default value indicates that watermark is hidden when control receives input focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.WatermarkFont">
<summary>
Gets or sets the watermark font.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.WatermarkColor">
<summary>
Gets or sets the watermark text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.BackColor">
<summary>
Gets or sets the combo box background color. Note that in Office 2007 style back color of the control is automatically managed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.UseCustomBackColor">
<summary>
Gets or sets whether the BackColor value you set is used instead of the style back color automatically provided by the control. Default
value is false which indicates that BackColor property is automatically managed. Set this property to true and then set BackColor property
to make control use your custom back color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.DefaultStyle">
<summary>
Gets or sets value indicating whether system combo box appearance is used. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.ThemeAware">
<summary>
Gets or sets value indicating whether the combo box is draw using the Windows XP Theme manager when running on Windows XP or theme aware OS.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.DisableInternalDrawing">
<summary>
Disables internal drawing support for the List-box portion of Combo-box. Default value is false which means that internal drawing code is used. If
you plan to provide your own drawing for combo box items you must set this property to True.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.PreventEnterBeep">
<summary>
Gets or sets whether combo box generates the audible alert when Enter key is pressed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.Images">
<summary>
The ImageList control used by Combo box to draw images.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.Style">
<summary>
Determines the visual style applied to the combo box when shown. Default style is Office 2007.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.RenderThumb">
<summary>
Gets or sets whether ComboBoxEx thumb button that displays drop-down is rendered. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.RenderBorder">
<summary>
Gets or sets whether ComboBoxEx border is rendered. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.AutoItemHeight">
<summary>
Indicates whether ItemHeight property is set automatically based on the current font when DrawMode=OwnerDrawFixed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.ComboItemColors">
<summary>
Gets or sets the custom color table used to render combo-box items
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.DisabledForeColor">
<summary>
Gets or sets the text color for the text in combo-box when control Enabled property is set to false.
Setting this property is effective only for DropDownList ComboBox style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.DisabledBackColor">
<summary>
Gets or sets the control background color when control is disabled. Default value is an empty color which indicates that system background color is used when control is disabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.DropDownHandle">
<summary>
Gets the window handle that the drop down list is bound to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.FocusHighlightEnabled">
<summary>
Gets or sets whether FocusHighlightColor is used as background color to highlight text box when it has input focus. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.FocusHighlightColor">
<summary>
Gets or sets the color used as background color to highlight text box when it has input focus and focus highlight is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.DropDownColumns">
<summary>
Gets or sets comma separated list of field names that are displayed on drop down. When set it activates ComboBoxEx multi-column drop-down mode.
DataSource must be set in order for drop-down to display data.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.DropDownColumnsHeaders">
<summary>
Indicates custom column names with each column separated by new line, i.e. \r\n escape sequence.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboBoxEx.BeforeMultiColumnPopupOpen">
<summary>
Occurs before the multi-column popup is opened and it allows canceling of popup by setting CancelEventArgs.Cancel=true.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboBoxEx.DataColumnCreated">
<summary>
Occurs when ColumnHeader is automatically created by control as result of data binding for multi-column drop-down and provides you with opportunity to modify it.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboBoxEx.SelectionChanging">
<summary>
Occurs before selection on multi-column drop-down has changed and allows canceling of the change. Applies to multi-column drop-down only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.SelectionClosesPopup">
<summary>
Gets or sets whether selection change on multi-column drop-down closes the popup. Default value is true. Applies to multi-column drop-down only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.PreservePopupSize">
<summary>
Indicates whether multi-column popup size is preserved between popup displays if popup is resized by end-user. Applies to multi-column drop-down only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.EnablePopupResize">
<summary>
Indicates whether multi-column popup can be resized by end user. Applies to multi-column drop-down only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.PopupCloseButtonVisible">
<summary>
Indicates whether multi-column popup close button is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.IsPopupOpen">
<summary>
Gets or sets whether multi-column popup window is open. Applies to multi-column drop-down only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.MultiColumnDisplayControl">
<summary>
Gets the reference to the control which is used to display multi-column data on popup. Control is created just before the popup is opened.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.MultiColumnControlFont">
<summary>
Indicates the font used by the multi-column control on the popup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.Command">
<summary>
Gets or sets the command assigned to the item. Default value is null.
<remarks>Note that if this property is set to null Enabled property will be set to false automatically to disable the item.</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboBoxEx.CommandParameter">
<summary>
Gets or sets user defined data value that can be passed to the command when it is executed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.ComboBoxEx.OnDropDownChangeEventHandler">
<summary>
Represents the method that will handle the DropDownChange event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ComboBoxItem">
<summary>
Summary description for ComboBoxItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ComboBoxItem.#ctor">
<summary>
Creates new instance of ComboBoxItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ComboBoxItem.#ctor(System.String)">
<summary>
Creates new instance of ComboBoxItem and assigns item name.
</summary>
<param name="sName">Item Name.</param>
</member>
<member name="M:DevComponents.DotNetBar.ComboBoxItem.#ctor(System.String,System.String)">
<summary>
Creates new instance of ComboBoxItem and assigns item name and item text.
</summary>
<param name="sName">Item Name</param>
<param name="ItemText">Item Text.</param>
</member>
<member name="M:DevComponents.DotNetBar.ComboBoxItem.ShouldSerializeLabelForeColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ComboBoxItem.ResetLabelForeColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ComboBoxItem.ShouldSerializeDropDownWidth">
<summary>
Returns whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ComboBoxItem.ReleaseFocus">
<summary>
Overridden. Releases the input focus.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ComboBoxItem.OnComboBoxTextChanged(System.EventArgs)">
<summary>
Raises the ComboBoxTextChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.ComboBoxItem.ShouldSerializeWatermarkColor">
<summary>
Indicates whether property should be serialized by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ComboBoxItem.ResetWatermarkColor">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ComboBoxItem.ComboBoxTextChanged">
<summary>
Occurs when underlining control ComboBox.Text property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ComboBoxItem.SelectedIndexChanged">
<summary>
Occurs when selected item on combo box has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.AccessibleRole">
<summary>
Gets or sets the accessible role of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.PreventEnterBeep">
<summary>
Gets or sets whether combo box generates the audible alert when Enter key is pressed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.LabelForeColor">
<summary>
Gets or sets the text color of the combo box label.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.Bounds">
<summary>
IBlock member implementation
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.DropDownWidth">
<summary>
Gets or sets the width of the of the drop-down portion of a combo box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.DropDownHeight">
<summary>
Gets or sets the height of the of the drop-down portion of a combo box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.ComboWidth">
<summary>
Indicates the Width of the combo box part of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.AutoReleaseFocus">
<summary>
Indicates whether control automatically releases its input focus when selection is made using keyboard.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.ComboBoxEx">
<summary>
Returns the reference to the inner combo box control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.AlwaysShowCaption">
<summary>
Indicates whether item caption is always shown.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.Items">
<summary>
Gets an object representing the collection of the items contained in inner ComboBoxEx.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.DropDownStyle">
<summary>
Gets or sets a value specifying the style of the combo box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.SelectionStart">
<summary>
Gets or sets the starting index of text selected in the combo box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.SelectionLength">
<summary>
Gets or sets the number of characters selected in the editable portion of the combo box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.SelectedText">
<summary>
Gets or sets the text that is selected in the editable portion of a combo box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.SelectedItem">
<summary>
Gets or sets currently selected item in the combo box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.SelectedIndex">
<summary>
Gets or sets the index specifying the currently selected item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.FontCombo">
<summary>
Gets or sets the value indicating whether the item automatically loads all the fonts available into the combo box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.ItemHeight">
<summary>
Gets or sets the height of an item in the combo box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.MenuVisibility">
<summary>
Indicates item's visibility when on pop-up menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.RecentlyUsed">
<summary>
Gets or sets the value that indicates whether the item was recently used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.ControlText">
<summary>
Overridden. Gets or sets the text associated with this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.Text">
<summary>
Gets or sets the text associated with this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.Caption">
<summary>
Gets or sets the item caption text displayed next to the combo box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.DisplayMember">
<summary>
Gets or sets a string that specifies the property of the data source whose contents you want to display. When ComboBoxItem is used in DropDown mode
and objects like ComboItem are added to ComboBoxItems.Items collection DisplayMembers should be set to the name of the property you would
like to use as text representation in editable portion of ComboBox. For example in case of ComboItem objects property should be set to Text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.ThemeAware">
<summary>
Specifies whether combo box is drawn using themes when running on OS that supports themes like Windows XP
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.WatermarkFont">
<summary>
Gets or sets the watermark font.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.WatermarkColor">
<summary>
Gets or sets the watermark text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.WatermarkEnabled">
<summary>
Gets or sets whether watermark text is displayed when control is empty. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.WatermarkText">
<summary>
Gets or sets the watermark (tip) text displayed inside of the control when Text is not set and control does not have input focus. This property supports text-markup.
Note that WatermarkText is not compatible with the auto-complete feature of .NET Framework 2.0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.WatermarkBehavior">
<summary>
Gets or sets the watermark hiding behaviour. Default value indicates that watermark is hidden when control receives input focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ComboBoxItem.IsStandalone">
<summary>
Gets or sets whether control is stand-alone control. Stand-alone flag affects the appearance of the control in Office 2007 style.
</summary>
</member>
<member name="T:DevComponents.Editors.ComboItem">
<summary>
Summary description for ComboItem.
</summary>
</member>
<member name="M:DevComponents.Editors.ComboItem.#ctor">
<summary>
Creates new instance of ComboItem.
</summary>
</member>
<member name="M:DevComponents.Editors.ComboItem.#ctor(System.String)">
<summary>
Initializes a new instance of the ComboItem class.
</summary>
<param name="text"></param>
</member>
<member name="M:DevComponents.Editors.ComboItem.#ctor(System.String,System.Drawing.Color)">
<summary>
Initializes a new instance of the ComboItem class.
</summary>
<param name="text"></param>
<param name="foreColor"></param>
</member>
<member name="M:DevComponents.Editors.ComboItem.#ctor(System.String,System.Drawing.Color,System.Drawing.Color)">
<summary>
Initializes a new instance of the ComboItem class.
</summary>
<param name="text"></param>
<param name="foreColor"></param>
<param name="backColor"></param>
</member>
<member name="M:DevComponents.Editors.ComboItem.#ctor(System.String,System.Drawing.Image)">
<summary>
Initializes a new instance of the ComboItem class.
</summary>
<param name="text"></param>
<param name="image"></param>
</member>
<member name="M:DevComponents.Editors.ComboItem.ToString">
<summary>
Overridden. Returns a human-readable string representation of this object.
</summary>
<returns>A string that represents this object.</returns>
</member>
<member name="P:DevComponents.Editors.ComboItem.Text">
<summary>
Gets or sets the text associated with this item.
</summary>
</member>
<member name="P:DevComponents.Editors.ComboItem.ImageIndex">
<summary>
Gets or sets the index value of the image assigned to the item.
</summary>
</member>
<member name="P:DevComponents.Editors.ComboItem.TextAlignment">
<summary>
Gets or sets the text alignment..
</summary>
</member>
<member name="P:DevComponents.Editors.ComboItem.TextLineAlignment">
<summary>
Gets or sets the line alignment for the item.
</summary>
</member>
<member name="P:DevComponents.Editors.ComboItem.TextFormat">
<summary>
Gets or sets the value that encapsulates text layout information (such as alignment, orientation, tab stops, and clipping) and display manipulations.
</summary>
</member>
<member name="P:DevComponents.Editors.ComboItem.ImagePosition">
<summary>
Gets or sets the image horizontal image position.
</summary>
</member>
<member name="P:DevComponents.Editors.ComboItem.FontName">
<summary>
Gets or sets the font name used to draw the item text.
</summary>
</member>
<member name="P:DevComponents.Editors.ComboItem.ForeColor">
<summary>
Gets or sets the text color.
</summary>
</member>
<member name="P:DevComponents.Editors.ComboItem.BackColor">
<summary>
Gets or sets the background color of the item.
</summary>
</member>
<member name="P:DevComponents.Editors.ComboItem.FontStyle">
<summary>
Specifies style information applied to text.
</summary>
</member>
<member name="P:DevComponents.Editors.ComboItem.FontSize">
<summary>
Gets the em-size of this Font object in design units.
</summary>
</member>
<member name="P:DevComponents.Editors.ComboItem.Image">
<summary>
Gets or sets the image assigned to this item.
</summary>
</member>
<member name="P:DevComponents.Editors.ComboItem.Tag">
<summary>
Gets or sets an object that contains data to associate with the item.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.CompositeImage">
<summary>
Serves as integration of regular Image class and Icon class
</summary>
</member>
<member name="T:DevComponents.UI.ContentManager.eContentOrientation">
<summary>
Specifies orientation of content.
</summary>
</member>
<member name="F:DevComponents.UI.ContentManager.eContentOrientation.Horizontal">
<summary>
Indicates Horizontal orientation of the content.
</summary>
</member>
<member name="F:DevComponents.UI.ContentManager.eContentOrientation.Vertical">
<summary>
Indicates Vertical orientation of the content.
</summary>
</member>
<member name="T:DevComponents.UI.ContentManager.eContentAlignment">
<summary>
Specifies content horizontal alignment.
</summary>
</member>
<member name="F:DevComponents.UI.ContentManager.eContentAlignment.Left">
<summary>
Content is left aligned.UI
</summary>
</member>
<member name="F:DevComponents.UI.ContentManager.eContentAlignment.Right">
<summary>
Content is right aligned.
</summary>
</member>
<member name="F:DevComponents.UI.ContentManager.eContentAlignment.Center">
<summary>
Content is centered.
</summary>
</member>
<member name="T:DevComponents.UI.ContentManager.eContentVerticalAlignment">
<summary>
Specifies content vertical alignment.
</summary>
</member>
<member name="F:DevComponents.UI.ContentManager.eContentVerticalAlignment.Top">
<summary>
Content is top aligned.
</summary>
</member>
<member name="F:DevComponents.UI.ContentManager.eContentVerticalAlignment.Bottom">
<summary>
Content is bottom aligned.
</summary>
</member>
<member name="F:DevComponents.UI.ContentManager.eContentVerticalAlignment.Middle">
<summary>
Content is in the middle.
</summary>
</member>
<member name="T:DevComponents.UI.ContentManager.IBlockExtended">
<summary>
Represents a extended content block interface for advanced layout information.
</summary>
</member>
<member name="P:DevComponents.UI.ContentManager.IBlockExtended.IsBlockContainer">
<summary>
Returns whether element is an container so it receives full available size of parent control for layout.
</summary>
</member>
<member name="T:DevComponents.UI.ContentManager.LayoutManagerPositionEventArgs">
<summary>
Represents event arguments for SerialContentLayoutManager.NextPosition event.
</summary>
</member>
<member name="F:DevComponents.UI.ContentManager.LayoutManagerPositionEventArgs.Block">
<summary>
Gets or sets the block that is layed out.
</summary>
</member>
<member name="F:DevComponents.UI.ContentManager.LayoutManagerPositionEventArgs.CurrentPosition">
<summary>
Gets or sets the current block position.
</summary>
</member>
<member name="F:DevComponents.UI.ContentManager.LayoutManagerPositionEventArgs.NextPosition">
<summary>
Gets or sets the calculated next block position.
</summary>
</member>
<member name="F:DevComponents.UI.ContentManager.LayoutManagerPositionEventArgs.Cancel">
<summary>
Cancels default position calculation.
</summary>
</member>
<member name="T:DevComponents.UI.ContentManager.LayoutManagerLayoutEventArgs">
<summary>
Represents event arguments for the SerialContentLayoutManager layout events.
</summary>
</member>
<member name="F:DevComponents.UI.ContentManager.LayoutManagerLayoutEventArgs.Block">
<summary>
Gets or sets the reference block object.
</summary>
</member>
<member name="F:DevComponents.UI.ContentManager.LayoutManagerLayoutEventArgs.CurrentPosition">
<summary>
Gets or sets the position block will assume.
</summary>
</member>
<member name="F:DevComponents.UI.ContentManager.LayoutManagerLayoutEventArgs.CancelLayout">
<summary>
Cancel the layout of the block, applies only to BeforeXXX layout event.
</summary>
</member>
<member name="F:DevComponents.UI.ContentManager.LayoutManagerLayoutEventArgs.BlockVisibleIndex">
<summary>
Gets or sets the visibility index of the block.
</summary>
</member>
<member name="M:DevComponents.UI.ContentManager.LayoutManagerLayoutEventArgs.#ctor(DevComponents.UI.ContentManager.IBlock,System.Drawing.Point,System.Int32)">
<summary>
Creates new instance of the class and initializes it with default values.
</summary>
</member>
<member name="T:DevComponents.UI.ContentManager.LayoutManagerPositionEventHandler">
<summary>
Delegate for SerialContentLayoutManager.NextPosition event.
</summary>
</member>
<member name="T:DevComponents.UI.ContentManager.LayoutManagerLayoutEventHandler">
<summary>
Delegate for the SerialContentLayoutManager layout events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ContextExMenuTypeEditor">
<summary>
Summary description for ContextExMenuTypeEditor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ContextExMenuTypeEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Gets the editor style used by the EditValue method.
</summary>
<param name="context">An ITypeDescriptorContext that can be used to gain additional context information.</param>
<returns>A UITypeEditorEditStyle value that indicates the style of editor used by EditValue. If the UITypeEditor does not support this method, then GetEditStyle will return None</returns>
</member>
<member name="T:DevComponents.DotNetBar.ContextMenuBar">
<summary>
Represents the context menu bar that provides the context menus for the System.Windows.Forms.Control inherited controls on the form.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ContextMenuBar.GetContextMenuEx(System.Windows.Forms.Control)">
<summary>
Returns the instance of the BaseItem that is assigned as context menu to the control.
</summary>
<param name="control">Control to return context menu for.</param>
<returns>Instance of the BaseItem used as context menu for the control.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ContextMenuBar.SetContextMenuEx(System.Windows.Forms.Control,DevComponents.DotNetBar.BaseItem)">
<summary>
Assigns the context menu to a control.
</summary>
<param name="control">Control to assign the context menu to.</param>
<param name="value">Instance of PopupItem derived class usually ButtonItem to act as context menu for a control. The SubItems collection of the item specified here actually defines the visible context menu items.</param>
</member>
<member name="P:DevComponents.DotNetBar.ContextMenuBar.Visible">
<summary>
Gets/Sets whether Bar is visible or not.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ContextMenusCollection">
<summary>
Summary description for Popups.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ControlContainerItem">
<summary>
Summary description for ControlContainerItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ControlContainerItem.#ctor">
<summary>
Creates new instance of ControlContainerItem and assigns item name.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ControlContainerItem.#ctor(System.String)">
<summary>
Creates new instance of ControlContainerItem and assigns item name.
</summary>
<param name="sName">Item name.</param>
</member>
<member name="M:DevComponents.DotNetBar.ControlContainerItem.#ctor(System.String,System.String)">
<summary>
Creates new instance of ControlContainerItem and assigns item name and item text.
</summary>
<param name="sName">Item name.</param>
<param name="ItemText">Item text.</param>
</member>
<member name="M:DevComponents.DotNetBar.ControlContainerItem.Copy">
<summary>
Overridden. Returns the copy of the ControlContainerItem.
</summary>
<returns>Copy of the ControlContainerItem.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ControlContainerItem.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Overridden. Draws the item.
</summary>
<param name="g">Target Graphics object.</param>
</member>
<member name="M:DevComponents.DotNetBar.ControlContainerItem.RecalcSize">
<summary>
Overridden. Recalculates the size of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ControlContainerItem.OnExternalSizeChange">
<summary>
Called when size of the item is changed externally.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ControlContainerItem.GetFont">
<summary>
Returns the Font object to be used for drawing the item text.
</summary>
<returns>Font object.</returns>
</member>
<member name="E:DevComponents.DotNetBar.ControlContainerItem.ContainerLoadControl">
<summary>
Occurs when container control needs to be assigned to the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ControlContainerItem.MenuVisibility">
<summary>
Indicates item's visiblity when on pop-up menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ControlContainerItem.RecentlyUsed">
<summary>
Indicates whether item was recently used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ControlContainerItem.Tooltip">
<summary>
Gets/Sets informational text (tooltip) for the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ControlContainerItem.Control">
<summary>
Gets or sets the reference to the control that is managed by the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ControlContainerItem.Bounds">
<summary>
IBlock member implementation
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ControlContainerItem.AllowItemResize">
<summary>
Specifies whether contained control can be automatically resized to fill the item container.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.CheckBoxX">
<summary>
Represents the Check Box control with extended styles.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CheckBoxX.OnCheckedChanged(System.Object,DevComponents.DotNetBar.CheckBoxChangeEventArgs)">
<summary>
Invokes the CheckedChanged event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CheckBoxX.OnCheckedChanging(System.Object,DevComponents.DotNetBar.CheckBoxChangeEventArgs)">
<summary>
Invokes CheckedChanging event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CheckBoxX.OnCommandChanged">
<summary>
Called when Command property value changes.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.CheckBoxX.CheckedChanging">
<summary>
Occurs before Checked property is changed and allows you to cancel the change.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.CheckBoxX.CheckedChangedEx">
<summary>
Occurs after Checked property is changed with extended information.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.CheckBoxX.CheckedChanged">
<summary>
Occurs after Checked property is changed. This event is provided for the Windows Forms data binding support. You can use CheckedChangedEx to get extended information about the changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.CheckBoxX.CheckValueChanged">
<summary>
Occurs after Checked property is changed. This event is provided for the Windows Forms data binding support. You can use CheckedChangedEx to get extended information about the changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.CheckSignSize">
<summary>
Gets or sets the size of the check or radio sign. Default value is 13x13. Minimum value is 6x6.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.EnableMarkup">
<summary>
Gets or sets whether text-markup support is enabled for controls Text property. Default value is true.
Set this property to false to display HTML or other markup in the control instead of it being parsed as text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.CheckBoxStyle">
<summary>
Gets or sets the appearance style of the item. Default value is CheckBox. Item can also assume the style of radio-button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.CheckBoxPosition">
<summary>
Gets or sets the check box position relative to the text. Default value is Left.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.Checked">
<summary>
Gets or set a value indicating whether the button is in the checked state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.TextVisible">
<summary>
Gets or sets whether text assigned to the check box is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.TextColor">
<summary>
Gets or sets the text color. Default value is Color.Empty which indicates that default color is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.Text">
<summary>
Gets or sets the text associated with the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.AutoSize">
<summary>
Gets or sets a value indicating whether the control is automatically resized to display its entire contents. You can set MaximumSize.Width property to set the maximum width used by the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.ThreeState">
<summary>
Gets or sets a value indicating whether the CheckBox will allow three check states rather than two. If the ThreeState property is set to true
CheckState property should be used instead of Checked property to set the extended state of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.CheckState">
<summary>
Specifies the state of a control, such as a check box, that can be checked, unchecked, or set to an indeterminate state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.CheckBoxItem">
<summary>
Gets the underlying CheckBoxItem
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.EnableMnemonicWithAltKeyOnly">
<summary>
Gets or sets whether mnemonic character assigned to control is processed only if Alt key is pressed. Default value is false which indicate that Alt key is not required.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.AutoCheck">
<summary>
Gets or set whether the Checked values and the item appearance are automatically changed when the Check-Box is clicked. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.CheckValue">
<summary>
Gets or sets the object that represents the Checked state of control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.ConsiderEmptyStringAsNull">
<summary>
Gets or sets whether empty string is consider as null value during CheckValue value comparison. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.CheckValueIndeterminate">
<summary>
Gets or sets the value that represents the Indeterminate state of check box when CheckValue property is set to that value. Default value is null.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.CheckValueChecked">
<summary>
Gets or sets the value that represents the Checked state of check box when CheckValue property is set to that value. Default value is null.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.CheckValueUnchecked">
<summary>
Gets or sets the value that represents the Unchecked state of check box when CheckValue property is set to that value. Default value is null.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.CheckBoxImageChecked">
<summary>
Gets or sets the custom image that is displayed instead default check box representation when check box is checked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.CheckBoxImageUnChecked">
<summary>
Gets or sets the custom image that is displayed instead default check box representation when check box is unchecked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.CheckBoxImageIndeterminate">
<summary>
Gets or sets the custom image that is displayed instead default check box representation when check box is in indeterminate state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.Command">
<summary>
Gets or sets the command assigned to the item. Default value is null.
<remarks>Note that if this property is set to null Enabled property will be set to false automatically to disable the item.</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.CheckBoxX.CommandParameter">
<summary>
Gets or sets user defined data value that can be passed to the command when it is executed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.CheckBoxXChangeEventHandler">
<summary>
Delegate for OptionGroupChanging event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.CheckBoxXChangeEventArgs">
<summary>
Represents event arguments for OptionGroupChanging event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.CheckBoxXChangeEventArgs.Cancel">
<summary>
Set to true to cancel the checking on NewChecked button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.CheckBoxXChangeEventArgs.NewChecked">
<summary>
Check-box that will become checked if operation is not cancelled.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.CheckBoxXChangeEventArgs.OldChecked">
<summary>
Check-box that is currently checked and which will be unchecked if operation is not cancelled. This property will have only valid values for eCheckBoxStyle.RadioButton style CheckBoxItems.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.CheckBoxXChangeEventArgs.EventSource">
<summary>
Indicates the action that has caused the event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CheckBoxXChangeEventArgs.#ctor(DevComponents.DotNetBar.Controls.CheckBoxX,DevComponents.DotNetBar.Controls.CheckBoxX,DevComponents.DotNetBar.eEventSource)">
<summary>
Default constructor.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.ComboTree">
<summary>
Represents the combo box like control which shows the AdvTree control on popup. Tree control
can be configured to display multiple columns as well.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.#ctor">
<summary>
Initializes a new instance of the TextBoxDropDown class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.OnFormattingEnabledChanged(System.EventArgs)">
<summary>
Raises FormattingEnabledChanged event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.OnFormatStringChanged(System.EventArgs)">
<summary>
Raises FormatStringChanged event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.OnFormatInfoChanged(System.EventArgs)">
<summary>
Raises FormatInfoChanged event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.OnDataSourceChanged(System.EventArgs)">
<summary>
Raises the DataSourceChanged event.
</summary>
<param name="e">An EventArgs that contains the event data. </param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.OnDisplayMembersChanged(System.EventArgs)">
<summary>
Raises the DisplayMemberChanged event.
</summary>
<param name="e">An EventArgs that contains the event data. </param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.RefreshItems">
<summary>
When overridden in a derived class, resynchronizes the item data with the contents of the data source.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.SetItemsCore(System.Collections.IList)">
<summary>
When overridden in a derived class, sets the specified array of objects in a collection in the derived class.
</summary>
<param name="items">An array of items.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.OnDataColumnCreated(DevComponents.DotNetBar.Controls.DataColumnEventArgs)">
<summary>
Raises the DataColumnCreated event.
</summary>
<param name="args">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.OnGroupNodeCreated(DevComponents.DotNetBar.Controls.DataNodeEventArgs)">
<summary>
Raises the DataNodeCreated event.
</summary>
<param name="dataNodeEventArgs">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.CreateNode(DevComponents.AdvTree.NodeCollection,System.Object,System.Int32,System.Collections.Generic.List{System.String})">
<summary>
Creates a new node for the data item.
</summary>
<param name="item">Item to create node for.</param>
<returns>New instance of the node.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.OnDataNodeCreated(DevComponents.DotNetBar.Controls.DataNodeEventArgs)">
<summary>
Raises the DataNodeCreated event.
</summary>
<param name="dataNodeEventArgs">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.SetItemCore(System.Int32,System.Object)">
<summary>
When overridden in a derived class, sets the object with the specified index in the derived class.
</summary>
<param name="index">The array index of the object.</param>
<param name="value">The object.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.OnParentFieldNamesChanged">
<summary>
Called when ParentFieldName property has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.OnGroupingMembersChanged">
<summary>
Called when GroupingMembers property has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.OnFormat(DevComponents.DotNetBar.Controls.TreeConvertEventArgs)">
<summary>
Raises the Format event.
</summary>
<param name="e">Event parameters</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.OnSelectedIndexChanged(System.EventArgs)">
<summary>
Raises the SelectedIndexChanged event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.OnValueMemberChanged(System.EventArgs)">
<summary>
Raises the ValueMemberChanged event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.OnSelectedValueChanged(System.EventArgs)">
<summary>
Raises the SelectedValueChanged event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.ShouldSerializeWatermarkColor">
<summary>
Indicates whether property should be serialized by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.ResetWatermarkColor">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.ResetBackgroundStyle">
<summary>
Resets style to default value. Used by windows forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.PaintSelection(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Renders the selected node inside the combo box.
</summary>
<param name="g">Graphics reference.</param>
<param name="bounds">Render bounds.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.UpdateTreeSize">
<summary>
Updates popup tree size based on its content.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.ShowDropDown">
<summary>
Shows drop-down popup. Note that popup will be shown only if there is a DropDownControl assigned or DropDownItems collection has at least one item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.CloseDropDown">
<summary>
Closes the drop-down popup if it is open.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.OnPopupLocationChanged(System.Nullable{System.Drawing.Point},System.Nullable{System.Drawing.Point})">
<summary>
Called when PopupLocation property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.OnButtonClearClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises the ButtonClearClick event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.OnButtonDropDownClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises the ButtonDropDownClick event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.ShouldSerializeGridLinesColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.ResetGridLinesColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ComboTree.OnCommandChanged">
<summary>
Called when Command property value changes.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboTree.ButtonClearClick">
<summary>
Occurs when Clear button is clicked and allows you to cancel the default action performed by the button.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboTree.ButtonDropDownClick">
<summary>
Occurs when Drop-Down button that shows popup is clicked and allows you to cancel showing of the popup.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboTree.ButtonCustomClick">
<summary>
Occurs when ButtonCustom control is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboTree.ButtonCustom2Click">
<summary>
Occurs when ButtonCustom2 control is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboTree.TextAlignChanged">
<summary>
Occurs when the text alignment in text box has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboTree.SelectionChanging">
<summary>
Occurs before Node has been selected by user or through the SelectedNode property. Event can be canceled.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboTree.SelectionChanged">
<summary>
Occurs after node has been selected by user or through the SelectedNode property.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboTree.DataSourceChanged">
<summary>
Occurs when the DataSource changes.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboTree.DisplayMembersChanged">
<summary>
Occurs when the DisplayMembers property changes.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboTree.Format">
<summary>
Occurs when the control is bound to a data value that need to be converted.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboTree.FormattingEnabledChanged">
<summary>
Occurs when FormattingEnabled property changes.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboTree.FormatStringChanged">
<summary>
Occurs when FormatString property changes.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboTree.FormatInfoChanged">
<summary>
Occurs when FormatInfo property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboTree.DataNodeCreated">
<summary>
Occurs when a Node for an data-bound object item has been created and provides you with opportunity to modify the node.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboTree.GroupNodeCreated">
<summary>
Occurs when a group Node is created as result of GroupingMembers property setting and provides you with opportunity to modify the node.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboTree.ValueMemberChanged">
<summary>
Occurs when value of ValueMember property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboTree.SelectedValueChanged">
<summary>
Occurs when value of SelectedValue property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboTree.SelectedIndexChanged">
<summary>
Occurs when value of SelectedIndex property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ComboTree.DataColumnCreated">
<summary>
Occurs when ColumnHeader is automatically created by control as result of data binding and provides you with opportunity to modify it.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.SelectedNode">
<summary>
Gets or sets the tree node that is currently selected in the tree control.
</summary>
<remarks>
<para>If no <see cref="T:DevComponents.AdvTree.Node">Node</see> is currently selected, the
<b>SelectedNode</b> property is a null reference (<b>Nothing</b> in Visual
Basic).</para>
</remarks>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.SelectionClosesPopup">
<summary>
Gets or sets whether selection change on popup tree closes the popup. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.SelectedDisplayMember">
<summary>
Gets or sets the field name that holds the text that will be displayed in the control for selected item. When not set all items set in DisplayMembers will be displayed in control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.SelectedDisplayMemeber">
<summary>
Gets or sets the field name that holds the text that will be displayed in the control for selected item. When not set all items set in DisplayMembers will be displayed in control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.DisplayMembers">
<summary>
Gets or sets the comma separated list of property or column names to display on popup tree control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.DataSource">
<summary>
Gets or sets the data source for the ComboTree. Expected is an object that implements the IList or IListSource interfaces,
such as a DataSet or an Array. The default is null.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.FormattingEnabled">
<summary>
Gets or sets a value indicating whether formatting is applied to the DisplayMembers property of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.FormatString">
<summary>
Gets or sets the format-specifier characters that indicate how a value is to be displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.FormatInfo">
<summary>
Gets or sets the IFormatProvider that provides custom formatting behavior.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.ParentFieldNames">
<summary>
Gets or sets comma separated field or property names that holds the value that is used to identify node and parent node. Format expected is: FieldNodeId,ParentNodeFieldId. For example if your table represents departments, you have DepartmentId field which uniquely identifies a department and ParentDepartmentId field which identifies parent of the department if any you would set this property to DepartmentId,ParentDepartmentId.
Note that you can only use ParentFieldNames or GroupingMembers property but not both. If both are set ParentFieldName take precedence.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.GroupingMembers">
<summary>
Gets or sets comma separated list of field or property names that are used for grouping when data-binding is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.GroupNodeStyle">
<summary>
Gets or sets style for automatically created group nodes when data-binding is used and GroupingMembers property is set.
</summary>
<value>
Name of the style assigned or null value indicating that no style is used.
Default value is null.
</value>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.SelectedIndex">
<summary>
Gets or sets the index specifying the currently selected item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.ValueMember">
<summary>
Gets or sets the property to use as the actual value for the items in the control. Applies to data-binding scenarios. SelectedValue property will return the value of selected node as indicated by this property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.SelectedValue">
<summary>
Gets or sets the value of the member property specified by the ValueMember property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.WatermarkFont">
<summary>
Gets or sets the watermark font.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.WatermarkColor">
<summary>
Gets or sets the watermark text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.WatermarkEnabled">
<summary>
Gets or sets whether watermark text is displayed if set for the input items. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.WatermarkText">
<summary>
Gets or sets the watermark text displayed on the input control when control is empty.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.WatermarkAlignment">
<summary>
Gets or sets the watermark text alignment. Default value is left.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.FocusHighlightEnabled">
<summary>
Gets or sets whether FocusHighlightColor is used as background color to highlight text box when it has input focus. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.FocusHighlightColor">
<summary>
Gets or sets the color used as background color to highlight text box when it has input focus and focus highlight is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.BackgroundStyle">
<summary>
Specifies the background style of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.ButtonDropDown">
<summary>
Gets the object that describes the settings for the button that shows drop-down when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.ButtonClear">
<summary>
Gets the object that describes the settings for the button that clears the content of the control when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.ButtonCustom">
<summary>
Gets the object that describes the settings for the custom button that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.ButtonCustom2">
<summary>
Gets the object that describes the settings for the custom button that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.EnterKeyTogglesPopup">
<summary>
Indicates whether Enter key when pressed while control has input focus toggles the popup. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.KeyboardSearchEnabled">
<summary>
Gets or sets whether keyboard incremental search is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.KeyboardSearchNoSelectionAllowed">
<summary>
Gets or sets whether during keyboard search selected node can be set to nothing/null if there is no match found.
Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.SearchBufferExpireTimeout">
<summary>
Gets or sets the keyboard search buffer expiration timeout. Default value is 1000 which indicates that
key pressed within 1 second will add to the search buffer and control will be searched for node text
that begins with resulting string. Setting this value to 0 will disable the search buffer.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.PopupLocation">
<summary>
Indicates the custom popup location for the ComboTree popup
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.DropDownControl">
<summary>
Gets or sets the reference of the control that will be displayed on popup that is shown when drop-down button is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.DropDownItems">
<summary>
Gets the collection of BaseItem derived items displayed on popup menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.AdvTree">
<summary>
Gets the reference to internal AdvTree control that is displayed on popup Use it to get access to the AdvTree events and properties.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.DropDownHeight">
<summary>
Gets or sets the height in pixels of the drop-down portion of the ComboTreeBox control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.DropDownWidth">
<summary>
Gets or sets the width in pixels of the drop-down portion of the ComboTreeBox control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.IsPopupOpen">
<summary>
Gets or sets a value indicating whether the combo box is displaying its drop-down portion.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.Nodes">
<summary>
Gets the collection of tree nodes that are assigned to the popup tree view control.
</summary>
<value>
A <see cref="T:DevComponents.AdvTree.NodeCollection">NodeCollection</see> that represents the tree nodes
assigned to the tree control.
</value>
<remarks>
<para>The Nodes property holds a collection of Node objects, each of which has a
Nodes property that can contain its own NodeCollection.</para>
</remarks>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.Columns">
<summary>
Gets the collection of column headers that appear in the popup tree.
</summary>
<remarks>
<para>By default there are no column headers defined. In that case tree control
functions as regular tree control where text has unrestricted width.</para>
<para>If you want to restrict the horizontal width of the text but not display
column header you can create one column and set its width to the width desired and
set its Visible property to false.</para>
</remarks>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.ColumnsVisible">
<summary>
Gets or sets whether column headers are visible if they are defined through Columns collection. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.GridColumnLines">
<summary>
Gets or sets whether grid lines are displayed when columns are defined. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.GridLinesColor">
<summary>
Gets or sets the grid lines color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.GridRowLines">
<summary>
Gets or sets whether horizontal grid lines between each row are displayed. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.HotTracking">
<summary>
Gets or sets whether node is highlighted when mouse enters the node. Default value is false.
</summary>
<remarks>
There are two ways to enable the node hot-tracking. You can set the HotTracking property to true in which case the
mouse tracking is enabled using system colors specified in TreeColorTable. You can also define the NodeStyleMouseOver
style which gets applied to the node when mouse is over the node.
</remarks>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.SelectionBoxStyle">
<summary>
Gets or sets the node selection box style for popup tree control.
</summary>
<seealso cref="!:SelectionBox">SelectionBox Property</seealso>
<seealso cref="!:SelectionBoxSize">SelectionBoxSize Property</seealso>
<seealso cref="!:SelectionBoxFillColor">SelectionBoxFillColor Property</seealso>
<seealso cref="!:SelectionBoxBorderColor">SelectionBoxBorderColor Property</seealso>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.ImageList">
<summary>
Gets or sets the ImageList that contains the Image objects used by the tree nodes.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.ImageIndex">
<summary>
Gets or sets the image-list index value of the default image that is displayed by the tree nodes.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.DisabledBackColor">
<summary>
Gets or sets the control background color when control is disabled. Default value is an empty color which indicates that system background color is used when control is disabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.Command">
<summary>
Gets or sets the command assigned to the item. Default value is null.
<remarks>Note that if this property is set to null Enabled property will be set to false automatically to disable the item.</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ComboTree.CommandParameter">
<summary>
Gets or sets user defined data value that can be passed to the command when it is executed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.TreeConvertEventHandler">
<summary>
Represents the method that will handle converting for ComboTree control.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TreeConvertEventArgs.ListItem">
<summary>
Gets the reference to the item being converted.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TreeConvertEventArgs.FieldName">
<summary>
Get the reference to the name of the field or property on the item that needs conversion.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.DataNodeEventHandler">
<summary>
Defines delegate for data node based events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.DataNodeEventArgs">
<summary>
Defines event arguments for data node based events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.DataNodeEventArgs.Node">
<summary>
Gets or sets the node that is created for data item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.DataNodeEventArgs.DataItem">
<summary>
Gets the data-item node is being created for.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataNodeEventArgs.#ctor(DevComponents.AdvTree.Node,System.Object)">
<summary>
Initializes a new instance of the DataNodeEventArgs class.
</summary>
<param name="node"></param>
<param name="dataItem"></param>
</member>
<member name="T:DevComponents.DotNetBar.Controls.DataColumnEventHandler">
<summary>
Defines delegate for data column based events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.DataColumnEventArgs">
<summary>
Defines event arguments for data column based events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.DataColumnEventArgs.ColumnHeader">
<summary>
Gets or sets the column header that is created for data.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataColumnEventArgs.#ctor(DevComponents.AdvTree.ColumnHeader)">
<summary>
Initializes a new instance of the DataColumnEventArgs class.
</summary>
<param name="header"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ControlWithBackgroundStyle.#ctor">
<summary>
Initializes a new instance of the ControlWithBackgroundStyle class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ControlWithBackgroundStyle.ResetBackgroundStyle">
<summary>
Resets style to default value. Used by windows forms designer.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ControlWithBackgroundStyle.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ControlWithBackgroundStyle.BackgroundStyle">
<summary>
Specifies the background style of the control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.DataGridViewX">
<summary>
Represents the DataGridView control with enhanced Office 2007 style.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewX.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewX.DelayResizeCallWhenMdiChild">
<summary>
Indicates whether control will delay call to OnResize base DataGridView method when control is running on MDI Child which was introduced as workaround to an issue in control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewX.ScrollBarAppearance">
<summary>
Gets or sets the scroll-bar visual style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewX.HighlightSelectedColumnHeaders">
<summary>
Gets or sets whether selected column header is highlighted. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewX.SelectAllSignVisible">
<summary>
Gets or sets whether select all sign displayed in top-left corner of the grid is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewX.PaintEnhancedSelection">
<summary>
Gets or sets whether enhanced selection for the cells is painted in Office 2007 style. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewX.UseCustomBackgroundColor">
<summary>
Indicates whether BackgroundColor property set on DataGridView is obeyed instead of using system color scheme color.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXCell.GetContentBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)">
<summary>
GetContentBounds
</summary>
<param name="graphics"></param>
<param name="cellStyle"></param>
<param name="rowIndex"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Cell painting
</summary>
<param name="graphics"></param>
<param name="clipBounds"></param>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="elementState"></param>
<param name="value"></param>
<param name="formattedValue"></param>
<param name="errorText"></param>
<param name="cellStyle"></param>
<param name="advancedBorderStyle"></param>
<param name="paintParts"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXCell.PaintButtonBackground(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Drawing.Rectangle)">
<summary>
Paints the Button background
</summary>
<param name="g"></param>
<param name="cellStyle"></param>
<param name="rBack"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXCell.PaintButtonContent(System.Drawing.Rectangle,System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewPaintParts,System.Drawing.Bitmap)">
<summary>
Paints the button background and content
</summary>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="value"></param>
<param name="cellStyle"></param>
<param name="paintParts"></param>
<param name="bm"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXCell.OnMouseEnter(System.Int32)">
<summary>
OnMouseEnter
</summary>
<param name="rowIndex"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXCell.DoMouseEnter(System.Int32)">
<summary>
Establishes the given rowIndex as the
ActiveRowIndex.
</summary>
<param name="rowIndex"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXCell.OnMouseLeave(System.Int32)">
<summary>
Processes MouseLeave events
</summary>
<param name="rowIndex"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
<summary>
Processes MouseMove events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
<summary>
Processes MouseDown events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
<summary>
Processes MouseUp events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXCell.PartsSet(System.Windows.Forms.DataGridViewPaintParts,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Determines if the given part is set
</summary>
<param name="paintParts"></param>
<param name="parts"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXCell.GetBackBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewAdvancedBorderStyle)">
<summary>
Gets the background bounds for the given cell
</summary>
<param name="cellBounds"></param>
<param name="advancedBorderStyle"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXCell.GetButtonBounds(System.Drawing.Rectangle,System.Boolean)">
<summary>
Gets the button bounds for the given cell
</summary>
<param name="cellBounds"></param>
<param name="localize"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXCell.GetValue(System.Object)">
<summary>
GetValue
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXCell.RefreshButton(System.Int32,System.Int32)">
<summary>
Initiates the refresh of the cell button
</summary>
<param name="columnIndex"></param>
<param name="rowIndex"></param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXCell.EditType">
<summary>
Gets the Type of the editing control associated with the cell
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXCell.FormattedValueType">
<summary>
FormattedValueType
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.IDataGridViewColumn.OwnerPaintCell">
<summary>
Gets whether the Column cells will fully paint
their cell background and content
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.ShouldSerializeImageFixedSize">
<summary>
Gets whether ImageFixedSize property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.HookEvents(System.Boolean)">
<summary>
Hooks or unhooks our system events
</summary>
<param name="hook"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.ButtonItem_ExpandChange(System.Object,System.EventArgs)">
<summary>
Processes Button expand changes
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.ButtonItem_Click(System.Object,System.EventArgs)">
<summary>
ButtonItem_Click
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.GetCellBitmap(System.Drawing.Rectangle)">
<summary>
Gets the cell paint bitmap
</summary>
<param name="cellBounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.OnBeforeCellPaint(System.Int32,System.Int32)">
<summary>
Invokes BeforeCellPaint user events
</summary>
<param name="rowIndex">Row index</param>
<param name="columnIndex">Column index</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.Clone">
<summary>
Clones the ButtonX Column
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.Dispose(System.Boolean)">
<summary>
Dispose
</summary>
<param name="disposing"></param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.ActiveRowIndex">
<summary>
Gets or sets the active row index
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.ButtonX">
<summary>
Gets the Control Button
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.CurrentRowIndex">
<summary>
Gets or sets the Current row index
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.ExpandClosed">
<summary>
Gets or sets a expanded button
was just closed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.InCellCallBack">
<summary>
Gets or sets the cell callback state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.AutoCheckOnClick">
<summary>
Gets or sets whether Checked property is automatically inverted, button checked/unchecked, when button is clicked. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.AutoExpandOnClick">
<summary>
Indicates whether the button will auto-expand when clicked.
When button contains sub-items, sub-items will be shown only if user
click the expand part of the button. Setting this property to true will expand the button and show sub-items when user
clicks anywhere inside of the button. Default value is false which indicates that button is expanded only
if its expand part is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.Checked">
<summary>
Gets or set a value indicating whether the button is in the checked state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.ColorScheme">
<summary>
Gets or sets button Color Scheme. ColorScheme does not apply to Office2007 styled buttons.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.ColorTable">
<summary>
Gets or sets the predefined color of the button. Color specified applies to buttons with Office 2007 style only. It does not have
any effect on other styles. Default value is eButtonColor.BlueWithBackground
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.CustomColorName">
<summary>
Gets or sets the custom color name. Name specified here must be represented by the corresponding object with the same name that is part
of the Office2007ColorTable.ButtonItemColors collection. See documentation for Office2007ColorTable.ButtonItemColors for more information.
If color table with specified name cannot be found default color will be used. Valid settings for this property override any
setting to the Color property. Applies to items with Office 2007 style only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.DisabledImage">
<summary>
Specifies the image for the button when items Enabled property is set to false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.EnableMarkup">
<summary>
Gets or sets whether text-markup support is enabled for items Text property. Default value is true.
Set this property to false to display HTML or other markup in the item instead of it being parsed as text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.Enabled">
<summary>
Gets or sets whether the control can respond to user interaction
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.HotTrackingStyle">
<summary>
Indicates the way button is rendering the mouse over state. Setting the value to
Color will render the image in gray-scale when mouse is not over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.HoverImage">
<summary>
Specifies the image for the button when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.Image">
<summary>
Specifies the Button image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.ImageFixedSize">
<summary>
Sets fixed size of the image. Image will be scaled and painted it size specified.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.ImagePosition">
<summary>
Gets/Sets the image position inside the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.ImageTextSpacing">
<summary>
Gets or sets the amount of spacing between button image if specified and text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.PopupSide">
<summary>
Gets or sets the location of popup in relation to it's parent.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.PressedImage">
<summary>
Specifies the image for the button when mouse left button is pressed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.Shape">
<summary>
Gets or sets an shape descriptor for the button
which describes the shape of the button. Default value is null
which indicates that system default shape is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.ShowSubItems">
<summary>
Gets or sets whether button displays the expand part that indicates that button has popup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.SplitButton">
<summary>
Gets or sets whether button appears as split button. Split button appearance
divides button into two parts. Image which raises the click event when clicked
and text and expand sign which shows button sub items on popup menu when clicked.
Button must have both text and image visible (ButtonStyle property) in order to
appear as a full split button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.Style">
<summary>
Gets/Sets the visual style for the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.SubItems">
<summary>
Returns the collection of sub items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.SubItemsExpandWidth">
<summary>
Gets or sets the width of the expand part of the button item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.Text">
<summary>
Gets or sets the default Text to display on the Button
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.TextAlignment">
<summary>
Gets or sets the text alignment. Applies only when button text is not composed using text markup. Default value is center.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewButtonXColumn.OwnerPaintCell">
<summary>
Gets the Cell paint setting for the ButtonX control
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.BeforeCellPaintEventArgs">
<summary>
BeforeCellPaintEventArgs
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.BeforeCellPaintEventArgs.RowIndex">
<summary>
RowIndex of cell being painted
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.BeforeCellPaintEventArgs.ColumnIndex">
<summary>
ColumnIndex of cell being painted
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXCell.GetAdjustedEditingControlBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle)">
<summary>
GetAdjustedEditingControlBounds
</summary>
<param name="editingControlBounds"></param>
<param name="cellStyle"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)">
<summary>
GetPreferredSize
</summary>
<param name="graphics"></param>
<param name="cellStyle"></param>
<param name="rowIndex"></param>
<param name="constraintSize"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Cell painting
</summary>
<param name="graphics"></param>
<param name="clipBounds"></param>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="elementState"></param>
<param name="value"></param>
<param name="formattedValue"></param>
<param name="errorText"></param>
<param name="cellStyle"></param>
<param name="advancedBorderStyle"></param>
<param name="paintParts"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXCell.PaintButtonBackground(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Drawing.Rectangle)">
<summary>
Paints the Button background
</summary>
<param name="g"></param>
<param name="cellStyle"></param>
<param name="rBack"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXCell.PaintButtonContent(System.Drawing.Rectangle,System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewPaintParts,System.Drawing.Graphics)">
<summary>
Paints the button background and content
</summary>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="value"></param>
<param name="cellStyle"></param>
<param name="paintParts"></param>
<param name="g"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXCell.OnMouseEnter(System.Int32)">
<summary>
OnMouseEnter
</summary>
<param name="rowIndex"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXCell.OnMouseLeave(System.Int32)">
<summary>
Processes MouseLeave events
</summary>
<param name="rowIndex"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
<summary>
Processes MouseMove events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
<summary>
Processes MouseDown events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
<summary>
Processes MouseUp events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXCell.PartsSet(System.Windows.Forms.DataGridViewPaintParts,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Determines if the given part is set
</summary>
<param name="paintParts"></param>
<param name="parts"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXCell.GetBackBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewAdvancedBorderStyle)">
<summary>
Gets the background bounds for the given cell
</summary>
<param name="cellBounds"></param>
<param name="advancedBorderStyle"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXCell.GetContentBounds(System.Drawing.Rectangle)">
<summary>
Gets the Content bounds for the given cell
</summary>
<param name="cellBounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXCell.RefreshCell(System.Int32,System.Int32)">
<summary>
Initiates the refresh of the cell
</summary>
<param name="columnIndex"></param>
<param name="rowIndex"></param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXCell.EditType">
<summary>
Gets the Type of the editing control associated with the cell
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXCell.FormattedValueType">
<summary>
FormattedValueType
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.HookEvents(System.Boolean)">
<summary>
HookEvents
</summary>
<param name="hook"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.CheckBoxItem_Click(System.Object,System.EventArgs)">
<summary>
CheckBoxItem_Click
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.CheckBoxItem_DoubleClick(System.Object,System.EventArgs)">
<summary>
CheckBoxItem_DoubleClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.GetCellBitmap(System.Drawing.Rectangle)">
<summary>
Gets the cell paint bitmap
</summary>
<param name="cellBounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.OnBeforeCellPaint(System.Int32,System.Int32)">
<summary>
Invokes BeforeCellPaint user events
</summary>
<param name="rowIndex">Row index</param>
<param name="columnIndex">Column index</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.Clone">
<summary>
Clones the ButtonX Column
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.Dispose(System.Boolean)">
<summary>
Dispose
</summary>
<param name="disposing"></param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.ActiveRowIndex">
<summary>
Gets or sets the active row index
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.CheckBoxX">
<summary>
Gets the Control Button
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.CurrentRowIndex">
<summary>
Gets or sets the Current row index
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.DownRowIndex">
<summary>
Gets or sets the MouseDown row index
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.InCellCallBack">
<summary>
Gets or sets the cell callback state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.CheckBoxImageChecked">
<summary>
Gets or sets the custom image that is displayed instead default check box representation when check box is checked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.CheckBoxImageUnChecked">
<summary>
Gets or sets the custom image that is displayed instead default check box representation when check box is unchecked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.CheckBoxImageIndeterminate">
<summary>
Gets or sets the custom image that is displayed instead default check box representation when check box is in indeterminate state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.CheckBoxPosition">
<summary>
Gets or sets the check box position relative to the text.
Default value is Left.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.Checked">
<summary>
Gets or set a value indicating whether the button is in the checked state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.CheckState">
<summary>
Specifies the state of the control, that can be
checked, unchecked, or set to an indeterminate state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.CheckValue">
<summary>
CheckValue
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.CheckValueChecked">
<summary>
Gets or sets the value that represents the Checked state value of the check
box when CheckValue property is set to that value. Default value is null.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.CheckValueIndeterminate">
<summary>
Gets or sets the value that represents the Indeterminate state of the check
box when CheckValue property is set to that value. Default value is null.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.CheckValueUnchecked">
<summary>
Gets or sets the value that represents the Unchecked state value of check
box when CheckValue property is set to that value. Default value is 'N'.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.ConsiderEmptyStringAsNull">
<summary>
Gets or sets whether empty string is consider as null value
during CheckValue value comparison. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.Enabled">
<summary>
Gets or sets whether the control can respond to user interaction
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.EnableMarkup">
<summary>
Gets or sets whether text-markup support is enabled for controls
Text property. Default value is true. Set this property to false to
display HTML or other markup in the control instead of it being parsed as text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.Text">
<summary>
Gets or sets the default Text to display
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.TextColor">
<summary>
Gets or sets the text color. Default value is
Color.Empty which indicates that default color is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.TextVisible">
<summary>
Gets or sets whether text assigned to the check box is visible.
Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.ThreeState">
<summary>
Gets or sets a value indicating whether the CheckBox will allow
three check states rather than two. If the ThreeState property is
set to true CheckState property should be used instead of Checked
property to set the extended state of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewCheckBoxXColumn.OwnerPaintCell">
<summary>
Gets the Cell paint setting for the ButtonX control
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExCell.InitializeEditingControl(System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle)">
<summary>
InitializeEditingControl
</summary>
<param name="rowIndex"></param>
<param name="initialFormattedValue"></param>
<param name="dataGridViewCellStyle"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExCell.DetachEditingControl">
<summary>
DetachEditingControl
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExCell.Click(System.Object,System.EventArgs)">
<summary>
Click
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExCell.DrawItem(System.Object,System.Windows.Forms.DrawItemEventArgs)">
<summary>
DrawItem
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExCell.DropDownChange(System.Object,System.Boolean)">
<summary>
DropDownChange
</summary>
<param name="sender"></param>
<param name="expanded"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExCell.MeasureItem(System.Object,System.Windows.Forms.MeasureItemEventArgs)">
<summary>
MeasureItem
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExCell.PositionEditingControl(System.Boolean,System.Boolean,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
PositionEditingControl
</summary>
<param name="setLocation"></param>
<param name="setSize"></param>
<param name="cellBounds"></param>
<param name="cellClip"></param>
<param name="cellStyle"></param>
<param name="singleVerticalBorderAdded"></param>
<param name="singleHorizontalBorderAdded"></param>
<param name="isFirstDisplayedColumn"></param>
<param name="isFirstDisplayedRow"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExCell.GetAdjustedEditingControlBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle)">
<summary>
GetAdjustedEditingControlBounds
</summary>
<param name="editingControlBounds"></param>
<param name="cellStyle"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)">
<summary>
GetPreferredSize
</summary>
<param name="graphics"></param>
<param name="cellStyle"></param>
<param name="rowIndex"></param>
<param name="constraintSize"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExCell.ParseFormattedValue(System.Object,System.Windows.Forms.DataGridViewCellStyle,System.ComponentModel.TypeConverter,System.ComponentModel.TypeConverter)">
<summary>
ParseFormattedValue
</summary>
<param name="formattedValue"></param>
<param name="cellStyle"></param>
<param name="formattedValueTypeConverter"></param>
<param name="valueTypeConverter"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Cell painting
</summary>
<param name="graphics"></param>
<param name="clipBounds"></param>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="elementState"></param>
<param name="value"></param>
<param name="formattedValue"></param>
<param name="errorText"></param>
<param name="cellStyle"></param>
<param name="advancedBorderStyle"></param>
<param name="paintParts"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExCell.PaintCellBackground(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Drawing.Rectangle)">
<summary>
Paints the cell background
</summary>
<param name="g"></param>
<param name="cellStyle"></param>
<param name="rBack"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExCell.PaintCellContent(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewPaintParts,System.Drawing.Bitmap)">
<summary>
Paints the cell content
</summary>
<param name="g"></param>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="value"></param>
<param name="cellStyle"></param>
<param name="paintParts"></param>
<param name="bm"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExCell.DrawControl(DevComponents.DotNetBar.Controls.ComboBoxEx,System.Drawing.Rectangle,System.Drawing.Bitmap,System.Drawing.Graphics,DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn,System.String)">
<summary>
DrawControl
</summary>
<param name="di"></param>
<param name="r"></param>
<param name="bm"></param>
<param name="g"></param>
<param name="oc"></param>
<param name="s"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExCell.DrawText(DevComponents.DotNetBar.Controls.ComboBoxEx,System.Drawing.Rectangle,System.Drawing.Graphics,System.String)">
<summary>
DrawText
</summary>
<param name="di"></param>
<param name="r"></param>
<param name="g"></param>
<param name="s"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExCell.MustRenderVisibleControl(System.Windows.Forms.ComboBoxStyle)">
<summary>
MustRenderVisibleControl
</summary>
<param name="style"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExCell.OnMouseEnter(System.Int32)">
<summary>
OnMouseEnter
</summary>
<param name="rowIndex"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExCell.GetBackBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewAdvancedBorderStyle)">
<summary>
Gets the background bounds for the given cell
</summary>
<param name="cellBounds"></param>
<param name="advancedBorderStyle"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExCell.GetCellBounds(System.Drawing.Rectangle)">
<summary>
Gets the button bounds for the given cell
</summary>
<param name="cellBounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExCell.PartsSet(System.Windows.Forms.DataGridViewPaintParts,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Determines if the given part is set
</summary>
<param name="paintParts"></param>
<param name="parts"></param>
<returns></returns>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExCell.EditType">
<summary>
Gets the Type of the editing control associated with the cell
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.ShouldSerializeWatermarkColor">
<summary>
Indicates whether property should be serialized by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.ResetWatermarkColor">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.HookEvents(System.Boolean)">
<summary>
HookEvents
</summary>
<param name="hook"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.ComboBoxEx_DataSourceChanged(System.Object,System.EventArgs)">
<summary>
ComboBoxEx_DataSourceChanged
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.DoComboBoxEx_Click(System.Object,System.EventArgs)">
<summary>
DoComboBoxEx_Click
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.DoComboBoxEx_DrawItem(System.Object,System.Windows.Forms.DrawItemEventArgs)">
<summary>
DoComboBoxEx_DrawItem
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.DoComboBoxEx_DropDownChange(System.Object,DevComponents.DotNetBar.Controls.DropDownChangeEventArgs)">
<summary>
DoComboBoxEx_DropDownChange
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.DoComboBoxEx_MeasureItem(System.Object,System.Windows.Forms.MeasureItemEventArgs)">
<summary>
DoComboBoxEx_MeasureItem
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.GetCellBitmap(System.Drawing.Rectangle)">
<summary>
Gets the cell paint bitmap
</summary>
<param name="cellBounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.OnBeforeCellPaint(System.Int32,System.Int32)">
<summary>
Invokes BeforeCellPaint user events
</summary>
<param name="rowIndex">Row index</param>
<param name="columnIndex">Column index</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.Clone">
<summary>
Clones the ButtonX Column
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.Dispose(System.Boolean)">
<summary>
Dispose
</summary>
<param name="disposing"></param>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.BeforeCellPaint">
<summary>
Occurs right before a ComboBox Cell is painted
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.Click">
<summary>
Occurs when the ComboBox is clicked
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.DrawItem">
<summary>
Occurs when a visual aspect of an owner-drawn ComboBox changes
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.DropDownChange">
<summary>
Occurs when drop down portion of the ComboBox is shown or hidden.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.MeasureItem">
<summary>
Occurs each time an owner-drawn ComboBox item needs
to be drawn and when the sizes of the list items are determined
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.ComboBoxEx">
<summary>
Gets the underlying ComboBoxEx control
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.CurrencyManager">
<summary>
Gets or sets the ComboBox CurrencyManager
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.AutoCompleteCustomSource">
<summary>
Gets or sets a custom System.Collections.Specialized.StringCollection
to use when the AutoCompleteSource property is set to CustomSource.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.AutoCompleteMode">
<summary>
Gets or sets an option that controls how automatic completion works for the ComboBox.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.AutoCompleteSource">
<summary>
Gets or sets a value specifying the source of complete strings used for automatic completion.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.DataSource">
<summary>
Gets or sets the data source that populates the selections for the combo box
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.DisplayMember">
<summary>
Gets or sets a string that specifies the property or column
from which to retrieve strings for display in the combo box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.DisplayControlForCurrentCellOnly">
<summary>
Gets or sets whether the control
will be displayed for the current cell only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.DrawMode">
<summary>
Gets or sets a value indicating whether user code or
operating system code will handle drawing of elements in the list.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.DropDownStyle">
<summary>
Gets or sets a value specifying the style of the combo box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.DropDownHeight">
<summary>
Gets or sets the height in pixels of the drop-down portion of the ComboBox.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.DropDownWidth">
<summary>
Gets or sets the width of the drop-down lists of the combo box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.Enabled">
<summary>
Gets or sets whether the control can respond to user interaction
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.FlatStyle">
<summary>
Gets or sets the flat style appearance of the column's cells.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.FocusCuesEnabled">
<summary>
Gets or sets whether control displays focus cues when focused.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.FormatString">
<summary>
Gets or sets the format-specifier
characters that indicate how a value is to be displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.FormattingEnabled">
<summary>
Gets or sets a value indicating whether formatting is applied to the DisplayMember property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.Images">
<summary>
Gets or sets the ImageList control used by Combo box to draw images.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.ImeMode">
<summary>
Gets or sets the Input Method Editor (IME) mode of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.IntegralHeight">
<summary>
Gets or sets a value indicating whether
the control should resize to avoid showing partial items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.IsStandalone">
<summary>
Gets or sets whether control is stand-alone control.
Stand-alone flag affects the appearance of the control in Office 2007 style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.ItemHeight">
<summary>
Gets or sets the height of an item in the combo box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.Items">
<summary>
Gets the collection of objects used as selections in the combo box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.MaxDropDownItems">
<summary>
Gets or sets the maximum number of items
in the drop-down list of the cells in the column.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.MaxLength">
<summary>
Gets or sets the number of characters a user can type into the ComboBox.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.RightToLeft">
<summary>
Gets or sets a value indicating whether control's
elements are aligned to support locales using right-to-left fonts.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.Sorted">
<summary>
Gets or sets whether the items in the combo box are sorted.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.Style">
<summary>
Determines the visual style applied to
the combo box when shown. Default style is Office 2007.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.Text">
<summary>
Gets or sets the text associated with this control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.ValueMember">
<summary>
Gets or sets a string that specifies the property or column
from which to get values that correspond to the selections in the drop-down list.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.WatermarkBehavior">
<summary>
Gets or sets the watermark hiding behaviour. Default value
indicates that watermark is hidden when control receives input focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.WatermarkColor">
<summary>
Gets or sets the watermark text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.WatermarkEnabled">
<summary>
Gets or sets whether watermark text is
displayed when control is empty. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.WatermarkFont">
<summary>
Gets or sets the watermark font.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.WatermarkText">
<summary>
Gets or sets the watermark (tip) text displayed inside of the control when Text
is not set and control does not have input focus. This property supports text-markup.
Note that WatermarkText is not compatible with the auto-complete feature of .NET Framework 2.0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn.OwnerPaintCell">
<summary>
Gets the Cell paint setting for the control
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.DropDownChangeEventArgs">
<summary>
DropDownChangeEventArgs
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DropDownChangeEventArgs.ColumnIndex">
<summary>
ColumnIndex
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DropDownChangeEventArgs.Expanded">
<summary>
Expanded state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DropDownChangeEventArgs.RowIndex">
<summary>
RowIndex
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExEditingControl.OnTextChanged(System.EventArgs)">
<summary>
Handles OnTextChanged events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExEditingControl.OnSelectedIndexChanged(System.EventArgs)">
<summary>
OnSelectedIndexChanged
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExEditingControl.NotifyDataGridViewOfValueChange">
<summary>
NotifyDataGridViewOfValueChange
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExEditingControl.ApplyCellStyleToEditingControl(System.Windows.Forms.DataGridViewCellStyle)">
<summary>
ApplyCellStyleToEditingControl
</summary>
<param name="dataGridViewCellStyle"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExEditingControl.GetEditingControlFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts)">
<summary>
Gets EditingControlFormattedValue
</summary>
<param name="context"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExEditingControl.EditingControlWantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
<summary>
Gets whether the given key wants to be processed
by the Control
</summary>
<param name="keyData"></param>
<param name="dataGridViewWantsInputKey"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExEditingControl.PrepareEditingControlForEdit(System.Boolean)">
<summary>
PrepareEditingControlForEdit
</summary>
<param name="selectAll"></param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExEditingControl.EditingControlDataGridView">
<summary>
Gets or sets the DataGridView
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExEditingControl.EditingControlFormattedValue">
<summary>
Gets or sets the Control Formatted Value
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExEditingControl.EditingControlRowIndex">
<summary>
Gets or sets the Control RoeIndex
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExEditingControl.EditingControlValueChanged">
<summary>
Gets or sets the Control ValueChanged state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExEditingControl.EditingPanelCursor">
<summary>
Gets the Panel Cursor
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewComboBoxExEditingControl.RepositionEditingControlOnValueChange">
<summary>
Gets whether to RepositionEditingControlOnValueChange
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.InitializeEditingControl(System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle)">
<summary>
InitializeEditingControl
</summary>
<param name="rowIndex"></param>
<param name="initialFormattedValue"></param>
<param name="dataGridViewCellStyle"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.DetachEditingControl">
<summary>
DetachEditingControl
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.ButtonClearClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
ButtonClearClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.ButtonCustomClick(System.Object,System.EventArgs)">
<summary>
ButtonCustomClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.ButtonCustom2Click(System.Object,System.EventArgs)">
<summary>
ButtonCustom2Click
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.ButtonDropDownClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
ButtonDropDownClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.ButtonFreeTextClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
ButtonFreeTextClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.ConvertFreeTextEntry(System.Object,DevComponents.Editors.FreeTextEntryConversionEventArgs)">
<summary>
ConvertFreeTextEntry
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.PositionEditingControl(System.Boolean,System.Boolean,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
PositionEditingControl
</summary>
<param name="setLocation"></param>
<param name="setSize"></param>
<param name="cellBounds"></param>
<param name="cellClip"></param>
<param name="cellStyle"></param>
<param name="singleVerticalBorderAdded"></param>
<param name="singleHorizontalBorderAdded"></param>
<param name="isFirstDisplayedColumn"></param>
<param name="isFirstDisplayedRow"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.GetAdjustedEditingControlBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle)">
<summary>
GetAdjustedEditingControlBounds
</summary>
<param name="editingControlBounds"></param>
<param name="cellStyle"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)">
<summary>
GetPreferredSize
</summary>
<param name="graphics"></param>
<param name="cellStyle"></param>
<param name="rowIndex"></param>
<param name="constraintSize"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Cell painting
</summary>
<param name="graphics"></param>
<param name="clipBounds"></param>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="elementState"></param>
<param name="value"></param>
<param name="formattedValue"></param>
<param name="errorText"></param>
<param name="cellStyle"></param>
<param name="advancedBorderStyle"></param>
<param name="paintParts"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.PaintCellBackground(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Drawing.Rectangle)">
<summary>
Paints the cell background
</summary>
<param name="g"></param>
<param name="cellStyle"></param>
<param name="rBack"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.PaintCellContent(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Paints the cell content
</summary>
<param name="g"></param>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="value"></param>
<param name="cellStyle"></param>
<param name="paintParts"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.DrawControl(DevComponents.Editors.DateTimeAdv.DateTimeInput,System.Drawing.Rectangle,System.Drawing.Graphics)">
<summary>
DrawControl
</summary>
<param name="di"></param>
<param name="r"></param>
<param name="g"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.DrawText(DevComponents.Editors.DateTimeAdv.DateTimeInput,System.Drawing.Rectangle,System.Drawing.Graphics)">
<summary>
DrawText
</summary>
<param name="di"></param>
<param name="r"></param>
<param name="g"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.GetBackBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewAdvancedBorderStyle)">
<summary>
Gets the background bounds for the given cell
</summary>
<param name="cellBounds"></param>
<param name="advancedBorderStyle"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.GetCellBounds(System.Drawing.Rectangle)">
<summary>
Gets the button bounds for the given cell
</summary>
<param name="cellBounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.GetValue(System.Object)">
<summary>
GetValue
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.GetHorizontalAlignment(System.Windows.Forms.DataGridViewContentAlignment)">
<summary>
GetHorizontalAlignment
</summary>
<param name="alignment"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.PartsSet(System.Windows.Forms.DataGridViewPaintParts,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Determines if the given part is set
</summary>
<param name="paintParts"></param>
<param name="parts"></param>
<returns></returns>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.EditType">
<summary>
Gets the Type of the editing control associated with the cell
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputCell.FormattedValueType">
<summary>
FormattedValueType
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.ResetBackgroundStyle">
<summary>
Resets style to default value. Used by windows forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.ShouldSerializeMaxDate">
<summary>
Gets whether Value property should be serialized by Windows Forms designer.
</summary>
<returns>true if value serialized otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.ShouldSerializeMinDate">
<summary>
Gets whether Value property should be serialized by Windows Forms designer.
</summary>
<returns>true if value serialized otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.DoButtonClearClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
DoButtonClearClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.DoButtonCustomClick(System.Object,System.EventArgs)">
<summary>
DoButtonCustomClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.DoButtonCustom2Click(System.Object,System.EventArgs)">
<summary>
DoButtonCustom2Click
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.DoButtonDropDownClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
DoButtonDropDownClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.DoButtonFreeTextClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
DoButtonFreeTextClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.DoConvertFreeTextEntry(System.Object,DevComponents.Editors.FreeTextEntryConversionEventArgs)">
<summary>
DoConvertFreeTextEntry
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.GetCellBitmap(System.Drawing.Rectangle)">
<summary>
Gets the cell paint bitmap
</summary>
<param name="cellBounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.OnBeforeCellPaint(System.Int32,System.Int32)">
<summary>
Invokes BeforeCellPaint user events
</summary>
<param name="rowIndex">Row index</param>
<param name="columnIndex">Column index</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.Clone">
<summary>
Clones the ButtonX Column
</summary>
<returns></returns>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.BeforeCellPaint">
<summary>
Occurs right before a DateTimeInput Cell is painted
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.ButtonClearClick">
<summary>
Occurs when Clear button is clicked and allows you
to cancel the default action performed by the button
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.ButtonCustomClick">
<summary>
Occurs when ButtonCustom control is clicked
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.ButtonCustom2Click">
<summary>
Occurs when ButtonCustom2 control is clicked
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.ButtonDropDownClick">
<summary>
Occurs when Drop-Down button that shows calendar
is clicked and allows you to cancel showing of the popup
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.ButtonFreeTextClick">
<summary>
Occurs when Free-Text button is clicked
and allows you to cancel its default action
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.ConvertFreeTextEntry">
<summary>
Occurs if Free-Text entry value is not natively recognized by
the control and provides you with opportunity to convert that
value to the value the control expects
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.DateTimeInput">
<summary>
Gets the underlying DateTimeInput control
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.AllowEmptyState">
<summary>
Gets or sets whether empty null/nothing state of the control is
allowed. Default value is true which means that IsEmpty property may
return true if input value is resets or ValueObject set to null/nothing.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.AutoAdvance">
<summary>
Gets or sets whether input focus is automatically advanced
to next input field when input is complete in current one.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.AutoSelectDate">
<summary>
Gets or sets whether first day in month is automatically
selected on popup date picker when month or year is changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.AutoOverwrite">
<summary>
Gets or sets whether auto-overwrite functionality for input is enabled.
When in auto-overwrite mode input field will erase existing entry
and start new one if typing is continued after InputComplete method is called.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.BackgroundStyle">
<summary>
Specifies the background style of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.ButtonClear">
<summary>
Gets the object that describes the settings for the button
that clears the content of the control when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.ButtonCustom">
<summary>
Gets the object that describes the settings for the custom button
that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.ButtonCustom2">
<summary>
Gets the object that describes the settings for the custom button that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.ButtonDropDown">
<summary>
Gets the object that describes the settings for the button
that shows drop-down when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.ButtonFreeText">
<summary>
Gets the object that describes the settings for the button
that switches the control into the free-text entry mode when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.CustomFormat">
<summary>
Gets or sets the custom date/time format string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.DisplayControlForCurrentCellOnly">
<summary>
Gets or sets whether the control
will be displayed for the current cell only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.DefaultInputValues">
<summary>
Gets or sets whether empty input values (year, month or day) are
set to defaults while user is entering data. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.Enabled">
<summary>
Gets or sets whether the control can respond to user interaction
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.Format">
<summary>
Gets or sets the format date/time is displayed in. To specify
custom format set this value to Custom and specify custom format
using CustomFormat property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.InputHorizontalAlignment">
<summary>
Gets or sets the input field alignment inside the control
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.IsInputReadOnly">
<summary>
Gets or sets whether input part of the control is read-only. When set
to true the input part of the control becomes read-only and does not allow
the typing. However, drop-down part if visible still allows user to change
the value of the control. Use this property to allow change of the value
through drop-down picker only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.LockUpdateChecked">
<summary>
Gets or sets whether check box shown using ShowCheckBox
property which locks/unlocks the control update is checked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.MaxDate">
<summary>
Gets or sets the maximum date and time that can be selected in the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.MinDate">
<summary>
Gets or sets the minimum date and time that can be selected in the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.MonthCalendar">
<summary>
Gets the reference to the internal MonthCalendarItem control which is used to display calendar when drop-down is open.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.SelectNextInputCharacters">
<summary>
List of characters that when pressed would select next input field. For example if you are
allowing time input you could set this property to : so when user presses the : character,
the input is forwarded to the next input field.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.ShowCheckBox">
<summary>
Gets or sets a value indicating whether a check box is
displayed to the left of the input value. Set to true if a check box
is displayed to the left of the input value; otherwise, false. The default is false.
<remarks>
When the ShowCheckBox property is set to true, a check box is displayed
to the left of the input in the control. When the check box is selected, the value
can be updated. When the check box is cleared, the value is unable to be changed.
You can handle the LockUpdateChanged event to be notified when this check box is checked
and unchecked. Use LockUpdateChecked property to get or sets whether check box is checked.
</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.ShowUpDown">
<summary>
Gets or sets a value indicating whether a spin button control
(up-down control) is used to adjust the current value. The default is false.
<remarks>
When the ShowUpDown property is set to true, a spin button control
is shown to adjust value of currently focused input item. The value can
be adjusted by using the up and down buttons to change the value.
</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn.OwnerPaintCell">
<summary>
Gets the Cell paint setting for the control
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputEditingControl.OnValueChanged(System.EventArgs)">
<summary>
Handles OnValueChanged events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputEditingControl.ApplyCellStyleToEditingControl(System.Windows.Forms.DataGridViewCellStyle)">
<summary>
ApplyCellStyleToEditingControl
</summary>
<param name="dataGridViewCellStyle"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputEditingControl.GetEditingControlFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts)">
<summary>
Gets EditingControlFormattedValue
</summary>
<param name="context"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputEditingControl.EditingControlWantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
<summary>
Gets whether the given key wants to be processed
by the Control
</summary>
<param name="keyData"></param>
<param name="dataGridViewWantsInputKey"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputEditingControl.PrepareEditingControlForEdit(System.Boolean)">
<summary>
PrepareEditingControlForEdit
</summary>
<param name="selectAll"></param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputEditingControl.EditCancelled">
<summary>
Gets or sets the Edit state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputEditingControl.EditingControlDataGridView">
<summary>
Gets or sets the DataGridView
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputEditingControl.EditingControlFormattedValue">
<summary>
Gets or sets the Control Formatted Value
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputEditingControl.EditingControlRowIndex">
<summary>
Gets or sets the Control RoeIndex
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputEditingControl.EditingControlValueChanged">
<summary>
Gets or sets the Control ValueChanged state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputEditingControl.EditingPanelCursor">
<summary>
Gets the Panel Cursor
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputEditingControl.RepositionEditingControlOnValueChange">
<summary>
Gets whether to RepositionEditingControlOnValueChange
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.InitializeEditingControl(System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle)">
<summary>
InitializeEditingControl
</summary>
<param name="rowIndex"></param>
<param name="initialFormattedValue"></param>
<param name="dataGridViewCellStyle"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.DetachEditingControl">
<summary>
DetachEditingControl
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.ButtonClearClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
ButtonClearClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.ButtonCustomClick(System.Object,System.EventArgs)">
<summary>
ButtonCustomClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.ButtonCustom2Click(System.Object,System.EventArgs)">
<summary>
ButtonCustom2Click
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.ButtonDropDownClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
ButtonDropDownClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.ButtonFreeTextClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
ButtonFreeTextClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.ConvertFreeTextEntry(System.Object,DevComponents.Editors.FreeTextEntryConversionEventArgs)">
<summary>
ConvertFreeTextEntry
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.PositionEditingControl(System.Boolean,System.Boolean,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
PositionEditingControl
</summary>
<param name="setLocation"></param>
<param name="setSize"></param>
<param name="cellBounds"></param>
<param name="cellClip"></param>
<param name="cellStyle"></param>
<param name="singleVerticalBorderAdded"></param>
<param name="singleHorizontalBorderAdded"></param>
<param name="isFirstDisplayedColumn"></param>
<param name="isFirstDisplayedRow"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.GetAdjustedEditingControlBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle)">
<summary>
GetAdjustedEditingControlBounds
</summary>
<param name="editingControlBounds"></param>
<param name="cellStyle"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)">
<summary>
GetPreferredSize
</summary>
<param name="graphics"></param>
<param name="cellStyle"></param>
<param name="rowIndex"></param>
<param name="constraintSize"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Cell painting
</summary>
<param name="graphics"></param>
<param name="clipBounds"></param>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="elementState"></param>
<param name="value"></param>
<param name="formattedValue"></param>
<param name="errorText"></param>
<param name="cellStyle"></param>
<param name="advancedBorderStyle"></param>
<param name="paintParts"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.PaintCellBackground(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Drawing.Rectangle)">
<summary>
Paints the cell background
</summary>
<param name="g"></param>
<param name="cellStyle"></param>
<param name="rBack"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.PaintCellContent(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Paints the cell content
</summary>
<param name="g"></param>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="value"></param>
<param name="cellStyle"></param>
<param name="paintParts"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.DrawControl(DevComponents.Editors.DoubleInput,System.Drawing.Rectangle,System.Drawing.Graphics)">
<summary>
DrawControl
</summary>
<param name="di"></param>
<param name="r"></param>
<param name="g"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.DrawText(DevComponents.Editors.DoubleInput,System.Drawing.Rectangle,System.Drawing.Graphics)">
<summary>
DrawText
</summary>
<param name="di"></param>
<param name="r"></param>
<param name="g"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.GetBackBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewAdvancedBorderStyle)">
<summary>
Gets the background bounds for the given cell
</summary>
<param name="cellBounds"></param>
<param name="advancedBorderStyle"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.GetCellBounds(System.Drawing.Rectangle)">
<summary>
Gets the button bounds for the given cell
</summary>
<param name="cellBounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.GetValue(System.Object)">
<summary>
GetValue
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.GetHorizontalAlignment(System.Windows.Forms.DataGridViewContentAlignment)">
<summary>
GetHorizontalAlignment
</summary>
<param name="alignment"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.PartsSet(System.Windows.Forms.DataGridViewPaintParts,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Determines if the given part is set
</summary>
<param name="paintParts"></param>
<param name="parts"></param>
<returns></returns>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.EditType">
<summary>
Gets the Type of the editing control associated with the cell
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputCell.FormattedValueType">
<summary>
FormattedValueType
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.ResetBackgroundStyle">
<summary>
Resets style to default value. Used by windows forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.DoButtonClearClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
DoButtonClearClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.DoButtonCustomClick(System.Object,System.EventArgs)">
<summary>
DoButtonCustomClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.DoButtonCustom2Click(System.Object,System.EventArgs)">
<summary>
DoButtonCustom2Click
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.DoButtonDropDownClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
DoButtonDropDownClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.DoButtonFreeTextClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
DoButtonFreeTextClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.DoConvertFreeTextEntry(System.Object,DevComponents.Editors.FreeTextEntryConversionEventArgs)">
<summary>
DoConvertFreeTextEntry
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.GetCellBitmap(System.Drawing.Rectangle)">
<summary>
Gets the cell paint bitmap
</summary>
<param name="cellBounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.OnBeforeCellPaint(System.Int32,System.Int32)">
<summary>
Invokes BeforeCellPaint user events
</summary>
<param name="rowIndex">Row index</param>
<param name="columnIndex">Column index</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.Clone">
<summary>
Clones the ButtonX Column
</summary>
<returns></returns>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.BeforeCellPaint">
<summary>
Occurs right before a DoubleInput Cell is painted
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.ButtonClearClick">
<summary>
Occurs when Clear button is clicked and allows you
to cancel the default action performed by the button
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.ButtonCustomClick">
<summary>
Occurs when ButtonCustom control is clicked
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.ButtonCustom2Click">
<summary>
Occurs when ButtonCustom2 control is clicked
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.ButtonDropDownClick">
<summary>
Occurs when Drop-Down button that shows calendar
is clicked and allows you to cancel showing of the popup
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.ButtonFreeTextClick">
<summary>
Occurs when Free-Text button is clicked
and allows you to cancel its default action
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.ConvertFreeTextEntry">
<summary>
Occurs if Free-Text entry value is not natively recognized by
the control and provides you with opportunity to convert that
value to the value the control expects
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.DoubleInput">
<summary>
DoubleInput
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.BackgroundStyle">
<summary>
Specifies the background style of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.ButtonClear">
<summary>
Gets the object that describes the settings for the button
that clears the content of the control when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.ButtonCustom">
<summary>
Gets the object that describes the settings for the custom button
that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.ButtonCustom2">
<summary>
Gets the object that describes the settings for the custom button that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.ButtonDropDown">
<summary>
Gets the object that describes the settings for the button
that shows drop-down when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.ButtonFreeText">
<summary>
Gets the object that describes the settings for the button
that switches the control into the free-text entry mode when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.DisplayFormat">
<summary>
Gets or sets the Numeric String Format that is used to format
the numeric value entered for display purpose. Read more about
available formats in MSDN under "Standard Numeric Format Strings"
and "Custom Numeric Format Strings" topics.
<remarks>
The format specified here indicates the format for display purpose
only, not for the input purpose. For example to display the number
in system Currency format set the DisplayFormat to 'C'.
</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.DisplayControlForCurrentCellOnly">
<summary>
Gets or sets whether the control
will be displayed for the current cell only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.Enabled">
<summary>
Gets or sets whether the control can respond to user interaction
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.Increment">
<summary>
Gets or sets the value to increment or decrement the value of the
control when the up or down buttons are clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.InputHorizontalAlignment">
<summary>
Gets or sets the input field alignment inside the control
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.LockUpdateChecked">
<summary>
Gets or sets whether check box shown using ShowCheckBox
property which locks/unlocks the control update is checked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.MaxValue">
<summary>
Gets or sets the maximum value that can be entered.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.MinValue">
<summary>
Gets or sets the minimum value that can be entered.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.ShowCheckBox">
<summary>
Gets or sets a value indicating whether a check box is
displayed to the left of the input value. Set to true if a check box
is displayed to the left of the input value; otherwise, false. The default is false.
<remarks>
When the ShowCheckBox property is set to true, a check box is displayed
to the left of the input in the control. When the check box is selected, the value
can be updated. When the check box is cleared, the value is unable to be changed.
You can handle the LockUpdateChanged event to be notified when this check box is checked
and unchecked. Use LockUpdateChecked property to get or sets whether check box is checked.
</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.ShowUpDown">
<summary>
Gets or sets a value indicating whether a spin button control
(up-down control) is used to adjust the current value. The default is false.
<remarks>
When the ShowUpDown property is set to true, a spin button control
is shown to adjust value of currently focused input item. The value can
be adjusted by using the up and down buttons to change the value.
</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputColumn.OwnerPaintCell">
<summary>
Gets the Cell paint setting for the control
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputEditingControl.OnValueChanged(System.EventArgs)">
<summary>
Handles OnValueChanged events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputEditingControl.ApplyCellStyleToEditingControl(System.Windows.Forms.DataGridViewCellStyle)">
<summary>
ApplyCellStyleToEditingControl
</summary>
<param name="dataGridViewCellStyle"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputEditingControl.GetEditingControlFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts)">
<summary>
Gets EditingControlFormattedValue
</summary>
<param name="context"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputEditingControl.EditingControlWantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
<summary>
Gets whether the given key wants to be processed
by the Control
</summary>
<param name="keyData"></param>
<param name="dataGridViewWantsInputKey"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputEditingControl.PrepareEditingControlForEdit(System.Boolean)">
<summary>
PrepareEditingControlForEdit
</summary>
<param name="selectAll"></param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputEditingControl.EditCancelled">
<summary>
Gets or sets the Edit state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputEditingControl.EditingControlDataGridView">
<summary>
Gets or sets the DataGridView
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputEditingControl.EditingControlFormattedValue">
<summary>
Gets or sets the Control Formatted Value
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputEditingControl.EditingControlRowIndex">
<summary>
Gets or sets the Control RoeIndex
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputEditingControl.EditingControlValueChanged">
<summary>
Gets or sets the Control ValueChanged state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputEditingControl.EditingPanelCursor">
<summary>
Gets the Panel Cursor
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewDoubleInputEditingControl.RepositionEditingControlOnValueChange">
<summary>
Gets whether to RepositionEditingControlOnValueChange
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.InitializeEditingControl(System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle)">
<summary>
InitializeEditingControl
</summary>
<param name="rowIndex"></param>
<param name="initialFormattedValue"></param>
<param name="dataGridViewCellStyle"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.DetachEditingControl">
<summary>
DetachEditingControl
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.ButtonClearClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
ButtonClearClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.ButtonCustomClick(System.Object,System.EventArgs)">
<summary>
ButtonCustomClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.ButtonCustom2Click(System.Object,System.EventArgs)">
<summary>
ButtonCustom2Click
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.ButtonDropDownClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
ButtonDropDownClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.ButtonFreeTextClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
ButtonFreeTextClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.ConvertFreeTextEntry(System.Object,DevComponents.Editors.FreeTextEntryConversionEventArgs)">
<summary>
ConvertFreeTextEntry
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.PositionEditingControl(System.Boolean,System.Boolean,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
PositionEditingControl
</summary>
<param name="setLocation"></param>
<param name="setSize"></param>
<param name="cellBounds"></param>
<param name="cellClip"></param>
<param name="cellStyle"></param>
<param name="singleVerticalBorderAdded"></param>
<param name="singleHorizontalBorderAdded"></param>
<param name="isFirstDisplayedColumn"></param>
<param name="isFirstDisplayedRow"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.GetAdjustedEditingControlBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle)">
<summary>
GetAdjustedEditingControlBounds
</summary>
<param name="editingControlBounds"></param>
<param name="cellStyle"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)">
<summary>
GetPreferredSize
</summary>
<param name="graphics"></param>
<param name="cellStyle"></param>
<param name="rowIndex"></param>
<param name="constraintSize"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Cell painting
</summary>
<param name="graphics"></param>
<param name="clipBounds"></param>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="elementState"></param>
<param name="value"></param>
<param name="formattedValue"></param>
<param name="errorText"></param>
<param name="cellStyle"></param>
<param name="advancedBorderStyle"></param>
<param name="paintParts"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.PaintCellBackground(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Drawing.Rectangle)">
<summary>
Paints the cell background
</summary>
<param name="g"></param>
<param name="cellStyle"></param>
<param name="rBack"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.PaintCellContent(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Paints the cell content
</summary>
<param name="g"></param>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="value"></param>
<param name="cellStyle"></param>
<param name="paintParts"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.DrawControl(DevComponents.Editors.IntegerInput,System.Drawing.Rectangle,System.Drawing.Graphics)">
<summary>
DrawControl
</summary>
<param name="di"></param>
<param name="r"></param>
<param name="g"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.DrawText(DevComponents.Editors.IntegerInput,System.Drawing.Rectangle,System.Drawing.Graphics)">
<summary>
DrawText
</summary>
<param name="di"></param>
<param name="r"></param>
<param name="g"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.GetBackBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewAdvancedBorderStyle)">
<summary>
Gets the background bounds for the given cell
</summary>
<param name="cellBounds"></param>
<param name="advancedBorderStyle"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.GetCellBounds(System.Drawing.Rectangle)">
<summary>
Gets the button bounds for the given cell
</summary>
<param name="cellBounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.GetValue(System.Object)">
<summary>
GetValue
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.GetHorizontalAlignment(System.Windows.Forms.DataGridViewContentAlignment)">
<summary>
GetHorizontalAlignment
</summary>
<param name="alignment"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.PartsSet(System.Windows.Forms.DataGridViewPaintParts,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Determines if the given part is set
</summary>
<param name="paintParts"></param>
<param name="parts"></param>
<returns></returns>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.EditType">
<summary>
Gets the Type of the editing control associated with the cell
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputCell.FormattedValueType">
<summary>
FormattedValueType
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.ResetBackgroundStyle">
<summary>
Resets style to default value. Used by windows forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.DoButtonClearClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
DoButtonClearClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.DoButtonCustomClick(System.Object,System.EventArgs)">
<summary>
DoButtonCustomClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.DoButtonCustom2Click(System.Object,System.EventArgs)">
<summary>
DoButtonCustom2Click
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.DoButtonDropDownClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
DoButtonDropDownClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.DoButtonFreeTextClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
DoButtonFreeTextClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.DoConvertFreeTextEntry(System.Object,DevComponents.Editors.FreeTextEntryConversionEventArgs)">
<summary>
DoConvertFreeTextEntry
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.GetCellBitmap(System.Drawing.Rectangle)">
<summary>
Gets the cell paint bitmap
</summary>
<param name="cellBounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.OnBeforeCellPaint(System.Int32,System.Int32)">
<summary>
Invokes BeforeCellPaint user events
</summary>
<param name="rowIndex">Row index</param>
<param name="columnIndex">Column index</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.Clone">
<summary>
Clones the ButtonX Column
</summary>
<returns></returns>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.BeforeCellPaint">
<summary>
Occurs right before a DateTimeInput Cell is painted
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.ButtonClearClick">
<summary>
Occurs when Clear button is clicked and allows you
to cancel the default action performed by the button
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.ButtonCustomClick">
<summary>
Occurs when ButtonCustom control is clicked
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.ButtonCustom2Click">
<summary>
Occurs when ButtonCustom2 control is clicked
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.ButtonDropDownClick">
<summary>
Occurs when Drop-Down button that shows calendar
is clicked and allows you to cancel showing of the popup
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.ButtonFreeTextClick">
<summary>
Occurs when Free-Text button is clicked
and allows you to cancel its default action
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.ConvertFreeTextEntry">
<summary>
Occurs if Free-Text entry value is not natively recognized by
the control and provides you with opportunity to convert that
value to the value the control expects
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.IntegerInput">
<summary>
IntegerInput
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.BackgroundStyle">
<summary>
Specifies the background style of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.ButtonClear">
<summary>
Gets the object that describes the settings for the button
that clears the content of the control when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.ButtonCustom">
<summary>
Gets the object that describes the settings for the custom button
that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.ButtonCustom2">
<summary>
Gets the object that describes the settings for the custom button that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.ButtonDropDown">
<summary>
Gets the object that describes the settings for the button
that shows drop-down when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.ButtonFreeText">
<summary>
Gets the object that describes the settings for the button
that switches the control into the free-text entry mode when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.DisplayFormat">
<summary>
Gets or sets the Numeric String Format that is used to format
the numeric value entered for display purpose. Read more about
available formats in MSDN under "Standard Numeric Format Strings"
and "Custom Numeric Format Strings" topics.
<remarks>
The format specified here indicates the format for display purpose
only, not for the input purpose. For example to display the number
in system Currency format set the DisplayFormat to 'C'.
</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.DisplayControlForCurrentCellOnly">
<summary>
Gets or sets whether the control
will be displayed for the current cell only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.Enabled">
<summary>
Gets or sets whether the control can respond to user interaction
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.Increment">
<summary>
Gets or sets the value to increment or decrement the value of the
control when the up or down buttons are clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.InputHorizontalAlignment">
<summary>
Gets or sets the input field alignment inside the control
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.LockUpdateChecked">
<summary>
Gets or sets whether check box shown using ShowCheckBox
property which locks/unlocks the control update is checked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.MaxValue">
<summary>
Gets or sets the maximum value that can be entered.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.MinValue">
<summary>
Gets or sets the minimum value that can be entered.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.ShowCheckBox">
<summary>
Gets or sets a value indicating whether a check box is
displayed to the left of the input value. Set to true if a check box
is displayed to the left of the input value; otherwise, false. The default is false.
<remarks>
When the ShowCheckBox property is set to true, a check box is displayed
to the left of the input in the control. When the check box is selected, the value
can be updated. When the check box is cleared, the value is unable to be changed.
You can handle the LockUpdateChanged event to be notified when this check box is checked
and unchecked. Use LockUpdateChecked property to get or sets whether check box is checked.
</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.ShowUpDown">
<summary>
Gets or sets a value indicating whether a spin button control
(up-down control) is used to adjust the current value. The default is false.
<remarks>
When the ShowUpDown property is set to true, a spin button control
is shown to adjust value of currently focused input item. The value can
be adjusted by using the up and down buttons to change the value.
</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputColumn.OwnerPaintCell">
<summary>
Gets the Cell paint setting for the control
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputEditingControl.OnValueChanged(System.EventArgs)">
<summary>
Handles OnValueChanged events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputEditingControl.ApplyCellStyleToEditingControl(System.Windows.Forms.DataGridViewCellStyle)">
<summary>
ApplyCellStyleToEditingControl
</summary>
<param name="dataGridViewCellStyle"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputEditingControl.GetEditingControlFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts)">
<summary>
Gets EditingControlFormattedValue
</summary>
<param name="context"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputEditingControl.EditingControlWantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
<summary>
Gets whether the given key wants to be processed
by the Control
</summary>
<param name="keyData"></param>
<param name="dataGridViewWantsInputKey"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputEditingControl.PrepareEditingControlForEdit(System.Boolean)">
<summary>
PrepareEditingControlForEdit
</summary>
<param name="selectAll"></param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputEditingControl.EditCancelled">
<summary>
Gets or sets the Edit state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputEditingControl.EditingControlDataGridView">
<summary>
Gets or sets the DataGridView
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputEditingControl.EditingControlFormattedValue">
<summary>
Gets or sets the Control Formatted Value
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputEditingControl.EditingControlRowIndex">
<summary>
Gets or sets the Control RoeIndex
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputEditingControl.EditingControlValueChanged">
<summary>
Gets or sets the Control ValueChanged state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputEditingControl.EditingPanelCursor">
<summary>
Gets the Panel Cursor
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIntegerInputEditingControl.RepositionEditingControlOnValueChange">
<summary>
Gets whether to RepositionEditingControlOnValueChange
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputCell.InitializeEditingControl(System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle)">
<summary>
InitializeEditingControl
</summary>
<param name="rowIndex"></param>
<param name="initialFormattedValue"></param>
<param name="dataGridViewCellStyle"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputCell.DetachEditingControl">
<summary>
DetachEditingControl
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputCell.ButtonClearClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
ButtonClearClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputCell.ButtonCustomClick(System.Object,System.EventArgs)">
<summary>
ButtonCustomClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputCell.ButtonCustom2Click(System.Object,System.EventArgs)">
<summary>
ButtonCustom2Click
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputCell.ButtonDropDownClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
ButtonDropDownClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputCell.PositionEditingControl(System.Boolean,System.Boolean,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
PositionEditingControl
</summary>
<param name="setLocation"></param>
<param name="setSize"></param>
<param name="cellBounds"></param>
<param name="cellClip"></param>
<param name="cellStyle"></param>
<param name="singleVerticalBorderAdded"></param>
<param name="singleHorizontalBorderAdded"></param>
<param name="isFirstDisplayedColumn"></param>
<param name="isFirstDisplayedRow"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputCell.GetAdjustedEditingControlBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle)">
<summary>
GetAdjustedEditingControlBounds
</summary>
<param name="editingControlBounds"></param>
<param name="cellStyle"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)">
<summary>
GetPreferredSize
</summary>
<param name="graphics"></param>
<param name="cellStyle"></param>
<param name="rowIndex"></param>
<param name="constraintSize"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Cell painting
</summary>
<param name="graphics"></param>
<param name="clipBounds"></param>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="elementState"></param>
<param name="value"></param>
<param name="formattedValue"></param>
<param name="errorText"></param>
<param name="cellStyle"></param>
<param name="advancedBorderStyle"></param>
<param name="paintParts"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputCell.PaintCellBackground(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Drawing.Rectangle)">
<summary>
Paints the cell background
</summary>
<param name="g"></param>
<param name="cellStyle"></param>
<param name="rBack"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputCell.PaintCellContent(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Paints the cell content
</summary>
<param name="g"></param>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="value"></param>
<param name="cellStyle"></param>
<param name="paintParts"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputCell.DrawControl(DevComponents.Editors.IpAddressInput,System.Drawing.Rectangle,System.Drawing.Graphics)">
<summary>
DrawControl
</summary>
<param name="di"></param>
<param name="r"></param>
<param name="g"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputCell.DrawText(DevComponents.Editors.IpAddressInput,System.Drawing.Rectangle,System.Drawing.Graphics)">
<summary>
DrawText
</summary>
<param name="di"></param>
<param name="r"></param>
<param name="g"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputCell.GetBackBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewAdvancedBorderStyle)">
<summary>
Gets the background bounds for the given cell
</summary>
<param name="cellBounds"></param>
<param name="advancedBorderStyle"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputCell.GetCellBounds(System.Drawing.Rectangle)">
<summary>
Gets the button bounds for the given cell
</summary>
<param name="cellBounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputCell.GetValue(System.Object)">
<summary>
GetValue
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputCell.GetHorizontalAlignment(System.Windows.Forms.DataGridViewContentAlignment)">
<summary>
GetHorizontalAlignment
</summary>
<param name="alignment"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputCell.PartsSet(System.Windows.Forms.DataGridViewPaintParts,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Determines if the given part is set
</summary>
<param name="paintParts"></param>
<param name="parts"></param>
<returns></returns>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputCell.EditType">
<summary>
Gets the Type of the editing control associated with the cell
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.ResetBackgroundStyle">
<summary>
Resets style to default value. Used by windows forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.ShouldSerializeWatermarkColor">
<summary>
Indicates whether property should be serialized by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.ResetWatermarkColor">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.DoButtonClearClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
DoButtonClearClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.DoButtonCustomClick(System.Object,System.EventArgs)">
<summary>
DoButtonCustomClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.DoButtonCustom2Click(System.Object,System.EventArgs)">
<summary>
DoButtonCustom2Click
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.DoButtonDropDownClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
DoButtonDropDownClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.GetCellBitmap(System.Drawing.Rectangle)">
<summary>
Gets the cell paint bitmap
</summary>
<param name="cellBounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.OnBeforeCellPaint(System.Int32,System.Int32)">
<summary>
Invokes BeforeCellPaint user events
</summary>
<param name="rowIndex">Row index</param>
<param name="columnIndex">Column index</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.Clone">
<summary>
Clones the ButtonX Column
</summary>
<returns></returns>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.BeforeCellPaint">
<summary>
Occurs right before a IpAddressInput Cell is painted
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.ButtonClearClick">
<summary>
Occurs when Clear button is clicked and allows you
to cancel the default action performed by the button
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.ButtonCustomClick">
<summary>
Occurs when ButtonCustom control is clicked
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.ButtonCustom2Click">
<summary>
Occurs when ButtonCustom2 control is clicked
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.ButtonDropDownClick">
<summary>
Occurs when Drop-Down button that shows calendar
is clicked and allows you to cancel showing of the popup
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.IpAddressInput">
<summary>
Gets the underlying IpAddressInput control
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.AllowEmptyState">
<summary>
Gets or sets whether empty null/nothing state of the control
is allowed. Default value is true which means that Text property
may return null if there is no input value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.AutoOffFreeTextEntry">
<summary>
Gets or sets whether free-text entry is automatically
turned off when control loses input focus. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.AutoOverwrite">
<summary>
Gets or sets whether auto-overwrite functionality for input
is enabled. When in auto-overwrite mode input field will erase existing entry
and start new one if typing is continued after InputComplete method is called.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.AutoResolveFreeTextEntries">
<summary>
Gets or sets whether free text entries are attempted to be
auto-resolved to IP address as host/domain names. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.BackColor">
<summary>
Gets or sets the Background color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.BackgroundStyle">
<summary>
Specifies the background style of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.ButtonClear">
<summary>
Gets the object that describes the settings for the button
that clears the content of the control when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.ButtonCustom">
<summary>
Gets the object that describes the settings for the custom button
that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.ButtonCustom2">
<summary>
Gets the object that describes the settings for the custom button that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.ButtonDropDown">
<summary>
Gets the object that describes the settings for the button
that shows drop-down when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.DisplayControlForCurrentCellOnly">
<summary>
Gets or sets whether the control
will be displayed for the current cell only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.DropDownControl">
<summary>
Gets or sets the reference of the control that will be
displayed on popup that is shown when the drop-down button is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.DropDownItems">
<summary>
Returns the collection of DropDownItems.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.Enabled">
<summary>
Gets or sets whether the control can respond to user interaction
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.FocusHighlightColor">
<summary>
Gets or sets the color used as background color to highlight
the text box when it has input focus and FocusHighlight is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.FocusHighlightEnabled">
<summary>
Gets or sets whether FocusHighlightColor is used as
background color to highlight the text box when it has
input focus. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.ForeColor">
<summary>
Gets or sets the foreground color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.FreeTextEntryMode">
<summary>
Gets or sets whether control input is in
free-text input mode. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.ImeMode">
<summary>
Gets or sets the Input Method Editor (IME) mode of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.IsInputReadOnly">
<summary>
Gets or sets whether input part of the control is read-only. When
set to true the input part of the control becomes read-only and does
not allow the typing. However, drop-down part if visible still allows
user to possibly change the value of the control through the method you
can provide on drop-down. Use this property to allow change of the value
through drop-down button only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.LockUpdateChecked">
<summary>
Gets or sets whether check box shown using ShowCheckBox
property which locks/unlocks the control update is checked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.RightToLeft">
<summary>
Gets or sets a value indicating whether control's
elements are aligned to support locales using right-to-left fonts.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.SelectNextInputCharacters">
<summary>
List of characters that when pressed would select next input field. For example if you are
allowing time input you could set this property to : so when user presses the : character,
the input is forwarded to the next input field.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.ShowCheckBox">
<summary>
Gets or sets a value indicating whether a check box is displayed to
the left of the input value. Set to true if a check box is displayed
to the left of the input value; otherwise, false. The default is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.Text">
<summary>
Gets or sets the text as it is currently displayed to the user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.WatermarkColor">
<summary>
Gets or sets the watermark text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.WatermarkEnabled">
<summary>
Gets or sets whether watermark text is
displayed when control is empty. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.WatermarkFont">
<summary>
Gets or sets the watermark font.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.WatermarkText">
<summary>
Gets or sets the watermark (tip) text displayed inside of
the control when Text is not set and control does not have
input focus. This property supports text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputColumn.OwnerPaintCell">
<summary>
Gets the Cell paint setting for the control
</summary>
</member>
<member name="T:DevComponents.Editors.IpAddressInput">
<summary>
Control for input of the integer value.
</summary>
</member>
<member name="M:DevComponents.Editors.IpAddressInput.#ctor">
<summary>
Initializes a new instance of the IpAddressInput class.
</summary>
</member>
<member name="M:DevComponents.Editors.IpAddressInput.Copy">
<summary>
Copies the current value in the control to the Clipboard.
</summary>
</member>
<member name="M:DevComponents.Editors.IpAddressInput.Paste">
<summary>
Pastes the current Clipboard content if possible as the value into the control.
</summary>
</member>
<member name="M:DevComponents.Editors.IpAddressInput.Cut">
<summary>
Moves the current control value to the Clipboard.
</summary>
</member>
<member name="M:DevComponents.Editors.IpAddressInput.ShowDropDown">
<summary>
Shows drop-down popup. Note that popup will be shown only if there is a DropDownControl assigned or DropDownItems collection has at least one item.
</summary>
</member>
<member name="M:DevComponents.Editors.IpAddressInput.CloseDropDown">
<summary>
Closes the drop-down popup if it is open.
</summary>
</member>
<member name="M:DevComponents.Editors.IpAddressInput.OnButtonClearClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises the ButtonClearClick event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.Editors.IpAddressInput.OnButtonDropDownClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises the ButtonDropDownClick event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.Editors.IpAddressInput.OnLockUpdateChanged(System.EventArgs)">
<summary>
Raises the LockUpdateChanged event.
</summary>
<param name="e">Provides event data./</param>
</member>
<member name="M:DevComponents.Editors.IpAddressInput.OnValueChanged(System.EventArgs)">
<summary>
Raises ValueChanged event.
</summary>
<param name="eventArgs">Provides event arguments.</param>
</member>
<member name="M:DevComponents.Editors.IpAddressInput.OnButtonFreeTextClick(System.ComponentModel.CancelEventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.Editors.IpAddressInput.OnCommandChanged">
<summary>
Called when Command property value changes.
</summary>
</member>
<member name="E:DevComponents.Editors.IpAddressInput.ButtonClearClick">
<summary>
Occurs when Clear button is clicked and allows you to cancel the default action performed by the button.
</summary>
</member>
<member name="E:DevComponents.Editors.IpAddressInput.ButtonDropDownClick">
<summary>
Occurs when Drop-Down button that shows calendar is clicked and allows you to cancel showing of the popup.
</summary>
</member>
<member name="E:DevComponents.Editors.IpAddressInput.LockUpdateChanged">
<summary>
Occurs when ShowCheckBox property is set to true and user changes the lock status of the control by clicking the check-box.
</summary>
</member>
<member name="E:DevComponents.Editors.IpAddressInput.ValueChanged">
<summary>
Occurs when Value property has changed.
</summary>
</member>
<member name="P:DevComponents.Editors.IpAddressInput.ButtonDropDown">
<summary>
Gets the object that describes the settings for the button that shows drop-down when clicked.
</summary>
</member>
<member name="P:DevComponents.Editors.IpAddressInput.ButtonClear">
<summary>
Gets the object that describes the settings for the button that clears the content of the control when clicked.
</summary>
</member>
<member name="P:DevComponents.Editors.IpAddressInput.ButtonFreeText">
<summary>
Gets the object that describes the settings for the button that switches the control into the free-text entry mode when clicked.
</summary>
</member>
<member name="P:DevComponents.Editors.IpAddressInput.AutoOverwrite">
<summary>
Gets or sets whether auto-overwrite functionality for input is enabled. When in auto-overwrite mode input field will erase existing entry
and start new one if typing is continued after InputComplete method is called.
</summary>
</member>
<member name="P:DevComponents.Editors.IpAddressInput.AllowEmptyState">
<summary>
Gets or sets whether empty null/nothing state of the control is allowed. Default value is true which means that Text property
may return null if there is no input value.
</summary>
</member>
<member name="P:DevComponents.Editors.IpAddressInput.DropDownControl">
<summary>
Gets or sets the reference of the control that will be displayed on popup that is shown when drop-down button is clicked.
</summary>
</member>
<member name="P:DevComponents.Editors.IpAddressInput.DropDownItems">
<summary>
Gets the collection of BaseItem derived items displayed on popup menu.
</summary>
</member>
<member name="P:DevComponents.Editors.IpAddressInput.IsInputReadOnly">
<summary>
Gets or sets whether input part of the control is read-only. When set to true the input part of the control becomes
read-only and does not allow the typing. However, drop-down part if visible still allows user to possibly change the value of the control
through the method you can provide on drop-down.
Use this property to allow change of the value through drop-down button only.
</summary>
</member>
<member name="P:DevComponents.Editors.IpAddressInput.ShowCheckBox">
<summary>
Gets or sets a value indicating whether a check box is displayed to the left of the input value.
Set to true if a check box is displayed to the left of the input value; otherwise, false. The default is false.
<remarks>
When the ShowCheckBox property is set to true, a check box is displayed to the left of the input in the control. When the check box is selected, the value can be updated. When the check box is cleared, the value is unable to be changed.
You can handle the LockUpdateChanged event to be notified when this check box is checked and unchecked. Use LockUpdateChecked property
to get or sets whether check box is checked.
</remarks>
</summary>
</member>
<member name="P:DevComponents.Editors.IpAddressInput.LockUpdateChecked">
<summary>
Gets or sets whether check box shown using ShowCheckBox property which locks/unlocks the control update is checked.
</summary>
</member>
<member name="P:DevComponents.Editors.IpAddressInput.SelectNextInputCharacters">
<summary>
List of characters that when pressed would select next input field. For example if you are
allowing time input you could set this property to : so when user presses the : character,
the input is forwarded to the next input field.
</summary>
</member>
<member name="P:DevComponents.Editors.IpAddressInput.Value">
<summary>
Gets or sets the IP Address value represented by the control.
</summary>
</member>
<member name="E:DevComponents.Editors.IpAddressInput.ConvertFreeTextEntry">
<summary>
Occurs if Free-Text entry value is not natively recognized by the control and provides you with opportunity to convert that value to the
value control expects.
</summary>
</member>
<member name="E:DevComponents.Editors.IpAddressInput.ButtonFreeTextClick">
<summary>
Occurs when Free-Text button is clicked and allows you to cancel its default action.
</summary>
</member>
<member name="P:DevComponents.Editors.IpAddressInput.AutoResolveFreeTextEntries">
<summary>
Gets or sets whether free text entries are attempted to be auto-resolved to IP address as host/domain names. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.IpAddressInput.AutoOffFreeTextEntry">
<summary>
Gets or sets whether free-text entry is automatically turned off when control loses input focus. Default value is false.
</summary>
</member>
<member name="P:DevComponents.Editors.IpAddressInput.FreeTextEntryMode">
<summary>
Gets or sets whether control input is in free-text input mode. Default value is false.
</summary>
</member>
<member name="P:DevComponents.Editors.IpAddressInput.Command">
<summary>
Gets or sets the command assigned to the item. Default value is null.
<remarks>Note that if this property is set to null Enabled property will be set to false automatically to disable the item.</remarks>
</summary>
</member>
<member name="P:DevComponents.Editors.IpAddressInput.CommandParameter">
<summary>
Gets or sets user defined data value that can be passed to the command when it is executed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputEditingControl.OnTextChanged(System.EventArgs)">
<summary>
Handles OnTextChanged events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputEditingControl.ApplyCellStyleToEditingControl(System.Windows.Forms.DataGridViewCellStyle)">
<summary>
ApplyCellStyleToEditingControl
</summary>
<param name="dataGridViewCellStyle"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputEditingControl.GetEditingControlFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts)">
<summary>
Gets EditingControlFormattedValue
</summary>
<param name="context"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputEditingControl.EditingControlWantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
<summary>
Gets whether the given key wants to be processed
by the Control
</summary>
<param name="keyData"></param>
<param name="dataGridViewWantsInputKey"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputEditingControl.PrepareEditingControlForEdit(System.Boolean)">
<summary>
PrepareEditingControlForEdit
</summary>
<param name="selectAll"></param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputEditingControl.EditCancelled">
<summary>
Gets or sets the Edit state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputEditingControl.EditingControlDataGridView">
<summary>
Gets or sets the DataGridView
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputEditingControl.EditingControlFormattedValue">
<summary>
Gets or sets the Control Formatted Value
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputEditingControl.EditingControlRowIndex">
<summary>
Gets or sets the Control RoeIndex
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputEditingControl.EditingControlValueChanged">
<summary>
Gets or sets the Control ValueChanged state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputEditingControl.EditingPanelCursor">
<summary>
Gets the Panel Cursor
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewIpAddressInputEditingControl.RepositionEditingControlOnValueChange">
<summary>
Gets whether to RepositionEditingControlOnValueChange
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXCell.GetAdjustedEditingControlBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle,System.Int32)">
<summary>
GetAdjustedEditingControlBounds
</summary>
<param name="editingControlBounds"></param>
<param name="cellStyle"></param>
<param name="rowIndex"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)">
<summary>
GetPreferredSize
</summary>
<param name="graphics"></param>
<param name="cellStyle"></param>
<param name="rowIndex"></param>
<param name="constraintSize"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Cell painting
</summary>
<param name="graphics"></param>
<param name="clipBounds"></param>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="elementState"></param>
<param name="value"></param>
<param name="formattedValue"></param>
<param name="errorText"></param>
<param name="cellStyle"></param>
<param name="advancedBorderStyle"></param>
<param name="paintParts"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXCell.PaintLabelBackground(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Drawing.Rectangle)">
<summary>
Paints the Label background
</summary>
<param name="g"></param>
<param name="cellStyle"></param>
<param name="rBack"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXCell.PaintLabelContent(System.Drawing.Rectangle,System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewPaintParts,System.Drawing.Graphics)">
<summary>
Paints the Label background and content
</summary>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="value"></param>
<param name="cellStyle"></param>
<param name="paintParts"></param>
<param name="g"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXCell.OnMouseEnter(System.Int32)">
<summary>
OnMouseEnter
</summary>
<param name="rowIndex"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXCell.OnMouseLeave(System.Int32)">
<summary>
Processes MouseLeave events
</summary>
<param name="rowIndex"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
<summary>
Processes MouseMove events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
<summary>
Processes MouseDown events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
<summary>
Processes MouseUp events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXCell.CellAlignPoint(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
<summary>
CellAlignPoint
</summary>
<param name="e"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXCell.PartsSet(System.Windows.Forms.DataGridViewPaintParts,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Determines if the given part is set
</summary>
<param name="paintParts"></param>
<param name="parts"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXCell.GetBackBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewAdvancedBorderStyle)">
<summary>
Gets the background bounds for the given cell
</summary>
<param name="cellBounds"></param>
<param name="advancedBorderStyle"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXCell.GetValue(System.Object)">
<summary>
GetValue
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXCell.GetTextAlignment(System.Windows.Forms.DataGridViewContentAlignment)">
<summary>
GetHorizontalAlignment
</summary>
<param name="alignment"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXCell.RefreshCell(System.Int32,System.Int32)">
<summary>
Initiates the refresh of the cell label
</summary>
<param name="columnIndex"></param>
<param name="rowIndex"></param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXCell.EditType">
<summary>
Gets the Type of the editing control associated with the cell
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXCell.FormattedValueType">
<summary>
FormattedValueType
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.ShouldSerializeSingleLineColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.ResetSingleLineColor">
<summary>
Resets the SingleLineColor property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.HookEvents(System.Boolean)">
<summary>
Hooks or unhooks our system events
</summary>
<param name="hook"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.LabelItemClick(System.Object,System.EventArgs)">
<summary>
LabelItem_Click
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.GetCellBitmap(System.Drawing.Rectangle)">
<summary>
Gets the cell paint bitmap
</summary>
<param name="cellBounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.OnBeforeCellPaint(System.Int32,System.Int32)">
<summary>
Invokes BeforeCellPaint user events
</summary>
<param name="rowIndex">Row index</param>
<param name="columnIndex">Column index</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.Clone">
<summary>
Clones the LabelX Column
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.Dispose(System.Boolean)">
<summary>
Dispose
</summary>
<param name="disposing"></param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.FlatStyle">
<summary>
Button FlatStyle
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.UseColumnTextForButtonValue">
<summary>
Button UseColumnTextForButtonValue
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.InCallBack">
<summary>
InCallBack
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.LabelX">
<summary>
Gets the Control LabelX
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.EnableMarkup">
<summary>
Gets or sets whether text-markup support is enabled for items Text property. Default value is true.
Set this property to false to display HTML or other markup in the item instead of it being parsed as text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.FocusCuesEnabled">
<summary>
Gets or sets whether control displays focus cues when focused.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.BorderSide">
<summary>
Gets or sets the border sides that are displayed.
Default value specifies border on all 4 sides.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.BorderType">
<summary>
Gets or sets the type of the border drawn around the label.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.Image">
<summary>
Specifies label image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.ImagePosition">
<summary>
Gets/Sets the image position inside the label.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.PaddingBottom">
<summary>
Gets or sets the bottom padding in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.PaddingLeft">
<summary>
Gets or sets the left padding in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.PaddingTop">
<summary>
Gets or sets the top padding in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.PaddingRight">
<summary>
Gets or sets the right padding in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.SingleLineColor">
<summary>
Gets or sets the border line color when border is single line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.Text">
<summary>
Gets or sets the text associated with this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.TextAlignment">
<summary>
Gets or sets the horizontal text alignment.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.TextLineAlignment">
<summary>
Gets or sets the vertical text alignment.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.UseMnemonic" -->
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.WordWrap">
<summary>
Gets or sets a value that determines whether text is displayed in multiple lines or one long line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn.OwnerPaintCell">
<summary>
Gets the Cell paint setting for the ButtonX control
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.InitializeEditingControl(System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle)">
<summary>
InitializeEditingControl
</summary>
<param name="rowIndex"></param>
<param name="initialFormattedValue"></param>
<param name="dataGridViewCellStyle"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.DetachEditingControl">
<summary>
DetachEditingControl
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.ButtonClearClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
ButtonClearClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.ButtonCustomClick(System.Object,System.EventArgs)">
<summary>
ButtonCustomClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.ButtonCustom2Click(System.Object,System.EventArgs)">
<summary>
ButtonCustom2Click
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.ButtonDropDownClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
ButtonDropDownClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.KeyDown(System.Object,System.Windows.Forms.KeyEventArgs)">
<summary>
KeyDown routine forwards all DataGridView sent keys to
the underlying focusable control
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.PositionEditingControl(System.Boolean,System.Boolean,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
PositionEditingControl
</summary>
<param name="setLocation"></param>
<param name="setSize"></param>
<param name="cellBounds"></param>
<param name="cellClip"></param>
<param name="cellStyle"></param>
<param name="singleVerticalBorderAdded"></param>
<param name="singleHorizontalBorderAdded"></param>
<param name="isFirstDisplayedColumn"></param>
<param name="isFirstDisplayedRow"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.GetAdjustedEditingControlBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle)">
<summary>
GetAdjustedEditingControlBounds
</summary>
<param name="editingControlBounds"></param>
<param name="cellStyle"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)">
<summary>
GetPreferredSize
</summary>
<param name="graphics"></param>
<param name="cellStyle"></param>
<param name="rowIndex"></param>
<param name="constraintSize"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Cell painting
</summary>
<param name="graphics"></param>
<param name="clipBounds"></param>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="elementState"></param>
<param name="value"></param>
<param name="formattedValue"></param>
<param name="errorText"></param>
<param name="cellStyle"></param>
<param name="advancedBorderStyle"></param>
<param name="paintParts"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.PaintCellBackground(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Drawing.Rectangle)">
<summary>
Paints the cell background
</summary>
<param name="g"></param>
<param name="cellStyle"></param>
<param name="rBack"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.PaintCellContent(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewPaintParts,System.Drawing.Bitmap)">
<summary>
Paints the cell content
</summary>
<param name="g"></param>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="value"></param>
<param name="cellStyle"></param>
<param name="paintParts"></param>
<param name="bm"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.DrawControl(DevComponents.DotNetBar.Controls.MaskedTextBoxAdv,System.Windows.Forms.DataGridViewCellStyle,System.Drawing.Rectangle,System.Drawing.Bitmap,System.Drawing.Graphics,DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn)">
<summary>
DrawControl
</summary>
<param name="di"></param>
<param name="cellStyle"></param>
<param name="r"></param>
<param name="bm"></param>
<param name="g"></param>
<param name="oc"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.DrawText(DevComponents.DotNetBar.Controls.MaskedTextBoxAdv,System.Windows.Forms.DataGridViewCellStyle,System.Drawing.Rectangle,System.Drawing.Graphics)">
<summary>
DrawText
</summary>
<param name="di"></param>
<param name="cellStyle"></param>
<param name="r"></param>
<param name="g"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.MustRenderVisibleControl">
<summary>
MustRenderVisibleControl
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.GetBackBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewAdvancedBorderStyle)">
<summary>
Gets the background bounds for the given cell
</summary>
<param name="cellBounds"></param>
<param name="advancedBorderStyle"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.GetCellBounds(System.Drawing.Rectangle)">
<summary>
Gets the button bounds for the given cell
</summary>
<param name="cellBounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.GetValue(System.Object)">
<summary>
GetValue
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.GetTextAlignment(System.Windows.Forms.DataGridViewContentAlignment)">
<summary>
GetTextAlignment
</summary>
<param name="alignment"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.PartsSet(System.Windows.Forms.DataGridViewPaintParts,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Determines if the given part is set
</summary>
<param name="paintParts"></param>
<param name="parts"></param>
<returns></returns>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvCell.EditType">
<summary>
Gets the Type of the editing control associated with the cell
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.ResetBackgroundStyle">
<summary>
Resets style to default value. Used by windows forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.ShouldSerializeWatermarkColor">
<summary>
Indicates whether property should be serialized by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.ResetWatermarkColor">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.DoButtonClearClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
DoButtonClearClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.DoButtonCustomClick(System.Object,System.EventArgs)">
<summary>
DoButtonCustomClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.DoButtonCustom2Click(System.Object,System.EventArgs)">
<summary>
DoButtonCustom2Click
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.DoButtonDropDownClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
DoButtonDropDownClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.GetCellBitmap(System.Drawing.Rectangle)">
<summary>
Gets the cell paint bitmap
</summary>
<param name="cellBounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.OnBeforeCellPaint(System.Int32,System.Int32)">
<summary>
Invokes BeforeCellPaint user events
</summary>
<param name="rowIndex">Row index</param>
<param name="columnIndex">Column index</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.Clone">
<summary>
Clones the ButtonX Column
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.Dispose(System.Boolean)">
<summary>
Dispose
</summary>
<param name="disposing"></param>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.BeforeCellPaint">
<summary>
Occurs right before a MaskedTextBoxAdv Cell is painted
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.ButtonClearClick">
<summary>
Occurs when Clear button is clicked and allows you
to cancel the default action performed by the button
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.ButtonCustomClick">
<summary>
Occurs when ButtonCustom control is clicked
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.ButtonCustom2Click">
<summary>
Occurs when ButtonCustom2 control is clicked
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.ButtonDropDownClick">
<summary>
Occurs when Drop-Down button is clicked and allows you to cancel showing of the popup
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.MaskedTextBoxAdv">
<summary>
Gets the underlying MaskedTextBoxAdv control
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.AllowPromptAsInput">
<summary>
Gets or sets a value indicating whether PromptChar can be entered as valid data.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.AsciiOnly">
<summary>
Gets or sets a value indicating whether characters outside of the ASCII character set will be accepted.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.BackColor">
<summary>
Gets or sets the Background color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.BackgroundStyle">
<summary>
Specifies the background style of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.BeepOnError">
<summary>
Gets or sets a value indicating whether the masked text box
control raises the system beep for each user key stroke that it rejects.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.ButtonClear">
<summary>
Gets the object that describes the settings for the button
that clears the content of the control when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.ButtonCustom">
<summary>
Gets the object that describes the settings for the custom button
that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.ButtonCustom2">
<summary>
Gets the object that describes the settings for the custom button that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.ButtonDropDown">
<summary>
Gets the object that describes the settings for the button
that shows drop-down when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.Culture">
<summary>
Gets or sets the culture information associated with the masked text box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.CutCopyMaskFormat">
<summary>
Gets or sets a value that determines whether
literals and prompt characters are copied to the clipboard
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.DisplayControlForCurrentCellOnly">
<summary>
Gets or sets whether the control
will be displayed for the current cell only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.DropDownControl">
<summary>
Gets or sets the reference of the control that will be
displayed on popup that is shown when the drop-down button is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.Enabled">
<summary>
Gets or sets whether the control can respond to user interaction
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.FocusHighlightColor">
<summary>
Gets or sets the color used as background color to highlight
the text box when it has input focus and FocusHighlight is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.FocusHighlightEnabled">
<summary>
Gets or sets whether FocusHighlightColor is used as
background color to highlight the text box when it has
input focus. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.ForeColor">
<summary>
Gets or sets the foreground color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.HidePromptOnLeave">
<summary>
Gets or sets a value indicating whether the prompt characters
in the input mask are hidden when the masked text box loses focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.ImeMode">
<summary>
Gets or sets the Input Method Editor (IME) mode of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.InsertKeyMode">
<summary>
Gets or sets the text insertion mode of the masked text box control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.Mask">
<summary>
Gets or sets the input mask to use at run time.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.PasswordChar">
<summary>
Gets or sets the character to be displayed in substitute for user input.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.PromptChar">
<summary>
Gets or sets the character used to represent the absence of user input.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.RejectInputOnFirstFailure">
<summary>
Gets or sets a value indicating whether the parsing of
user input should stop after the first invalid character is reached.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.ResetOnPrompt">
<summary>
Gets or sets a value that determines how an input
character that matches the prompt character should be handled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.ResetOnSpace">
<summary>
Gets or sets a value that determines how
a space input character should be handled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.RightToLeft">
<summary>
Gets or sets a value indicating whether control's
elements are aligned to support locales using right-to-left fonts.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.SkipLiterals">
<summary>
Gets or sets a value indicating
whether the user is allowed to reenter literal values.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.Text">
<summary>
Gets or sets the text as it is currently displayed to the user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.TextAlign">
<summary>
Gets or sets how text is aligned in a masked text box control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.TextMaskFormat">
<summary>
Gets or sets a value that determines whether literals
and prompt characters are included in the formatted string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.UseSystemPasswordChar">
<summary>
Gets or sets a value indicating whether
the operating system-supplied password character should be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.ValidatingType">
<summary>
Gets or sets the data type used to verify the data input by the user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.WatermarkBehavior">
<summary>
Gets or sets the watermark hiding behaviour. Default value
indicates that watermark is hidden when control receives input focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.WatermarkColor">
<summary>
Gets or sets the watermark text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.WatermarkEnabled">
<summary>
Gets or sets whether watermark text is
displayed when control is empty. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.WatermarkFont">
<summary>
Gets or sets the watermark font.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.WatermarkText">
<summary>
Gets or sets the watermark (tip) text displayed inside of
the control when Text is not set and control does not have
input focus. This property supports text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvColumn.OwnerPaintCell">
<summary>
Gets the Cell paint setting for the control
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.#ctor">
<summary>
Initializes a new instance of the MaskedTextBoxAdv class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.#ctor(System.ComponentModel.MaskedTextProvider)">
<summary>
Initializes a new instance of the MaskedTextBoxAdv class using the specified input mask.
</summary>
<param name="maskedTextProvider">A custom mask language provider, derived from the MaskedTextProvider class. </param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.#ctor(System.String)">
<summary>
Initializes a new instance of the MaskedTextBoxAdv class using the specified input mask.
</summary>
<param name="mask">Initializes a new instance of the MaskedTextBox class using the specified input mask.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.OnTypeValidationCompleted(System.Windows.Forms.TypeValidationEventArgs)">
<summary>
Raises TypeValidationCompleted event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.OnTextAlignChanged(System.EventArgs)">
<summary>
Raises the TextAlignChanged event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.OnMaskInputRejected(System.Windows.Forms.MaskInputRejectedEventArgs)">
<summary>
Raises MaskInputRejected event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.OnMaskChanged(System.EventArgs)">
<summary>
Raises the MaskChanged event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.OnIsOverwriteModeChanged(System.EventArgs)">
<summary>
Raises IsOverwriteModeChanged event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.ResetBackgroundStyle">
<summary>
Resets style to default value. Used by windows forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.ShowDropDown">
<summary>
Shows drop-down popup. Note that popup will be shown only if there is a DropDownControl assigned or DropDownItems collection has at least one item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.CloseDropDown">
<summary>
Closes the drop-down popup if it is open.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.OnButtonClearClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises the ButtonClearClick event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.OnButtonDropDownClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises the ButtonDropDownClick event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.ShouldSerializeWatermarkColor">
<summary>
Indicates whether property should be serialized by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.ResetWatermarkColor">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.ShouldSerializeCulture">
<summary>
Gets whether property should be serialized by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.ValidateText">
<summary>
Converts the user input string to an instance of the validating type.
</summary>
<returns>If successful, an Object of the type specified by the ValidatingType property; otherwise, null to indicate conversion failure.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.ToString">
<summary>
Returns a string that represents the current masked text box. This method overrides ToString.
</summary>
<returns>A String that contains information about the current MaskedTextBox. The string includes the type, a simplified view of the input string, and the formatted input string.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.OnCommandChanged">
<summary>
Called when Command property value changes.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.ButtonClearClick">
<summary>
Occurs when Clear button is clicked and allows you to cancel the default action performed by the button.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.ButtonDropDownClick">
<summary>
Occurs when Drop-Down button that shows popup is clicked and allows you to cancel showing of the popup.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.ButtonCustomClick">
<summary>
Occurs when ButtonCustom control is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.ButtonCustom2Click">
<summary>
Occurs when ButtonCustom2 control is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.IsOverwriteModeChanged">
<summary>
Occurs after the insert mode has changed
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.MaskChanged">
<summary>
Occurs after the input mask is changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.MaskInputRejected">
<summary>
Occurs when the user's input or assigned character does not match the corresponding format element of the input mask.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.TextAlignChanged">
<summary>
Occurs when the text alignment is changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.TypeValidationCompleted">
<summary>
Occurs when MaskedTextBox has finished parsing the current value using the ValidatingType property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.DisabledBackColor">
<summary>
Specifies back color when Enabled=false
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.FocusHighlightEnabled">
<summary>
Gets or sets whether FocusHighlightColor is used as background color to highlight text box when it has input focus. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.FocusHighlightColor">
<summary>
Gets or sets the color used as background color to highlight text box when it has input focus and focus highlight is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.BackgroundStyle">
<summary>
Specifies the background style of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.ButtonDropDown">
<summary>
Gets the object that describes the settings for the button that shows drop-down when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.ButtonClear">
<summary>
Gets the object that describes the settings for the button that clears the content of the control when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.ButtonCustom">
<summary>
Gets the object that describes the settings for the custom button that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.ButtonCustom2">
<summary>
Gets the object that describes the settings for the custom button that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.DropDownControl">
<summary>
Gets or sets the reference of the control that will be displayed on popup that is shown when drop-down button is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.DropDownItems">
<summary>
Gets the collection of BaseItem derived items displayed on popup menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.MaskedTextBox">
<summary>
Gets the reference to internal MaskedTextBox control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.WatermarkEnabled">
<summary>
Gets or sets whether watermark text is displayed when control is empty. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.WatermarkText">
<summary>
Gets or sets the watermark (tip) text displayed inside of the control when Text is not set and control does not have input focus. This property supports text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.WatermarkFont">
<summary>
Gets or sets the watermark font.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.WatermarkColor">
<summary>
Gets or sets the watermark text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.WatermarkBehavior">
<summary>
Gets or sets the watermark hiding behaviour. Default value indicates that watermark is hidden when control receives input focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.AllowPromptAsInput">
<summary>
Gets or sets a value indicating whether PromptChar can be entered as valid data by the user. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.AsciiOnly">
<summary>
Gets or sets a value indicating whether the MaskedTextBox control accepts characters outside of the ASCII character set.
<remarks>true if only ASCII is accepted; false if the MaskedTextBox control can accept any arbitrary Unicode character. The default is false.</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.BeepOnError">
<summary>
Gets or sets a value indicating whether the masked text box control raises the system beep for each user key stroke that it rejects.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.Culture">
<summary>
Gets or sets the culture information associated with the masked text box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.CutCopyMaskFormat">
<summary>
Gets or sets a value that determines whether literals and prompt characters are copied to the clipboard.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.FormatProvider">
<summary>
Gets or sets the IFormatProvider to use when performing type validation.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.HidePromptOnLeave">
<summary>
Gets or sets a value indicating whether the prompt characters in the input mask are hidden when the masked text box loses focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.InsertKeyMode">
<summary>
Gets or sets the text insertion mode of the masked text box control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.Mask">
<summary>
Gets or sets the input mask to use at run time. The default value is the empty string which allows any input
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.MaskCompleted">
<summary>
Gets a value indicating whether all required inputs have been entered into the input mask. Returns true if all required input has been entered into the mask; otherwise, false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.MaskedTextProvider">
<summary>
Gets a clone of the mask provider associated with this instance of the masked text box control. Returns masking language provider of type MaskedTextProvider.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.MaskFull">
<summary>
Gets a value indicating whether all required and optional inputs have been entered into the input mask. Returns true if all required and optional inputs have been entered; otherwise, false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.PasswordChar">
<summary>
Gets or sets the character to be displayed in substitute for user input.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.PromptChar">
<summary>
Gets or sets the character used to represent the absence of user input in MaskedTextBox. Returns character used to prompt the user for input. The default is an underscore (_).
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.ReadOnly">
<summary>
Gets or sets whether text in control is read only. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.RejectInputOnFirstFailure">
<summary>
Gets or sets a value indicating whether the parsing of user input should stop after the first invalid character is reached. Returns true if processing of the input string should be terminated at the first parsing error; otherwise, false if processing should ignore all errors. The default is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.ResetOnPrompt">
<summary>
Gets or sets a value that determines how an input character that matches the prompt character should be handled. Returns true if the prompt character entered as input causes the current editable position in the mask to be reset; otherwise, false to indicate that the prompt character is to be processed as a normal input character. The default is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.ResetOnSpace">
<summary>
Gets or sets a value that determines how a space input character should be handled. Returns true if the space input character causes the current editable position in the mask to be reset; otherwise, false to indicate that it is to be processed as a normal input character. The default is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.SelectedText">
<summary>
Gets or sets a value indicating the currently selected text in the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.SelectionLength">
<summary>
Gets or sets the number of characters selected in the text box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.SelectionStart">
<summary>
Gets or sets the starting point of text selected in the text box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.ShortcutsEnabled">
<summary>
Gets or sets a value indicating whether the defined shortcuts are enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.Text">
<summary>
Gets or sets the text as it is currently displayed to the user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.TextAlign">
<summary>
Gets or sets how text is aligned in a masked text box control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.TextLength">
<summary>
Gets the length of the displayed text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.TextMaskFormat">
<summary>
Gets or sets a value that determines whether literals and prompt characters are included in the formatted string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.UseSystemPasswordChar">
<summary>
Gets or sets a value indicating whether the operating system-supplied password character should be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.ValidatingType">
<summary>
Gets or sets the data type used to verify the data input by the user. Returns Type representing the data type used in validation. The default is null.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.PreferredHeight">
<summary>
Gets the preferred height for a masked text box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.Command">
<summary>
Gets or sets the command assigned to the item. Default value is null.
<remarks>Note that if this property is set to null Enabled property will be set to false automatically to disable the item.</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.MaskedTextBoxAdv.CommandParameter">
<summary>
Gets or sets user defined data value that can be passed to the command when it is executed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvEditingControl.OnTextChanged(System.EventArgs)">
<summary>
Handles OnTextChanged events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvEditingControl.ApplyCellStyleToEditingControl(System.Windows.Forms.DataGridViewCellStyle)">
<summary>
ApplyCellStyleToEditingControl
</summary>
<param name="dataGridViewCellStyle"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvEditingControl.GetEditingControlFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts)">
<summary>
Gets EditingControlFormattedValue
</summary>
<param name="context"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvEditingControl.EditingControlWantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
<summary>
Gets whether the given key wants to be processed
by the Control
</summary>
<param name="keyData"></param>
<param name="dataGridViewWantsInputKey"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvEditingControl.PrepareEditingControlForEdit(System.Boolean)">
<summary>
PrepareEditingControlForEdit
</summary>
<param name="selectAll"></param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvEditingControl.EditingControlDataGridView">
<summary>
Gets or sets the DataGridView
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvEditingControl.EditingControlFormattedValue">
<summary>
Gets or sets the Control Formatted Value
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvEditingControl.EditingControlRowIndex">
<summary>
Gets or sets the Control RoeIndex
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvEditingControl.EditingControlValueChanged">
<summary>
Gets or sets the Control ValueChanged state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvEditingControl.EditingPanelCursor">
<summary>
Gets the Panel Cursor
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewMaskedTextBoxAdvEditingControl.RepositionEditingControlOnValueChange">
<summary>
Gets whether to RepositionEditingControlOnValueChange
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Cell painting
</summary>
<param name="graphics"></param>
<param name="clipBounds"></param>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="elementState"></param>
<param name="value"></param>
<param name="formattedValue"></param>
<param name="errorText"></param>
<param name="cellStyle"></param>
<param name="advancedBorderStyle"></param>
<param name="paintParts"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXCell.PaintButtonBackground(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Drawing.Rectangle)">
<summary>
Paints the Button background
</summary>
<param name="g"></param>
<param name="cellStyle"></param>
<param name="rBack"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXCell.PaintButtonContent(System.Drawing.Rectangle,System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewPaintParts,System.Drawing.Bitmap)">
<summary>
Paints the button background and content
</summary>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="value"></param>
<param name="cellStyle"></param>
<param name="paintParts"></param>
<param name="bm"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXCell.OnMouseEnter(System.Int32)">
<summary>
OnMouseEnter
</summary>
<param name="rowIndex"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXCell.OnMouseLeave(System.Int32)">
<summary>
Processes MouseLeave events
</summary>
<param name="rowIndex"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
<summary>
Processes MouseMove events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
<summary>
Processes MouseDown events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
<summary>
Processes MouseUp events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXCell.PartsSet(System.Windows.Forms.DataGridViewPaintParts,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Determines if the given part is set
</summary>
<param name="paintParts"></param>
<param name="parts"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXCell.GetBackBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewAdvancedBorderStyle)">
<summary>
Gets the background bounds for the given cell
</summary>
<param name="cellBounds"></param>
<param name="advancedBorderStyle"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXCell.GetContentBounds(System.Drawing.Rectangle,System.Boolean)">
<summary>
Gets the content bounds for the given cell
</summary>
<param name="cellBounds"></param>
<param name="localize"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXCell.GetValue(System.Object,System.Int32)">
<summary>
GetValue
</summary>
<param name="value"></param>
<param name="minimum"></param>
<returns></returns>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXCell.EditType">
<summary>
Gets the Type of the editing control associated with the cell
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXCell.FormattedValueType">
<summary>
FormattedValueType
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.ShouldSerializeChunkColor">
<summary>
Gets whether ChunkColor property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.ResetChunkColor">
<summary>
Resets the ChunkColor property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.ShouldSerializeChunkColor2">
<summary>
Gets whether ChunkColor property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.ResetChunkColor2">
<summary>
Resets the ChunkColor property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.HookEvents(System.Boolean)">
<summary>
Hooks or unhooks our system events
</summary>
<param name="hook"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.ProgressBarItem_Click(System.Object,System.EventArgs)">
<summary>
ProgressBarItem_Click
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.GetCellBitmap(System.Drawing.Rectangle)">
<summary>
Gets the cell paint bitmap
</summary>
<param name="cellBounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.OnBeforeCellPaint(System.Int32,System.Int32)">
<summary>
Invokes BeforeCellPaint user events
</summary>
<param name="rowIndex">Row index</param>
<param name="columnIndex">Column index</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.Clone">
<summary>
Clones the ButtonX Column
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.Dispose(System.Boolean)">
<summary>
Dispose
</summary>
<param name="disposing"></param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.FlatStyle">
<summary>
Button FlatStyle
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.UseColumnTextForButtonValue">
<summary>
Button UseColumnTextForButtonValue
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.InCallBack">
<summary>
InCallBack
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.ProgressBarX">
<summary>
Gets the Control ProgressBarX
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.ChunkColor">
<summary>
Gets or sets the color of the progress chunk.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.ChunkColor2">
<summary>
Gets or sets the target gradient color of the progress chunk.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.ChunkGradientAngle">
<summary>
Gets or sets the gradient angle of the progress chunk.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.ColorTable">
<summary>
Gets or sets the predefined color state table for progress bar. Color
specified applies to items with Office 2007 style only. It does not have
any effect on other styles. You can use ColorTable to indicate the state
of the operation that Progress Bar is tracking. Default value is eProgressBarItemColor.Normal.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.Maximum">
<summary>
Gets or sets the maximum value of the range of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.Minimum">
<summary>
Gets or sets the minimum value of the range of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.Style">
<summary>
Gets/Sets the visual style for the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.Text">
<summary>
Gets or sets the default Text to display on the Progress Bar
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.TextVisible">
<summary>
Gets or sets whether the text inside the progress bar is displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.Value">
<summary>
Gets or sets the current position of the progress bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewProgressBarXColumn.OwnerPaintCell">
<summary>
Gets the Cell paint setting for the ButtonX control
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderCell.GetAdjustedEditingControlBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle)">
<summary>
GetAdjustedEditingControlBounds
</summary>
<param name="editingControlBounds"></param>
<param name="cellStyle"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)">
<summary>
GetPreferredSize
</summary>
<param name="graphics"></param>
<param name="cellStyle"></param>
<param name="rowIndex"></param>
<param name="constraintSize"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Cell painting
</summary>
<param name="graphics"></param>
<param name="clipBounds"></param>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="elementState"></param>
<param name="value"></param>
<param name="formattedValue"></param>
<param name="errorText"></param>
<param name="cellStyle"></param>
<param name="advancedBorderStyle"></param>
<param name="paintParts"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderCell.PaintSliderBackground(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Drawing.Rectangle)">
<summary>
Paints the Slider background
</summary>
<param name="g"></param>
<param name="cellStyle"></param>
<param name="rBack"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderCell.PaintSliderContent(System.Drawing.Rectangle,System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewPaintParts,System.Drawing.Graphics)">
<summary>
Paints the Slider content
</summary>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="value"></param>
<param name="cellStyle"></param>
<param name="paintParts"></param>
<param name="g"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderCell.OnMouseEnter(System.Int32)">
<summary>
OnMouseEnter
</summary>
<param name="rowIndex"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderCell.DoMouseEnter(System.Int32,System.Boolean)">
<summary>
Process MouseEnter state
</summary>
<param name="rowIndex"></param>
<param name="refresh"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderCell.OnMouseLeave(System.Int32)">
<summary>
Processes MouseLeave events
</summary>
<param name="rowIndex"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
<summary>
Processes MouseMove events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
<summary>
Processes MouseDown events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
<summary>
Processes MouseUp events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderCell.CellAlignPoint(System.Int32,System.Int32)">
<summary>
CellAlignPoint
</summary>
<param name="x"></param>
<param name="y"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderCell.GetSliderValue(System.Object)">
<summary>
GetSliderValue
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderCell.PartsSet(System.Windows.Forms.DataGridViewPaintParts,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Determines if the given part is set
</summary>
<param name="paintParts"></param>
<param name="parts"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderCell.GetBackBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewAdvancedBorderStyle)">
<summary>
Gets the background bounds for the given cell
</summary>
<param name="cellBounds"></param>
<param name="advancedBorderStyle"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderCell.GetContentBounds(System.Drawing.Rectangle)">
<summary>
Gets the content bounds for the given cell
</summary>
<param name="cellBounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderCell.RefreshSlider(System.Int32,System.Int32)">
<summary>
Initiates the refresh of the cell slider
</summary>
<param name="columnIndex"></param>
<param name="rowIndex"></param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewSliderCell.EditType">
<summary>
Gets the Type of the editing control associated with the cell
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewSliderCell.ValueType">
<summary>
Gets the type of the underlying data
(i.e., the type of the cell's Value property)
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.ShouldSerializeTextColor">
<summary>
Returns whether property should be serialized. Used by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.ResetTextColor">
<summary>
Resets the property to default value. Used by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.HookEvents(System.Boolean)">
<summary>
Hooks or unhooks our system events
</summary>
<param name="hook"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.SliderItem_Click(System.Object,System.EventArgs)">
<summary>
SliderItem_Click
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.SliderItem_ValueChanged(System.Object,System.EventArgs)">
<summary>
SliderItem_ValueChanged
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.GetCellBitmap(System.Drawing.Rectangle)">
<summary>
Gets the cell paint bitmap
</summary>
<param name="cellBounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.OnBeforeCellPaint(System.Int32,System.Int32)">
<summary>
Invokes BeforeCellPaint user events
</summary>
<param name="rowIndex">Row index</param>
<param name="columnIndex">Column index</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.Clone">
<summary>
Clones the ButtonX Column
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.Dispose(System.Boolean)">
<summary>
Dispose
</summary>
<param name="disposing"></param>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.BeforeCellPaint">
<summary>
Occurs right before a Slider Cell is painted
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.ActiveRowIndex">
<summary>
Gets or sets the active row index
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.BindingComplete">
<summary>
Gets or sets the DataBindingComplete state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.Slider">
<summary>
Gets the Control Slider
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.Enabled">
<summary>
Gets or sets whether the control can respond to user interaction
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.EnableMarkup">
<summary>
Gets or sets whether text-markup support is enabled for items Text property. Default value is true.
Set this property to false to display HTML or other markup in the item instead of it being parsed as text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.LabelPosition">
<summary>
Gets or sets the text label position in relationship to the slider. Default value is Left.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.LabelVisible">
<summary>
Gets or sets whether the text label next to the slider is displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.LabelWidth">
<summary>
Gets or sets the width of the label part of the item in pixels. Value must be greater than 0. Default value is 38.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.Maximum">
<summary>
Gets or sets the maximum value of the range of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.Minimum">
<summary>
Gets or sets the minimum value of the range of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.Step">
<summary>
Gets or sets the amount by which a call to the PerformStep method increases the current position of the slider. Value must be greater than 0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.Text">
<summary>
Gets or sets the text associated with this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.TextColor">
<summary>
Gets or sets the color of the label text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.TrackMarker">
<summary>
Gets or sets whether vertical line track marker is displayed on the slide line. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.Value">
<summary>
Gets or sets the current position of the slider.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewSliderColumn.OwnerPaintCell">
<summary>
Gets the Cell paint setting for the ButtonX control
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownCell.InitializeEditingControl(System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle)">
<summary>
InitializeEditingControl
</summary>
<param name="rowIndex"></param>
<param name="initialFormattedValue"></param>
<param name="dataGridViewCellStyle"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownCell.DetachEditingControl">
<summary>
DetachEditingControl
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownCell.ButtonClearClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
ButtonClearClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownCell.ButtonCustomClick(System.Object,System.EventArgs)">
<summary>
ButtonCustomClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownCell.ButtonCustom2Click(System.Object,System.EventArgs)">
<summary>
ButtonCustom2Click
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownCell.ButtonDropDownClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
ButtonDropDownClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownCell.KeyDown(System.Object,System.Windows.Forms.KeyEventArgs)">
<summary>
KeyDown routine forwards all DataGridView sent keys to
the underlying focusable control
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownCell.PositionEditingControl(System.Boolean,System.Boolean,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
PositionEditingControl
</summary>
<param name="setLocation"></param>
<param name="setSize"></param>
<param name="cellBounds"></param>
<param name="cellClip"></param>
<param name="cellStyle"></param>
<param name="singleVerticalBorderAdded"></param>
<param name="singleHorizontalBorderAdded"></param>
<param name="isFirstDisplayedColumn"></param>
<param name="isFirstDisplayedRow"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownCell.GetAdjustedEditingControlBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle)">
<summary>
GetAdjustedEditingControlBounds
</summary>
<param name="editingControlBounds"></param>
<param name="cellStyle"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Cell painting
</summary>
<param name="graphics"></param>
<param name="clipBounds"></param>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="elementState"></param>
<param name="value"></param>
<param name="formattedValue"></param>
<param name="errorText"></param>
<param name="cellStyle"></param>
<param name="advancedBorderStyle"></param>
<param name="paintParts"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownCell.PaintCellBackground(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Drawing.Rectangle)">
<summary>
Paints the cell background
</summary>
<param name="g"></param>
<param name="cellStyle"></param>
<param name="rBack"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownCell.PaintCellContent(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewPaintParts,System.Drawing.Bitmap)">
<summary>
Paints the cell content
</summary>
<param name="g"></param>
<param name="cellBounds"></param>
<param name="rowIndex"></param>
<param name="value"></param>
<param name="cellStyle"></param>
<param name="paintParts"></param>
<param name="bm"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownCell.DrawControl(DevComponents.DotNetBar.Controls.TextBoxDropDown,System.Windows.Forms.DataGridViewCellStyle,System.Drawing.Rectangle,System.Drawing.Bitmap,System.Drawing.Graphics)">
<summary>
DrawControl
</summary>
<param name="di"></param>
<param name="cellStyle"></param>
<param name="r"></param>
<param name="bm"></param>
<param name="g"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownCell.DrawText(DevComponents.DotNetBar.Controls.TextBoxDropDown,System.Windows.Forms.DataGridViewCellStyle,System.Drawing.Rectangle,System.Drawing.Graphics)">
<summary>
DrawText
</summary>
<param name="di"></param>
<param name="r"></param>
<param name="g"></param>
<param name="cellStyle"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownCell.GetBackBounds(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewAdvancedBorderStyle)">
<summary>
Gets the background bounds for the given cell
</summary>
<param name="cellBounds"></param>
<param name="advancedBorderStyle"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownCell.GetCellBounds(System.Drawing.Rectangle)">
<summary>
Gets the button bounds for the given cell
</summary>
<param name="cellBounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownCell.GetValue(System.Object)">
<summary>
GetValue
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownCell.GetTextAlignment(System.Windows.Forms.DataGridViewContentAlignment)">
<summary>
GetTextAlignment
</summary>
<param name="alignment"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownCell.PartsSet(System.Windows.Forms.DataGridViewPaintParts,System.Windows.Forms.DataGridViewPaintParts)">
<summary>
Determines if the given part is set
</summary>
<param name="paintParts"></param>
<param name="parts"></param>
<returns></returns>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownCell.EditType">
<summary>
Gets the Type of the editing control associated with the cell
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.ResetBackgroundStyle">
<summary>
Resets style to default value. Used by windows forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.ShouldSerializeWatermarkColor">
<summary>
Indicates whether property should be serialized by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.ResetWatermarkColor">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.AppendText(System.String)">
<summary>
Appends text to the current text of a text box.
</summary>
<param name="text">The text to append to the current contents of the text box. </param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.Clear">
<summary>
Clears all text from the text box control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.ClearUndo">
<summary>
Clears information about the most recent operation from the undo buffer of the text box.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.Copy">
<summary>
Copies the current selection in the text box to the Clipboard.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.Cut">
<summary>
Moves the current selection in the text box to the Clipboard.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.DeselectAll">
<summary>
Specifies that the value of the SelectionLength
property is zero so that no characters are selected in the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.GetCharFromPosition(System.Drawing.Point)">
<summary>
Retrieves the character that is closest to the specified location within the control.
</summary>
<param name="pt">The location from which to seek the nearest character. </param>
<returns>The character at the specified location.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.GetCharIndexFromPosition(System.Drawing.Point)">
<summary>
Retrieves the index of the character nearest to the specified location.
</summary>
<param name="pt">The location to search.</param>
<returns>The zero-based character index at the specified location.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.GetFirstCharIndexFromLine(System.Int32)">
<summary>
Retrieves the index of the first character of a given line.
</summary>
<param name="lineNumber">The line for which to get the index of its first character. </param>
<returns>The zero-based character index in the specified line.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.GetFirstCharIndexOfCurrentLine">
<summary>
Retrieves the index of the first character of the current line.
</summary>
<returns>The zero-based character index in the current line.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.GetLineFromCharIndex(System.Int32)">
<summary>
Retrieves the line number from the specified character position within the text of the control.
</summary>
<param name="index">The character index position to search. </param>
<returns>The zero-based line number in which the character index is located.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.GetPositionFromCharIndex(System.Int32)">
<summary>
Retrieves the location within the control at the specified character index.
</summary>
<param name="index">The index of the character for which to retrieve the location. </param>
<returns>The location of the specified character.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.Paste">
<summary>
Replaces the current selection in the text box with the contents of the Clipboard.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.Select(System.Int32,System.Int32)">
<summary>
Selects a range of text in the text box.
</summary>
<param name="start">The position of the first character in the current text selection within the text box. </param>
<param name="length">The number of characters to select. </param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.SelectAll">
<summary>
Selects all text in the text box.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.Undo">
<summary>
Undoes the last edit operation in the text box.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.Paste(System.String)">
<summary>
Replaces the specified selection in the TextBox with the contents of the Clipboard.
</summary>
<param name="text">The text to replace.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.DoButtonClearClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
DoButtonClearClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.DoButtonCustomClick(System.Object,System.EventArgs)">
<summary>
DoButtonCustomClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.DoButtonCustom2Click(System.Object,System.EventArgs)">
<summary>
DoButtonCustom2Click
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.DoButtonDropDownClick(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
DoButtonDropDownClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.GetCellBitmap(System.Drawing.Rectangle)">
<summary>
Gets the cell paint bitmap
</summary>
<param name="cellBounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.OnBeforeCellPaint(System.Int32,System.Int32)">
<summary>
Invokes BeforeCellPaint user events
</summary>
<param name="rowIndex">Row index</param>
<param name="columnIndex">Column index</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.Clone">
<summary>
Clones the ButtonX Column
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.Dispose(System.Boolean)">
<summary>
Dispose
</summary>
<param name="disposing"></param>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.BeforeCellPaint">
<summary>
Occurs right before a TextBoxDropDown Cell is painted
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.ButtonClearClick">
<summary>
Occurs when Clear button is clicked and allows you
to cancel the default action performed by the button
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.ButtonCustomClick">
<summary>
Occurs when ButtonCustom control is clicked
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.ButtonCustom2Click">
<summary>
Occurs when ButtonCustom2 control is clicked
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.ButtonDropDownClick">
<summary>
Occurs when Drop-Down button is clicked and allows you to cancel showing of the popup
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.TextBoxDropDown">
<summary>
Gets the underlying TextBoxDropDown control
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.AutoCompleteCustomSource">
<summary>
Gets or sets a custom StringCollection to use when
the AutoCompleteSource property is set to CustomSource.
<value>A StringCollection to use with AutoCompleteSource.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.AutoCompleteMode">
<summary>
Gets or sets an option that controls
how automatic completion works for the TextBox.
<value>One of the values of AutoCompleteMode. The values are Append,
None, Suggest, and SuggestAppend. The default is None.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.AutoCompleteSource">
<summary>
Gets or sets a value specifying the source of complete strings used for automatic completion.
<value>One of the values of AutoCompleteSource. The options are AllSystemSources, AllUrl, FileSystem, HistoryList, RecentlyUsedList, CustomSource, and None. The default is None.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.BackColor">
<summary>
Gets or sets the Background color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.BackgroundStyle">
<summary>
Specifies the background style of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.ButtonClear">
<summary>
Gets the object that describes the settings for the button
that clears the content of the control when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.ButtonCustom">
<summary>
Gets the object that describes the settings for the custom button
that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.ButtonCustom2">
<summary>
Gets the object that describes the settings for the custom button that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.ButtonDropDown">
<summary>
Gets the object that describes the settings for the button
that shows drop-down when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.CharacterCasing">
<summary>
Gets or sets whether the TextBox control
modifies the case of characters as they are typed.
<value>One of the CharacterCasing enumeration values that specifies
whether the TextBox control modifies the case of characters.
The default is CharacterCasing.Normal.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.DisplayControlForCurrentCellOnly">
<summary>
Gets or sets whether the control
will be displayed for the current cell only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.DropDownControl">
<summary>
Gets or sets the reference of the control that will be
displayed on popup that is shown when the drop-down button is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.Enabled">
<summary>
Gets or sets whether the control can respond to user interaction
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.FocusHighlightColor">
<summary>
Gets or sets the color used as background color to highlight
the text box when it has input focus and FocusHighlight is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.FocusHighlightEnabled">
<summary>
Gets or sets whether FocusHighlightColor is used as
background color to highlight the text box when it has
input focus. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.ForeColor">
<summary>
Gets or sets the foreground color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.HideSelection">
<summary>
Gets or sets a value indicating whether the selected text in
the text box control remains highlighted when the control loses focus.
<value>true if the selected text does not appear highlighted when the
text box control loses focus; false, if the selected text remains
highlighted when the text box control loses focus. The default is true.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.ImeMode">
<summary>
Gets or sets the Input Method Editor (IME) mode of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.MaxLength">
<summary>
Gets or sets the maximum number of characters the user can type or paste into the text box control.
<value>The number of characters that can be entered into the control. The default is 32767.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.PasswordChar">
<summary>
Gets or sets the character to be displayed in substitute for user input.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.RightToLeft">
<summary>
Gets or sets a value indicating whether control's
elements are aligned to support locales using right-to-left fonts.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.SelectedText">
<summary>
Gets or sets a value indicating the currently selected text in the control.
<value>A string that represents the currently selected text in the text box.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.SelectionLength">
<summary>
Gets or sets the number of characters selected in the text box.
<value>The number of characters selected in the text box.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.SelectionStart">
<summary>
Gets or sets the starting point of text selected in the text box.
<value>The starting position of text selected in the text box.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.Text">
<summary>
Gets or sets the text as it is currently displayed to the user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.TextAlign">
<summary>
Gets or sets how text is aligned in a masked text box control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.TextLength">
<summary>
Gets the length of text in the control.
Returns number of characters contained in the text of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.UseSystemPasswordChar">
<summary>
Gets or sets a value indicating whether
the operating system-supplied password character should be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.WatermarkBehavior">
<summary>
Gets or sets the watermark hiding behaviour. Default value
indicates that watermark is hidden when control receives input focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.WatermarkColor">
<summary>
Gets or sets the watermark text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.WatermarkEnabled">
<summary>
Gets or sets whether watermark text is
displayed when control is empty. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.WatermarkFont">
<summary>
Gets or sets the watermark font.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.WatermarkText">
<summary>
Gets or sets the watermark (tip) text displayed inside of
the control when Text is not set and control does not have
input focus. This property supports text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownColumn.OwnerPaintCell">
<summary>
Gets the Cell paint setting for the control
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.TextBoxDropDown">
<summary>
Represents single line text box control with the drop down button to display custom control on popup and additional custom buttons.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.OnBeforePopupOpen(System.ComponentModel.CancelEventArgs)">
<summary>
Raises BeforeMultiColumnPopupOpen event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.#ctor">
<summary>
Initializes a new instance of the TextBoxDropDown class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.OnTextAlignChanged(System.EventArgs)">
<summary>
Raises the TextAlignChanged event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.ResetBackgroundStyle">
<summary>
Resets style to default value. Used by windows forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.ShowDropDown">
<summary>
Shows drop-down popup. Note that popup will be shown only if there is a DropDownControl assigned or DropDownItems collection has at least one item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.CloseDropDown">
<summary>
Closes the drop-down popup if it is open.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.OnButtonClearClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises the ButtonClearClick event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.OnButtonDropDownClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises the ButtonDropDownClick event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.OnDropDownControlChanged">
<summary>
Called when DropDownControl property has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.ShouldSerializeWatermarkColor">
<summary>
Indicates whether property should be serialized by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.ResetWatermarkColor">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.OnCommandChanged">
<summary>
Called when Command property value changes.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.ToString">
<summary>
Returns a string that represents the current text in text box. This method overrides ToString.
</summary>
<returns>A String that contains information about the current TextBox. The string includes the type, a simplified view of the input string, and the formatted input string.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.AppendText(System.String)">
<summary>
Appends text to the current text of a text box.
</summary>
<param name="text">The text to append to the current contents of the text box. </param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.Clear">
<summary>
Clears all text from the text box control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.ClearUndo">
<summary>
Clears information about the most recent operation from the undo buffer of the text box.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.Copy">
<summary>
Copies the current selection in the text box to the Clipboard.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.Cut">
<summary>
Moves the current selection in the text box to the Clipboard.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.DeselectAll">
<summary>
Specifies that the value of the SelectionLength property is zero so that no characters are selected in the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.GetCharFromPosition(System.Drawing.Point)">
<summary>
Retrieves the character that is closest to the specified location within the control.
</summary>
<param name="pt">The location from which to seek the nearest character. </param>
<returns>The character at the specified location.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.GetCharIndexFromPosition(System.Drawing.Point)">
<summary>
Retrieves the index of the character nearest to the specified location.
</summary>
<param name="pt">The location to search.</param>
<returns>The zero-based character index at the specified location.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.GetFirstCharIndexFromLine(System.Int32)">
<summary>
Retrieves the index of the first character of a given line.
</summary>
<param name="lineNumber">The line for which to get the index of its first character. </param>
<returns>The zero-based character index in the specified line.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.GetFirstCharIndexOfCurrentLine">
<summary>
Retrieves the index of the first character of the current line.
</summary>
<returns>The zero-based character index in the current line.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.GetLineFromCharIndex(System.Int32)">
<summary>
Retrieves the line number from the specified character position within the text of the control.
</summary>
<param name="index">The character index position to search. </param>
<returns>The zero-based line number in which the character index is located.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.GetPositionFromCharIndex(System.Int32)">
<summary>
Retrieves the location within the control at the specified character index.
</summary>
<param name="index">The index of the character for which to retrieve the location. </param>
<returns>The location of the specified character.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.Paste">
<summary>
Replaces the current selection in the text box with the contents of the Clipboard.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.Select(System.Int32,System.Int32)">
<summary>
Selects a range of text in the text box.
</summary>
<param name="start">The position of the first character in the current text selection within the text box. </param>
<param name="length">The number of characters to select. </param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.SelectAll">
<summary>
Selects all text in the text box.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.Undo">
<summary>
Undoes the last edit operation in the text box.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxDropDown.Paste(System.String)">
<summary>
Replaces the specified selection in the TextBox with the contents of the Clipboard.
</summary>
<param name="text">The text to replace.</param>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TextBoxDropDown.ButtonClearClick">
<summary>
Occurs when Clear button is clicked and allows you to cancel the default action performed by the button.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TextBoxDropDown.ButtonDropDownClick">
<summary>
Occurs when Drop-Down button that shows popup is clicked and allows you to cancel showing of the popup.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TextBoxDropDown.ButtonCustomClick">
<summary>
Occurs when ButtonCustom control is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TextBoxDropDown.ButtonCustom2Click">
<summary>
Occurs when ButtonCustom2 control is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TextBoxDropDown.TextAlignChanged">
<summary>
Occurs when the text alignment is changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TextBoxDropDown.ModifiedChanged">
<summary>
Occurs when the value of the Modified property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TextBoxDropDown.BeforePopupOpen">
<summary>
Occurs before the popup is opened and it allows canceling of popup by setting CancelEventArgs.Cancel=true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.AutoSelectAll">
<summary>
Indicates whether all text is auto-selected when control gets input focus. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.FocusHighlightEnabled">
<summary>
Gets or sets whether FocusHighlightColor is used as background color to highlight text box when it has input focus. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.FocusHighlightColor">
<summary>
Gets or sets the color used as background color to highlight text box when it has input focus and focus highlight is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.BackgroundStyle">
<summary>
Specifies the background style of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.ButtonDropDown">
<summary>
Gets the object that describes the settings for the button that shows drop-down when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.ButtonClear">
<summary>
Gets the object that describes the settings for the button that clears the content of the control when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.ButtonCustom">
<summary>
Gets the object that describes the settings for the custom button that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.ButtonCustom2">
<summary>
Gets the object that describes the settings for the custom button that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.IsPopupOpen">
<summary>
Gets or sets a value indicating whether the drop-down is open.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.AutoFocusDropDownControl">
<summary>
Indicates whether DropDownControl is automatically focused when popup is open.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.DropDownControl">
<summary>
Gets or sets the reference of the control that will be displayed on popup that is shown when drop-down button is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.DropDownItems">
<summary>
Gets the collection of BaseItem derived items displayed on popup menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.TextBox">
<summary>
Gets the reference to internal TextBox control. Use it to get access to the text box events and properties.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.WatermarkEnabled">
<summary>
Gets or sets whether watermark text is displayed when control is empty. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.WatermarkText">
<summary>
Gets or sets the watermark (tip) text displayed inside of the control when Text is not set and control does not have input focus. This property supports text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.WatermarkFont">
<summary>
Gets or sets the watermark font.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.WatermarkColor">
<summary>
Gets or sets the watermark text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.WatermarkBehavior">
<summary>
Gets or sets the watermark hiding behaviour. Default value indicates that watermark is hidden when control receives input focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.WatermarkImage">
<summary>
Gets or sets the watermark image displayed inside of the control when Text is not set and control does not have input focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.WatermarkImageAlignment">
<summary>
Gets or sets the watermark image alignment.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.Command">
<summary>
Gets or sets the command assigned to the item. Default value is null.
<remarks>Note that if this property is set to null Enabled property will be set to false automatically to disable the item.</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.CommandParameter">
<summary>
Gets or sets user defined data value that can be passed to the command when it is executed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.Text">
<summary>
Gets or sets the text as it is currently displayed to the user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.PreferredHeight">
<summary>
Gets the preferred height for a text box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.AutoCompleteCustomSource">
<summary>
Gets or sets a custom StringCollection to use when the AutoCompleteSource property is set to CustomSource.
<value>A StringCollection to use with AutoCompleteSource.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.AutoCompleteMode">
<summary>
Gets or sets an option that controls how automatic completion works for the TextBox.
<value>One of the values of AutoCompleteMode. The values are Append, None, Suggest, and SuggestAppend. The default is None.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.AutoCompleteSource">
<summary>
Gets or sets a value specifying the source of complete strings used for automatic completion.
<value>One of the values of AutoCompleteSource. The options are AllSystemSources, AllUrl, FileSystem, HistoryList, RecentlyUsedList, CustomSource, and None. The default is None.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.CharacterCasing">
<summary>
Gets or sets whether the TextBox control modifies the case of characters as they are typed.
<value>One of the CharacterCasing enumeration values that specifies whether the TextBox control modifies the case of characters. The default is CharacterCasing.Normal.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.PasswordChar">
<summary>
Gets or sets the character used to mask characters of a password in a single-line TextBox control.
<value>The character used to mask characters entered in a single-line TextBox control. Set the value of this property to 0 (character value) if you do not want the control to mask characters as they are typed. Equals 0 (character value) by default.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.TextAlign">
<summary>
Gets or sets how text is aligned in a TextBox control.
<value>One of the HorizontalAlignment enumeration values that specifies how text is aligned in the control. The default is HorizontalAlignment.Left.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.UseSystemPasswordChar">
<summary>
Gets or sets a value indicating whether the text in the TextBox control should appear as the default password character.
<value>true if the text in the TextBox control should appear as the default password character; otherwise, false.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.HideSelection">
<summary>
Gets or sets a value indicating whether the selected text in the text box control remains highlighted when the control loses focus.
<value>true if the selected text does not appear highlighted when the text box control loses focus; false, if the selected text remains highlighted when the text box control loses focus. The default is true.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.MaxLength">
<summary>
Gets or sets the maximum number of characters the user can type or paste into the text box control.
<value>The number of characters that can be entered into the control. The default is 32767.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.Modified">
<summary>
Gets or sets a value that indicates that the text box control has been modified by the user since the control was created or its contents were last set.
<value>true if the control's contents have been modified; otherwise, false. The default is false.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.ReadOnly">
<summary>
Gets or sets a value indicating whether text in the text box is read-only.
<value>true if the text box is read-only; otherwise, false. The default is false.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.SelectedText">
<summary>
Gets or sets a value indicating the currently selected text in the control.
<value>A string that represents the currently selected text in the text box.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.SelectionLength">
<summary>
Gets or sets the number of characters selected in the text box.
<value>The number of characters selected in the text box.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.SelectionStart">
<summary>
Gets or sets the starting point of text selected in the text box.
<value>The starting position of text selected in the text box.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxDropDown.TextLength">
<summary>
Gets the length of text in the control.Returns number of characters contained in the text of the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownEditingControl.OnTextChanged(System.EventArgs)">
<summary>
Handles OnTextChanged events
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownEditingControl.ApplyCellStyleToEditingControl(System.Windows.Forms.DataGridViewCellStyle)">
<summary>
ApplyCellStyleToEditingControl
</summary>
<param name="dataGridViewCellStyle"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownEditingControl.GetEditingControlFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts)">
<summary>
Gets EditingControlFormattedValue
</summary>
<param name="context"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownEditingControl.EditingControlWantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
<summary>
Gets whether the given key wants to be processed
by the Control
</summary>
<param name="keyData"></param>
<param name="dataGridViewWantsInputKey"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownEditingControl.PrepareEditingControlForEdit(System.Boolean)">
<summary>
PrepareEditingControlForEdit
</summary>
<param name="selectAll"></param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownEditingControl.EditingControlDataGridView">
<summary>
Gets or sets the DataGridView
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownEditingControl.EditingControlFormattedValue">
<summary>
Gets or sets the Control Formatted Value
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownEditingControl.EditingControlRowIndex">
<summary>
Gets or sets the Control RoeIndex
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownEditingControl.EditingControlValueChanged">
<summary>
Gets or sets the Control ValueChanged state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownEditingControl.EditingPanelCursor">
<summary>
Gets the Panel Cursor
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DataGridViewTextBoxDropDownEditingControl.RepositionEditingControlOnValueChange">
<summary>
Gets whether to RepositionEditingControlOnValueChange
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.DesktopAlert">
<summary>
Displays the desktop alerts with optional image or symbol. Text on alerts supports text-markup.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlert.Show(System.String)">
<summary>
Shows desktop alert.
</summary>
<param name="text">Text to show on the alert. Text supports text-markup.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlert.Show(System.String,System.Windows.Forms.Control)">
<summary>
Shows desktop alert.
</summary>
<param name="text">Text to show on the alert. Text supports text-markup.</param>
<param name="referenceControl">Specifies reference control which is used to find target screen alert is displayed on.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlert.Show(System.String,DevComponents.DotNetBar.MarkupLinkClickEventHandler)">
<summary>
Shows desktop alert.
</summary>
<param name="text">Text to show on the alert. Text supports text-markup.</param>
<param name="markupLinkClickHandler">Text-markup link click event handler.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlert.Show(System.String,DevComponents.DotNetBar.Controls.eDesktopAlertColor)">
<summary>
Shows desktop alert.
</summary>
<param name="text">Text to show on the alert. Text supports text-markup.</param>
<param name="alertColor">Specifies alert color.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlert.Show(System.String,DevComponents.DotNetBar.Controls.eDesktopAlertColor,System.Windows.Forms.Control)">
<summary>
Shows desktop alert.
</summary>
<param name="text">Text to show on the alert. Text supports text-markup.</param>
<param name="alertColor">Specifies alert color.</param>
<param name="referenceControl">Specifies reference control which is used to find target screen alert is displayed on.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlert.Show(System.String,DevComponents.DotNetBar.Controls.eAlertPosition)">
<summary>
Shows desktop alert at specific screen position.
</summary>
<param name="text">Text to show on the alert. Text supports text-markup.</param>
<param name="position">Alert position on the screen.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlert.Show(System.String,DevComponents.DotNetBar.Controls.eAlertPosition,System.Windows.Forms.Control)">
<summary>
Shows desktop alert at specific screen position.
</summary>
<param name="text">Text to show on the alert. Text supports text-markup.</param>
<param name="position">Alert position on the screen.</param>
<param name="referenceControl">Specifies reference control which is used to find target screen alert is displayed on.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlert.Show(System.String,System.Drawing.Image)">
<summary>
Shows desktop alert at specific screen position.
</summary>
<param name="text">Text to show on the alert. Text supports text-markup.</param>
<param name="image">Image to display on alert.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlert.Show(System.String,DevComponents.DotNetBar.Controls.eDesktopAlertColor,DevComponents.DotNetBar.Controls.eAlertPosition)">
<summary>
Shows desktop alert.
</summary>
<param name="text">Text to show on the alert. Text supports text-markup.</param>
<param name="alertColor">Alert color.</param>
<param name="position">Alert position on the screen.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlert.Show(System.String,DevComponents.DotNetBar.Controls.eDesktopAlertColor,DevComponents.DotNetBar.Controls.eAlertPosition,DevComponents.DotNetBar.MarkupLinkClickEventHandler,System.Windows.Forms.Control)">
<summary>
Shows desktop alert.
</summary>
<param name="text">Text to show on the alert. Text supports text-markup.</param>
<param name="alertColor">Alert color</param>
<param name="position">Alert position on the screen</param>
<param name="markupLinkClickHandler">Text-markup link click event handler.</param>
<param name="referenceControl">Specifies reference control which is used to find target screen alert is displayed on.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlert.Show(System.String,DevComponents.DotNetBar.Controls.eDesktopAlertColor,DevComponents.DotNetBar.Controls.eAlertPosition,DevComponents.DotNetBar.MarkupLinkClickEventHandler)">
<summary>
Shows desktop alert.
</summary>
<param name="text">Text to show on the alert. Text supports text-markup.</param>
<param name="alertColor">Alert color</param>
<param name="position">Alert position on the screen</param>
<param name="markupLinkClickHandler">Text-markup link click event handler.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlert.Show(System.String,System.Int64,System.Action{System.Int64})">
<summary>
Shows desktop alert.
</summary>
<param name="text">Text to show on the alert. Text supports text-markup.</param>
<param name="alertId">Alert ID used to recognize alert if clicked and specified Action is called</param>
<param name="alertClickAction">Action method to call if alert is clicked.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlert.Show(System.String,DevComponents.DotNetBar.Controls.eDesktopAlertColor,System.Int64,System.Action{System.Int64})">
<summary>
Shows desktop alert.
</summary>
<param name="text">Text to show on the alert. Text supports text-markup.</param>
<param name="alertColor">Alert color</param>
<param name="alertId">Alert ID used to recognize alert if clicked and specified Action is called</param>
<param name="alertClickAction">Action method to call if alert is clicked.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlert.Show(System.String,System.String,DevComponents.DotNetBar.eSymbolSet,System.Drawing.Color,DevComponents.DotNetBar.Controls.eDesktopAlertColor,DevComponents.DotNetBar.Controls.eAlertPosition,System.Int32,System.Int64,System.Action{System.Int64})">
<summary>
Shows desktop alert.
</summary>
<param name="text">Text to show on the alert. Text supports text-markup.</param>
<param name="symbol">Symbol to show on the alert, see http://www.devcomponents.com/kb2/?p=1347 </param>
<param name="symbolSet">Symbol set to use</param>
<param name="symbolColor">Symbol color or Color.Empty to use default text color</param>
<param name="alertColor">Alert color</param>
<param name="position">Alert position on the screen</param>
<param name="alertDurationSeconds">Duration of alert in the seconds.</param>
<param name="alertId">Alert ID used to recognize alert if clicked and specified Action is called</param>
<param name="alertClickAction">Action method to call if alert is clicked.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlert.Show(System.String,System.String,DevComponents.DotNetBar.eSymbolSet,System.Drawing.Color,DevComponents.DotNetBar.Controls.eDesktopAlertColor,DevComponents.DotNetBar.Controls.eAlertPosition,System.Int32,System.Int64,System.Action{System.Int64},DevComponents.DotNetBar.MarkupLinkClickEventHandler)">
<summary>
Shows desktop alert.
</summary>
<param name="text">Text to show on the alert. Text supports text-markup.</param>
<param name="symbol">Symbol to show on the alert, see http://www.devcomponents.com/kb2/?p=1347 </param>
<param name="symbolSet">Symbol set to use</param>
<param name="symbolColor">Symbol color or Color.Empty to use default text color</param>
<param name="position">Alert position on the screen</param>
<param name="alertColor">Alert color</param>
<param name="alertDurationSeconds">Duration of alert in the seconds.</param>
<param name="alertId">Alert ID used to recognize alert if clicked and specified Action is called</param>
<param name="alertClickAction">Action method to call if alert is clicked.</param>
<param name="markupLinkClickHandler">Text-markup link click event handler.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlert.Show(System.String,System.String,DevComponents.DotNetBar.eSymbolSet,System.Drawing.Color,DevComponents.DotNetBar.Controls.eDesktopAlertColor,DevComponents.DotNetBar.Controls.eAlertPosition,System.Int32,System.Int64,System.Action{System.Int64},DevComponents.DotNetBar.MarkupLinkClickEventHandler,System.Windows.Forms.Control)">
<summary>
Shows desktop alert.
</summary>
<param name="text">Text to show on the alert. Text supports text-markup.</param>
<param name="symbol">Symbol to show on the alert, see http://www.devcomponents.com/kb2/?p=1347 </param>
<param name="symbolSet">Symbol set to use</param>
<param name="symbolColor">Symbol color or Color.Empty to use default text color</param>
<param name="position">Alert position on the screen</param>
<param name="alertColor">Alert color</param>
<param name="alertDurationSeconds">Duration of alert in the seconds.</param>
<param name="alertId">Alert ID used to recognize alert if clicked and specified Action is called</param>
<param name="alertClickAction">Action method to call if alert is clicked.</param>
<param name="markupLinkClickHandler">Text-markup link click event handler.</param>
<param name="referenceControl">Specifies reference control which is used to find target screen alert is displayed on.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlert.Show(System.String,System.Drawing.Image,DevComponents.DotNetBar.Controls.eDesktopAlertColor,DevComponents.DotNetBar.Controls.eAlertPosition,System.Int32,System.Int64,System.Action{System.Int64})">
<summary>
Shows desktop alert.
</summary>
<param name="text">Text to show on the alert. Text supports text-markup.</param>
<param name="image">Image to display on the alert</param>
<param name="position">Alert screen position</param>
<param name="alertColor">Alert color</param>
<param name="alertDurationSeconds">Duration of alert in seconds</param>
<param name="alertId">Alert ID used to recognize alert if clicked and specified Action is called</param>
<param name="alertClickAction">Action method to call if alert is clicked.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlert.Show(System.String,System.Drawing.Image,DevComponents.DotNetBar.Controls.eDesktopAlertColor,DevComponents.DotNetBar.Controls.eAlertPosition,System.Int32,System.Int64,System.Action{System.Int64},DevComponents.DotNetBar.MarkupLinkClickEventHandler)">
<summary>
Shows desktop alert.
</summary>
<param name="text">Text to show on the alert. Text supports text-markup.</param>
<param name="image">Image to display on the alert</param>
<param name="position">Alert screen position</param>
<param name="alertColor">Alert color</param>
<param name="alertDurationSeconds">Duration of alert in seconds</param>
<param name="alertId">Alert ID used to recognize alert if clicked and specified Action is called</param>
<param name="alertClickAction">Action method to call if alert is clicked.</param>
<param name="markupLinkClickHandler">Text-markup link click event handler.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlert.Show(System.String,System.Drawing.Image,DevComponents.DotNetBar.Controls.eDesktopAlertColor,DevComponents.DotNetBar.Controls.eAlertPosition,System.Int32,System.Int64,System.Action{System.Int64},DevComponents.DotNetBar.MarkupLinkClickEventHandler,System.Windows.Forms.Control)">
<summary>
Shows desktop alert.
</summary>
<param name="text">Text to show on the alert. Text supports text-markup.</param>
<param name="image">Image to display on the alert</param>
<param name="position">Alert screen position</param>
<param name="alertColor">Alert color</param>
<param name="alertDurationSeconds">Duration of alert in seconds</param>
<param name="alertId">Alert ID used to recognize alert if clicked and specified Action is called</param>
<param name="alertClickAction">Action method to call if alert is clicked.</param>
<param name="markupLinkClickHandler">Text-markup link click event handler.</param>
<param name="referenceControl">Specifies reference control which is used to find target screen alert is displayed on.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlert.OnBeforeAlertDisplayed(DevComponents.DotNetBar.Controls.DesktopAlertWindow,System.EventArgs)">
<summary>
Raises BeforeAlertDisplayed event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlert.OnAlertClosed(System.Object,DevComponents.DotNetBar.Controls.AlertClosedEventArgs)">
<summary>
Raises RemovingToken event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlert.MaximumAlertSize">
<summary>
Indicates maximum alert size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlert.AlertPosition">
<summary>
Specifies default alert screen position.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlert.AlertColor">
<summary>
Specifies default alert color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlert.AlertAnimationDuration">
<summary>
Gets or sets the total time in milliseconds alert animation takes.
Default value is 200.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlert.AutoCloseTimeOut">
<summary>
Gets or sets time period in seconds after alert closes automatically.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlert.TextMarkupEnabled">
<summary>
Gets or sets whether text-markup can be used in alert text, default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlert.PlaySound">
<summary>
Indicates whether alert plays exclamation sound when shown.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DesktopAlert.BeforeAlertDisplayed">
<summary>
Occurs before alert is displayed and allows access to the alert Window through sender.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DesktopAlert.AlertClosed">
<summary>
Occurs after alert as been closed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.AlertClosedEventHandler">
<summary>
Defines delegate for AlertClosed event.
</summary>
<param name="sender">Sender.</param>
<param name="args">Event arguments</param>
</member>
<member name="T:DevComponents.DotNetBar.Controls.AlertClosedEventArgs">
<summary>
Defines event arguments for AlertClosed event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.AlertClosedEventArgs.ClosureSource">
<summary>
Specifies alert closure source.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eDesktopAlertColor">
<summary>
Defines predefined desktop alert colors.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlertWindow.PerformAutoSize">
<summary>
Sets alert size based on its content, it respects MinimumSize and MaximumSize property settings.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlertWindow.ShouldSerializeSymbolColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlertWindow.ResetSymbolColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlertWindow.OnSymbolChanged(System.String,System.String)">
<summary>
Called when Symbol property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlertWindow.OnSymbolSetChanged(DevComponents.DotNetBar.eSymbolSet,DevComponents.DotNetBar.eSymbolSet)">
<summary>
Called when SymbolSet property value changes.
</summary>
<param name="oldValue">Indciates old value</param>
<param name="newValue">Indicates new value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlertWindow.OnSymbolSizeChanged(System.Single,System.Single)">
<summary>
Called when SymbolSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlertWindow.OnTextMarkupEnabledChanged(System.Boolean,System.Boolean)">
<summary>
Called when TextMarkupEnabled property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlertWindow.TextMarkupLinkClick(System.Object,System.EventArgs)">
<summary>
Occurs when text markup link is clicked.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlertWindow.OnMarkupLinkClick(DevComponents.DotNetBar.MarkupLinkClickEventArgs)">
<summary>
Raises MarkupLinkClick event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlertWindow.Show(System.Boolean)">
<summary>
Display balloon.
</summary>
<param name="focusAlert">Indicates whether alert receives input focus upon showing.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlertWindow.Show">
<summary>
Displays balloon.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlertWindow.HideAlert(DevComponents.DotNetBar.Controls.eAlertClosureSource)">
<summary>
Called when alert needs to be hidden.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.DesktopAlertWindow.Hide">
<summary>
Hides balloon.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlertWindow.SymbolColor">
<summary>
Gets or sets the color of the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlertWindow.SymbolRealized">
<summary>
Gets the realized symbol string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlertWindow.Symbol">
<summary>
Indicates the symbol displayed on face of the button instead of the image. Setting the symbol overrides the image setting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlertWindow.SymbolSet">
<summary>
Gets or sets the symbol set used to represent the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlertWindow.SymbolSize">
<summary>
Indicates the size of the symbol in points.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlertWindow.Image">
<summary>
Indicates image displayed on alert.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlertWindow.AlertId">
<summary>
Indicates optional Alert Id.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlertWindow.ClickAction">
<summary>
Indicates the method that will be invoked if user clicks the alert.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlertWindow.TextMarkupEnabled">
<summary>
Gets or sets whether text-markup can be used in Text property.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.DesktopAlertWindow.MarkupLinkClick">
<summary>
Occurs when text markup link is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlertWindow.TextMarkupBody">
<summary>
Gets reference to parsed markup body element if text was markup otherwise returns null.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlertWindow.DefaultAlertSize">
<summary>
Gets or sets the default alert size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlertWindow.AlertAnimationDuration">
<summary>
Gets or sets the total time in milliseconds alert animation takes.
Default value is 200.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlertWindow.AutoClose">
<summary>
Gets or sets whether balloon will close automatically when user click the close button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlertWindow.AutoCloseTimeOut">
<summary>
Gets or sets time period in seconds after alert closes automatically.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlertWindow.ReferenceControl">
<summary>
Specifies the reference control which is used to find which screen the alert is displayed on. If not specified alert is displayed on primary screen.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlertWindow.AlertsSpacing">
<summary>
Indicates spacing between alerts on the screen
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlertWindow.AlertPosition">
<summary>
Indicates the request screen position for the alert
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlertWindow.ImageTextPadding">
<summary>
Indicates spacing in pixels between image and text
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlertWindow.PlaySound">
<summary>
Indicates whether alert plays exclamation sound when shown.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DesktopAlertWindow.CloseButtonVisible">
<summary>
Indicates whether close button on alert is visible
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eAlertPosition">
<summary>
Defines the alert positions.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eAlertPosition.TopLeft">
<summary>
Top-left screen position.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eAlertPosition.TopRight">
<summary>
Top-right screen position.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eAlertPosition.BottomRight">
<summary>
Bottom-right screen position.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eAlertPosition.BottomLeft">
<summary>
Bottom left screen position.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eAlertClosureSource">
<summary>
Defines closure sources for the alert.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eAlertClosureSource.Timeout">
<summary>
Alert is closed becouse of timeout
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eAlertClosureSource.CloseButton">
<summary>
Alert is closed becouse user clicked close button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eAlertClosureSource.AlertClicked">
<summary>
Alert is closed becouse user clicked on the alert.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.Flyout">
<summary>
Component to display flyout popup.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.Flyout.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.OnContentChanged(System.Windows.Forms.Control,System.Windows.Forms.Control)">
<summary>
Called when Content property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.OnPointerSideChanged(DevComponents.DotNetBar.Controls.ePointerSide,DevComponents.DotNetBar.Controls.ePointerSide)">
<summary>
Called when PointerSide property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.OnTargetControlChanged(System.Windows.Forms.Control,System.Windows.Forms.Control)">
<summary>
Called when TargetControl property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.OnDeepControlIntegrationChanged(System.Boolean,System.Boolean)">
<summary>
Called when DeepControlIntegration property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.OnDisplayModeChanged(DevComponents.DotNetBar.Controls.eFlyoutDisplayMode,DevComponents.DotNetBar.Controls.eFlyoutDisplayMode)">
<summary>
Called when DisplayMode property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.OnCloseModeChanged(DevComponents.DotNetBar.Controls.eFlyoutCloseMode,DevComponents.DotNetBar.Controls.eFlyoutCloseMode)">
<summary>
Called when CloseMode property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.OnPrepareContent(System.Object,System.EventArgs)">
<summary>
Raises PrepareContent event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.Show">
<summary>
Shows flyout with the Content.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.GetFlyoutFormSize">
<summary>
Returns the flyout size based on Content size.
</summary>
<returns>Proposed flyout size.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.Show(System.Drawing.Rectangle)">
<summary>
Shows flyout at specified location and with specified size. Size can be empty (0,0) and flyout will be automatically sized based on the content.
</summary>
<param name="screenFlyoutBounds"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.OnFlyoutShowing(DevComponents.DotNetBar.Controls.FlyoutShowingEventArgs)">
<summary>
Raises FlyoutShowing event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.OnFlyoutShown(System.EventArgs)">
<summary>
Raises FlyoutShown event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.OnQueryShowFlyout(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
Raises QueryShowFlyout event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.Show(System.Drawing.Rectangle,DevComponents.DotNetBar.Controls.ePointerSide,System.Int32,System.Object)">
<summary>
Shows flyout at specified location and with specified size. Size can be empty (0,0) and flyout will be automatically sized based on the content.
</summary>
<param name="screenFlyoutBounds">Screen bounds to display flyout at.</param>
<param name="pointerSide">Side of the flyout which will have pointer triangle</param>
<param name="pointerOffset">Pointer position either x or y depending on which side pointer is displayed on.</param>
<param name="targetItem">Target item for the flyout.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.OnFlyoutClosing(System.Windows.Forms.FormClosingEventArgs)">
<summary>
Raises FlyoutClosing event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.OnFlyoutClosed(System.Windows.Forms.FormClosedEventArgs)">
<summary>
Raises FlyoutClosed event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.Close">
<summary>
Closes the flyout form if it was open.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.OnActivateOnShowChanged(System.Boolean,System.Boolean)">
<summary>
Called when ActivateOnShow property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.OnTopMostChanged(System.Boolean,System.Boolean)">
<summary>
Called when TopMost property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.ShouldSerializeBackColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.ResetBackColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.ShouldSerializeBorderColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.ResetBorderColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.OnDropShadowChanged(System.Boolean,System.Boolean)">
<summary>
Called when DropShadow property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Flyout.OnParentChanged(System.Windows.Forms.Control,System.Windows.Forms.Control)">
<summary>
Called when Parent property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Flyout.Content">
<summary>
Indicates a control, usually panel with other controls inside of it, that is displayed on the flyout popup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Flyout.PointerSide">
<summary>
Indicates the side of the flyout triangle pointer is displayed on.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Flyout.TargetControl">
<summary>
Indicates the target control for the flyout display and positioning.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Flyout.DeepIntegration">
<summary>
Indicates whether Flyout integrates on item level with DotNetBar controls it recognizes like SuperTabControl, AdvTree etc.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Flyout.DisplayMode">
<summary>
Specifies when the flyout is displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Flyout.CloseMode">
<summary>
Indicates when Flyout is automatically closed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.Flyout.PrepareContent">
<summary>
Occurs before the flyout is shown for specific target and allows you to prepare Content for it. Sender of event will be the targeted control or item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.Flyout.FlyoutShown">
<summary>
Occurs after flyout has been shown.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.Flyout.QueryShowFlyout">
<summary>
Provides opportunity to cancel showing of the flyout before any objects are created and allocated. This is preferred event to cancel flyout showing.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.Flyout.FlyoutClosing">
<summary>
Occurs before flyout is closed and allows you to cancel the closing.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.Flyout.FlyoutClosed">
<summary>
Occurs after flyout is closed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Flyout.ActivateOnShow">
<summary>
Indicates whether flyout is active/focused when its shown, default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Flyout.TopMost">
<summary>
Indicates whether flyout is made top-most window when shown
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Flyout.BackColor">
<summary>
Gets or sets the background flyout color. Default value is Color.Empty which indicates that current color scheme will be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Flyout.BorderColor">
<summary>
Gets or sets the flyout border color. Default value of Color.Empty indicates that color scheme will be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Flyout.DropShadow">
<summary>
Indicates whether flyout displays drop shadow.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Flyout.Parent">
<summary>
Gets or sets the parent control for the Flyout. Parent is used to find the parent form so flyout can be closed when form is de-activated.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.FlyoutShowingEventHandler">
<summary>
Defines delegate for the FlyoutShowing event.
</summary>
<param name="sender"></param>
<param name="ea"></param>
</member>
<member name="F:DevComponents.DotNetBar.Controls.FlyoutShowingEventArgs.Flyout">
<summary>
Gets the reference to the flyout form.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.FlyoutShowingEventArgs.Target">
<summary>
Gets the reference to the flyout target usually TargetControl.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.FlyoutShowingEventArgs.Cancel">
<summary>
Allows you to cancel showing of the flyout by setting this value to true.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.FlyoutShowingEventArgs.#ctor(DevComponents.DotNetBar.Controls.FlyoutForm,System.Object)">
<summary>
Initializes a new instance of the FlyoutShowingEventArgs class.
</summary>
<param name="flyout"></param>
<param name="target"></param>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eFlyoutDisplayMode">
<summary>
Defines the modes for Flyout display.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eFlyoutDisplayMode.Manual">
<summary>
Flyout is displayed manually using flyout.Show() method.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eFlyoutDisplayMode.MouseOver">
<summary>
Flyout is displayed when mouse is over TargetControl.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eFlyoutDisplayMode.MouseHover">
<summary>
Flyout is displayed when mouse is hovering over TargetControl.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eFlyoutDisplayMode.MouseClick">
<summary>
Flyout is displayed when left mouse button is clicked on TargetControl.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eFlyoutCloseMode">
<summary>
Defines Flyout closing condition.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eFlyoutCloseMode.Manual">
<summary>
Flyout is closed manually using flyout.Close() method.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eFlyoutCloseMode.ClickOutside">
<summary>
Flyout is closed when user clicks outside of flyout bounds.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eFlyoutCloseMode.TargetControlHidden">
<summary>
Flyout is closed when TargetControl is hidden.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eFlyoutCloseMode.TargetControlLostFocus">
<summary>
Flyout is closed when TargetControl loses focus.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eFlyoutCloseMode.ParentFormDeactivate">
<summary>
Flyout is closed when parent forms deactivates.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.FlyoutColorTable">
<summary>
Defines colors for the Flyout control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.FlyoutColorTable.BackColor">
<summary>
Specifies Flyout background color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.FlyoutColorTable.BorderColor">
<summary>
Specifies Flyout border color.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.FlyoutForm.OnPointerOffsetChanged(System.Int32,System.Int32)">
<summary>
Called when PointerOffset property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.FlyoutForm.OnPointerSideChanged(DevComponents.DotNetBar.Controls.ePointerSide,DevComponents.DotNetBar.Controls.ePointerSide)">
<summary>
Called when PointerSide property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.FlyoutForm.ShouldSerializeBorderColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.FlyoutForm.ResetBorderColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.FlyoutForm.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.FlyoutForm.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.FlyoutForm.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.FlyoutForm.DropShadow">
<summary>
Indicates whether flyout displays a drop shadow.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.FlyoutForm.ActivateOnShow">
<summary>
Gets or sets whether form is made active/focused when shown.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.FlyoutForm.PointerOffset">
<summary>
Gets or sets the pointer offset from the top-left corner
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.FlyoutForm.PointerSide">
<summary>
Gets or sets the side pointer triangle is displayed on.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.FlyoutForm.BorderColor">
<summary>
Gets or sets the flyout border color. Default value of Color.Empty indicates that color scheme will be used.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.ePointerSide">
<summary>
Defines the side of triangle pointer displayed on flyout popup.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PanelControl">
<summary>
Represents graphical panel control with support for different visual styles and gradients.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.#ctor">
<summary>
Default constructor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.SetRegion">
<summary>
Applies any region related settings from style to control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.RefreshStyleSystemColors">
<summary>
Applies color scheme colors to the style objects.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.CreateGraphics">
<summary>
Creates the Graphics object for the control.
</summary>
<returns>The Graphics object for the control.</returns>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.GetStyle">
<summary>
Returns the current style of the control.
</summary>
<returns>Instance of ElementStyle object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.GetStyleMouseDown">
<summary>
Returns the current mouse down style of the control.
</summary>
<returns>Instance of ElementStyle object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.GetStyleMouseOver">
<summary>
Returns the current mouse over style of the control.
</summary>
<returns>Instance of ElementStyle object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.PaintThemed(System.Windows.Forms.PaintEventArgs)">
<summary>
Paints panel using Windows themes.
</summary>
<param name="e">Paint event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.PaintPrepare(System.Windows.Forms.PaintEventArgs)">
<summary>
Prepares paint surface for paint operation. Called as first thing in Paint event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.PaintStyled(System.Windows.Forms.PaintEventArgs)">
<summary>
Paints panel given current style.
</summary>
<param name="e">Paint event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.PaintInnerContent(System.Windows.Forms.PaintEventArgs,DevComponents.DotNetBar.ElementStyle,System.Boolean)">
<summary>
Paints insides of the control.
</summary>
<param name="e">Paint event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.ShouldSerializeCanvasColor">
<summary>
Indicates whether CanvasColor should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.ResetCanvasColor">
<summary>
Resets CanvasColor to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.ResetStyle">
<summary>
Resets the style to it's default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.ResetMouseTracking">
<summary>
Resets the internal mouse tracking properties that track whether mouse is over the panel and whether is mouse pressed while over the panel.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.ResetStyleMouseOver">
<summary>
Resets the style to it's default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.ResetStyleMouseDown">
<summary>
Resets the style to it's default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.OnColorSchemeChanged">
<summary>
Called after either ColorScheme or ColorSchemeStyle has changed. If you override make sure that you call base implementation so default
processing can occur.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.ApplyPanelStyle">
<summary>
Applies predefined Panel color scheme to the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.ApplyPanelStyle(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Applies predefined Panel color scheme to the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.ApplyButtonStyle">
<summary>
Applies predefined Button color scheme to the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.ApplyLabelStyle">
<summary>
Applies predefined Label color scheme to the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.ApplyLabelStyle(DevComponents.DotNetBar.ElementStyle)">
<summary>
Applies predefined lable style to the ElementStyle object.
</summary>
<param name="style">Reference to ElementStyle object.</param>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.NotifyDefault(System.Boolean)">
<summary>
Notifies a control that it is the default button so that its appearance and behavior is adjusted accordingly.
</summary>
<param name="value">true if the control should behave as a default button; otherwise false.</param>
</member>
<member name="M:DevComponents.DotNetBar.PanelControl.PerformClick">
<summary>
Generates a Click event for the control.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.PanelControl.MarkupLinkClick">
<summary>
Occurs when text markup link is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelControl.ColorScheme">
<summary>
Gets or sets Bar Color Scheme.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelControl.ShowFocusRectangle">
<summary>
Gets or sets whether focus rectangle is displayed when control has focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelControl.CanvasColor">
<summary>
Gets or sets the canvas color for the panel. Canvas color will be visible on areas of the control that do not get covered
by the style and it will also be used as a base color for style to be painted on.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelControl.Style">
<summary>
Gets or sets the panel style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelControl.StyleMouseOver">
<summary>
Gets or sets the panel style when mouse hovers over the panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelControl.StyleMouseDown">
<summary>
Gets or sets the panel style when mouse button is pressed on the panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelControl.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelControl.ColorSchemeStyle">
<summary>
Gets or sets color scheme style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelControl.TextDockConstrained">
<summary>
Gets or sets whether text rectangle painted on panel is considering docked controls inside the panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelControl.ClientTextRectangle">
<summary>
Gets or sets the text rectangle. This property is set by internal implementation and it should not be set by outside code.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelControl.SuspendPaint">
<summary>
Gets or sets whether painting of the control is suspended.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelControl.DialogResult">
<summary>
Gets or sets the value returned to the parent form when the button is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelControl.ThemeAware">
<summary>
Specifies whether item is drawn using Themes when running on OS that supports themes like Windows XP.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.INonClientControl.BaseWndProc(System.Windows.Forms.Message@)">
<summary>
Calls base WndProc implementation
</summary>
<param name="m">Describes Windows Message</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.INonClientControl.GetItemPaintArgs(System.Drawing.Graphics)">
<summary>
Gets the ItemPaintArgs which provide information for rendering.
</summary>
<param name="g">Reference to Canvas</param>
<returns>Returns the new ItemPaintArgs instance</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.INonClientControl.PaintBackground(System.Windows.Forms.PaintEventArgs)">
<summary>
Paints the background of the control
</summary>
<param name="e">PaintEventArgs arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.INonClientControl.PointToScreen(System.Drawing.Point)">
<summary>
Converts the client point into the screen point.
</summary>
<param name="client">Client point</param>
<returns>Client point converted into screen coordinates.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.INonClientControl.AdjustClientRectangle(System.Drawing.Rectangle@)">
<summary>
Adjusts the client rectangle for the control.
</summary>
<param name="r">Reference to new client rectangle.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.INonClientControl.AdjustBorderRectangle(System.Drawing.Rectangle@)">
<summary>
Adjusts the border rectangle before the non-client border is rendered.
</summary>
<param name="r">Border rectangle</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.INonClientControl.RenderNonClient(System.Drawing.Graphics)">
<summary>
Occurs after non-client area is rendered and provides opportunity to render on top of it.
</summary>
<param name="g">Reference to Graphics object.</param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.INonClientControl.BorderStyle">
<summary>
Gets the reference to the BorderStyle used by the control if any.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.INonClientControl.Handle">
<summary>
Returns the Windows handle associated with the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.INonClientControl.Width">
<summary>
Returns width of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.INonClientControl.Height">
<summary>
Returns the height of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.INonClientControl.IsHandleCreated">
<summary>
Returns whether handled for the control has been created.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.INonClientControl.BackColor">
<summary>
Returns background color of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.INonClientControl.DisabledBackColor">
<summary>
Returns background color of the control when Enabled=false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.INonClientControl.Enabled">
<summary>
Returns whether control is enabled.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.GroupPanel.InvalidateNonClient">
<summary>
Invalidates non-client area of the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.GroupPanel.PaintInnerContent(System.Windows.Forms.PaintEventArgs,DevComponents.DotNetBar.ElementStyle,System.Boolean)">
<summary>
Paints insides of the control.
</summary>
<param name="e">Paint event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.GroupPanel.GetAutoSize(System.Int32)">
<summary>
Returns the size of the panel calculated based on the text assigned.
</summary>
<returns>Calculated size of the panel or Size.Empty if panel size cannot be calculated.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.GroupPanel.SetColorTable(DevComponents.DotNetBar.Controls.ePanelColorTable)">
<summary>
Applies color scheme to the panel.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.GroupPanel.SetDefaultPanelStyle">
<summary>
Applies default group panel style to the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.GroupPanel.GetRenderer">
<summary>
Returns the renderer control will be rendered with.
</summary>
<returns>The current renderer.</returns>
</member>
<member name="P:DevComponents.DotNetBar.Controls.GroupPanel.ColorTable">
<summary>
Gets or sets the panel color scheme.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.GroupPanel.TitleImage">
<summary>
Gets or sets the image that appears in title with text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.GroupPanel.TitleImagePosition">
<summary>
Gets or sets the position of the title image. Default value is left.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.GroupPanel.ScrollbarSkin">
<summary>
Gets or sets the scrollbar skining type when control is using Office 2007 style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.GroupPanel.ThemeAware">
<summary>
Specifies whether item is drawn using Themes when running on OS that supports themes like Windows XP.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.GroupPanel.DrawTitleBox">
<summary>
Gets or sets whether box around the title of the group is drawn. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.GroupPanel.TextDockConstrained">
<summary>
Gets or sets whether text rectangle painted on panel is considering docked controls inside the panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.GroupPanel.IsShadowEnabled">
<summary>
Gets or sets whether panel automatically provides shadows for child controls. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.GroupPanel.DisabledBackColor">
<summary>
Specifies back color when Enabled=false
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.ePanelColorTable">
<summary>
Defines predefined color schemes for panel control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ScrollBarReplacement.GetColorScheme">
<summary>
Returns the color scheme used by control. Color scheme for Office2007 style will be retrived from the current renderer instead of
local color scheme referenced by ColorScheme property.
</summary>
<returns>An instance of ColorScheme object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ScrollBarReplacement.GetRenderer">
<summary>
Returns the renderer control will be rendered with.
</summary>
<returns>The current renderer.</returns>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ScrollBarReplacement.RenderMode">
<summary>
Gets or sets the redering mode used by control. Default value is eRenderMode.Global which means that static GlobalManager.Renderer is used. If set to Custom then Renderer property must
also be set to the custom renderer that will be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ScrollBarReplacement.Renderer">
<summary>
Gets or sets the custom renderer used by the items on this control. RenderMode property must also be set to eRenderMode.Custom in order renderer
specified here to be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DGHScrollBar.EnableStyling">
<summary>
Gets or sets whether custom styling (Office 2007 style) is enabled. Default value is true.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.LabelX.RecalcSize">
<summary>
Recalculates the size of the internal item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.LabelX.ShouldSerializeSingleLineColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.LabelX.ResetSingleLineColor">
<summary>
Resets the SingleLineColor property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.LabelX.OnMarkupLinkClick(DevComponents.DotNetBar.MarkupLinkClickEventArgs)">
<summary>
Invokes the MarkupLinkClick event.
</summary>
<param name="e">Provides additional data about event.</param>
</member>
<member name="M:DevComponents.DotNetBar.LabelX.ShouldSerializeSymbolColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.LabelX.ResetSymbolColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.LabelX.OnCommandChanged">
<summary>
Called when Command property value changes.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.LabelX.MarkupLinkClick">
<summary>
Occurs when text markup link is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.ImageTextSpacing">
<summary>
Specifies spacing between label image and text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.EnableMarkup">
<summary>
Gets or sets whether text-markup support is enabled for controls Text property. Default value is true.
Set this property to false to display HTML or other markup in the control instead of it being parsed as text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.FocusCuesEnabled">
<summary>
Gets or sets whether control displays focus cues when focused.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.BorderSide">
<summary>
Gets or sets the border sides that are displayed. Default value specifies border on all 4 sides.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.BorderType">
<summary>
Gets or sets the type of the border drawn around the label.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.Image">
<summary>
Specifies label image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.ImagePosition">
<summary>
Gets/Sets the image position inside the label.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.SingleLineColor">
<summary>
Gets or sets the border line color when border is single line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.Text">
<summary>
Gets or sets the text associated with this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.TextAlignment">
<summary>
Gets or sets the horizontal text alignment.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.TextLineAlignment">
<summary>
Gets or sets the text vertical alignment.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.WordWrap">
<summary>
Gets or sets a value that determines whether text is displayed in multiple lines or one long line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.PaddingLeft">
<summary>
Gets or sets the left padding in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.PaddingRight">
<summary>
Gets or sets the right padding in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.PaddingTop">
<summary>
Gets or sets the top padding in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.PaddingBottom">
<summary>
Gets or sets the bottom padding in pixels.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.LabelX.UseMnemonic" -->
<member name="P:DevComponents.DotNetBar.LabelX.AutoSize">
<summary>
Gets or sets a value indicating whether the control is automatically resized to display its entire contents. You can set MaximumSize.Width property to set the maximum width used by the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.TextOrientation">
<summary>
Gets or sets text-orientation. Default is horizontal.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.VerticalTextTopUp">
<summary>
Gets or sets how vertical text is rotated when TextOrientation = Vertical.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.LabelItem">
<summary>
Gets the underlying LabelItem
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.Symbol">
<summary>
Indicates the symbol displayed on label instead of the image. Setting the symbol overrides the image setting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.SymbolSet">
<summary>
Gets or sets the symbol set used to represent the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.SymbolSize">
<summary>
Indicates the size of the symbol in points.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.SymbolColor">
<summary>
Gets or sets the color of the symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.FontBold">
<summary>
Indicates whether label text is rendered using bold font unless the Font property is specifically set to different font.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.Command">
<summary>
Gets or sets the command assigned to the item. Default value is null.
<remarks>Note that if this property is set to null Enabled property will be set to false automatically to disable the item.</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelX.CommandParameter">
<summary>
Gets or sets user defined data value that can be passed to the command when it is executed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.Line">
<summary>
A single horizontal or vertical line control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Line.#ctor">
<summary>
Initializes a new instance of the Line class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Line.OnStartLineCapChanged(DevComponents.DotNetBar.Controls.eLineEndType,DevComponents.DotNetBar.Controls.eLineEndType)">
<summary>
Called when StartLineCap property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Line.OnStartLineCapSizeChanged(System.Drawing.Size,System.Drawing.Size)">
<summary>
Called when StartLineCapSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Line.ShouldSerializeStartLineCapSize">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Line.ResetStartLineCapSize">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Line.OnEndLineCapChanged(DevComponents.DotNetBar.Controls.eLineEndType,DevComponents.DotNetBar.Controls.eLineEndType)">
<summary>
Called when EndLineCap property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Line.ShouldSerializeEndLineCapSize">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Line.ResetEndLineCapSize">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Line.LineAlignment">
<summary>
Specifies the line alignment within control bounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Line.DashOffset">
<summary>
Specifies distance from the start of a line to the beginning of a dash pattern.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Line.DashStyle">
<summary>
Specifies the line dash style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Line.Thickness">
<summary>
Gets or sets the line thickness in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Line.VerticalLine">
<summary>
Gets or sets whether vertical line is drawn. Default value is false which means horizontal line is drawn.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Line.AutoSize">
<summary>
Gets or sets a value indicating whether the control is automatically resized to display its entire contents. You can set MaximumSize.Width property to set the maximum width used by the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Line.StartLineCap">
<summary>
Indicates the start of the line cap.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Line.StartLineCapSize">
<summary>
Indicates the size of the start cap.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Line.EndLineCap">
<summary>
Indicates the start of the line cap.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Line.EndLineCapSize">
<summary>
Indicates end line cap size.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eLineEndType">
<summary>
Defined line end types.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.CheckStateConvertEventArgs">
<summary>
Provides data for CheckStateConvert event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CheckStateConvertEventArgs.#ctor(System.Object)">
<summary>
Initializes a new instance of the CheckStateConvertEventArgs class.
</summary>
<param name="value"></param>
</member>
<member name="T:DevComponents.DotNetBar.ItemPanelBase">
<summary>
Represents generic base control for items container control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ItemControl">
<summary>
Represents base control for bars.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.IRibbonCustomize">
<summary>
Provides interface for controls that support ribbon customization.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.IRibbonCustomize.ItemRightClick(DevComponents.DotNetBar.BaseItem)">
<summary>
Called when item contained by the container is right-clicked.
</summary>
<param name="item">Instance of the item that was right-clicked.</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.CreateAccessibilityInstance">
<summary>
Creates new accessibility instance.
</summary>
<returns>Reference to AccessibleObject.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.InternalAccessibilityNotifyClients(System.Windows.Forms.AccessibleEvents,System.Int32)">
<summary>
Notifies the accessibility client applications of the specified AccessibleEvents for the specified child control.
</summary>
<param name="accEvent">The AccessibleEvents object to notify the accessibility client applications of. </param>
<param name="childID">The child Control to notify of the accessible event.</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.GetItems(System.String)">
<summary>
Returns the collection of items with the specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.GetItems(System.String,System.Type)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.GetItems(System.String,System.Type,System.Boolean)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<param name="useGlobalName">Indicates whether GlobalName property is used for searching.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.GetItem(System.String)">
<summary>
Returns the first item that matches specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.DevComponents#DotNetBar#IOwner#Customize">
<summary>
Invokes the DotNetBar Customize dialog.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.OnBeforeItemDrag(DevComponents.DotNetBar.BaseItem,System.ComponentModel.CancelEventArgs)">
<summary>
Raises BeforeItemDrag event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<!-- Badly formed XML comment ignored for member "M:DevComponents.DotNetBar.ItemControl.StartItemDrag(DevComponents.DotNetBar.BaseItem)" -->
<member name="M:DevComponents.DotNetBar.ItemControl.OnDragInProgressChanged">
<summary>
Called when DragInProgress property value has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.ReleaseFocus">
<summary>
Releases the focus from the bar and selects the control that had focus before bar was selected. If control that had focus could not be determined focus will stay on the bar.
This method is used by internal DotNetBar implementation and you should not use it.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.OnItemDoubleClick(DevComponents.DotNetBar.BaseItem,System.Windows.Forms.MouseEventArgs)">
<summary>
Invokes ItemDoubleClick event.
</summary>
<param name="objItem">Reference to item double-clicked</param>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.OnItemClick(DevComponents.DotNetBar.BaseItem)">
<summary>
Invokes the ItemClick event.
</summary>
<param name="item">Reference to the item that was clicked.</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.HitTest(System.Drawing.Point)">
<summary>
Returns the item at specified coordinates or null if no item can be found.
</summary>
<param name="x">X - coordinate to test.</param>
<param name="y">Y - coordinate to test.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.HitTest(System.Int32,System.Int32)">
<summary>
Returns the item at specified coordinates or null if no item can be found.
</summary>
<param name="x">X - coordinate to test.</param>
<param name="y">Y - coordinate to test.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.AutoSyncSize">
<summary>
Sets the height of the control to the automatically calcualted height based on content.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.GetAutoSizeHeight">
<summary>
Returns automatically calculated height of the control given current content.
</summary>
<returns>Height in pixels.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.GetAutoSizeWidth">
<summary>
Returns automatically calculated width of the control given current content.
</summary>
<returns>Width in pixels.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.ResetBackgroundStyle">
<summary>
Resets style to default value. Used by windows forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.SetDesignTimeDefaults">
<summary>
Applies design-time defaults to control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.CreateGraphics">
<summary>
Creates the Graphics object for the control.
</summary>
<returns>The Graphics object for the control.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.GetColorScheme">
<summary>
Returns the color scheme used by control. Color scheme for Office2007 style will be retrived from the current renderer instead of
local color scheme referenced by ColorScheme property.
</summary>
<returns>An instance of ColorScheme object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.GetRenderer">
<summary>
Returns the renderer control will be rendered with.
</summary>
<returns>The current renderer.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.BeginUpdate">
<summary>
Indicates to control that all further update operations should not result in layout and refresh of control content.
Use this method to optimize the addition of new items to the control. This method supports nested calls meaning
that multiple calls are allowed but they must be ended with appropriate number of EndUpdate calls.
IsUpdateSuspended property returns whether update is suspended.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.EndUpdate">
<summary>
Indicates that update operation is complete and that control should perform layout and refresh to show changes. See BeginUpdate
for more details.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.EndUpdate(System.Boolean)">
<summary>
Indicates that update operation is complete and that control should perform layout and refresh to show changes. See BeginUpdate
for more details.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.OnItemLayoutUpdated(System.EventArgs)">
<summary>
Raises ItemLayoutUpdated event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.InvalidateLayout">
<summary>
Invalidates the control layout and forces the control to recalculates the layout for the items it contains on next layout operation invoked using RecalcLayout method.
</summary>
<remarks>
Call to this method is usually followed by the call to
<see cref="M:DevComponents.DotNetBar.ItemControl.RecalcLayout">RecalcLayout</see> method to perform the control layout.
</remarks>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.RecalcLayout">
<summary>
Applies any layout changes and repaint the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.SetupActiveWindowTimer">
<summary>
Sets up timer that watches when active window changes.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.OnActiveWindowChanged">
<summary>
Called after change of active window has been detected. SetupActiveWindowTimer must be called to enable detection.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.ReleaseActiveWindowTimer">
<summary>
Releases and disposes the active window watcher timer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.DevComponents#DotNetBar#IRibbonCustomize#ItemRightClick(DevComponents.DotNetBar.BaseItem)">
<summary>
Called when item on popup container is right-clicked.
</summary>
<param name="item">Instance of the item that is right-clicked.</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemControl.OnPopupItemRightClick(DevComponents.DotNetBar.BaseItem)">
<summary>
Called when item on popup container is right-clicked.
</summary>
<param name="item">Instance of the item that is right-clicked.</param>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.ButtonCheckedChanged">
<summary>
Occurs when Checked property of an button has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.ItemClick">
<summary>
Occurs when Item is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.ItemDoubleClick">
<summary>
Occurs when Item is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.PopupContainerLoad">
<summary>
Occurs when popup of type container is loading.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.PopupContainerUnload">
<summary>
Occurs when popup of type container is unloading.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.PopupOpen">
<summary>
Occurs when popup item is about to open.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.PopupClose">
<summary>
Occurs when popup item is closing.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.PopupShowing">
<summary>
Occurs just before popup window is shown.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.ExpandedChange">
<summary>
Occurs when Item Expanded property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.MouseDown">
<summary>
Occurs when mouse button is pressed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.MouseUp">
<summary>
Occurs when mouse button is released.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.MouseEnter">
<summary>
Occurs when mouse enters the item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.MouseLeave">
<summary>
Occurs when mouse leaves the item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.MouseMove">
<summary>
Occurs when mouse moves over the item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.MouseHover">
<summary>
Occurs when mouse remains still inside an item for an amount of time.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.LostFocus">
<summary>
Occurs when item loses input focus.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.GotFocus">
<summary>
Occurs when item receives input focus.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.UserCustomize">
<summary>
Occurs when user changes the item position, removes the item, adds new item or creates new bar.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.ItemRemoved">
<summary>
Occurs after an Item is removed from SubItemsCollection.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.ItemAdded">
<summary>
Occurs after an Item has been added to the SubItemsCollection.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.ContainerLoadControl">
<summary>
Occurs when ControlContainerControl is created and contained control is needed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.ItemTextChanged">
<summary>
Occurs when Text property of an Item has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.ContainerControlSerialize">
<summary>
Use this event if you want to serialize the hosted control state directly into the DotNetBar definition file.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.ContainerControlDeserialize">
<summary>
Use this event if you want to deserialize the hosted control state directly from the DotNetBar definition file.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.DefinitionLoaded">
<summary>
Occurs after DotNetBar definition is loaded.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.LocalizeString">
<summary>
Occurs when DotNetBar is looking for translated text for one of the internal text that are
displayed on menus, toolbars and customize forms. You need to set Handled=true if you want
your custom text to be used instead of the built-in system value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.OptionGroupChanging">
<summary>
Occurs before an item in option group is checked and provides opportunity to cancel that.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.ToolTipShowing">
<summary>
Occurs before tooltip for an item is shown. Sender could be the BaseItem or derived class for which tooltip is being displayed or it could be a ToolTip object itself it tooltip is not displayed for any item in particular.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.DevComponents#DotNetBar#IOwner#ParentForm">
<summary>
Gets or sets the form SideBar is attached to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.AlwaysDisplayKeyAccelerators">
<summary>
Gets or sets whether accelerator letters on buttons are underlined. Default value is false which indicates that system setting is used
to determine whether accelerator letters are underlined. Setting this property to true
will always display accelerator letter underlined.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.DevComponents#DotNetBar#IOwner#ShowResetButton">
<summary>
Indicates whether Reset buttons is shown that allows end-user to reset the toolbar state.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.BeforeItemDrag">
<summary>
Occurs before an item drag &amp; drop operation is started and allows cancellation.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.ItemControl.DragInProgress" -->
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.ItemControl.ExternalDragInProgress" -->
<member name="P:DevComponents.DotNetBar.ItemControl.DragItem">
<summary>
Gets item that is being dragged.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.Images">
<summary>
ImageList for images used on Items. Images specified here will always be used on menu-items and are by default used on all Bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.ImagesMedium">
<summary>
ImageList for medium-sized images used on Items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.ImagesLarge">
<summary>
ImageList for large-sized images used on Items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.ShowToolTips">
<summary>
Indicates whether Tooltips are shown on Bars and menus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.ShowShortcutKeysInToolTips">
<summary>
Indicates whether item shortcut is displayed in Tooltips.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.UseHook">
<summary>
Gets or sets whether hooks are used for internal DotNetBar system functionality. Using hooks is recommended only if DotNetBar is used in hybrid environments like Visual Studio designers or IE.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.HasMenuFocus">
<summary>
Gets whether control is in menu mode.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.LastFocusControl">
<summary>
Returns the reference to the control that last had input focus. This property should be used to
determine which control had input focus before bar gained the focus. Use it to apply
the menu command to active control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.HasRegisteredPopups">
<summary>
Returns whether control has any popups registered.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.EnableGestureNotifyHandler">
<summary>
Gets or sets whether internal WM_GESTURENOTIFY handler is enabled. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.DragDropAllowedContainerTypes">
<summary>
Gets the collection of allowed containers for the drag &amp; drop operations. Empty collection indicates that all targets are allowed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.ContainerControlProcessDialogKey">
<summary>
Gets or sets whether ProcessDialogKey method calls base ContainerControl implementation.
By default base implementation is called but under certain conditions you might want to set
this property to true to receive KeyDown events for Arrow keys.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.ShortcutsEnabled">
<summary>
Gets or sets whether shortuct processing for the items hosted by this control is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.DevComponents#DotNetBar#IAccessibilitySupport#DoDefaultActionItem">
<summary>
Gets or sets the item default accessibility action will be performed on.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.AutoSize">
<summary>
Gets or sets whether control height is set automatically based on the content. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.BackgroundStyle">
<summary>
Specifies the background style of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.DispatchShortcuts">
<summary>
Indicates whether shortucts handled by items are dispatched to the next handler or control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.ColorScheme">
<summary>
Gets or sets Bar Color Scheme.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.DisabledImagesGrayScale">
<summary>
Gets or sets whether gray-scale algorithm is used to create automatic gray-scale images. Default is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.ThemeAware">
<summary>
Specifies whether SideBar is drawn using Themes when running on OS that supports themes like Windows XP.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.ShowKeyTips">
<summary>
Gets or sets whether Key Tips (accelerator keys) for items are displayed on top of them.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.KeyTipsFont">
<summary>
Gets or sets the font that is used to display Key Tips (accelerator keys) when they are displayed. Default value is null which means
that control Font is used for Key Tips display.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.RenderMode">
<summary>
Gets or sets the redering mode used by control. Default value is eRenderMode.Global which means that static GlobalManager.Renderer is used. If set to Custom then Renderer property must
also be set to the custom renderer that will be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.Renderer">
<summary>
Gets or sets the custom renderer used by the items on this control. RenderMode property must also be set to eRenderMode.Custom in order renderer
specified here to be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.FadeEffect">
<summary>
Gets or sets whether mouse over fade effect is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.IsUpdateSuspended">
<summary>
Gets whether control layout is suspended becouse of the call to BeginUpdate method.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemControl.ItemLayoutUpdated">
<summary>
Occurs after internal item layout has been updated and items have valid bounds assigned.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.ImageSize">
<summary>
Gets/Sets the Image size for all sub-items on the Bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.AllowExternalDrop">
<summary>
Gets or sets whether external ButtonItem object is accepted in drag and drop operation. UseNativeDragDrop must be set to true in order for this property to be effective.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.UseNativeDragDrop">
<summary>
Gets or sets whether native .NET Drag and Drop is used by control to perform drag and drop operations. AllowDrop must be set to true to allow drop of the items on control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControl.DragDropSupport">
<summary>
Gets or sets whether control supports drag &amp; drop. Default value is false.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ItemControl.ItemRemovedEventHandler">
<summary>
Represents the method that will handle the ItemRemoved event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.IScrollableItemControl">
<summary>
Defines notification interface for scrollable item controls.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.IScrollableItemControl.KeyboardItemSelected(DevComponents.DotNetBar.BaseItem)">
<summary>
Indicates that item has been selected via keyboard.
</summary>
<param name="item">Reference to item being selected</param>
</member>
<member name="P:DevComponents.DotNetBar.IBindingSupport.AllowSelection">
<summary>
Gets or sets whether selection is allowed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IBindingSupport.SelectedIndex">
<summary>
Gets or sets the selected item index.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IBindingSupport.BindingContext">
<summary>
Gets or sets the BindingContext.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemPanelBase.InvalidateNonClient">
<summary>
Invalidates non-client area of the control. This method should be used
when you need to invalidate non-client area of the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemPanelBase.EnsureVisible(DevComponents.DotNetBar.BaseItem)">
<summary>
Scrolls the control so that item is displayed within the visible bounds of the control. AutoScroll must be set to true for this method to work.
</summary>
<param name="item">Item to ensure visibility for. Item must belong to this control.</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemPanelBase.DevComponents#DotNetBar#IScrollableItemControl#KeyboardItemSelected(DevComponents.DotNetBar.BaseItem)">
<summary>
Indicates that item has been selected via keyboard.
</summary>
<param name="item">Reference to item being selected</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemPanelBase.OnKeyboardItemSelected(DevComponents.DotNetBar.BaseItem)">
<summary>
Called when an item should be selected as result of the keyboard action.
</summary>
<param name="item">Item that is being selected.</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemPanelBase.OnDataSourceChanged(System.EventArgs)">
<summary>
Raises the DataSourceChanged event.
</summary>
<param name="e">An EventArgs that contains the event data. </param>
</member>
<member name="M:DevComponents.DotNetBar.ItemPanelBase.RefreshItems">
<summary>
When overridden in a derived class, resynchronizes the item data with the contents of the data source.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemPanelBase.OnDataNodeCreated(DevComponents.DotNetBar.DataItemVisualEventArgs)">
<summary>
Raises the DataNodeCreated event.
</summary>
<param name="dataNodeEventArgs">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemPanelBase.OnSelectedIndexChanged(System.EventArgs)">
<summary>
Raises the SelectedIndexChanged event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemPanelBase.OnTouchEnabledChanged(System.Boolean,System.Boolean)">
<summary>
Called when TouchEnabled property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanelBase.KeyboardNavigationEnabled">
<summary>
Indicates whether container responds to keyboard presses and changes the active/mouse over item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanelBase.ScrollBarAppearance">
<summary>
Gets or sets the scroll-bar visual style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanelBase.Style">
<summary>
Gets/Sets the visual style for items and color scheme.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanelBase.ItemSpacing">
<summary>
Gets or sets spacing in pixels between items. Default value is 1.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanelBase.MouseClientScrollEnabled">
<summary>
Indicates whether control can be scrolled when client area is dragged using mouse. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanelBase.VScrollBar">
<summary>
Gets the reference to internal vertical scroll-bar control if one is created or null if no scrollbar is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanelBase.HScrollBar">
<summary>
Gets the reference to internal horizontal scroll-bar control if one is created or null if no scrollbar is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanelBase.AutoScroll">
<summary>
Gets or sets a value indicating whether the control enables the user to scroll to items placed outside of its visible boundaries.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanelBase.AutoScrollMinSize">
<summary>
Gets or sets the minimum size of the auto-scroll. Returns a Size that represents the minimum height and width of the scrolling area in pixels.
This property is managed internally by control and should not be modified.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanelBase.AutoScrollPosition">
<summary>
Gets or sets the location of the auto-scroll position.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanelBase.SuspendPaint">
<summary>
Gets or sets whether all painting in control is suspended.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanelBase.SelectedIndex">
<summary>
Gets or sets the index specifying the currently selected item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanelBase.DevComponents#DotNetBar#IBindingSupport#ItemsCollection">
<summary>
Returns collection of items on a bar for binding support.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanelBase.ItemTemplate">
<summary>
Gets or sets the item template that is repeated for each data-row when using data binding.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanelBase.ItemTemplateBindings">
<summary>
Gets the collection of the binding applied to ItemTemplate visual when using data-binding.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanelBase.AllowExternalDrop">
<summary>
Gets or sets whether external ButtonItem object is accepted in drag and drop operation. UseNativeDragDrop must be set to true in order for this property to be effective.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanelBase.UseNativeDragDrop">
<summary>
Gets or sets whether native .NET Drag and Drop is used by control to perform drag and drop operations. AllowDrop must be set to true to allow drop of the items on control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanelBase.EnableDragDrop">
<summary>
Gets or sets whether automatic drag &amp; drop support is enabled. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanelBase.DataSource">
<summary>
Gets or sets the data source for the ComboTree. Expected is an object that implements the IList or IListSource interfaces,
such as a DataSet or an Array. The default is null.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemPanelBase.DataSourceChanged">
<summary>
Occurs when the DataSource changes.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemPanelBase.DataItemVisualCreated">
<summary>
Occurs when a item for an data-bound object item has been created and provides you with opportunity to modify the created item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ItemPanelBase.SelectedIndexChanged">
<summary>
Occurs when value of SelectedIndex property has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanelBase.TouchEnabled">
<summary>
Indicates whether touch support for scrolling is enabled.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxAdv.#ctor">
<summary>
Initializes a new instance of the ListBoxAdv class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxAdv.OnCheckBoxesVisibleChanged(System.Boolean,System.Boolean)">
<summary>
Called when CheckBoxesVisible property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxAdv.OnItemHeightChanged(System.Int32,System.Int32)">
<summary>
Called when ItemHeight property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxAdv.OnSelectionModeChanged(DevComponents.DotNetBar.eSelectionMode,DevComponents.DotNetBar.eSelectionMode)">
<summary>
Called when SelectionMode property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxAdv.SetSelected(System.Int32,System.Boolean)">
<summary>
Selects or clears the selection for the specified item in a ListBoxAdv. Use this property to set the selection of items in a multiple-selection ListBoxAdv. To select an item in a single-selection ListBox, use the SelectedIndex property.
</summary>
<param name="index">The zero-based index of the item in a ListBox to select or clear the selection for. You can pass -1 to clear the selection.</param>
<param name="value">true to select the specified item; otherwise, false.</param>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxAdv.SetSelected(System.Int32,System.Boolean,DevComponents.DotNetBar.eEventSource)">
<summary>
Selects or clears the selection for the specified item in a ListBoxAdv. Use this property to set the selection of items in a multiple-selection ListBoxAdv. To select an item in a single-selection ListBox, use the SelectedIndex property.
</summary>
<param name="index">The zero-based index of the item in a ListBox to select or clear the selection for. You can pass -1 to clear the selection.</param>
<param name="value">true to select the specified item; otherwise, false.</param>
<param name="source">Indicates the source of the change.</param>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxAdv.SelectNextItem">
<summary>
Selects next visible list box item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxAdv.SelectPreviousItem">
<summary>
Selects previous visible list box item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxAdv.FindListBoxItem(System.Object)">
<summary>
Gets ListBoxItem which represents an object value from Items collection when Items collection contains non ListBoxItem objects.
</summary>
<param name="value">Value to get ListBoxItem for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxAdv.OnDisplayMemberChanged(System.String,System.String)">
<summary>
Called when DisplayMember property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxAdv.OnCheckStateMemberChanged(System.String,System.String)">
<summary>
Called when CheckStateMember property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxAdv.OnCheckStateConvert(DevComponents.DotNetBar.CheckStateConvertEventArgs)">
<summary>
Raises CheckStateConvert event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxAdv.OnValueMemberChanged(System.String,System.String)">
<summary>
Called when ValueMember property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxAdv.ClearDescriptorsCache">
<summary>
Clears internal property descriptors cache when data-binding is used. In most cases it is not needed that you call this method. Do so only if instructed by DevComponents support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxAdv.FindString(System.String)">
<summary>
Finds the first item in the ListBox that starts with the specified string. The search starts at a specific starting index.
</summary>
<param name="s">The text to search for.</param>
<returns>The zero-based index of the first item found; returns ListBox.NoMatches if no match is found.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxAdv.FindString(System.String,System.Int32)">
<summary>
Finds the first item in the ListBox that starts with the specified string. The search starts at a specific starting index.
</summary>
<param name="s">The text to search for.</param>
<param name="startIndex">The zero-based index of the item before the first item to be searched. Set to negative one (-1) to search from the beginning of the control. </param>
<returns>The zero-based index of the first item found; returns ListBox.NoMatches if no match is found.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxAdv.FindStringExact(System.String)">
<summary>
Finds the first item in the ListBox that exactly matches the specified string. The search starts at a specific starting index.
</summary>
<param name="s">The text to search for.</param>
<returns>The zero-based index of the first item found; returns ListBox.NoMatches if no match is found.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxAdv.FindStringExact(System.String,System.Int32)">
<summary>
Finds the first item in the ListBox that exactly matches the specified string. The search starts at a specific starting index.
</summary>
<param name="s">The text to search for.</param>
<param name="startIndex">The zero-based index of the item before the first item to be searched. Set to negative one (-1) to search from the beginning of the control. </param>
<returns>The zero-based index of the first item found; returns ListBox.NoMatches if no match is found.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxAdv.OnItemCheck(DevComponents.DotNetBar.ListBoxAdvItemCheckEventArgs)">
<summary>
Raises ItemCheck event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxAdv.SetItemCheckState(System.Int32,System.Windows.Forms.CheckState)">
<summary>
Sets the check state of the item at the specified index.
</summary>
<param name="index">The index of the item to set the state for. </param>
<param name="value">One of the CheckState values. </param>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxAdv.Items">
<summary>
Gets the list of items displayed in list box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxAdv.Views">
<summary>
Gets the collection of view items which are created to represent each data item in Items collection.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxAdv.CheckBoxesVisible">
<summary>
Indicates whether check-boxes are visible inside list box items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxAdv.ItemHeight">
<summary>
Indicates fixed item height. Maybe set to 0 to indicate that each item should be sized based on its content.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxAdv.SelectionMode">
<summary>
Specifies the selection mode used by the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxAdv.SelectedIndex">
<summary>
Gets or sets the zero-based index of the currently selected item in a ListBoxAdv. Negative one (-1) is returned if no item is selected.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxAdv.SelectedIndices">
<summary>
Gets a collection that contains the zero-based indexes of all currently selected items in the ListBoxAdv. Do not modify items in this collection. To select or deselect list items while in multi-selection mode use SetSelected method.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxAdv.SelectedItems">
<summary>
Gets a collection containing the currently selected items in the ListBoxAdv. Do not modify items in this collection. To select or deselect list items while in multi-selection mode use SetSelected method.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxAdv.SelectedItem">
<summary>
Gets or sets the selected item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxAdv.DisplayMember">
<summary>
Indicates property name which will provide the value to display for this list box when data-binding is used and DataSource is set.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxAdv.CheckStateMember">
<summary>
Indicates property name which will provide the value for CheckState of the list box item when data-binding is used and DataSource is set.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ListBoxAdv.CheckStateConvert">
<summary>
Occurs when using data-binding with CheckStateMember specified and it allows you to convert a property value to CheckState.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxAdv.SelectedValues">
<summary>
Returns the enumerator with selected values if any
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxAdv.SelectedValue">
<summary>
Gets or sets the value of the member property specified by the ValueMember property. If ValueMember specifies property that cannot be found on selected object this property returns null.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxAdv.ValueMember">
<summary>
Indicates property name which will return the value for the selected item when SelectedValue property is accessed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ListBoxAdv.ItemCheck">
<summary>
Occurs when CheckState of an ListBoxItem changes and it allows you to cancel the change.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxAdv.CheckedItems">
<summary>
Gets collection of checked items in the list. Modifying this collection does not have any effect on actual checked items. Use SetItemCheckState to set checked state of an item or access ListBoxItem directly and set its CheckState property.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.ListBoxAdv.UseMnemonic" -->
<member name="T:DevComponents.DotNetBar.eSelectionMode">
<summary>
Defines selection modes for list control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSelectionMode.None">
<summary>
Items cannot be selected.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSelectionMode.One">
<summary>
Only one item at the time can be selected.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSelectionMode.MultiSimple">
<summary>
Multiple items can be selected. A mouse click or pressing the SPACEBAR selects or deselects an item in the list.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSelectionMode.MultiExtended">
<summary>
Multiple items can be selected. Pressing SHIFT and clicking the mouse or pressing SHIFT and one of the arrow keys (UP ARROW, DOWN ARROW, LEFT ARROW, and RIGHT ARROW) extends the selection from the previously selected item to the current item. Pressing CTRL and clicking the mouse selects or deselects an item in the list.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ListBoxAdvItemCheckEventArgs.Cancel">
<summary>
Indicates that CheckState change of the item should be canceled.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ListBoxAdvItemCheckEventArgs.Item">
<summary>
Specifies the ListBoxItem that was changing.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ListBoxAdvItemCheckEventArgs.Value">
<summary>
When data-bound provides the object which was used to generate an ListBoxItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxAdvItemCheckEventArgs.#ctor(DevComponents.DotNetBar.ListBoxItem,System.Object)">
<summary>
Initializes a new instance of the ListBoxAdvItemCheckEventArgs class.
</summary>
<param name="item"></param>
<param name="value"></param>
</member>
<member name="T:DevComponents.DotNetBar.ListBoxItem">
<summary>
Represents the ListBoxAdv item for internal use. Not for public usage.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxItem.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxItem.InternalCopyToItem(DevComponents.DotNetBar.ListBoxItem)">
<summary>
Copies the ListBoxItem specific properties to new instance of the item.
</summary>
<param name="copy">New ListBoxItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxItem.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the ListBoxItem specific properties to new instance of the item.
</summary>
<param name="copy">New item instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxItem.OnCheckStateChanged(System.Windows.Forms.CheckState,System.Windows.Forms.CheckState)">
<summary>
Called when CheckState property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxItem.OnIsSelectedChanged(System.Boolean,System.Boolean)">
<summary>
Called when IsSelected property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxItem.SetIsSelected(System.Boolean,DevComponents.DotNetBar.eEventSource)">
<summary>
Sets selected state of the item including the source of the action that caused the change.
</summary>
<param name="isSelected"></param>
<param name="source"></param>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxItem.OnHotTrackingChanged(System.Boolean,System.Boolean)">
<summary>
Called when HotTracking property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxItem.OnImageChanged(System.Drawing.Image,System.Drawing.Image)">
<summary>
Called when Image property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxItem.ShouldSerializeSymbolColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxItem.ResetSymbolColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxItem.OnSymbolChanged(System.String,System.String)">
<summary>
Called when Symbol property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxItem.OnSymbolSetChanged(DevComponents.DotNetBar.eSymbolSet,DevComponents.DotNetBar.eSymbolSet)">
<summary>
Called when SymbolSet property value changes.
</summary>
<param name="oldValue">Indciates old value</param>
<param name="newValue">Indicates new value</param>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxItem.OnSymbolSizeChanged(System.Single,System.Single)">
<summary>
Called when SymbolSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxItem.ShouldSerializeTextColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxItem.ResetTextColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxItem.IsMouseOver">
<summary>
Gets whether mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxItem.CheckBoxMouseState">
<summary>
Gets the mouse state of the check box part of item if visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxItem.CheckState">
<summary>
Indicates check-box state if visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxItem.IsSelected">
<summary>
Gets or sets whether item is selected.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxItem.HotTracking">
<summary>
Indicates whether item changes its background colors when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxItem.Image">
<summary>
Specifies image displayed on the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxItem.SymbolColor">
<summary>
Gets or sets the color of the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxItem.SymbolRealized">
<summary>
Gets the realized symbol string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxItem.Symbol">
<summary>
Indicates the symbol displayed on face of the button instead of the image. Setting the symbol overrides the image setting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxItem.SymbolSet">
<summary>
Gets or sets the symbol set used to represent the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxItem.SymbolSize">
<summary>
Indicates the size of the symbol in points.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxItem.BackColors">
<summary>
Indicates the array of colors that when set are used to draw the background of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxItem.TextColor">
<summary>
Gets or sets the color of the text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxItem.Text">
<summary>
Gets or sets the text associated with this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxItem.TextAlignment">
<summary>
Gets or sets the text alignment. Default value is left.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxItem.IsMarkupSupported">
<summary>
Gets whether item supports text markup. Default is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ListBoxItem.EnableMarkup">
<summary>
Gets or sets whether text-markup support is enabled for items Text property. Default value is true.
Set this property to false to display HTML or other markup in the item instead of it being parsed as text-markup.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.ListBoxItemPainter.Paint(DevComponents.DotNetBar.ListBoxItemRendererEventArgs)">
<summary>
Paints ListBoxItem.
</summary>
<param name="e">Provides arguments for the operation.</param>
</member>
<member name="T:DevComponents.DotNetBar.ListBoxItemRendererEventArgs">
<summary>
Provides data for the Slider item rendering events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ListBoxItemRendererEventArgs.Item">
<summary>
Gets or sets the reference to the item being rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ListBoxItemRendererEventArgs.Graphics">
<summary>
Gets or sets the reference to graphics object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ListBoxItemRendererEventArgs.#ctor(DevComponents.DotNetBar.ListBoxItem,System.Drawing.Graphics)">
<summary>
Creates new instance of the object and initializes it with default values.
</summary>
<param name="item">Reference to the ListBoxItem being rendered.</param>
<param name="g">Reference to the graphics object.</param>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.OfficeListBoxItemColorTable">
<summary>
Defines color table for ListBoxItem.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.OfficeListBoxItemColorTable.Default">
<summary>
Specifies default state color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.OfficeListBoxItemColorTable.MouseOver">
<summary>
Specifies mouse over state color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.OfficeListBoxItemColorTable.Selected">
<summary>
Specifies selected state color table.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.OfficeListBoxItemStateColorTable">
<summary>
Defines single state color table for ListBoxItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.OfficeListBoxItemStateColorTable.#ctor">
<summary>
Initializes a new instance of the OfficeListBoxItemStateColorTable class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.OfficeListBoxItemStateColorTable.#ctor(System.Drawing.Color,System.Drawing.Color[],System.Int32,System.Single[])">
<summary>
Initializes a new instance of the OfficeListBoxItemStateColorTable class.
</summary>
<param name="textColor"></param>
<param name="backColors"></param>
<param name="backColorsGradientAngle"></param>
<param name="backColorsPositions"></param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.OfficeListBoxItemStateColorTable.#ctor(System.Drawing.Color)">
<summary>
Initializes a new instance of the OfficeListBoxItemStateColorTable class.
</summary>
<param name="textColor"></param>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.OfficeListBoxItemStateColorTable.TextColor">
<summary>
Indicates item text color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.OfficeListBoxItemStateColorTable.BackColors">
<summary>
Gets or sets the background colors for the item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.OfficeListBoxItemStateColorTable.BackColorsGradientAngle">
<summary>
Gets or sets the back colors gradient angle if there is more than one color in BackColors array.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.OfficeListBoxItemStateColorTable.BackColorsPositions">
<summary>
Gets or sets the gradient colors positions if there is more than one color in BackColors array.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.OfficeListBoxItemPainter.Paint(DevComponents.DotNetBar.ListBoxItemRendererEventArgs)">
<summary>
Paints StepItem.
</summary>
<param name="e">Provides arguments for the operation.</param>
</member>
<member name="T:DevComponents.DotNetBar.Controls.ListViewEx">
<summary>
Represents the extended ListView control with the Office 2007 Style.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ListViewEx.OnColumnHeaderFontChanged(System.Drawing.Font,System.Drawing.Font)">
<summary>
Called when ColumnHeaderFont property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ListViewEx.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ListViewEx.ResetHeaderHandler">
<summary>
Resets internal Column Header handler. This method should be called after you change the View property
at run-time. If your control is always in single view there is no need to call this method. This method
will work only when controls handle has already been created.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ListViewEx.ResetCachedColorTableReference">
<summary>
Resets the internal color table reference. This method is usually called automatically by
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ListViewEx.ShouldSerializeDisabledForeColor">
<summary>
Gets whether property should be serialized by VS.NET designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ListViewEx.ResetDisabledForeColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ListViewEx.GetRenderer">
<summary>
Returns the renderer control will be rendered with.
</summary>
<returns>The current renderer.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ListViewEx.GetColorScheme">
<summary>
Returns the color scheme used by control. Color scheme for Office2007 style will be retrived from the current renderer instead of
local color scheme referenced by ColorScheme property.
</summary>
<returns>An instance of ColorScheme object.</returns>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ListViewEx.ColumnHeaderFont">
<summary>
Gets or sets the column header font. Default value is null which means controls Font property is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ListViewEx.DisabledForeColor">
<summary>
Gets or sets the item foreground color when control or item is disabled. By default SystemColors.Dark is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ListViewEx.FocusCuesEnabled">
<summary>
Gets or sets whether control displays focus cues when focused.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ListViewEx.RenderMode">
<summary>
Gets or sets the redering mode used by control. Default value is eRenderMode.Global which means that static GlobalManager.Renderer is used. If set to Custom then Renderer property must
also be set to the custom renderer that will be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ListViewEx.Renderer">
<summary>
Gets or sets the custom renderer used by the items on this control. RenderMode property must also be set to eRenderMode.Custom in order renderer
specified here to be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ListViewEx.Border">
<summary>
Specifies the control border style. Default value has Class property set so the system style for the control is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ListViewEx.DisabledBackColor">
<summary>
Specifies back color when Enabled=false
</summary>
</member>
<member name="T:DevComponents.DotNetBar.NonClientHook">
<summary>
Summary description for MessageHandler.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.NonClientPaintHandler.WindowsMessageNCCalcSize(System.Windows.Forms.Message@)">
<summary>
Calculates the size of non-client area of the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.NonClientPaintHandler.WindowsMessageNCPaint(System.Windows.Forms.Message@)">
<summary>
Paints the non-client area of the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.NonClientPaintHandler.PaintNonClientAreaBuffered">
<summary>
Draws the non-client area buffered.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.PageNavigator">
<summary>
Represents the PageNavigator control
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigator.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigator.HookEvents(System.Boolean)">
<summary>
Hooks or unhooks our control events
</summary>
<param name="hook">true to hook, false to unhook</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigator.PageNavNavigatePreviousPage(System.Object,System.EventArgs)">
<summary>
Handles NavigatePreviousPage events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigator.OnNavigatePreviousPage">
<summary>
Raises the NavigatePreviousPage event
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigator.PageNavNavigateToday(System.Object,System.EventArgs)">
<summary>
Handles NavigateToday events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigator.OnNavigateToday">
<summary>
Raises the NavigateToday event
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigator.PageNavNavigateNextPage(System.Object,System.EventArgs)">
<summary>
Handles NavigateNextPage events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigator.OnNavigateNextPage">
<summary>
Raises the NavigateNextPage event
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigator.RecalcLayout">
<summary>
Forces the button to perform internal layout.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigator.Dispose(System.Boolean)">
<summary>
Dispose
</summary>
<param name="disposing"></param>
</member>
<member name="E:DevComponents.DotNetBar.Controls.PageNavigator.NavigateNextPage">
<summary>
Occurs when NavigateNextPage button is clicked
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.PageNavigator.NavigateToday">
<summary>
Occurs when NavigateToday button is clicked
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.PageNavigator.NavigatePreviousPage">
<summary>
Occurs when NavigatePreviousPage button is clicked
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageNavigator.DefaultSize">
<summary>
DefaultSize
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageNavigator.Orientation">
<summary>
Gets or sets the layout orientation. Default value is horizontal.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageNavigator.PreviousPageTooltip">
<summary>
Gets or sets the tooltip for the PreviousPage button of the control
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageNavigator.TodayTooltip">
<summary>
Gets or sets the tooltip for the Today button
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageNavigator.NextPageTooltip">
<summary>
Gets or sets the tooltip for the NextPage button
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageNavigator.Style">
<summary>
Gets/Sets the visual style for the control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.PageNavigatorButton">
<summary>
PageNavigator buttons
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.PageNavigatorButton.PreviousPage">
<summary>
Previous page
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.PageNavigatorButton.Today">
<summary>
Today
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.PageNavigatorButton.NextPage">
<summary>
Next page
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.PageNavigatorItem">
<summary>
Represents the PageNavigate item
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.#ctor">
<summary>
Creates new instance of PageNavigateItem
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.#ctor(System.String)">
<summary>
Creates new instance of PageNavigateItem and assigns the name to it
</summary>
<param name="itemName">Item name</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.RecalcSize">
<summary>
Handles size recalc
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.OnExternalSizeChange">
<summary>
Handles external size changes
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.UpdateLayout">
<summary>
Lays out our control based upon its
vertical / horizontal orientation
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Handles control rendering
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.DrawPreviousPage(System.Drawing.Graphics,DevComponents.DotNetBar.Rendering.Office2007ScrollBarColorTable)">
<summary>
Draws the PreviousPage button
</summary>
<param name="g">Graphics</param>
<param name="ct">Office2007ScrollBarColorTable</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.GetPreviousPageBitmap(System.Drawing.Graphics,DevComponents.DotNetBar.Rendering.Office2007ScrollBarStateColorTable)">
<summary>
Gets the PreviousPage bitmap
</summary>
<param name="g"></param>
<param name="cst"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.CreatePreviousPageBitmap(System.Drawing.Graphics,DevComponents.DotNetBar.Rendering.Office2007ScrollBarStateColorTable)">
<summary>
Creates the PreviousPage bitmap
</summary>
<param name="g"></param>
<param name="cst"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.DrawToday(System.Drawing.Graphics,DevComponents.DotNetBar.Rendering.Office2007ScrollBarColorTable)">
<summary>
Draws the Today button
</summary>
<param name="g">Graphics</param>
<param name="ct">Office2007ScrollBarColorTable</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.GetTodayBitmap(System.Drawing.Graphics,DevComponents.DotNetBar.Rendering.Office2007ScrollBarStateColorTable)">
<summary>
Gets the Today Bitmap
</summary>
<param name="g"></param>
<param name="cst"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.CreateTodayBitmap(System.Drawing.Graphics,DevComponents.DotNetBar.Rendering.Office2007ScrollBarStateColorTable)">
<summary>
Creates the Today Bitmap
</summary>
<param name="g"></param>
<param name="cst"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.DrawNextPage(System.Drawing.Graphics,DevComponents.DotNetBar.Rendering.Office2007ScrollBarColorTable)">
<summary>
Draws the NextPage button
</summary>
<param name="g"></param>
<param name="ct"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.GetNextPageBitmap(System.Drawing.Graphics,DevComponents.DotNetBar.Rendering.Office2007ScrollBarStateColorTable)">
<summary>
Gets the NextPage Bitmap
</summary>
<param name="g"></param>
<param name="cst"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.CreateNextPageBitmap(System.Drawing.Graphics,DevComponents.DotNetBar.Rendering.Office2007ScrollBarStateColorTable)">
<summary>
Creates the NextPage Bitmap
</summary>
<param name="g"></param>
<param name="cst"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.CenterRect(System.Drawing.Rectangle)">
<summary>
Centers the given rect
</summary>
<param name="r"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.InternalMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
Processes InternalMouseMove events
</summary>
<param name="objArg"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.HitTest(System.Drawing.Point)">
<summary>
Returns the HitText area for the given point
</summary>
<param name="pt"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.InternalMouseLeave">
<summary>
Processes Mouse Leave events
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.InternalMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Processes Mouse Down events
</summary>
<param name="objArg"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.InternalMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
Processes Mouse Up events
</summary>
<param name="objArg"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.OnNavigatePreviousPage">
<summary>
Raises the NavigatePreviousPage event
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.OnNavigateToday">
<summary>
Raises the NavigateToday event
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.OnNavigateNextPage">
<summary>
Raises the NavigateNextPage event
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.ClickTimerTick(System.Object,System.EventArgs)">
<summary>
Handles timer click events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.EnableClickTimer">
<summary>
Enables our click timer
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.DisposeClickTimer">
<summary>
Disposes of the click timer
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.OnTooltipChanged">
<summary>
OnTooltipChanged
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.UpdateTooltip">
<summary>
Updates the control tooltip
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.Copy">
<summary>
Returns copy of the item
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the PageNavigatorItem specific properties to
new instance of the item
</summary>
<param name="copy">New PageNavigatorItem instance</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.Dispose(System.Boolean)">
<summary>
Dispose
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageNavigatorItem.ReleaseBitmap(System.Drawing.Bitmap@)">
<summary>
Releases the given bitmap
</summary>
<param name="bmp">Bitmap to release</param>
</member>
<member name="E:DevComponents.DotNetBar.Controls.PageNavigatorItem.NavigateNextPage">
<summary>
Occurs when NavigateNextPage button is clicked
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.PageNavigatorItem.NavigateToday">
<summary>
Occurs when NavigateToday button is clicked
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.PageNavigatorItem.NavigatePreviousPage">
<summary>
Occurs when NavigatePreviousPage button is clicked
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageNavigatorItem.MouseOverPart">
<summary>
Gets or sets the MouseOverPart
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageNavigatorItem.MouseDownPart">
<summary>
Gets or sets the MouseDownPart
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageNavigatorItem.Orientation">
<summary>
Gets or sets the control orientation. Default value is Horizontal
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageNavigatorItem.ClickAutoRepeat">
<summary>
Gets or sets whether Click event will be auto repeated
when mouse button is kept pressed over the item
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageNavigatorItem.ClickRepeatInterval">
<summary>
Gets or sets the auto-repeat interval for the click event
when mouse button is kept pressed over the item
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageNavigatorItem.PreviousPageTooltip">
<summary>
Gets or sets the tooltip for the PreviousPage button of the control
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageNavigatorItem.TodayTooltip">
<summary>
Gets or sets the tooltip for the Today button
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageNavigatorItem.NextPageTooltip">
<summary>
Gets or sets the tooltip for the NextPage button
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.ePageNavigatorPart">
<summary>
Defines the PageNavigator item parts
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.ePageNavigatorPart.None">
<summary>
Indicates no part
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.ePageNavigatorPart.PreviousPage">
<summary>
Indicates the PreviousPage button of the control
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.ePageNavigatorPart.Today">
<summary>
Indicates the TodayPage button of the control
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.ePageNavigatorPart.NextPage">
<summary>
Indicates the NextPage button of the control
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageSlider.#ctor">
<summary>
Initializes a new instance of the PageSlider class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageSlider.OnSelectedPageChanged(System.EventArgs)">
<summary>
Raises SelectedPageChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageSlider.OnIndicatorVisibleChanged(System.Boolean,System.Boolean)">
<summary>
Called when IndicatorVisible property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageSlider.GetAllPages">
<summary>
Returns array of all pages in control.
</summary>
<returns>Array of pages.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageSlider.RemoveAllPages">
<summary>
Removes and disposes all pages within the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageSlider.OnSelectedPageChanged(DevComponents.DotNetBar.Controls.PageSliderPage,DevComponents.DotNetBar.Controls.PageSliderPage)">
<summary>
Called when SelectedPage property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageSlider.OnAnimationTimeChanged(System.Int32,System.Int32)">
<summary>
Called when AnimationTime property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageSlider.OnPagePaddingChanged(DevComponents.DotNetBar.Padding,DevComponents.DotNetBar.Padding)">
<summary>
Called when SelectedPagePadding property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageSlider.OnPageSpacingChanged(System.Int32,System.Int32)">
<summary>
Called when PageSpacing property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageSlider.OnNextPageVisibleMarginChanged(System.Int32,System.Int32)">
<summary>
Called when NextPageVisibleMargin property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageSlider.OnOrientationChanged(DevComponents.DotNetBar.eOrientation,DevComponents.DotNetBar.eOrientation)">
<summary>
Called when Orientation property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageSlider.OnScrollBarVisibilityChanged(DevComponents.DotNetBar.Controls.eScrollBarVisibility,DevComponents.DotNetBar.Controls.eScrollBarVisibility)">
<summary>
Called when ScrollBarVisibility property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageSlider.OnTouchEnabledChanged(DevComponents.DotNetBar.Controls.eTouchHandling,DevComponents.DotNetBar.Controls.eTouchHandling)">
<summary>
Called when TouchEnabled property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="E:DevComponents.DotNetBar.Controls.PageSlider.SelectedPageChanged">
<summary>
Occurs when selected page has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageSlider.IndicatorVisible">
<summary>
Gets or sets whether current page indicator is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageSlider.SelectedPage">
<summary>
Indicates selected page.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageSlider.AnimationTime">
<summary>
Indicates the animation time in milliseconds for operations that perform visual animation of transition. Set to zero to disable animation.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageSlider.SelectedPageIndex">
<summary>
Gets or sets zero based selected page index. If there is no page selected returns -1.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageSlider.PageCount">
<summary>
Gets the total number of pages displayed by the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageSlider.PagePadding">
<summary>
Gets or sets the single page padding.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageSlider.PageSpacing">
<summary>
Gets or sets the spacing in pixels between pages.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageSlider.Orientation">
<summary>
Gets or sets the page layout orientation. Default is horizontal.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageSlider.PageMouseDragEnabled">
<summary>
Indicates whether page can be dragged using mouse to change currently selected page
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageSlider.MouseDragEnabled">
<summary>
Indicates whether selected page can be changed by using mouse drag on PageSlider client area which is not covered by pages.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageSlider.ScrollBarVisibility">
<summary>
Indicates scrollbar visibility.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageSlider.AutoScrollBarVisibleTime">
<summary>
Gets or sets the time in milliseconds that scrollbar is kept visible when there is no activity in control and mouse is over the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageSlider.TouchEnabled">
<summary>
Indicates whether native touch support in control is enabled if available on target system.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eScrollBarVisibility">
<summary>
Specifies scrollbar visibility.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eScrollBarVisibility.Hidden">
<summary>
Scrollbars are not visible.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eScrollBarVisibility.AutoVisible">
<summary>
Scrollbars are visible only if mouse is inside of the control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eScrollBarVisibility.AlwaysVisible">
<summary>
Scrollbars are always visible.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eTouchHandling">
<summary>
Specifies level of touch enabled on the control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eTouchHandling.Yes">
<summary>
Touch is enabled control wide.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eTouchHandling.No">
<summary>
Touch is disabled control wide.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eTouchHandling.ClientContentOnly">
<summary>
Touch is enabled but only for the direct control client content. If touch input occurs on any child control it is not processed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PageSliderPage.OnPageNumberChanged(System.Int32,System.Int32)">
<summary>
Called when PageNumber property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PageSliderPage.PageNumber">
<summary>
Gets or sets page number. Page number determines the order in which pages are displayed inside of the PageSlider control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.StepIndicator">
<summary>
Represents control which visually indicates current step in a sequence.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.StepIndicator.#ctor">
<summary>
Initializes a new instance of the StepIndicator class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.StepIndicator.OnStepCountChanged(System.Int32,System.Int32)">
<summary>
Called when StepCount property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.StepIndicator.OnCurrentStepChanged(System.Int32,System.Int32)">
<summary>
Called when CurrentStep property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.StepIndicator.ShouldSerializeBackgroundColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.StepIndicator.ResetBackgroundColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.StepIndicator.ShouldSerializeIndicatorColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.StepIndicator.ResetIndicatorColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.StepIndicator.OnOrientationChanged(DevComponents.DotNetBar.eOrientation,DevComponents.DotNetBar.eOrientation)">
<summary>
Called when Orientation property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.StepIndicator.StepCount">
<summary>
Gets or sets the total number of steps that control will track. Default value is 10.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.StepIndicator.CurrentStep">
<summary>
Gets or sets the current step in sequence. Current step should be less or equal than StepCount.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.StepIndicator.BackgroundColor">
<summary>
Gets or sets the background color of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.StepIndicator.IndicatorColor">
<summary>
Gets or sets the color of the current step indicator.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.StepIndicator.Orientation">
<summary>
Indicates the control orientation.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PopupControlHost.ProcessResizeGripMessages(System.Windows.Forms.Message@)">
<summary>
Processes the resizing messages.
</summary>
<param name="m">The message.</param>
<returns>true, if the WndProc method from the base class shouldn't be invoked.</returns>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PopupControlHost.PopupUserSize">
<summary>
Gets whether popup has been resized by end-user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PopupControlHost.ResizeEdge">
<summary>
Type of resize mode, grips are automatically drawn at bottom-left and bottom-right corners.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PopupControlHost.CloseButtonVisible">
<summary>
Gets or sets whether Close button is visible in fotter. Resize handle must also be visible in order for close button to render.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PopupControlHost.ResizeGripBounds">
<summary>
Gets resize grip bounds.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PopupControlHost.ResizeGripColors.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Color)">
<summary>
Initializes a new instance of the ResizeGripColors structure.
</summary>
<param name="backColor"></param>
<param name="gripLightColor"></param>
<param name="gripColor"></param>
</member>
<member name="T:DevComponents.DotNetBar.Controls.ePopupResizeEdge">
<summary>
Specifies the popup resize modes
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PopupHostController.OnClosed(System.Windows.Forms.ToolStripDropDownClosedEventArgs)">
<summary>
Raises Closed event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PopupHostController.OnClosing(System.Windows.Forms.ToolStripDropDownClosingEventArgs)">
<summary>
Raises Closing event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PopupHostController.Show(System.Windows.Forms.Control,System.Int32,System.Int32)">
<summary>
Show control on popup at specified location.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PopupHostController.Show(System.Windows.Forms.Control,System.Int32,System.Int32,DevComponents.DotNetBar.Controls.ePopupResizeEdge)">
<summary>
Shows control on popup at specified location with specified popup resize edges.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PopupHostController.Show(System.Windows.Forms.Control,System.Int32,System.Int32,System.Int32,System.Int32,DevComponents.DotNetBar.Controls.ePopupResizeEdge)">
<summary>
Shows control on popup at specified location and size with specified popup resize edges.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.PopupHostController.Hide">
<summary>
Hides popup if visible.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.PopupHostController.Closed">
<summary>
Occurs after popup is closed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.PopupHostController.Closing">
<summary>
Occurs before popup is closed and allows canceling.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PopupHostController.Visible">
<summary>
Gets whether popup is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PopupHostController.Control">
<summary>
Gets the control displayed on popup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PopupHostController.Padding">
<summary>
Gets or sets the popup padding.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.PopupHostController.Margin">
<summary>
Gets or sets popup margin.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.ProgressBarX">
<summary>
Represents the stand-alone progress bar control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ProgressBarX.PerformStep">
<summary>
Advances the current position of the progress bar by the amount of the Step property.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ProgressBarX.Increment(System.Int32)">
<summary>
Advances the current position of the progress bar by the specified amount.
</summary>
<param name="value">The amount by which to increment the progress bar's current position. </param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ProgressBarX.ShouldSerializeChunkColor">
<summary>
Gets whether ChunkColor property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ProgressBarX.ResetChunkColor">
<summary>
Resets the ChunkColor property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ProgressBarX.ShouldSerializeChunkColor2">
<summary>
Gets whether ChunkColor property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ProgressBarX.ResetChunkColor2">
<summary>
Resets the ChunkColor property to its default value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ProgressBarX.Maximum">
<summary>
Gets or sets the maximum value of the range of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ProgressBarX.Minimum">
<summary>
Gets or sets the minimum value of the range of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ProgressBarX.Value">
<summary>
Gets or sets the current position of the progress bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ProgressBarX.Step">
<summary>
Gets or sets the amount by which a call to the PerformStep method increases the current position of the progress bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ProgressBarX.ChunkColor">
<summary>
Gets or sets the color of the progress chunk.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ProgressBarX.ChunkColor2">
<summary>
Gets or sets the target gradient color of the progress chunk.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ProgressBarX.ChunkGradientAngle">
<summary>
Gets or sets the gradient angle of the progress chunk.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ProgressBarX.TextVisible">
<summary>
Gets or sets whether the text inside the progress bar is displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ProgressBarX.ProgressType">
<summary>
Gets or sets the type of progress bar used to indicate progress. The Standard style displays the progress based on Minimum, Maximum and current Value.
The Marquee type is automatically moving progress bar that is used to indicate an ongoing operation for which the actual duration cannot be estimated.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ProgressBarX.MarqueeAnimationSpeed">
<summary>
Gets or sets the marquee animation speed in milliseconds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ProgressBarX.ColorTable">
<summary>
Gets or sets the predefined color state table for progress bar. Color specified applies to items with Office 2007 style only. It does not have
any effect on other styles. You can use ColorTable to indicate the state of the operation that Progress Bar is tracking. Default value is eProgressBarItemColor.Normal.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ProgressBarX.ProgressBarItem">
<summary>
Gets the underlying ProgressBarItem
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.OfficeStepItemColorTable">
<summary>
Defines color table for the StepItem.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.OfficeStepItemColorTable.Default">
<summary>
Gets or sets the default state StepItem colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.OfficeStepItemColorTable.MouseOver">
<summary>
Gets or sets the mouse over state StepItem colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.OfficeStepItemColorTable.Pressed">
<summary>
Gets or sets the StepItem colors when mouse is pressed over the item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.OfficeStepItemColorTable.Progress">
<summary>
Gets or sets the StepItem colors when Value property is greater than Minimum property value, i.e. item is reporting progress.
Note that only Background color is used when progress indicator is drawn.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.StepItemPainter.Paint(DevComponents.DotNetBar.StepItemRendererEventArgs)">
<summary>
Paints StepItem.
</summary>
<param name="e">Provides arguments for the operation.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.OfficeStepItemPainter.Paint(DevComponents.DotNetBar.StepItemRendererEventArgs)">
<summary>
Paints StepItem.
</summary>
<param name="e">Provides arguments for the operation.</param>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.OfficeStepItemStateColorTable">
<summary>
Represents the color table for StepItem single state.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.OfficeStepItemStateColorTable.#ctor">
<summary>
Initializes a new instance of the OfficeStepItemStateColorTable class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.OfficeStepItemStateColorTable.#ctor(System.Drawing.Color[],System.Drawing.Color,System.Drawing.Color[])">
<summary>
Initializes a new instance of the OfficeStepItemStateColorTable class.
</summary>
<param name="backColors"></param>
<param name="textColor"></param>
<param name="borderColors"></param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.OfficeStepItemStateColorTable.#ctor(System.Drawing.Color[],System.Int32,System.Single[],System.Drawing.Color,System.Drawing.Color[])">
<summary>
Initializes a new instance of the OfficeStepItemStateColorTable class.
</summary>
<param name="backColors"></param>
<param name="backColorsGradientAngle"></param>
<param name="backColorsPositions"></param>
<param name="textColor"></param>
<param name="borderColors"></param>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.OfficeStepItemStateColorTable.BackColors">
<summary>
Gets or sets the background colors for the step item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.OfficeStepItemStateColorTable.BackColorsGradientAngle">
<summary>
Gets or sets the back colors gradient angle if there is more than one color in BackColors array.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.OfficeStepItemStateColorTable.BackColorsPositions">
<summary>
Gets or sets the gradient colors positions if there is more than one color in BackColors array.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.OfficeStepItemStateColorTable.TextColor">
<summary>
Gets or sets the text color for the step item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.OfficeStepItemStateColorTable.BorderColors">
<summary>
Gets or sets the border colors of the step item.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ProgressSteps">
<summary>
Represents the progress steps control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ProgressSteps.#ctor">
<summary>
Initializes a new instance of the ProgressSteps class.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ProgressSteps.Items">
<summary>
Returns collection of items on a bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ProgressSteps.Style">
<summary>
Gets/Sets the visual style for items and color scheme.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ProgressSteps.AutoSize">
<summary>
Gets or sets a value indicating whether the control is automatically resized to display its entire contents. You can set MaximumSize.Width property to set the maximum width used by the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ProgressSteps.PointerSize">
<summary>
Gets or sets the arrow pointer width for the StepItem objects hosted within this container.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.StepItem">
<summary>
Represents a step item which is used to show single step in multi-step progress control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.StepItem.#ctor">
<summary>
Creates new instance of StepItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.StepItem.#ctor(System.String)">
<summary>
Creates new instance of StepItem and assigns the name to it.
</summary>
<param name="sItemName">Item name.</param>
</member>
<member name="M:DevComponents.DotNetBar.StepItem.#ctor(System.String,System.String)">
<summary>
Creates new instance of StepItem and assigns the name and text to it.
</summary>
<param name="sItemName">Item name.</param>
<param name="ItemText">item text.</param>
</member>
<member name="M:DevComponents.DotNetBar.StepItem.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.StepItem.InternalCopyToItem(DevComponents.DotNetBar.StepItem)">
<summary>
Copies the StepItem specific properties to new instance of the item.
</summary>
<param name="copy">New StepItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.StepItem.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the StepItem specific properties to new instance of the item.
</summary>
<param name="copy">New StepItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.StepItem.GetFont(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Returns the Font object to be used for drawing the item text.
</summary>
<returns>Font object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.StepItem.OnMinimumChanged(System.Int32,System.Int32)">
<summary>
Called when Minimum property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.StepItem.OnMaximumChanged(System.Int32,System.Int32)">
<summary>
Called when Maximum property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.StepItem.OnValueChanged(System.Int32,System.Int32)">
<summary>
Called when Value property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.StepItem.ShouldSerializeSymbolColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.StepItem.ResetSymbolColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.StepItem.OnSymbolChanged(System.String,System.String)">
<summary>
Called when Symbol property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.StepItem.OnSymbolSetChanged(DevComponents.DotNetBar.eSymbolSet,DevComponents.DotNetBar.eSymbolSet)">
<summary>
Called when SymbolSet property value changes.
</summary>
<param name="oldValue">Indciates old value</param>
<param name="newValue">Indicates new value</param>
</member>
<member name="M:DevComponents.DotNetBar.StepItem.OnSymbolSizeChanged(System.Single,System.Single)">
<summary>
Called when SymbolSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.StepItem.OnImageChanged(System.Drawing.Image,System.Drawing.Image)">
<summary>
Called when Image property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.StepItem.OnMinimumSizeChanged(System.Drawing.Size,System.Drawing.Size)">
<summary>
Called when MinimumSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.StepItem.OnHotTrackingChanged(System.Boolean,System.Boolean)">
<summary>
Called when HotTracking property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.StepItem.OnImageTextSpacingChanged(System.Int32,System.Int32)">
<summary>
Called when ImageTextSpacing property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.StepItem.ShouldSerializeTextColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.StepItem.ResetTextColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.ItemPath">
<summary>
Gets the render path of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.Minimum">
<summary>
Gets or sets the minimum value of the range of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.SymbolColor">
<summary>
Gets or sets the color of the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.SymbolRealized">
<summary>
Gets the realized symbol string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.Symbol">
<summary>
Indicates the symbol displayed on face of the button instead of the image. Setting the symbol overrides the image setting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.SymbolSet">
<summary>
Gets or sets the symbol set used to represent the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.SymbolSize">
<summary>
Indicates the size of the symbol in points.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.Image">
<summary>
Indicates the image that is displayed next to the item text label.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.IsFirst">
<summary>
Gets or sets whether this is first item in StepControl.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.IsLast">
<summary>
Gets or sets whether this is laste item in StepControl.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.MinimumSize">
<summary>
Indicates minimum size of the item
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.HotTracking">
<summary>
Specifies whether item changes its appearance when mouse is moved over the item
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.IsMouseOver">
<summary>
Gets whether mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.IsMouseDown">
<summary>
Gets whether left mouse button is pressed on the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.ImageTextSpacing">
<summary>
Indicates the spacing between image and text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.Padding">
<summary>
Gets or sets padding around content of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.ProgressColors">
<summary>
Indicates the array of colors that when set are used to draw the current progress, i.e. Value>Minimum
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.BackColors">
<summary>
Indicates the array of colors that when set are used to draw the background of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.TextAlignment">
<summary>
Gets or sets the text alignment. Default value is left.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.Text">
<summary>
Gets or sets the text associated with this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.TextColor">
<summary>
Gets or sets the color of the text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.IsMarkupSupported">
<summary>
Gets whether item supports text markup. Default is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StepItem.EnableMarkup">
<summary>
Gets or sets whether text-markup support is enabled for items Text property. Default value is true.
Set this property to false to display HTML or other markup in the item instead of it being parsed as text-markup.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.StepItemContainer">
<summary>
Container for the StepItem objects.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.StepItemContainer.#ctor">
<summary>
Initializes a new instance of the StepContainer class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.StepItemContainer.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.StepItemContainer.InternalCopyToItem(DevComponents.DotNetBar.StepItemContainer)">
<summary>
Copies the StepContainer specific properties to new instance of the item.
</summary>
<param name="copy">New StepContainer instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.StepItemContainer.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the StepContainer specific properties to new instance of the item.
</summary>
<param name="copy">New StepContainer instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.StepItemContainer.OnPointerSizeChanged(System.Int32,System.Int32)">
<summary>
Called when PointerSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="P:DevComponents.DotNetBar.StepItemContainer.PointerSize">
<summary>
Gets or sets the arrow pointer width for the StepItem objects hosted within this container.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.StepItemRendererEventArgs">
<summary>
Provides data for the Slider item rendering events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.StepItemRendererEventArgs.Item">
<summary>
Gets or sets the reference to the item being rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.StepItemRendererEventArgs.Graphics">
<summary>
Gets or sets the reference to graphics object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.StepItemRendererEventArgs.#ctor(DevComponents.DotNetBar.StepItem,System.Drawing.Graphics)">
<summary>
Creates new instance of the object and initializes it with default values.
</summary>
<param name="overflowItem">Reference to the Slider item being rendered.</param>
<param name="g">Reference to the graphics object.</param>
</member>
<member name="P:DevComponents.DotNetBar.MultiFormAppContext.OpenedForms">
<summary>
Returns read-only list of opened forms.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MultiFormAppContext.Current">
<summary>
Gets or sets current MultiFormAppContext context. If you are using MultiFormAppContext to start your app then you should also
set that instance of MultiFormAppContext to this property so internally TabFormControl can register any new deattached forms
and prevent application from closing if startup form is closed first.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItemBase.RenderTabState">
<summary>
Gets or sets whether tab renders its state. Used internally by DotNetBar. Do not set.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItemBase.TabPath">
<summary>
Gets the actual tab path.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.NewTabFormItem.BackColors">
<summary>
Indicates the array of colors that when set are used to draw the background of the item.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Office2003ButtonItemPainter">
<summary>
Summary description for Office2003ButtonItemPainter.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ButtonItemPainter">
<summary>
Summary description for ButtonItemPainter.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Office2003ButtonItemPainter.PaintButtonMouseOver(DevComponents.DotNetBar.ButtonItem,DevComponents.DotNetBar.ItemPaintArgs,DevComponents.DotNetBar.CompositeImage,System.Drawing.Rectangle)">
<summary>
Paints state of the button, either hot, pressed or checked
</summary>
<param name="button"></param>
<param name="pa"></param>
<param name="image"></param>
</member>
<member name="M:DevComponents.DotNetBar.Office2007ButtonItemPainter.PaintButtonMouseOver(DevComponents.DotNetBar.ButtonItem,DevComponents.DotNetBar.ItemPaintArgs,DevComponents.DotNetBar.CompositeImage,System.Drawing.Rectangle)">
<summary>
Paints state of the button, either hot, pressed or checked
</summary>
<param name="button"></param>
<param name="pa"></param>
<param name="image"></param>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.OfficeTabFormStripPainter.ColorTable">
<summary>
Gets or sets color table used by renderer.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormColorTable.Active">
<summary>
Gets or sets the color table for form in active state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormColorTable.Inactive">
<summary>
Gets or sets the color table for from in inactive state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormColorTable.BorderThickness">
<summary>
Gets or sets the border thickness.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormColorTable.BackColor">
<summary>
Gets or sets the background color of the form.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormColorTable.TextColor">
<summary>
Gets or sets the text color of the form.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormColorTable.CaptionTextFormat">
<summary>
Gets or sets the text formatting for caption text.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.RangeSlider">
<summary>
Represents Range Slider Control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RangeSlider.OnValueChanging(DevComponents.DotNetBar.RangeSliderValueChangingEventArgs)">
<summary>
Raises ValueChanging event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RangeSlider.OnValueChanged(System.EventArgs)">
<summary>
Raises ValueChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RangeSlider.OnRangeTooltipText(DevComponents.DotNetBar.RangeTooltipEventArgs)">
<summary>
Raises GetRangeTooltipText event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RangeSlider.RecalcLayout">
<summary>
Forces the button to perform internal layout.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RangeSlider.ShouldSerializeRangeValueColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RangeSlider.ResetRangeValueColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.RangeSlider.ValueChanging">
<summary>
Occurs before Value has changed and allow the cancellation of the change.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.RangeSlider.ValueChanged">
<summary>
Occurs after Value property has changed
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.RangeSlider.RangeTooltipText">
<summary>
Occurs when control is about to display the range tooltip and it allows you to customize tooltip
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.SliderItem">
<summary>
Gets the RangeSliderItem.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.ClientClickRangeChangeEnabled">
<summary>
Indicates whether clicking the area outside of the range change buttons moves the range change button to the clicked location if possible thus allowing range change.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.Maximum">
<summary>
Gets or sets the maximum value of the range of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.Minimum">
<summary>
Gets or sets the minimum value of the range of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.MaxRangeSliderImage">
<summary>
Indicates image to be used as maximum range slider button instead of built-in button. Image is scaled to size set by RangeButtonSize.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.MinRangeSliderImage">
<summary>
Indicates image to be used as minimum range slider button instead of built-in button. Image is scaled to size set by RangeButtonSize.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.MinimumAbsoluteRange">
<summary>
Specifies minimum absolute range that user can select. Absolute range is defined as Abs(Value.Max-Value.Min) Applies to user performed selection through mouse only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.MouseDownPart">
<summary>
Gets current part that is pressed using mouse left button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.MouseOverPart">
<summary>
Gets mouse over part.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.RangeButtonMaxBounds">
<summary>
Gets bounds of maximum range sliding button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.RangeButtonMinBounds">
<summary>
Gets bounds of minimum range sliding button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.RangeButtonSize">
<summary>
Indicates the size of the range change buttons.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.RangeLineHeight">
<summary>
Specifies the height of the range line
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.RangeTooltipFormat">
<summary>
Gets or sets the string that is used to format the range value to be displayed while user moves the range buttons. Value set here is used in string.Format(RangeTooltipFormat, Value.Min, Value.Max).
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.RangeValueColor">
<summary>
Gets or sets the color of the range value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.ShowRangeTooltip">
<summary>
Specifies whether range tooltip is shown while user is changing the range
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.SliderOrientation">
<summary>
Gets or sets the slider orientation. Default value is horizontal.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.TicksBounds">
<summary>
Gets tick marks bounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.TicksBounds2">
<summary>
Gets tick marks bounds for second marker is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.TicksPosition">
<summary>
Specifies the ticks position inside of Range Slider.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.TicksStep">
<summary>
Indicates tick display period
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.TicksVisible">
<summary>
Indicates whether tick lines are shown
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RangeSlider.Value">
<summary>
Gets or sets the range displayed by the control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.RatingStar">
<summary>
Represents the Rating control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RatingStar.#ctor">
<summary>
Initializes a new instance of the Rating class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RatingStar.OnParseRatingValue(DevComponents.Editors.ParseIntegerValueEventArgs)">
<summary>
Raises the ParseRating event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RatingStar.OnParseAverageRatingValue(DevComponents.Editors.ParseDoubleValueEventArgs)">
<summary>
Raises the ParseAverageRatingValue event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RatingStar.OnAverageRatingChanged(System.EventArgs)">
<summary>
Raises the AverageRatingChanged event.
</summary>
<param name="eventArgs">Event data.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RatingStar.OnRatingChanged(System.EventArgs)">
<summary>
Raises the RatingChanged event.
</summary>
<param name="eventArgs">Event data.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RatingStar.OnRatingChanging(DevComponents.DotNetBar.RatingChangeEventArgs)">
<summary>
Raises RatingChanging event.
</summary>
<param name="e">Event data</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RatingStar.OnCommandChanged">
<summary>
Called when Command property value changes.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.RatingStar.RatingChanged">
<summary>
Occurs when Rating property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.RatingStar.RatingValueChanged">
<summary>
Occurs when RatingValue property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.RatingStar.RatingChanging">
<summary>
Occurs when Rating property is about to be changed and provides opportunity to cancel the change.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.RatingStar.AverageRatingChanged">
<summary>
Occurs when AverageRating property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.RatingStar.AverageRatingValueChanged">
<summary>
Occurs when AverageRatingValue property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.RatingStar.MarkupLinkClick">
<summary>
Occurs when text markup link is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.RatingStar.ParseRatingValue">
<summary>
Occurs when RatingValue property is set and it allows you to provide custom parsing for the values.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.RatingStar.ParseAverageRatingValue">
<summary>
Occurs when AverageRatingValue property is set and it allows you to provide custom parsing for the values.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RatingStar.NumberOfStars">
<summary>
Indicates number of stars used for the rating. Minium value is 2 stars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RatingStar.Rating">
<summary>
Gets or sets the rating value represented by the control. Default value is 0 which indicates
that there is no rating set. Maximum value is 5.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RatingStar.AverageRating">
<summary>
Gets or sets the average rating shown by control. Control will display average rating (if set) when no explicit
Rating value is set through Rating property. Minimum value is 0 and Maximum value is 5.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RatingStar.AverageRatingValue">
<summary>
Gets or sets the AverageRating property. This property is provided for Data-Binding with NULL value support.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RatingStar.CustomImages">
<summary>
Gets the reference to custom rating images.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RatingStar.TextVisible">
<summary>
Gets or sets whether text assigned to the check box is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RatingStar.EnableMarkup">
<summary>
Gets or sets whether text-markup support is enabled for items Text property. Default value is true.
Set this property to false to display HTML or other markup in the item instead of it being parsed as text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RatingStar.IsEditable">
<summary>
Gets or sets whether rating can be edited. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RatingStar.RatingOrientation">
<summary>
Gets or sets the orientation of rating control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RatingStar.RatingValue">
<summary>
Gets or sets the Rating property value. This property is provided for Data-Binding with NULL value support.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RatingStar.TextColor">
<summary>
Gets or sets the text color. Default value is Color.Empty which indicates that default color is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RatingStar.TextSpacing">
<summary>
Gets or sets the spacing between optional text and the rating.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RatingStar.AutoSize">
<summary>
Gets or sets a value indicating whether the control is automatically resized to display its entire contents. You can set MaximumSize.Width property to set the maximum width used by the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RatingStar.Command">
<summary>
Gets or sets the command assigned to the item. Default value is null.
<remarks>Note that if this property is set to null Enabled property will be set to false automatically to disable the item.</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RatingStar.CommandParameter">
<summary>
Gets or sets user defined data value that can be passed to the command when it is executed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.ReflectionImage">
<summary>
Represents an image control with built-in reflection.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ReflectionImage.#ctor">
<summary>
Initializes a new instance of the ReflectionImage class.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ReflectionImage.Image">
<summary>
Gets or sets the image displayed on the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ReflectionImage.ReflectionEnabled">
<summary>
Gets or sets whether reflection effect is enabled. Default value is true.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.ReflectionLabel">
<summary>
Represents an single line of text label control with text-markup support and built-in reflection.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ReflectionLabel.MarkupLinkClick">
<summary>
Occurs when text markup link is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ReflectionLabel.ReflectionEnabled">
<summary>
Gets or sets whether reflection effect is enabled. Default value is true.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.ScrollbarControl">
<summary>
Represents control which handles scroll-bars.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ScrollbarControl.#ctor">
<summary>
Initializes a new instance of the ScrollbarControl class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ScrollbarControl.OnScrollOverrideControlChanged(System.Windows.Forms.Control,System.Windows.Forms.Control)">
<summary>
Called when ScrollOverrideControl property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ScrollbarControl.ScrollBarAppearance">
<summary>
Gets or sets the scroll-bar visual style.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.#ctor">
<summary>
Initializes a new instance of the RichTextBoxEx class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.OnAcceptsTabChanged(System.EventArgs)">
<summary>
Raises AcceptsTabChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.OnHideSelectionChanged(System.EventArgs)">
<summary>
Raises HideSelectionChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.OnModifiedChanged(System.EventArgs)">
<summary>
Raises ModifiedChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.OnMultilineChanged(System.EventArgs)">
<summary>
Raises MultilineChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.OnReadOnlyChanged(System.EventArgs)">
<summary>
Raises ReadOnlyChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.OnLinkClicked(System.Windows.Forms.LinkClickedEventArgs)">
<summary>
Raises LinkClicked event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.OnProtected(System.EventArgs)">
<summary>
Raises Protected event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.OnSelectionChanged(System.EventArgs)">
<summary>
Raises SelectionChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.OnHScroll(System.EventArgs)">
<summary>
Raises HScroll event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.OnVScroll(System.EventArgs)">
<summary>
Raises HScroll event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.ShouldSerializeBackColorRichTextBox">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.ResetBackColorRichTextBox">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.AppendText(System.String)">
<summary>
Appends text to the current text of a text box
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.CanPaste(System.Windows.Forms.DataFormats.Format)">
<summary>
Determines whether you can paste information from the Clipboard in the specified data format.
</summary>
<param name="clipFormat"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.Clear">
<summary>
Clears all text from the text box control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.ClearUndo">
<summary>
Clears information about the most recent operation from the undo buffer of the text box.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.Copy">
<summary>
Copies the current selection in the text box to the Clipboard.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.Cut">
<summary>
Moves the current selection in the text box to the Clipboard.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.DeselectAll">
<summary>
Specifies that the value of the SelectionLength property is zero so that no characters are selected in the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.Find(System.String)">
<summary>
Searches the text in a RichTextBox control for a string.
</summary>
<param name="str"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.Find(System.Char[])">
<summary>
Searches the text of a RichTextBox control for the first instance of a character from a list of characters.
</summary>
<param name="characterSet"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.Find(System.String,System.Windows.Forms.RichTextBoxFinds)">
<summary>
Searches the text in a RichTextBox control for a string with specific options applied to the search.
</summary>
<param name="str"></param>
<param name="options"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.Find(System.Char[],System.Int32)">
<summary>
Searches the text of a RichTextBox control, at a specific starting point, for the first instance of a character from a list of characters.
</summary>
<param name="characterSet"></param>
<param name="start"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.Find(System.String,System.Int32,System.Windows.Forms.RichTextBoxFinds)">
<summary>
Searches the text in a RichTextBox control for a string at a specific location within the control and with specific options applied to the search.
</summary>
<param name="str"></param>
<param name="start"></param>
<param name="options"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.Find(System.Char[],System.Int32,System.Int32)">
<summary>
Searches a range of text in a RichTextBox control for the first instance of a character from a list of characters.
</summary>
<param name="characterSet"></param>
<param name="start"></param>
<param name="end"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.Find(System.String,System.Int32,System.Int32,System.Windows.Forms.RichTextBoxFinds)">
<summary>
Searches the text in a RichTextBox control for a string within a range of text within the control and with specific options applied to the search.
</summary>
<param name="str"></param>
<param name="start"></param>
<param name="end"></param>
<param name="options"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.GetCharFromPosition(System.Drawing.Point)">
<summary>
Retrieves the character that is closest to the specified location within the control.
</summary>
<param name="pt"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.GetCharIndexFromPosition(System.Drawing.Point)">
<summary>
Retrieves the index of the character nearest to the specified location
</summary>
<param name="pt"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.GetFirstCharIndexFromLine(System.Int32)">
<summary>
Retrieves the index of the first character of a given line. (Inherited from TextBoxBase.)
</summary>
<param name="lineNumber"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.GetFirstCharIndexOfCurrentLine">
<summary>
Retrieves the index of the first character of the current line. (Inherited from TextBoxBase.)
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.GetLineFromCharIndex(System.Int32)">
<summary>
Retrieves the line number from the specified character position within the text of the RichTextBox control.
</summary>
<param name="index"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.GetPositionFromCharIndex(System.Int32)">
<summary>
Retrieves the location within the control at the specified character index.
</summary>
<param name="index"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.LoadFile(System.String)">
<summary>
Loads a rich text format (RTF) or standard ASCII text file into the RichTextBox control.
</summary>
<param name="path"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.LoadFile(System.IO.Stream,System.Windows.Forms.RichTextBoxStreamType)">
<summary>
Loads the contents of an existing data stream into the RichTextBox control.
</summary>
<param name="data"></param>
<param name="fileType"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.LoadFile(System.String,System.Windows.Forms.RichTextBoxStreamType)">
<summary>
Loads a specific type of file into the RichTextBox control.
</summary>
<param name="path"></param>
<param name="fileType"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.Paste">
<summary>
Replaces the current selection in the text box with the contents of the Clipboard.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.Paste(System.Windows.Forms.DataFormats.Format)">
<summary>
Pastes the contents of the Clipboard in the specified Clipboard format.
</summary>
<param name="clipFormat"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.Redo">
<summary>
Reapplies the last operation that was undone in the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.SaveFile(System.String)">
<summary>
Saves the contents of the RichTextBox to a rich text format (RTF) file.
</summary>
<param name="path"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.SaveFile(System.IO.Stream,System.Windows.Forms.RichTextBoxStreamType)">
<summary>
Saves the contents of a RichTextBox control to an open data stream.
</summary>
<param name="data"></param>
<param name="fileType"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.SaveFile(System.String,System.Windows.Forms.RichTextBoxStreamType)">
<summary>
Saves the contents of the RichTextBox to a specific type of file.
</summary>
<param name="path"></param>
<param name="fileType"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.ScrollToCaret">
<summary>
Scrolls the contents of the control to the current caret position.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.Select">
<summary>
Activates the control. (Inherited from Control.)
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.Select(System.Int32,System.Int32)">
<summary>
Selects a range of text in the text box.
</summary>
<param name="start"></param>
<param name="length"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.SelectAll">
<summary>
Selects all text in the text box.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxEx.Undo">
<summary>
Undoes the last edit operation in the text box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RichTextBoxEx.RichTextBox">
<summary>
Gets the reference to internal RichTextBox control.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.RichTextBoxEx.AcceptsTabChanged">
<summary>
Occurs when the value of the AcceptsTab property changes
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.RichTextBoxEx.HideSelectionChanged">
<summary>
Occurs when the value of the HideSelection property changes.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.RichTextBoxEx.ModifiedChanged">
<summary>
Occurs when the value of the Modified property changes.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.RichTextBoxEx.MultilineChanged">
<summary>
Occurs when the value of the Multiline property changes.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.RichTextBoxEx.ReadOnlyChanged">
<summary>
Occurs when the value of the ReadOnly property changes.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.RichTextBoxEx.LinkClicked">
<summary>
Occurs when a hyperlink in the text is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.RichTextBoxEx.Protected">
<summary>
Occurs when the user takes an action that would change a protected range of text.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.RichTextBoxEx.SelectionChanged">
<summary>
Occurs when the current selection has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.RichTextBoxEx.HScroll">
<summary>
Occurs when the horizontal scroll bar is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.RichTextBoxEx.VScroll">
<summary>
Occurs when the vertical scroll bar is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RichTextBoxEx.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RichTextBoxEx.BackColorRichTextBox">
<summary>
Gets or sets the back color of the RichTextBox.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RichTextBoxEx.AcceptsTab">
<summary>
Gets or sets whether tab characters are accepted as input
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RichTextBoxEx.AutoWordSelection">
<summary>
Gets or sets whether automatic word selection is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RichTextBoxEx.BulletIndent">
<summary>
Gets or sets indent for bullets in the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RichTextBoxEx.DetectUrls">
<summary>
Gets or sets whether URLs are automatically formatted as links.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RichTextBoxEx.EnableAutoDragDrop">
<summary>
Gets or sets whether drag/drop of text, pictures and other data is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RichTextBoxEx.HideSelection">
<summary>
Gets or sets whether selection should be hidden when the edit control loses focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RichTextBoxEx.Lines">
<summary>
Gets or sets lines of text in a multi-line edit, as an array of String values.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RichTextBoxEx.MaxLength">
<summary>
Gets or sets maximum number of characters that can be entered into the edit control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RichTextBoxEx.Multiline">
<summary>
Gets or sets whether the text in the control can span more than one line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RichTextBoxEx.ReadOnly">
<summary>
Gets or sets whether the text in the edit control can be changed or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RichTextBoxEx.RightMargin">
<summary>
Gets or sets right margin dimensions.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RichTextBoxEx.Rtf">
<summary>
Gets or sets the text of the RichTextBox control, including all rich text format (RTF) codes.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RichTextBoxEx.ScrollBars">
<summary>
Gets or sets for multi-line edit control, which scroll bars will be shown.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RichTextBoxEx.ShortcutsEnabled">
<summary>
Gets or sets whether shortcuts defined for the control are enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RichTextBoxEx.ShowSelectionMargin">
<summary>
Gets or sets whether selection margin is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RichTextBoxEx.WordWrap">
<summary>
Gets or sets whether lines are automatically word-wrapped.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.RichTextBoxEx.ZoomFactor">
<summary>
Gets or sets current zoom factor for the control content.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.IScrollBarOverrideSupport.NonClientSizeChanged">
<summary>
Should be fired when non-client size of the control changes, i.e. when WM_NCCALCSIZE message is received.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.IScrollBarOverrideSupport.ScrollBarValueChanged">
<summary>
Should be fired when scroll-bar value on child control changes.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.IScrollBarOverrideSupport.ControlMoved">
<summary>
Should be fired when control receives WM_MOVE message.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.IScrollBarOverrideSupport.DesignMode">
<summary>
Gets whether control is in design mode.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxScrollEx.OnNonClientSizeChanged(System.EventArgs)">
<summary>
Raises NonClientSizeChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxScrollEx.OnScrollBarValueChanged(DevComponents.DotNetBar.Controls.ScrollValueChangedEventArgs)">
<summary>
Raises ScrollBarValueChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RichTextBoxScrollEx.OnControlMoved(System.EventArgs)">
<summary>
Raises NonClientSizeChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="T:DevComponents.DotNetBar.Controls.ScrollValueChangedEventArgs">
<summary>
Defines arguments for IScrollBarOverrideSupport.ScrollBarValueChanged event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ScrollValueChangedEventArgs.#ctor(DevComponents.DotNetBar.Controls.eScrollBarScrollChange)">
<summary>
Initializes a new instance of the ScrollValueChangedEventArgs class.
</summary>
<param name="scrollChange"></param>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eScrollBarScrollChange">
<summary>
Defines information for IScrollBarOverrideSupport.ScrollBarValueChanged event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.ScrollValueChangedHandler">
<summary>
Defines delegate for IScrollBarOverrideSupport.ScrollBarValueChanged event.
</summary>
<param name="sender">Sender.</param>
<param name="e">Event arguments</param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ScrollbarSkinner.ScrollBarAppearance">
<summary>
Gets or sets the scroll-bar visual style.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SideNavItemPainter.Paint(DevComponents.DotNetBar.Rendering.SideNavItemRendererEventArgs)">
<summary>
Paints ListBoxItem.
</summary>
<param name="e">Provides arguments for the operation.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.OfficeSideNavItemPainter.Paint(DevComponents.DotNetBar.Rendering.SideNavItemRendererEventArgs)">
<summary>
Paints ListBoxItem.
</summary>
<param name="e">Provides arguments for the operation.</param>
</member>
<member name="T:DevComponents.DotNetBar.Controls.SideNav">
<summary>
Represents SideNav control to create "hamburger" menus.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNav.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNav.UpdateColors">
<summary>
Updates the control colors from the global color table.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNav.Maximize(DevComponents.DotNetBar.eEventSource)">
<summary>
Maximizes control width so it fills up space to the right of the control.
</summary>
<param name="source">Source of the event.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNav.Restore(DevComponents.DotNetBar.eEventSource)">
<summary>
Restores the control to previous size if it was maximized before.
</summary>
<param name="source">Source of event.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNav.Open(DevComponents.DotNetBar.Controls.SideNavItem,DevComponents.DotNetBar.eEventSource)">
<summary>
Opens the control, i.e. expands it, selects specified item and shows its associated panel.
</summary>
<param name="item">Item to select.</param>
<param name="source">Source of the event.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNav.Close(DevComponents.DotNetBar.eEventSource)">
<summary>
Closes the control, i.e. unselects any selected item, hide its associated panel and folds the control.
</summary>
<param name="source">Source of the event.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNav.OnIsMenuExpandedChanged(System.EventArgs)">
<summary>
Raises IsMenuExpandedChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNav.ExpandMenu(System.Boolean)">
<summary>
Expands or collapses the control items menu.
</summary>
<param name="expand"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNav.OnAnimationTimeChanged(System.Int32,System.Int32)">
<summary>
Called when AnimationTime property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNav.OnBeforeMaximize(DevComponents.DotNetBar.Controls.CancelSourceEventArgs)">
<summary>
Raises BeforeMaximize event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNav.OnBeforeRestore(DevComponents.DotNetBar.Controls.CancelSourceEventArgs)">
<summary>
Raises BeforeRestore event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNav.OnBeforeOpen(DevComponents.DotNetBar.Controls.CancelSourceEventArgs)">
<summary>
Raises BeforeOpen event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNav.OnBeforeClose(DevComponents.DotNetBar.Controls.CancelSourceEventArgs)">
<summary>
Raises BeforeClose event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNav.OnSelectedItemChanged(System.EventArgs)">
<summary>
Raises SelectedItemChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNav.EnableSplitter">
<summary>
Indicates whether splitter that is located on right hand side of open control is visible and enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNav.EnableClose">
<summary>
Indicates whether button which folds/closes the control is visible.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.Controls.SideNav.EnableMaximize" -->
<member name="P:DevComponents.DotNetBar.Controls.SideNav.Items">
<summary>
Returns collection of items on a bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNav.IsClosed">
<summary>
Gets or sets whether control is closed, i.e. whether selected item panel is shown or not. When closed
any selected item is unselected and selected panel hidden.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNav.IsMenuExpanded">
<summary>
Indicates whether side menu is expanded, i.e. shows both image and text. When menu is collapsed only image is shown.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.SideNav.IsMenuExpandedChanged">
<summary>
Occurs when IsMenuExpanded property has changed its value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNav.AnimationTime">
<summary>
Indicates the animation time in milliseconds for operations that perform visual animation of transition. Set to zero to disable animation.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.SideNav.BeforeMaximize">
<summary>
Occurs before the control is maximized and allows you to cancel that.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.SideNav.BeforeRestore">
<summary>
Occurs before the control is restored and allows you to cancel that.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.SideNav.BeforeOpen">
<summary>
Occurs before the control is opened and allows you to cancel that.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.SideNav.BeforeClose">
<summary>
Occurs before the control is closed and allows you to cancel that.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNav.SelectedItem">
<summary>
Gets currently selected item. Only items with Panel assigned can be selected.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.SideNav.SelectedItemChanged">
<summary>
Occurs when SelectedItem changes.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNav.SideNavStrip">
<summary>
Gets reference to internal SideNavStrip control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.CancelSourceEventHandler">
<summary>
Defines delegate for the CancelSource events.
</summary>
<param name="sender"></param>
<param name="ea"></param>
</member>
<member name="T:DevComponents.DotNetBar.Controls.CancelSourceEventArgs">
<summary>
Event arguments for CancelSourceEventHandler
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.CancelSourceEventArgs.Source">
<summary>
Gets the source of the event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.CancelSourceEventArgs.Data">
<summary>
Gets any optional data that is associated with the event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CancelSourceEventArgs.#ctor(DevComponents.DotNetBar.eEventSource)">
<summary>
Creates new instance of the object.
</summary>
<param name="source">Source of event</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.CancelSourceEventArgs.#ctor(DevComponents.DotNetBar.eEventSource,System.Object)">
<summary>
Creates new instance of the object.
</summary>
<param name="source">Source of event</param>
<param name="data">Optional data associated with the event.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNavItem.#ctor">
<summary>
Initializes a new instance of the MetroTabItem class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNavItem.Select">
<summary>
Selects the tab.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNavItem.OnCheckedChanged">
<summary>
Called after Checked property has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNavItem.OnClick">
<summary>
Occurs just before Click event is fired.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNavItem.OnVisibleChanged(System.Boolean)">
<summary>
Called when Visibility of the items has changed.
</summary>
<param name="bVisible">New Visible state.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNavItem.OnStyleChanged">
<summary>
Occurs after item visual style has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.ImageRenderBounds">
<summary>
Gets or sets cached image rendering bounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.TextRenderBounds">
<summary>
Gets or sets cached text rendering bounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.Panel">
<summary>
Gets or sets the panel assigned to this tab item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.OptionGroup">
<summary>
Gets or set the Group item belongs to. The groups allows a user to choose from mutually exclusive options within the group. The choice is reflected by Checked property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.SubItems">
<summary>
Returns the collection of sub items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.BackColors">
<summary>
Indicates the array of colors that when set are used to draw the background of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.BorderColors">
<summary>
Indicates the array of colors that when set are used to draw the border of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.PaddingHorizontal">
<summary>
Gets or sets the additional padding added around the tab item in pixels. Default value is 0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.Title">
<summary>
Indicates an optional title for the associated panel. If not set item text is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.IsSystemMenu">
<summary>
Gets or sets whether this item acts as the SideNav control system menu which collapses and expands the SideNav items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.AutoCollapseOnClick">
<summary>
Indicates whether the item will auto-collapse (fold) when clicked.
When item is on popup menu and this property is set to false, menu will not
close when item is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.AutoExpandOnClick">
<summary>
Indicates whether the item will auto-expand when clicked.
When item is on top level bar and not on menu and contains sub-items, sub-items will be shown only if user
click the expand part of the button. Setting this propert to true will expand the button and show sub-items when user
clicks anywhere inside of the button. Default value is false which indicates that button is expanded only
if its expand part is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.CanCustomize">
<summary>
Gets or sets whether item can be customized by end user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.Checked">
<summary>
Gets or set a value indicating whether the button is in the checked state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.ClickAutoRepeat">
<summary>
Gets or sets whether Click event will be auto repeated when mouse button is kept pressed over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.ClickRepeatInterval">
<summary>
Gets or sets the auto-repeat interval for the click event when mouse button is kept pressed over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.Enabled">
<summary>
Gets or sets a value indicating whether the item is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.MenuVisibility">
<summary>
Indicates item's visiblity when on pop-up menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.PersonalizedMenus">
<summary>
Indicates when menu items are displayed when MenuVisiblity is set to VisibleIfRecentlyUsed and RecentlyUsed is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.PopupAnimation">
<summary>
Indicates Animation type for Popups.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.PopupFont">
<summary>
Indicates the font that will be used on the popup window.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.PopupType">
<summary>
Indicates whether sub-items are shown on popup Bar or popup menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.PopupWidth">
<summary>
Specifies the inital width for the Bar that hosts pop-up items. Applies to PopupType.Toolbar only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.ShowSubItems">
<summary>
Gets or sets whether item will display sub items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.Stretch">
<summary>
Gets or sets whether the item expands automatically to fill out the remaining space inside the container. Applies to Items on stretchable, no-wrap Bars only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.SubItemsExpandWidth">
<summary>
Gets or sets the width of the expand part of the button item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.AlternateShortCutText">
<summary>
Gets or set the alternative shortcut text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.BeginGroup">
<summary>
Gets or sets whether item separator is shown before this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.Category">
<summary>
Returns category for this item. If item cannot be customzied using the
customize dialog category is empty string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.HotForeColor">
<summary>
Gets or sets the text color of the button when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.HotTrackingStyle">
<summary>
Indicates the way item is painting the picture when mouse is over it. Setting the value to Color will render the image in gray-scale when mouse is not over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavItem.ButtonStyle">
<summary>
Gets/Sets the button style which controls the appearance of the button elements. Changing the property can display image only, text only or image and text on the button at all times.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.SideNavItemRendererEventArgs">
<summary>
Provides data for the SideNavItem rendering events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SideNavItemRendererEventArgs.Item">
<summary>
Gets or sets the reference to the item being rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SideNavItemRendererEventArgs.Graphics">
<summary>
Gets or sets the reference to graphics object.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SideNavItemRendererEventArgs.Cancel">
<summary>
Indicates whether to cancel system rendering of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SideNavItemRendererEventArgs.#ctor(DevComponents.DotNetBar.Controls.SideNavItem,System.Drawing.Graphics)">
<summary>
Creates new instance of the object and initializes it with default values.
</summary>
<param name="item">Reference to the ListBoxItem being rendered.</param>
<param name="g">Reference to the graphics object.</param>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.SideNavColorTable">
<summary>
Defines color table for SideNav control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SideNavColorTable.SideNavItem">
<summary>
Gets or sets the color table for SideNavItem
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SideNavColorTable.TitleBackColor">
<summary>
Gets or sets the background color of SideNav title bar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SideNavColorTable.TitleBorderColors">
<summary>
Gets or sets the border color of the title of SideNav control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SideNavColorTable.ItemsBackColor">
<summary>
Gets or sets the color of the strip which hosts the items.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SideNavColorTable.BorderColors">
<summary>
Gets or sets the border color of the SideNav control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SideNavColorTable.PanelBackColor">
<summary>
Gets or sets the back color of panels that are attached to SideNavItem and displayed when SideNavItem is selected.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.SideNavItemColorTable">
<summary>
Defines color table for SideNavItem
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SideNavItemColorTable.Default">
<summary>
Gets or sets the color table for Default state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SideNavItemColorTable.MouseOver">
<summary>
Gets or sets the color table for MouseOver state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SideNavItemColorTable.Pressed">
<summary>
Gets or sets the color table for Pressed state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SideNavItemColorTable.Selected">
<summary>
Gets or sets the color table for Selected state.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.SideNavItemStateColorTable">
<summary>
Defines state color table for SideNavItem
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SideNavItemStateColorTable.TextColor">
<summary>
Indicates item text color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SideNavItemStateColorTable.BackColors">
<summary>
Gets or sets the background colors for the item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SideNavItemStateColorTable.BackColorsGradientAngle">
<summary>
Gets or sets the back colors gradient angle if there is more than one color in BackColors array.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SideNavItemStateColorTable.BackColorsPositions">
<summary>
Gets or sets the gradient colors positions if there is more than one color in BackColors array.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SideNavItemStateColorTable.BorderColors">
<summary>
Gets or sets the border colors for the item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SideNavItemStateColorTable.CornerRadius">
<summary>
Indicates the corner radius.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.SideNavPanel">
<summary>
Represents a panel which hosts controls for the SideNavItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNavPanel.OnNonClientSizeChanged(System.EventArgs)">
<summary>
Raises NonClientSizeChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNavPanel.OnScrollBarValueChanged(DevComponents.DotNetBar.Controls.ScrollValueChangedEventArgs)">
<summary>
Raises ScrollBarValueChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNavPanel.OnControlMoved(System.EventArgs)">
<summary>
Raises NonClientSizeChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SideNavStrip.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavStrip.Items">
<summary>
Returns collection of items on a bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SideNavStrip.SelectedItem">
<summary>
Gets currently selected item.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.SlidePanel">
<summary>
Represents the panel which can slide out and into the view.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SlidePanel.OnIsOpenChanged(System.EventArgs)">
<summary>
Raises IsOpenChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SlidePanel.OnSlideSideChanged(DevComponents.DotNetBar.Controls.eSlideSide,DevComponents.DotNetBar.Controls.eSlideSide)">
<summary>
Called when SlideSide property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SlidePanel.OnIsOpenChanged(System.Boolean,System.Boolean)">
<summary>
Called when IsOpen property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SlidePanel.SlideIntoView">
<summary>
Slides panel into the view.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SlidePanel.WaitForCurrentAnimationFinish">
<summary>
Waits for current slide animation to finish and then returns control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SlidePanel.SlideOutOfView">
<summary>
Slides panel out of the view.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SlidePanel.OnAnimationTimeChanged(System.Int32,System.Int32)">
<summary>
Called when AnimationTime property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SlidePanel.OnSlideOutButtonVisibleChanged(System.Boolean,System.Boolean)">
<summary>
Called when SlideOutButtonVisible property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SlidePanel.OnSlideOutButtonSizeChanged(System.Drawing.Size,System.Drawing.Size)">
<summary>
Called when SlideOutButtonSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SlidePanel.ShouldSerializeSlideOutButtonSize">
<summary>
Returns whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SlidePanel.ResetSlideOutButtonSize">
<summary>
Resets property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SlidePanel.OnSlideOutActiveButtonSizeChanged(System.Drawing.Size,System.Drawing.Size)">
<summary>
Called when SlideOutActiveButtonSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SlidePanel.ShouldSerializeSlideOutActiveButtonSize">
<summary>
Returns whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SlidePanel.ResetSlideOutActiveButtonSize">
<summary>
Resets property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SlidePanel.OnSlideOutButtonStyleChanged(DevComponents.DotNetBar.ElementStyle,DevComponents.DotNetBar.ElementStyle)">
<summary>
Called when SlideOutButtonStyle property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SlidePanel.OnCenterContentChanged(System.Boolean,System.Boolean)">
<summary>
Called when CenterContent property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SlidePanel.ShouldSerializeSymbolColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SlidePanel.ResetSymbolColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SlidePanel.OnSymbolChanged(System.String,System.String)">
<summary>
Called when Symbol property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SlidePanel.OnSymbolSetChanged(DevComponents.DotNetBar.eSymbolSet,DevComponents.DotNetBar.eSymbolSet)">
<summary>
Called when SymbolSet property value changes.
</summary>
<param name="oldValue">Indciates old value</param>
<param name="newValue">Indicates new value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SlidePanel.OnSymbolSizeChanged(System.Single,System.Single)">
<summary>
Called when SymbolSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="E:DevComponents.DotNetBar.Controls.SlidePanel.IsOpenChanged">
<summary>
Occurs when IsOpen property value has changed, i.e. slide-panel is shown or hidden.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SlidePanel.SlideSide">
<summary>
Gets or sets side panel slides into.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SlidePanel.IsOpen">
<summary>
Gets or sets whether panel is open. When this property is changed panel will slide in or out of the view.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SlidePanel.UsesBlockingAnimation">
<summary>
Gets or sets whether panel uses modal animation, meaning when IsOpen property is set the call is not returned until animation is complete.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SlidePanel.OpenBounds">
<summary>
Gets or sets the open panel bounds. When control IsOpen=false and panel is collapsed its original bounds are stored in OpenBounds property and restored once panel is open.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SlidePanel.AnimationTime">
<summary>
Gets or sets the animation duration time in milliseconds. Setting this property to 0 will disable slide animation.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SlidePanel.SlideOutButtonVisible">
<summary>
Gets or sets whether slide out button is shown when panel is out of the view and which allows panel to be shown.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SlidePanel.SlideOutButtonSize">
<summary>
Gets or sets the slide-out buttton size in default state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SlidePanel.SlideOutActiveButtonSize">
<summary>
Gets or sets active (mouse over) slide out button size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SlidePanel.SlideOutButtonStyle">
<summary>
Gets or sets slide-out button style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SlidePanel.CenterContent">
<summary>
Gets or sets whether panel centers the Controls inside of it. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SlidePanel.SymbolColor">
<summary>
Gets or sets the color of the Symbol displayed on slideout button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SlidePanel.SymbolRealized">
<summary>
Gets the realized symbol string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SlidePanel.Symbol">
<summary>
Indicates the symbol displayed on face of the slideout button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SlidePanel.SymbolSet">
<summary>
Gets or sets the symbol set used to represent the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SlidePanel.SymbolSize">
<summary>
Indicates the size of the symbol in points.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eSlideSide">
<summary>
Defines the side SlidePanel slides into.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.SliderButton">
<summary>
Represents the slider button that is used by SlidePanel when collapsed to slide it back into the view.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SliderButton.#ctor(DevComponents.DotNetBar.Controls.SlidePanel)">
<summary>
Initializes a new instance of the SliderButton class.
</summary>
<param name="slidePanel"></param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SliderButton.OnAutoTopMostEnabledChanged(System.Boolean,System.Boolean)">
<summary>
Called when AutoTopMostEnabled property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SliderButton.OnSliderSizeChanged(System.Drawing.Size,System.Drawing.Size)">
<summary>
Called when SliderSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SliderButton.OnActiveSliderSizeChanged(System.Drawing.Size,System.Drawing.Size)">
<summary>
Called when ActiveSliderSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SliderButton.OnIsActiveChanged(System.Boolean,System.Boolean)">
<summary>
Called when IsActive property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SliderButton.OnIsMouseDownChanged(System.Boolean,System.Boolean)">
<summary>
Called when IsMouseDown property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SliderButton.ShouldSerializeSymbolColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SliderButton.ResetSymbolColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SliderButton.OnSymbolChanged(System.String,System.String)">
<summary>
Called when Symbol property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SliderButton.OnSymbolSetChanged(DevComponents.DotNetBar.eSymbolSet,DevComponents.DotNetBar.eSymbolSet)">
<summary>
Called when SymbolSet property value changes.
</summary>
<param name="oldValue">Indciates old value</param>
<param name="newValue">Indicates new value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SliderButton.OnSymbolSizeChanged(System.Single,System.Single)">
<summary>
Called when SymbolSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SliderButton.AutoTopMostEnabled">
<summary>
Gets or sets whether slider button automatically checks whether its top-most control on the form, i.e. visible at all times on top of other controls
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SliderButton.SliderSize">
<summary>
Gets or sets the slider size in default state. Notice that size specified here applies to Left and Right SlidePanel positions. For Top and Bottom positions the Width and Height are interchaged.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SliderButton.ActiveSliderSize">
<summary>
Gets or sets the slider size in active state. Notice that size specified here applies to Left and Right SlidePanel positions. For Top and Bottom positions the Width and Height are interchaged.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SliderButton.IsActive">
<summary>
Gets or sets whether slider button is in active state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SliderButton.Style">
<summary>
Gets or sets the style associated with the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SliderButton.SymbolColor">
<summary>
Gets or sets the color of the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SliderButton.SymbolRealized">
<summary>
Gets the realized symbol string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SliderButton.Symbol">
<summary>
Indicates the symbol displayed on face of the button instead of the image. Setting the symbol overrides the image setting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SliderButton.SymbolSet">
<summary>
Gets or sets the symbol set used to represent the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SliderButton.SymbolSize">
<summary>
Indicates the size of the symbol in points.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.Slider">
<summary>
Represents the Slider control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Slider.OnIncreaseButtonClick(System.EventArgs)">
<summary>
Raises the IncreaseButtonClick event.
</summary>
<param name="e">Provides event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Slider.OnDecreaseButtonClick(System.EventArgs)">
<summary>
Raises the DecreaseButtonClick event.
</summary>
<param name="e">Provides event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Slider.OnValueChanged(System.EventArgs)">
<summary>
Raises the ValueChanged event.
</summary>
<param name="e">Provides event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Slider.OnValueChanging(DevComponents.DotNetBar.CancelIntValueEventArgs)">
<summary>
Raises the ValueChanging event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Slider.PerformStep">
<summary>
Advances the current position of the slider by the amount of the Step property.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Slider.ShouldSerializeTextColor">
<summary>
Returns whether property should be serialized. Used by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Slider.ResetTextColor">
<summary>
Resets the property to default value. Used by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Slider.RecalcLayout">
<summary>
Forces the button to perform internal layout.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.Slider.OnCommandChanged">
<summary>
Called when Command property value changes.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.Slider.ValueChanged">
<summary>
Occurs after Value property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.Slider.ValueChanging">
<summary>
Occurs before Value property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.Slider.IncreaseButtonClick">
<summary>
Occurs when Increase button is clicked using mouse.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.Slider.DecreaseButtonClick">
<summary>
Occurs when Decrease button is clicked using mouse.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Slider.EnableMarkup">
<summary>
Gets or sets whether text-markup support is enabled for controls Text property. Default value is true.
Set this property to false to display HTML or other markup in the control instead of it being parsed as text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Slider.LabelPosition">
<summary>
Gets or sets the text label position in relationship to the slider. Default value is Left.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Slider.LabelVisible">
<summary>
Gets or sets whether the text label next to the slider is displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Slider.LabelWidth">
<summary>
Gets or sets the width of the label part of the item in pixels. Value must be greater than 0. Default value is 38.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Slider.Maximum">
<summary>
Gets or sets the maximum value of the range of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Slider.Minimum">
<summary>
Gets or sets the minimum value of the range of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Slider.Value">
<summary>
Gets or sets the current position of the slider.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Slider.Step">
<summary>
Gets or sets the amount by which a call to the PerformStep method increases the current position of the slider. Value must be greater than 0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Slider.TextColor">
<summary>
Gets or sets the color of the label text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Slider.TrackMarker">
<summary>
Gets or sets whether vertical line track marker is displayed on the slide line. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Slider.IncreaseTooltip">
<summary>
Gets or sets the tooltip for the Increase button of the slider.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Slider.DecreaseTooltip">
<summary>
Gets or sets the tooltip for the Decrease button of the slider.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Slider.SliderOrientation">
<summary>
Gets or sets the slider orientation. Default value is horizontal.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Slider.SliderItem">
<summary>
Gets the SliderItem.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Slider.ColorTable">
<summary>
Gets or sets the custom color table for the item. Color table here will override all system color table settings.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Slider.Command">
<summary>
Gets or sets the command assigned to the item. Default value is null.
<remarks>Note that if this property is set to null Enabled property will be set to false automatically to disable the item.</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.Slider.CommandParameter">
<summary>
Gets or sets user defined data value that can be passed to the command when it is executed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.SymbolBox">
<summary>
Represents the control which displays symbol from symbols library.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SymbolBox.#ctor">
<summary>
Initializes a new instance of the SymbolBox class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SymbolBox.GetColorScheme">
<summary>
Returns the color scheme used by control. Color scheme for Office2007 style will be retrieved from the current renderer instead of
local color scheme referenced by ColorScheme property.
</summary>
<returns>An instance of ColorScheme object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SymbolBox.ResetBackgroundStyle">
<summary>
Resets style to default value. Used by windows forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SymbolBox.OnSymbolChanged(System.String,System.String)">
<summary>
Called when Symbol property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SymbolBox.OnSymbolSetChanged(DevComponents.DotNetBar.eSymbolSet,DevComponents.DotNetBar.eSymbolSet)">
<summary>
Called when SymbolSet property value changes.
</summary>
<param name="oldValue">Indciates old value</param>
<param name="newValue">Indicates new value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SymbolBox.ShouldSerializeSymbolColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SymbolBox.ResetSymbolColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SymbolBox.OnSymbolSizeChanged(System.Single,System.Single)">
<summary>
Called when SymbolSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SymbolBox.BackgroundStyle">
<summary>
Specifies the background style of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SymbolBox.SymbolRealized">
<summary>
Gets the realized symbol string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SymbolBox.Symbol">
<summary>
Indicates the symbol displayed on face of the button instead of the image. Setting the symbol overrides the image setting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SymbolBox.SymbolSet">
<summary>
Gets or sets the symbol set used to represent the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SymbolBox.SymbolColor">
<summary>
Gets or sets the color of the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SymbolBox.SymbolSize">
<summary>
Indicates the size of the symbol in points.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormItemColorTable.Name">
<summary>
Gets or sets the name of the color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormItemColorTable.Default">
<summary>
Gets or sets the default tab colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormItemColorTable.Disabled">
<summary>
Gets or sets the disabled tab colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormItemColorTable.Selected">
<summary>
Gets or sets the selected tab colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormItemColorTable.MouseOver">
<summary>
Gets or sets the colors when mouse is over the tab but tab is not selected.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormItemColorTable.CloseButton">
<summary>
Gets or sets colors for the tab close button.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.TabFormItemStateColorTable">
<summary>
Defines the color table for RibbonTabItem states.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormItemStateColorTable.TextColor">
<summary>
Indicates item text color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormItemStateColorTable.BackColors">
<summary>
Gets or sets the background colors for the item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormItemStateColorTable.BackColorsGradientAngle">
<summary>
Gets or sets the back colors gradient angle if there is more than one color in BackColors array.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormItemStateColorTable.BackColorsPositions">
<summary>
Gets or sets the gradient colors positions if there is more than one color in BackColors array.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormItemStateColorTable.BorderColors">
<summary>
Gets or sets the item border colors.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.TabFormItemStateColorTable.Clone">
<summary>
Creates a copy of the state color table.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.TabCloseButtonColorTable">
<summary>
Defines color table for TabFormItem close button displayed on tabs.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabCloseButtonColorTable.Normal">
<summary>
Colors for the button in default state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabCloseButtonColorTable.MouseOver">
<summary>
Colors for button in mouse over state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabCloseButtonColorTable.Pressed">
<summary>
Colors for button when pressed with mouse state.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.TabCloseButtonStateColorTable">
<summary>
Defines state color table for TabFormItem close button displayed on tabs.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabCloseButtonStateColorTable.BackColors">
<summary>
Gets or sets the background colors for the item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabCloseButtonStateColorTable.BackColorsGradientAngle">
<summary>
Gets or sets the back colors gradient angle if there is more than one color in BackColors array.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabCloseButtonStateColorTable.BackColorsPositions">
<summary>
Gets or sets the gradient colors positions if there is more than one color in BackColors array.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabCloseButtonStateColorTable.ForeColor">
<summary>
Indicates item sign color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabCloseButtonStateColorTable.BorderColor">
<summary>
Indicates item border color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.OfficeTabFormPainter.ColorTable">
<summary>
Gets or sets color table used by renderer.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormPainterArgs.Graphics">
<summary>
Gets or sets Graphics object group is rendered on.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormPainterArgs.TabParentForm">
<summary>
Gets or sets the reference to TabParentForm being rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormPainterArgs.Cancel">
<summary>
Indicates whether to cancel system rendering of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabParentForm.OnPrepareModalPanelBounds(DevComponents.DotNetBar.Metro.ModalPanelBoundsEventArgs)">
<summary>
Raises PrepareModalPanelBounds event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabParentForm.#ctor">
<summary>
Initializes a new instance of the MetroForm class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabParentForm.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabParentForm.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabParentForm.ShowModalPanel(System.Windows.Forms.Control)">
<summary>
Shows the panel control in the center of the form and covers all non system controls making the panel effectively modal.
</summary>
<param name="panel">Control to show.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabParentForm.ShowModalPanel(System.Windows.Forms.Control,DevComponents.DotNetBar.Controls.eSlideSide)">
<summary>
Shows the panel control in the center of the form by sliding it in from specified side and covers all non system controls making the panel effectively modal.
</summary>
<param name="panel">Panel to show.</param>
<param name="slideFromSide">Side to slide panel into the view from.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabParentForm.ShowModalPanel(System.Windows.Forms.Control,DevComponents.DotNetBar.Controls.eSlideSide,System.Int32)">
<summary>
Shows the panel control in the center of the form by sliding it in from specified side and covers all non system controls making the panel effectively modal.
</summary>
<param name="panel">Panel to show.</param>
<param name="slideFromSide">Side to slide panel into the view from.</param>
<param name="animationTimeMilliseconds">Slide animation speed in milliseconds.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabParentForm.CloseModalPanel(System.Windows.Forms.Control)">
<summary>
Hides the panel control that was previously shown using ShowModalPanel method.
</summary>
<param name="panel">Control to hide.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabParentForm.CloseModalPanel(System.Windows.Forms.Control,DevComponents.DotNetBar.Controls.eSlideSide)">
<summary>
Hides the panel control that was previously shown using ShowModalPanel method by sliding it out of the view to the specified side.
</summary>
<param name="panel">Control to hide.</param>
<param name="slideOutToSide">Side to slide control into.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabParentForm.GetBorderThickness">
<summary>
Gets effective Border Thickness for the form.
</summary>
<returns>Thickness</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabParentForm.OnBorderThicknessChanged(DevComponents.DotNetBar.Metro.Thickness,DevComponents.DotNetBar.Metro.Thickness)">
<summary>
Called when BorderThickness property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabParentForm.OnBorderColorChanged(DevComponents.DotNetBar.Metro.BorderColors,DevComponents.DotNetBar.Metro.BorderColors)">
<summary>
Called when BorderColor property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabParentForm.WindowsMessageNCHitTest(System.Windows.Forms.Message@)">
<summary>
Called when WM_NCHITTEST message is received.
</summary>
<param name="m">Reference to message data.</param>
<returns>Return true to call base form implementation otherwise return false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabParentForm.WindowsMessageDwmCompositionChanged(System.Windows.Forms.Message@)">
<summary>
Called when WM_DWMCOMPOSITIONCHANGED message is received.
</summary>
<param name="m">Reference to message data.</param>
<returns>Return true to call base form implementation otherwise return false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabParentForm.WindowsMessageNCActivate(System.Windows.Forms.Message@)">
<summary>
Called when WM_NCACTIVATE message is received.
</summary>
<param name="m">Reference to message data.</param>
<returns>Return true to call base form implementation otherwise return false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabParentForm.WindowsMessageNCCalcSize(System.Windows.Forms.Message@)">
<summary>
Called when WM_NCCALCSIZE message is received.
</summary>
<param name="m">Message structure.</param>
<returns>true to call base WndProc otherwise false.</returns>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TabParentForm.PrepareModalPanelBounds">
<summary>
Occurs before modal panel is shown and allows change of modal panel bounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.PreRenderShell">
<summary>
Gets or sets whether MetroShell is pre-rendered when form is shown to make first rendering smoother. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.IsModalPanelDisplayed">
<summary>
Gets whether at least one modal panel is displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.ModalPanelBoundsExcludeStatusBar">
<summary>
Indicates whether modal panel when displayed shows MetroStatusBar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.IsGlassEnabled">
<summary>
Returns whether Windows Glass effects are enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.FormTabsControl">
<summary>
Gets or sets the TabFormControl that is hosted by this form. This property is for internal use only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.Sizable">
<summary>
Gets or sets whether form can be resized.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.BorderThickness">
<summary>
Gets or sets the form border thickness. Default value is empty thickness which indicates that thickness is taken from color table.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.BorderColor">
<summary>
Gets or sets the form border colors.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.IsActive">
<summary>
Gets whether form is active.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.AutoHideTaskBarReduction">
<summary>
Indicates the number of pixels subtracted from form's height or width (depending on taskbar position) when form is maximized and taskbar is in auto-hide state. Default value is 4.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.FormBorderStyle">
<summary>
This property is not to be used with MetroForm.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.FormResizeBorder">
<summary>
Gets or sets the size of the border on the edges of the form that when mouse is over allow for form resizing.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.CloseBoxVisible">
<summary>
Indicates whether Close button in top-right corner of the form is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.AutoScroll">
<summary>
This property cannot be used on MetroAppForm
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.AutoScrollOffset">
<summary>
This property cannot be used on MetroAppForm
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.AutoScrollMargin">
<summary>
This property cannot be used on MetroAppForm
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.AutoScrollMinSize">
<summary>
This property cannot be used on MetroAppForm
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.SystemMenuRestore">
<summary>
Gets or sets text for form system menu Restore item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.SystemMenuMove">
<summary>
Gets or sets text for form system menu Move item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.SystemMenuSize">
<summary>
Gets or sets text for form system menu Size item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.SystemMenuMinimize">
<summary>
Gets or sets text for form system menu Minimize item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.SystemMenuMaximize">
<summary>
Gets or sets text for form system menu Maximize item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabParentForm.SystemMenuClose">
<summary>
Gets or sets text for form system menu Close item.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.TabFormControl">
<summary>
Represents Tabbed Forms control for creating tabbed user interface as replacement for MDI child forms.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormControl.OnPaintTabFormItem(DevComponents.DotNetBar.Controls.PaintTabFormItemEventArgs)">
<summary>
Raises RemovingToken event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormControl.OnBeforeTabFormItemDetach(DevComponents.DotNetBar.Controls.TabFormItemDetachEventArgs)">
<summary>
Raises BeforeTabFormItemDetach event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormControl.OnTabFormItemDetach(DevComponents.DotNetBar.Controls.TabFormItemDetachEventArgs)">
<summary>
Raises TabFormItemDetach event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormControl.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormControl.SetTabPanelStyle(DevComponents.DotNetBar.Controls.TabFormPanel)">
<summary>
Performs the setup of the TabFormPanel with the current style of the TabFormControl Control.
</summary>
<param name="panel">Panel to apply style changes to.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormControl.CreateTab(System.String,System.String,System.Int32)">
<summary>
Creates new Tab at specified position, creates new associated panel and adds them to the control.
</summary>
<param name="text">Specifies the text displayed on the tab.</param>
<param name="name">Specifies the name of the tab</param>
<param name="insertPosition">Specifies the position of the new tab inside of Items collection.</param>
<returns>New instance of the TabFormItem that was created.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormControl.CreateTab(System.String,System.String)">
<summary>
Creates new Tab and associated panel and adds them to the control.
</summary>
<param name="text">Specifies the text displayed on the tab.</param>
<param name="name">Specifies the name of the tab</param>
<returns>New instance of the TabFormItem that was created.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormControl.RecalcLayout">
<summary>
Recalculates layout of the control and applies any changes made to the size or position of the items contained.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormControl.TabStripTitleTextMarkupLinkClick(System.Object,DevComponents.DotNetBar.MarkupLinkClickEventArgs)">
<summary>
Occurs when text markup link is clicked.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormControl.OnCreateNewTab(System.EventArgs)">
<summary>
Raises CreateNewTab event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TabFormControl.PaintTabFormItem">
<summary>
Occurs
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TabFormControl.LocalizeString">
<summary>
Occurs when DotNetBar is looking for translated text for one of the internal text that are
displayed on menus, toolbars and customize forms. You need to set Handled=true if you want
your custom text to be used instead of the built-in system value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TabFormControl.ItemClick">
<summary>
Occurs when Item on control is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TabFormControl.SelectedTabChanged">
<summary>
Occurs after selected tab has changed. You can use
<see cref="P:DevComponents.DotNetBar.Controls.TabFormControl.SelectedTab">TabFormControl.SelectedTab</see>
property to get reference to newly selected tab.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TabFormControl.TitleTextMarkupLinkClick">
<summary>
Occurs when text markup link from TitleText markup is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TabFormControl.BeforeTabFormItemDetach">
<summary>
Occurs before TabFormItem is detached and gives you opportunity to cancel the action or provide your own new TabParentForm and TabFormControl.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TabFormControl.TabFormItemDetach">
<summary>
Occurs after TabFormItem has been detached and is added to the new form and tab control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.TabsCount">
<summary>
Returns current number of tabs visible and hidden on the tab strip.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.ShowIcon">
<summary>
Indicates whether Form.Icon is shown in top-left corner.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.Controls.TabFormControl.TitleText" -->
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.GlobalContextMenuBar">
<summary>
Gets or sets the Context menu bar associated with the this control which is used as part of Global Items feature. The context menu
bar assigned here will be used to search for the items with the same Name or GlobalName property so global properties can be propagated when changed.
You should assign this property to enable the Global Items feature to reach your ContextMenuBar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.CaptionVisible">
<summary>
Gets or sets whether custom caption and quick access toolbar provided by the control is visible. Default value is false.
This property should be set to true when control is used on MetroAppForm.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.CaptionFont">
<summary>
Gets or sets the font for the form caption text when CaptionVisible=true. Default value is NULL which means that system font is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.CaptionHeight">
<summary>
Gets or sets the explicit height of the caption provided by control. Caption height when set is composed of the TabGroupHeight and
the value specified here. Default value is 0 which means that system default caption size is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.BackgroundStyle">
<summary>
Specifies the background style of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.SelectedTab">
<summary>
Gets or sets the currently selected TabFormItem. TabFormItems are selected using the Checked property. Only a single
TabFormItem can be selected (Checked) at any given time.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.NewTabItemVisible">
<summary>
Indicates whether new tab item which allows creation of new tab when clicked is visible. When visible you need to handle CreateNewTab event and create your new tab in event handler.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TabFormControl.CreateNewTab">
<summary>
Occurs when new tab item is clicked by end user and allows you to create and add new tab to the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.TabStrip">
<summary>
Returns reference to internal tab-strip control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.Items">
<summary>
Returns collection of items on a bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.CaptionItems">
<summary>
Gets collection of items displayed in control captions, if it is visible (CaptionVisible=true).
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.ColorTable">
<summary>
Gets or sets the custom color table for the control. When set this color table overrides all system color settings for control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.MouseWheelTabScrollEnabled">
<summary>
Gets or sets whether mouse wheel scrolls through the tabs. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.Images">
<summary>
ImageList for images used on Items. Images specified here will always be used on menu-items and are by default used on all Bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.ImagesMedium">
<summary>
ImageList for medium-sized images used on Items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.ImagesLarge">
<summary>
ImageList for large-sized images used on Items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.TabStop">
<summary>
Gets or sets a value indicating whether the user can give the focus to this control using the TAB key. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.TabStripDock">
<summary>
Gets or sets the side tab-strip is docked to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.TabStripFont">
<summary>
Gets or sets the font tab items are displayed with.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormControl.IsAutoCreated">
<summary>
Gets or sets whether this TabFormControl was auto-created as result of end-user tearing off the tab.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eTabFormStripControlDock">
<summary>
Specifies dock side for tab form strip control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.PaintTabFormItemEventHandler">
<summary>
Defines delegate for the PaintTabFormItem event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.PaintTabFormItemEventArgs">
<summary>
Defines delegate for the PaintTabFormItem event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.PaintTabFormItemEventArgs.Tab">
<summary>
Gets reference to the tab being painted.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.PaintTabFormItemEventArgs.Graphics">
<summary>
Gets reference to the graphic canvas for painting.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.PaintTabFormItemEventArgs.PaintDefault">
<summary>
Gets or sets whether default painting for the item is performed, default value is true. Set to false to disable internal painting.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.TabFormItem">
<summary>
Represents a tab in Tabbed Form user interface.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormItem.#ctor">
<summary>
Initializes a new instance of the TabFormItem class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormItem.PaintCustom(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Returns true if custom painting is performed and internal painting should be bypassed.
</summary>
<param name="itemPaintArgs"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormItem.Select">
<summary>
Selects the tab.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormItem.OnCheckedChanged">
<summary>
Called after Checked property has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormItem.OnClick">
<summary>
Occurs just before Click event is fired.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormItem.OnVisibleChanged(System.Boolean)">
<summary>
Called when Visibility of the items has changed.
</summary>
<param name="bVisible">New Visible state.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormItem.OnStyleChanged">
<summary>
Occurs after item visual style has changed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormItem.DefaultColorTableKey">
<summary>
Gets color table key for the default tab color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormItem.GreenColorTableKey">
<summary>
Gets color table key for the green tab color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormItem.MagentaColorTableKey">
<summary>
Gets color table key for the magenta tab color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormItem.OrangeColorTableKey">
<summary>
Gets color table key for the orange tab color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormItem.RedColorTableKey">
<summary>
Gets color table key for the red tab color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormItem.BlueColorTableKey">
<summary>
Gets color table key for the blue tab color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormItem.YellowColorTableKey">
<summary>
Gets color table key for the yellow tab color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormItem.PurpleColorTableKey">
<summary>
Gets color table key for the purple tab color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormItem.CyanColorTableKey">
<summary>
Gets color table key for the cyan tab color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormItem.BlueMistColorTableKey">
<summary>
Gets color table key for the blue mist tab color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormItem.PurpleMistColorTableKey">
<summary>
Gets color table key for the purple mist tab color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormItem.TanColorTableKey">
<summary>
Gets color table key for the tan tab color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormItem.LemonLimeColorTableKey">
<summary>
Gets color table key for the lemon lime tab color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormItem.AppleColorTableKey">
<summary>
Gets color table key for the apple tab color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormItem.TealColorTableKey">
<summary>
Gets color table key for the teal tab color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormItem.RedChalkColorTableKey">
<summary>
Gets color table key for the red chalk tab color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormItem.SilverColorTableKey">
<summary>
Gets color table key for the silver tab color table.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.CloseButtonBounds">
<summary>
Gets or sets the close button bounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.ImageRenderBounds">
<summary>
Gets or sets cached image rendering bounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.TextRenderBounds">
<summary>
Gets or sets cached text rendering bounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.PaddingHorizontal">
<summary>
Gets or sets the additional padding added around the tab item in pixels. Default value is 0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.CloseButtonVisible">
<summary>
Indicates whether close button is visible on the tabs which when clicked closes the tab. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.ReducedSize">
<summary>
Gets or sets whether size of the tab has been reduced below the default calculated size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.ColorTable">
<summary>
Gets or sets the predefined color of the tab. Default value is eTabFormItemColor.Default
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.Panel">
<summary>
Gets or sets the panel assigned to this tab item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.OptionGroup">
<summary>
Gets or set the Group item belongs to. The groups allows a user to choose from mutually exclusive options within the group. The choice is reflected by Checked property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.SubItems">
<summary>
Returns the collection of sub items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.AutoCollapseOnClick">
<summary>
Indicates whether the item will auto-collapse (fold) when clicked.
When item is on popup menu and this property is set to false, menu will not
close when item is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.AutoExpandOnClick">
<summary>
Indicates whether the item will auto-expand when clicked.
When item is on top level bar and not on menu and contains sub-items, sub-items will be shown only if user
click the expand part of the button. Setting this propert to true will expand the button and show sub-items when user
clicks anywhere inside of the button. Default value is false which indicates that button is expanded only
if its expand part is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.CanCustomize">
<summary>
Gets or sets whether item can be customized by end user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.Checked">
<summary>
Gets or set a value indicating whether tab is selected.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.ClickAutoRepeat">
<summary>
Gets or sets whether Click event will be auto repeated when mouse button is kept pressed over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.ClickRepeatInterval">
<summary>
Gets or sets the auto-repeat interval for the click event when mouse button is kept pressed over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.Enabled">
<summary>
Gets or sets a value indicating whether the item is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.MenuVisibility">
<summary>
Indicates item's visiblity when on pop-up menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.PersonalizedMenus">
<summary>
Indicates when menu items are displayed when MenuVisiblity is set to VisibleIfRecentlyUsed and RecentlyUsed is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.PopupAnimation">
<summary>
Indicates Animation type for Popups.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.PopupFont">
<summary>
Indicates the font that will be used on the popup window.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.PopupType">
<summary>
Indicates whether sub-items are shown on popup Bar or popup menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.PopupWidth">
<summary>
Specifies the inital width for the Bar that hosts pop-up items. Applies to PopupType.Toolbar only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.ShowSubItems">
<summary>
Gets or sets whether item will display sub items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.Stretch">
<summary>
Gets or sets whether the item expands automatically to fill out the remaining space inside the container. Applies to Items on stretchable, no-wrap Bars only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.SubItemsExpandWidth">
<summary>
Gets or sets the width of the expand part of the button item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.AlternateShortCutText">
<summary>
Gets or set the alternative shortcut text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.BeginGroup">
<summary>
Gets or sets whether item separator is shown before this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.Category">
<summary>
Returns category for this item. If item cannot be customzied using the
customize dialog category is empty string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.HotForeColor">
<summary>
Gets or sets the text color of the button when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.HotTrackingStyle">
<summary>
Indicates the way item is painting the picture when mouse is over it. Setting the value to Color will render the image in gray-scale when mouse is not over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.ButtonStyle">
<summary>
Gets/Sets the button style which controls the appearance of the button elements. Changing the property can display image only, text only or image and text on the button at all times.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.BackColors">
<summary>
Indicates the array of colors that when set are used to draw the background of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItem.CustomColorTable">
<summary>
Gets or sets the custom color table for the tab. When set this color table overrides all color settings for a tab.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eTabFormItemColor">
<summary>
Specifies predefined color assigned to Tab Form Item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormPanel.TabFormItem">
<summary>
Gets the TabFormItem this panel is associated with
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.TabFormStateColorTable">
<summary>
Defines state color table for TabParentForm.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormStateColorTable.CaptionBackColors">
<summary>
Gets or sets the colors for the top part of the background.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormStateColorTable.CaptionBackColorsGradientAngle">
<summary>
Gets or sets the back colors gradient angle if there is more than one color in BackColors array.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormStateColorTable.CaptionBackColorsPositions">
<summary>
Gets or sets the gradient colors positions if there is more than one color in BackColors array.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormStateColorTable.CaptionText">
<summary>
Gets or sets the color of caption text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormStateColorTable.BorderColors">
<summary>
Gets or sets the border colors.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.TabFormStripContainerItem">
<summary>
Defines the internal container item for the ribbon strip control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripContainerItem.#ctor(DevComponents.DotNetBar.Controls.TabFormStripControl)">
<summary>
Creates new instance of the class and initializes it with the parent RibbonStrip control.
</summary>
<param name="parent">Reference to parent RibbonStrip control</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripContainerItem.OnItemAdded(DevComponents.DotNetBar.BaseItem)">
<summary>
Occurs after an item has been added to the container. This procedure is called on both item being added and the parent of the item. To distinguish between those two states check the item parameter.
</summary>
<param name="item">When occurring on the parent this will hold the reference to the item that has been added. When occurring on the item being added this will be null (Nothing).</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripContainerItem.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Paints this base container
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripContainerItem.Copy">
<summary>
Returns copy of GenericItemContainer item
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripContainerItem.OnCreateNewTab(System.EventArgs)">
<summary>
Raises CreateNewTab event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripContainerItem.ItemAtLocation(System.Int32,System.Int32)">
<summary>
Return Sub Item at specified location
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripContainerItem.CaptionItems">
<summary>
Gets the list of the items displayed in form caption if its visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripContainerItem.ScrollButtonWidth">
<summary>
Gets or sets the scroll button width.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripContainerItem.ScrollStep">
<summary>
Indicates the scroll in pixels each time scroll button is pressed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripContainerItem.TabsContainer">
<summary>
Gets reference to internal ribbon strip container that contains tabs and/or other items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripContainerItem.CaptionContainer">
<summary>
Gets reference to internal caption container item that contains the quick toolbar, start button and system caption item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripContainerItem.NewTabItemVisible">
<summary>
Indicates whether new tab item which allows creation of new tab when clicked is visible. When visible you need to handle CreateNewTab event and create your new tab in event handler.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TabFormStripContainerItem.CreateNewTab">
<summary>
Occurs when new tab item is clicked by end user and allows you to create and add new tab to the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripContainerItem.Expanded">
<summary>
Gets or sets a value indicating whether the item is expanded or not. For Popup items this would indicate whether the item is popped up or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripContainerItem.SubItemsImageSize">
<summary>
When parent items does recalc size for its sub-items it should query
image size and store biggest image size into this property.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "T:DevComponents.DotNetBar.Controls.TabFormItemsSimpleContainer" -->
<member name="T:DevComponents.DotNetBar.SimpleItemContainer">
<summary>
Represents simple item container which orders items horizontally and support all ItemAlignment settings.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SimpleItemContainer.#ctor">
<summary>
Initializes a new instance of the SimpleItemContainer class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SimpleItemContainer.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SimpleItemContainer.InternalCopyToItem(DevComponents.DotNetBar.SimpleItemContainer)">
<summary>
Copies the item specific properties to new instance of the item.
</summary>
<param name="copy">New instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.SimpleItemContainer.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the item specific properties to new instance of the item.
</summary>
<param name="copy">New instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.SimpleItemContainer.SetSystemContainer(System.Boolean)">
<summary>
Sets whether container is used as system container internally by DotNetBar.
</summary>
<param name="b">true or false to indicate whether container is system container or not.</param>
</member>
<member name="M:DevComponents.DotNetBar.SimpleItemContainer.OnItemSpacingChanged(System.Int32,System.Int32)">
<summary>
Called when ItemSpacing property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="P:DevComponents.DotNetBar.SimpleItemContainer.MinimumSize">
<summary>
Gets or sets the minimum size of the container. Either Width or Height can be set or both. Default value is 0,0 which means
that size is automatically calculated.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SimpleItemContainer.SystemContainer">
<summary>
Returns whether instance of the item container is used as system container internally by DotNetBar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SimpleItemContainer.ItemSpacing">
<summary>
Indicates the spacing between items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SimpleItemContainer.BeginGroupSpacing">
<summary>
Indicates additional spacing between item when its BeginGroup property is set.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SimpleItemContainer.LayoutOrientation">
<summary>
Specifies the layout orientation
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SimpleItemContainer.EqualizeButtonSize">
<summary>
Indicates whether all items are resized to be of the size equal to largest item in the container
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SimpleItemContainer.PaddingLeft">
<summary>
Indicates left side padding within container.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SimpleItemContainer.PaddingRight">
<summary>
Indicates right side padding within container.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SimpleItemContainer.OverlapSpacing">
<summary>
Gets overlap spacing for specific item types specified by OverlapType in the container.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SimpleItemContainer.OverlapType">
<summary>
Gets the type of the item that will overlap.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormItemsSimpleContainer.ItemAtLocation(System.Int32,System.Int32)">
<summary>
Return Sub Item at specified location
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormItemsSimpleContainer.OnItemAdded(DevComponents.DotNetBar.BaseItem)">
<summary>
Occurs after an item has been added to the container. This procedure is called on both item being added and the parent of the item. To distinguish between those two states check the item parameter.
</summary>
<param name="item">When occurring on the parent this will hold the reference to the item that has been added. When occurring on the item being added this will be null (Nothing).</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormItemsSimpleContainer.OnAfterItemRemoved(DevComponents.DotNetBar.BaseItem,System.Int32)">
<summary>
Occurs after an item has been removed.
</summary>
<param name="item">Item being removed.</param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormItemsSimpleContainer.Expanded">
<summary>
Gets or sets a value indicating whether the item is expanded or not. For Popup items this would indicate whether the item is popped up or not.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.TabFormStripControl">
<summary>
Represents tabbed UI strip control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripControl.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripControl.InternalTitleTextMarkupLinkClick(System.Object,System.EventArgs)">
<summary>
Occurs when text markup link is clicked.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripControl.GetColorScheme">
<summary>
Returns the color scheme used by control. Color scheme for Office2007 style will be retrived from the current renderer instead of
local color scheme referenced by ColorScheme property.
</summary>
<returns>An instance of ColorScheme object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripControl.GetCaptionHeight">
<summary>
Returns effective caption height.
</summary>
<returns>Caption height.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripControl.GetAutoSizeHeight">
<summary>
Returns automatically calculated height of the control given current content.
</summary>
<returns>Height in pixels.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripControl.GetItems(System.String)">
<summary>
Returns the collection of items with the specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripControl.GetItems(System.String,System.Type)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripControl.GetItems(System.String,System.Type,System.Boolean)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<param name="useGlobalName">Indicates whether GlobalName property is used for searching.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripControl.GetItem(System.String)">
<summary>
Returns the first item that matches specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripControl.OnPopupItemRightClick(DevComponents.DotNetBar.BaseItem)">
<summary>
Called when item on popup container is right-clicked.
</summary>
<param name="item">Instance of the item that is right-clicked.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripControl.StartFormMove">
<summary>
Starts moving of the parent form action which happens when user attempts to drag the form caption.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripControl.HitTestCaption(System.Drawing.Point)">
<summary>
Returns true if point is inside the caption area.
</summary>
<param name="p">Client point coordinates.</param>
<returns>True if point is inside of caption area otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripControl.CloseTab(DevComponents.DotNetBar.Controls.TabFormItem,DevComponents.DotNetBar.eEventSource)">
<summary>
Closes specified tab.
</summary>
<param name="tab">Tab to close</param>
<param name="source">Source of the event</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripControl.OnTabClosing(DevComponents.DotNetBar.Controls.TabFormTabCloseEventArgs)">
<summary>
Raises RemovingToken event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripControl.OnTabClosed(DevComponents.DotNetBar.Controls.TabFormTabCloseEventArgs)">
<summary>
Raises RemovingToken event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripControl.OnBeforeTabFormItemDetach(DevComponents.DotNetBar.Controls.TabFormItemDetachEventArgs)">
<summary>
Raises BeforeTabFormItemDetach event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TabFormStripControl.OnTabFormItemDetach(DevComponents.DotNetBar.Controls.TabFormItemDetachEventArgs)">
<summary>
Raises TabFormItemDetach event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TabFormStripControl.TitleTextMarkupLinkClick">
<summary>
Occurs when text markup link from TitleText markup is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.Controls.TabFormStripControl.TitleText" -->
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripControl.TitleTextMarkupBody">
<summary>
Gets reference to parsed markup body element if text was markup otherwise returns null.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripControl.CanCustomize">
<summary>
Gets or sets whether control can be customized and items added by end-user using context menu to the quick access toolbar.
Caption of the control must be visible for customization to be enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripControl.CaptionHeight">
<summary>
Gets or sets the explicit height of the caption provided by control. Caption height when set is composed of the TabGroupHeight and
the value specified here. Default value is 0 which means that system default caption size is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripControl.CaptionVisible">
<summary>
Gets or sets whether custom caption line provided by the control is visible. Default value is false.
This property should be set to true when control is used on Office2007RibbonForm.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripControl.CaptionFont">
<summary>
Gets or sets the font for the form caption text when CaptionVisible=true. Default value is NULL which means that system font is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripControl.Style">
<summary>
Gets/Sets the visual style of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripControl.Items">
<summary>
Returns collection of items on a bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripControl.SelectedTab">
<summary>
Returns currently selected TabFormItem. TabFormItems are selected using the Checked property. Only a single
TabFormItem can be Checked at any given time.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripControl.ShowIcon">
<summary>
Indicates whether Form.Icon is shown in top-left corner.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripControl.CaptionContainerItem">
<summary>
Gets the reference to the internal container item for the items displayed in control caption.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripControl.StripContainerItem">
<summary>
Gets the reference to the internal container for the ribbon tabs and other items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripControl.TabAlignment">
<summary>
Indiciates the appearance of the tab form items rendered on the strip
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripControl.IsTabDragEnabled">
<summary>
Indicates whether end-user tab reordering is enabled, default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripControl.TabDetachEnabled">
<summary>
Indicates whether user can detach the tabs into the new forms using drag and drop. Default value is true.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TabFormStripControl.TabClosing">
<summary>
Occurs before tab is closed and it allows canceling of the event.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TabFormStripControl.TabClosed">
<summary>
Occurs after tab is closed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripControl.TabsCount">
<summary>
Returns current number of tabs visile and hiden on the tab strip.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TabFormStripControl.NewTabItemVisible">
<summary>
Indicates whether new tab item which allows creation of new tab when clicked is visible. When visible you need to handle CreateNewTab event and create your new tab in event handler.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TabFormStripControl.BeforeTabFormItemDetach">
<summary>
Occurs before TabFormItem is detached and gives you opportunity to cancel the action or provide your own new TabParentForm and TabFormControl.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TabFormStripControl.TabFormItemDetach">
<summary>
Occurs after TabFormItem has been detached and is added to the new form and tab control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.TabFormTabCloseEventHandler">
<summary>
Defines delegate for the TabFormCloseTab event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.TabFormTabCloseEventArgs">
<summary>
Defines delegate for the TabFormCloseTab event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormTabCloseEventArgs.Cancel">
<summary>
Allows to cancel the closing of the tab.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormTabCloseEventArgs.Tab">
<summary>
Reference to tab being closed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormTabCloseEventArgs.Source">
<summary>
Source of the event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.TabFormItemDetachEventHandler">
<summary>
Defines delegate for the TabFormItemDetach event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.TabFormItemDetachEventArgs">
<summary>
Defines delegate for the TabFormItemDetach event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormItemDetachEventArgs.TabForm">
<summary>
Gets or sets the reference to the form which will host newly detached TabFormItem and its panel, an instance of TabParentForm. You can provide your own instance of TabParentForm and TabControl to use instead of controls creating them. You must provide both TabParentForm and TabControl. Provide these in BeforeTabFormItemDetach event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormItemDetachEventArgs.TabControl">
<summary>
Gets or sets the reference to TabFormControl which will receive TabFormItem being dragged. If you provide your own TabParentForm and TabControl you must provide both. Provide these in BeforeTabFormItemDetach event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormItemDetachEventArgs.TabFormItem">
<summary>
Gets reference to the TabFormItem being detached.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TabFormItemDetachEventArgs.Cancel">
<summary>
Enables canceling of TabFormItem detachment from its parent.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormStripPainterArgs.Graphics">
<summary>
Gets or sets Graphics object group is rendered on.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormStripPainterArgs.TabFormStrip">
<summary>
Gets or sets the reference to SwitchButtonItem being rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormStripPainterArgs.ItemPaintArgs">
<summary>
Gets or sets the ItemPaintArgs reference.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TabFormStripPainterArgs.Cancel">
<summary>
Indicates whether to cancel system rendering of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxX.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxX.OnCommandKeyDown(System.Windows.Forms.KeyEventArgs)">
<summary>
Raises CommandKeyDown event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxX.InvalidateNonClient">
<summary>
Invalidates non-client area of the text box as response to the border changes.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxX.SetAutoHeight">
<summary>
Calculates and sets the text-box height based on font and style. This method is used internally and should not be used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxX.GetRenderer">
<summary>
Returns the renderer control will be rendered with.
</summary>
<returns>The current renderer.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxX.ShouldSerializeWatermarkColor">
<summary>
Indicates whether property should be serialized by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxX.ResetWatermarkColor">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxX.PerformButtonCustomClick">
<summary>
Invokes ButtonCustomClick event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxX.PerformButtonCustom2Click">
<summary>
Invokes ButtonCustomClick2 event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TextBoxX.GetColorScheme">
<summary>
Returns the color scheme used by control. Color scheme for Office2007 style will be retrived from the current renderer instead of
local color scheme referenced by ColorScheme property.
</summary>
<returns>An instance of ColorScheme object.</returns>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TextBoxX.ButtonCustomClick">
<summary>
Occurs when ButtonCustom control is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TextBoxX.ButtonCustom2Click">
<summary>
Occurs when ButtonCustom2 control is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxX.IsEnterInputKey">
<summary>
Indicates whether internal override for IsInputKey returns true for the Enter key.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxX.AutoSelectAll">
<summary>
Indicates whether all text is auto-selected when control gets input focus. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxX.PreventEnterBeep">
<summary>
Gets or sets whether control prevents Beep sound when Enter key is pressed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxX.FocusHighlightEnabled">
<summary>
Gets or sets whether FocusHighlightColor is used as background color to highlight text box when it has input focus. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxX.FocusHighlightColor">
<summary>
Gets or sets the color used as background color to highlight text box when it has input focus and focus highlight is enabled.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TextBoxX.CommandKeyDown">
<summary>
Occurs during preprocessing to handle command keys. Command keys are keys that always take precedence over regular input keys. Examples of command keys include accelerators and menu shortcuts. Set Handled=true to indicate that you handled the key and that it should not be passed for further processing.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxX.ScrollbarSkin">
<summary>
Gets or sets the scrollbar skinning type when control is using Office 2007 style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxX.Border">
<summary>
Specifies the control border style. Default value has Class property set so the system style for the control is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxX.RenderMode">
<summary>
Gets or sets the rendering mode used by control. Default value is eRenderMode.Global which means that static GlobalManager.Renderer is used. If set to Custom then Renderer property must
also be set to the custom renderer that will be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxX.Renderer">
<summary>
Gets or sets the custom renderer used by the items on this control. RenderMode property must also be set to eRenderMode.Custom in order renderer
specified here to be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxX.WatermarkEnabled">
<summary>
Gets or sets whether watermark text is displayed when control is empty. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxX.WatermarkImage">
<summary>
Gets or sets the watermark image displayed inside of the control when Text is not set and control does not have input focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxX.WatermarkImageAlignment">
<summary>
Gets or sets the watermark image alignment.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxX.WatermarkText">
<summary>
Gets or sets the watermark (tip) text displayed inside of the control when Text is not set and control does not have input focus. This property supports text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxX.WatermarkFont">
<summary>
Gets or sets the watermark font.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxX.WatermarkColor">
<summary>
Gets or sets the watermark text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxX.WatermarkBehavior">
<summary>
Gets or sets the watermark hiding behaviour. Default value indicates that watermark is hidden when control receives input focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxX.ButtonCustom">
<summary>
Gets the object that describes the settings for the custom button that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxX.ButtonCustom2">
<summary>
Gets the object that describes the settings for the custom button that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TextBoxX.DisabledBackColor">
<summary>
Specifies back color when Enabled=false
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.DGVScrollBar">
<summary>
Represents the Vertical Office 2007 Style Scroll Bar control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.DGVScrollBar.EnableStyling">
<summary>
Gets or sets whether custom styling (Office 2007 style) is enabled. Default value is true.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.EditToken">
<summary>
Class represents single token in TokenEditor control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.EditToken.#ctor(System.String)">
<summary>
Initializes a new instance of the EditToken class.
</summary>
<param name="value">Indicates token value.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.EditToken.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the EditToken class.
</summary>
<param name="value">Indicates token value</param>
<param name="text">Indicates token text</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.EditToken.#ctor(System.String,System.String,System.Drawing.Image)">
<summary>
Initializes a new instance of the EditToken class.
</summary>
<param name="value">Indicates token value</param>
<param name="text">Indicates token text</param>
<param name="image">Indicates token image</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.EditToken.OnValueChanged(System.String,System.String)">
<summary>
Called when Value property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.EditToken.OnTextChanged(System.String,System.String)">
<summary>
Called when Text property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.EditToken.OnImageChanged(System.Drawing.Image,System.Drawing.Image)">
<summary>
Called when Image property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.EditToken.OnSymbolChanged(System.String,System.String)">
<summary>
Called when Symbol property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.EditToken.OnSymbolSetChanged(DevComponents.DotNetBar.eSymbolSet,DevComponents.DotNetBar.eSymbolSet)">
<summary>
Called when SymbolSet property value changes.
</summary>
<param name="oldValue">Indciates old value</param>
<param name="newValue">Indicates new value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.EditToken.ShouldSerializeSymbolColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.EditToken.ResetSymbolColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.EditToken.OnTooltipChanged(System.String,System.String)">
<summary>
Called when Tooltip property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.EditToken.OnMouseOverPartChanged(DevComponents.DotNetBar.Controls.eTokenPart,DevComponents.DotNetBar.Controls.eTokenPart)">
<summary>
Called when MouseOverPart property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.EditToken.Value">
<summary>
Indicates the token value, for example an email token has email address as token Value and full name as token Text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.EditToken.Text">
<summary>
Indicates the token text, for example an email token has email address as token Value and full name as token Text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.EditToken.Tag">
<summary>
Gets or sets custom data associated with the object.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.EditToken.Bounds">
<summary>
Gets the display bounds of the token, if displayed, inside of TokenEditor control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.EditToken.Image">
<summary>
Indicates the image that is displayed next to the token
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.EditToken.SymbolRealized">
<summary>
Gets the realized symbol string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.EditToken.Symbol">
<summary>
Indicates the symbol displayed on face of the token instead of the image. Setting the symbol overrides the image setting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.EditToken.SymbolSet">
<summary>
Gets or sets the symbol set used to represent the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.EditToken.SymbolColor">
<summary>
Gets or sets the color of the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.EditToken.Tooltip">
<summary>
Indicates tooltip that is displayed when mouse is over the token and token is selected.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.EditToken.MouseOverPart">
<summary>
Gets the part of the token mouse is over. Valid only when token is selected.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.EditToken.RemoveButtonBounds">
<summary>
Gets the bounds of the remove button if displayed. Valid only when token is selected.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.EditToken.ImageBounds">
<summary>
Gets the bounds of the image if displayed. Valid only when token is selected.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.EditToken.IsSelected">
<summary>
Indicates whether token is selected.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.EditToken.IsFocused">
<summary>
Indicates whether token is focused while selected.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eTokenPart">
<summary>
Defines the token parts.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eTokenPart.None">
<summary>
Identifies no token part.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eTokenPart.Token">
<summary>
Identifies the token body/text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eTokenPart.RemoveButton">
<summary>
Identifies the remove token button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eTokenPart.Image">
<summary>
Identifies the token image.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.#ctor">
<summary>
Initializes a new instance of the TokenEditor class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.GetColorScheme">
<summary>
Returns the color scheme used by control. Color scheme for Office2007 style will be retrieved from the current renderer instead of
local color scheme referenced by ColorScheme property.
</summary>
<returns>An instance of ColorScheme object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.ResetBackgroundStyle">
<summary>
Resets style to default value. Used by windows forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.OnSelectedTokensChanged(System.EventArgs)">
<summary>
Raises SelectedTokensChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.OnRemoveTokenButtonVisibleChanged(System.Boolean,System.Boolean)">
<summary>
Called when RemoveTokenButtonVisible property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.GetSelectedTokenAt(System.Drawing.Point)">
<summary>
Returns the token from SelectedTokens at specified position or null/nothing if no token is at given location.
</summary>
<param name="p">Location in client coordinates to test.</param>
<returns>EditToken instance or null/nothing</returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.OnTokenMouseEnter(System.Object,System.EventArgs)">
<summary>
Raises TokenMouseEnter event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.OnTokenMouseLeave(System.Object,System.EventArgs)">
<summary>
Raises TokenMouseLeave event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.OnTokenMouseClick(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Raises TokenMouseClick event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.OnTokenMouseDoubleClick(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Raises TokenMouseClick event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.OnTokenMouseHover(System.Object,System.EventArgs)">
<summary>
Raises TokenMouseHover event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.OnRemovingToken(DevComponents.DotNetBar.Controls.RemovingTokenEventArgs)">
<summary>
Raises RemovingToken event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.OnReadOnlyChanged(System.Boolean,System.Boolean)">
<summary>
Called when ReadOnly property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.OnDropDownHeightChanged(System.Int32,System.Int32)">
<summary>
Called when DropDownHeight property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.OnDropDownWidthChanged(System.Int32,System.Int32)">
<summary>
Called when DropDownWidth property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.OnAutoCompletePopupOpened(System.EventArgs)">
<summary>
Raises AutoCompletePopupOpened event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.OnBeforeAutoCompletePopupOpen(System.ComponentModel.CancelEventArgs)">
<summary>
Raises BeforeAutoCompletePopupOpen event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.OnBeforePopupOpen(DevComponents.DotNetBar.Controls.TokenEditorPopupEventArgs)">
<summary>
Raises BeforePopupOpen event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.OnValidateToken(DevComponents.DotNetBar.Controls.ValidateTokenEventArgs)">
<summary>
Raises ValidateToken event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.ShouldSerializeWatermarkColor">
<summary>
Indicates whether property should be serialized by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.ResetWatermarkColor">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.OnTextSeparatorChanged(System.String,System.String)">
<summary>
Called when TextSeparator property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.OnDropDownButtonVisibleChanged(System.Boolean,System.Boolean)">
<summary>
Called when DropDownButtonVisible property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.OnCheckBoxesVisibleChanged(System.Boolean,System.Boolean)">
<summary>
Called when CheckBoxesVisible property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.ShowToolTip(DevComponents.DotNetBar.Controls.EditToken)">
<summary>
Shows tooltip for this item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditor.HideToolTip">
<summary>
Destroys tooltip window.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.AutoScrollPosition">
<summary>
Gets or sets the location of the auto-scroll position.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.BackgroundStyle">
<summary>
Specifies the background style of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.SelectedTokens">
<summary>
Gets the collection of the selected tokens.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TokenEditor.SelectedTokensChanged">
<summary>
Occurs when SelectedTokens collection changes.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.Tokens">
<summary>
Gets the collection of the tokens available for selection.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.RemoveTokenButtonVisible">
<summary>
Indicates whether remove token button is displayed on individual tokens so they can be removed from the selection.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TokenEditor.TokenMouseEnter">
<summary>
Occurs when mouse enters one of the SelectedTokens token.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TokenEditor.TokenMouseLeave">
<summary>
Occurs when mouse leaves one of the SelectedTokens token.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TokenEditor.TokenMouseClick">
<summary>
Occurs when mouse clicks one of the SelectedTokens token.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TokenEditor.TokenMouseDoubleClick">
<summary>
Occurs when mouse double clicks one of the SelectedTokens token.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TokenEditor.TokenMouseHover">
<summary>
Occurs when mouse hovers one of the SelectedTokens token.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TokenEditor.RemovingToken">
<summary>
Occurs before token is removed from the SelectedTokens by end user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.ReadOnly">
<summary>
Indicates whether tokens can be added or removed by end user. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.DropDownHeight">
<summary>
Indicates the height of the auto-complete drop-down.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.DropDownWidth">
<summary>
Indicates the width of the auto-complete drop-down.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.EnterKeyValidatesToken">
<summary>
Indicates whether when token text is entered into the text-box pressing the Enter key attempts to validate the token and converts the text to token.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TokenEditor.BeforeAutoCompletePopupOpen">
<summary>
Occurs before token auto-complete popup is displayed and allows cancelation of popup display.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TokenEditor.AutoCompletePopupOpened">
<summary>
Occurs after auto-complete popup is open.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TokenEditor.BeforePopupOpen">
<summary>
Occurs before the auto-complete popup is displayed and allows you to adjust popup location.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.TokenFilterBehavior">
<summary>
Indicates how tokens are filtered based on the entered text
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.PreservePopupSize">
<summary>
Indicates whether auto-complete popup size is preserved between popup displays if popup is resized by end-user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.EnablePopupResize">
<summary>
Indicates whether auto-complete popup can be resized by end user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.PopupCloseButtonVisible">
<summary>
Indicates whether multi-column popup close button is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.IsPopupOpen">
<summary>
Gets or sets whether auto-complete popup window is open.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.Separators">
<summary>
Gets the list of separators which are used to divide entered text into the tokens.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TokenEditor.ValidateToken">
<summary>
Occurs when an token is selected from the auto-complete list or when text entry by end user is parsed into token to validate it.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.AutoSizeHeight">
<summary>
Indicates whether control automatically increases its height as more tokens are selected. MaxHeightLines property controls the maximum number of lines control will grow to before showing scroll-bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.MaxHeightLines">
<summary>
Indicates maximum number of lines control will grow to when AutoSizeHeight=true. Set to 0 to indicates unlimited growth.
Default value is 5.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.EditTextBox">
<summary>
Gets reference to internal text-box control that is used to input the token text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.ValidateTokenTextOnLostFocus">
<summary>
Indicates whether any text entered into the token editor is validated and converted to token when control loses focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.WatermarkEnabled">
<summary>
Gets or sets whether watermark text is displayed when control is empty. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.WatermarkImage">
<summary>
Gets or sets the watermark image displayed inside of the control when Text is not set and control does not have input focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.WatermarkImageAlignment">
<summary>
Gets or sets the watermark image alignment.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.WatermarkText">
<summary>
Gets or sets the watermark (tip) text displayed inside of the control when Text is not set and control does not have input focus. This property supports text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.WatermarkFont">
<summary>
Gets or sets the watermark font.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.WatermarkColor">
<summary>
Gets or sets the watermark text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.WatermarkBehavior">
<summary>
Gets or sets the watermark hiding behaviour. Default value indicates that watermark is hidden when control receives input focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.TextSeparator">
<summary>
Indicates the character separator that is used to separate tokens when controls Text property is updated or parsed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.DropDownButtonVisible">
<summary>
Indicates whether drop-down button which shows available token popup is displayed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.CheckBoxesVisible">
<summary>
Indicates whether check-boxes are displayed on popup token selection list and used for token selection.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.TokenEditor.ToolTipVisibleChanged">
<summary>
Occurs when item's tooltip visibility has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.TokenEditor.ShowToolTips">
<summary>
Gets or sets whether tooltips are shown when mouse is over the selected token when Tooltip property is set.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.ValidateTokenEventHandler">
<summary>
Delegate for the ValidateTokenEvent event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.ValidateTokenEventArgs">
<summary>
Arguments for the ValidateTokenEvent event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.ValidateTokenEventArgs.IsValid">
<summary>
Indicates whether validated token is valid. Default value is true. When you set this property to false the token being validated will be discared.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.ValidateTokenEventArgs.Token">
<summary>
Indicates the Token that will be accepted by the control if IsValid=true.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.ValidateTokenEventArgs.IsNewToken">
<summary>
Indicates whether token is newly created. When false it means that token was taken from Tokens collection.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ValidateTokenEventArgs.#ctor(DevComponents.DotNetBar.Controls.EditToken,System.Boolean)">
<summary>
Initializes a new instance of the ValidateTokenEventArgs class.
</summary>
<param name="token"></param>
</member>
<member name="T:DevComponents.DotNetBar.Controls.RemovingTokenEventHandler">
<summary>
Delegate for RemovingToken event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.RemovingTokenEventArgs">
<summary>
Defines event arguments for RemovingToken event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.RemovingTokenEventArgs.Token">
<summary>
Indicates the Token that will be removed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.RemovingTokenEventArgs.Cancel">
<summary>
Set to true to cancel removal of the token.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.RemovingTokenEventArgs.EventSource">
<summary>
Indicates the source of the event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.RemovingTokenEventArgs.#ctor(DevComponents.DotNetBar.Controls.EditToken,DevComponents.DotNetBar.eEventSource)">
<summary>
Initializes a new instance of the RemovingTokenEventArgs class.
</summary>
<param name="token"></param>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eTokenFilterBehavior">
<summary>
Specifies the filter behavior on token editor popup list.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eTokenFilterBehavior.Text">
<summary>
Token text is searched for the match.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eTokenFilterBehavior.Value">
<summary>
Token value is searched for the match.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eTokenFilterBehavior.TextAndValue">
<summary>
Both token text and value are searched for the match.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.TokenEditorPopupEventHandler">
<summary>
Delegate for TokenEditor.BeforePopupOpen event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.TokenEditorPopupEventArgs">
<summary>
Defines event arguments for BeforePopupOpen event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TokenEditorPopupEventArgs.PopupLocation">
<summary>
Gets or sets the screen location of the popup in relation to the TokenEditor control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.TokenEditorPopupEventArgs.PopupSize">
<summary>
Gets the suggested popup size.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.TokenEditorPopupEventArgs.#ctor(System.Drawing.Point,System.Drawing.Size)">
<summary>
Initializes a new instance of the TokenEditorPopupEventArgs class.
</summary>
<param name="token"></param>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.TokenEditorColorTable">
<summary>
Represents the color table for TokenEditor control tokens.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.TokenEditorColorTable.#ctor">
<summary>
Initializes a new instance of the TokenEditorColorTable class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.TokenEditorColorTable.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the TokenEditorColorTable class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.TokenEditorColorTable.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color)">
<summary>
Initializes a new instance of the TokenEditorColorTable class.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TokenEditorColorTable.Normal">
<summary>
Gets or sets token default state colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TokenEditorColorTable.MouseOver">
<summary>
Gets or sets token mouse over state colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TokenEditorColorTable.Focused">
<summary>
Gets or sets token focused state colors.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.TokenColorTable">
<summary>
Represents the state color table for token in TokenEditor control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.TokenColorTable.#ctor">
<summary>
Initializes a new instance of the TokenColorTable class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.TokenColorTable.#ctor(System.Drawing.Color,System.Drawing.Color)">
<summary>
Initializes a new instance of the TokenColorTable class.
</summary>
<param name="textColor"></param>
<param name="new"></param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.TokenColorTable.#ctor(System.Int32,System.Int32)">
<summary>
Initializes a new instance of the TokenColorTable class.
</summary>
<param name="textColor"></param>
<param name="new"></param>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TokenColorTable.TextColor">
<summary>
Gets or sets token text color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.TokenColorTable.Background">
<summary>
Gets or sets the background color table.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.ToolboxControl">
<summary>
Represents Toolbox control to create.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ToolboxControl.BeginUpdate">
<summary>
Disables any redrawing of the tree control. To maintain performance while items
are added one at a time to the control, call the BeginUpdate method. The BeginUpdate
method prevents the control from painting until the
<see cref="M:DevComponents.DotNetBar.Controls.ToolboxControl.EndUpdate">EndUpdate</see> method is called.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ToolboxControl.EndUpdate">
<summary>
Enables the redrawing of the tree view. To maintain performance while items are
added one at a time to the control, call the <see cref="M:DevComponents.DotNetBar.Controls.ToolboxControl.BeginUpdate">BeginUpdate</see>
method. The BeginUpdate method prevents the control from painting until the EndUpdate
method is called.
</summary>
<remarks>
Call to EndUpdate will enable the layout and painting in tree control. If there
are any pending layouts the EndUpdate will call
<see cref="M:DevComponents.DotNetBar.Controls.ToolboxControl.RecalcLayout">RecalcLayout</see> method to perform the layout and it will
repaint the control.
</remarks>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ToolboxControl.EndUpdate(System.Boolean)">
<summary>
Enables the redrawing of the tree view. To maintain performance while items are
added one at a time to the control, call the <see cref="M:DevComponents.DotNetBar.Controls.ToolboxControl.BeginUpdate">BeginUpdate</see>
method. The BeginUpdate method prevents the control from painting until the EndUpdate
method is called.
</summary>
<param name="performLayoutAndRefresh">Gets or sets whether layout and refresh of control is performed if there are no other update blocks pending.</param>
</member>
<member name="F:DevComponents.DotNetBar.Controls.ToolboxControl._Groups">
<summary>
Returns collection of toolbox control groups, collection of ToolboxGroup items.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ToolboxControl.OnExpandedChanged(System.EventArgs)">
<summary>
Raises ExpandedChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ToolboxControl.OnToolboxGroupExpanded(System.Object,System.EventArgs)">
<summary>
Raises RemovingToken event.
</summary>
<param name="sender">Provides source of the event.</param>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ToolboxControl.SetSelectedItem(DevComponents.DotNetBar.Controls.ToolboxItem,System.Boolean)">
<summary>
Selects or deselects an item.
</summary>
<param name="item">Item to select or deselect.</param>
<param name="isSelected">Selection state.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ToolboxControl.OnSelectedItemChanged(System.EventArgs)">
<summary>
Raises RemovingToken event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ToolboxControl.Search(System.String)">
<summary>
Filters control toolbox items based on specified text. To clear last search and show all items pass string.empty or null/nothing as search text.
</summary>
<param name="text">Text to search for</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ToolboxControl.ResetBackgroundStyle">
<summary>
Resets style to default value. Used by windows forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ToolboxControl.OnBeforeItemDrag(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
Raises BeforeItemDrag event.
</summary>
<param name="itemSource">Item being dragged.</param>
<param name="e">Provides event arguments.</param>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.MenuBar">
<summary>
Gets the Bar control used as menu bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.SearchBoxWatermark">
<summary>
Indicates the search-box watermark text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.SearchBoxTextBox">
<summary>
Returns reference to internal search text-box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.TitleText">
<summary>
Indicates the title label text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.TitleBar">
<summary>
Gets the Bar control used as title bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.IsUpdateSuspended">
<summary>
Gets whether layout is suspended for tree control. Layout is suspended after
call to <see cref="M:DevComponents.DotNetBar.Controls.ToolboxControl.BeginUpdate">BeginUpdate</see> method and it is resumed after the
call to <see cref="M:DevComponents.DotNetBar.Controls.ToolboxControl.EndUpdate">EndUpdate</see> method.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.ItemsPanel">
<summary>
Returns reference to internal item panel used to display the toolbox items and groups.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.Groups">
<summary>
Gets the list of items displayed in list box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.ExpandSingleGroupOnly">
<summary>
Indicates whether single group only is expanded at a time. When new group is expanded currently expanded group is collapsed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ToolboxControl.ExpandedChanged">
<summary>
Occurs after Expanded property value has changed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.Expanded">
<summary>
Gets or sets whether control is expanded and shows items in full size with image and text. When collapsed
control will show only images for toolbox items and will hide other UI elements to minimize its size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.CollapsedSeparatorColor">
<summary>
Indicates the collapsed toolbox separator color, the line drawn between the toolbox and menu/expand buttons above.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.ExpandedWidth">
<summary>
Gets or sets the expanded width of the control. This property value is valid after control has been collapsed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ToolboxControl.ToolboxGroupExpanded">
<summary>
Occurs after toolbox group is expanded
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.SelectionMode">
<summary>
Indicates toolbox item selection mode.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.ToolboxControl.SelectedItemChanged">
<summary>
Occurs after selected item has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.SelectedItems">
<summary>
Gets a collection containing the currently selected items in the ToolboxControl. Do not modify items in this collection. To select or deselect list items while in multi-selection mode use SetSelected method.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.SelectedItem">
<summary>
Gets or sets selected item in toolbox control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.TitleVisible">
<summary>
Indicates whether title bar of the control is visible, default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.MenuVisible">
<summary>
Indicates whether menu bar of the control is visible, default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.SearchBoxVisible">
<summary>
Gets or set whether search text-box which allows searching for the toolbox items is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.SearchForEachWord">
<summary>
Indicates whether search text when entered is split into separate words and items returned that match any of the words entered.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.IsSearching">
<summary>
Gets whether control is performing search operation.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.BackgroundStyle">
<summary>
Specifies the background style of the control.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "E:DevComponents.DotNetBar.Controls.ToolboxControl.BeforeItemDrag" -->
<member name="P:DevComponents.DotNetBar.Controls.ToolboxControl.ItemDragDropEnabled">
<summary>
Indicates whether item drag and drop is enabled. Default value is true.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.Controls.ToolboxControl.ItemRearrangeEnabled" -->
<member name="T:DevComponents.DotNetBar.Controls.eToolboxItemSelectionMode">
<summary>
Defines selection modes for toolbox control items.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eToolboxItemSelectionMode.NoSelection">
<summary>
No item selection is allowed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eToolboxItemSelectionMode.Single">
<summary>
Only single item can be selected.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Controls.eToolboxItemSelectionMode.Multiple">
<summary>
Multiple items can be selected.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.ToolboxGroup">
<summary>
Represents a group in ToolboxControl
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ItemContainer">
<summary>
Represents item container that arranges items horizontally or vertically.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainer.#ctor">
<summary>
Creates new instance of the ItemContainer object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainer.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Must be overridden by class that is inheriting to provide the painting for the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainer.GetEmptyDesignTimeSize">
<summary>
Returns empty container default design-time size.
</summary>
<returns>Size of an empty container.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainer.ShouldSerializeFixedSize">
<summary>
Gets whether FixedSize property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainer.ResetFixedSize">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainer.OnFixedSizeChanged(System.Drawing.Size,System.Drawing.Size)">
<summary>
Called when FixedSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainer.RecalcSize">
<summary>
Recalculates the size of the container. Assumes that DisplayRectangle.Location is set to the upper left location of this container.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainer.InternalMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Occurs when the mouse pointer is over the item and a mouse button is pressed. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainer.ItemAtLocation(System.Int32,System.Int32)">
<summary>
Return Sub Item at specified location
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainer.OnTopLocationChanged(System.Int32)">
<summary>
Called after TopInternal property has changed
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainer.OnLeftLocationChanged(System.Int32)">
<summary>
Called after LeftInternal property has changed
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainer.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainer.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the ButtonItem specific properties to new instance of the item.
</summary>
<param name="c">New ButtonItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainer.OnSubItemExpandChange(DevComponents.DotNetBar.BaseItem)">
<summary>
Occurs when sub item expanded state has changed.
</summary>
<param name="item">Sub item affected.</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainer.OnDisplayedChanged">
<summary>
Called when item Display state has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainer.SetSystemContainer(System.Boolean)">
<summary>
Sets whether container is used as system container internally by DotNetBar.
</summary>
<param name="b">true or false to indicate whether container is system container or not.</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainer.OnTitleVisibleChanged(System.Boolean,System.Boolean)">
<summary>
Called when TitleVisible property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainer.OnTitleTextChanged(System.String,System.String)">
<summary>
Called when TitleText property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainer.OnTitlePositionChanged(DevComponents.DotNetBar.eTitlePosition,DevComponents.DotNetBar.eTitlePosition)">
<summary>
Called when TitlePosition property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainer.SelectFirstItem">
<summary>
Selects first visible item contained by the container by sending mouse over message.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainer.SetHotSubItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Sets the new hot-sub item for the container. This method is designed for internal use by the DotNetBar and should not be used.
</summary>
<param name="item">Reference to an instance of BaseItem or null.</param>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.MinimumSize">
<summary>
Gets or sets the minimum size of the container. Either Width or Height can be set or both. Default value is 0,0 which means
that size is automatically calculated.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.BackgroundStyle">
<summary>
Specifies the container background style. Default value is an empty style which means that container does not display any background.
BeginGroup property set to true will override this style on some styles.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.HorizontalItemAlignment">
<summary>
Gets or sets the item alignment when container is in horizontal layout. Default value is Left.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.VerticalItemAlignment">
<summary>
Gets or sets the item vertical alignment. Default value is Top.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.MultiLine">
<summary>
Gets or sets whether items in horizontal layout are wrapped into the new line when they cannot fit allotted container size. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.CanExpand">
<summary>
Gets whether container supports expanding of its content. Provided for system use.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.ItemSpacing">
<summary>
Gets or sets spacing in pixels between items. Default value is 0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.TitleMouseOver">
<summary>
Gets whether mouse is over the title if title is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.TitleRectangle">
<summary>
Gets the title rectangle if title is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.FixedSize">
<summary>
Gets or sets the suggested fixed size of the container. Width or Height or Both may be set to suggest fixed size for the container.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.TitleWidthFill">
<summary>
Indicates whether title if sets always fills up the total width of the container. Defaul value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.Orientation">
<summary>
Gets or sets orientation inside the container. Do not change the value of this property. It is managed by system only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.LayoutOrientation">
<summary>
Gets or sets orientation inside the container.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.ResizeItemsToFit">
<summary>
Gets or sets whether items contained by container are resized to fit the container bounds. When container is in horizontal
layout mode then all items will have the same height. When container is in vertical layout mode then all items
will have the same width. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.Bounds">
<summary>
IBlock member implementation
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.Expanded">
<summary>
Gets or sets a value indicating whether the item is expanded or not. For Popup items this would indicate whether the item is popped up or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.SystemContainer">
<summary>
Returns whether instance of the item container is used as system container internally by DotNetBar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.AccessibleRole">
<summary>
Gets or sets the accessible role of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.ReserveLeftSpace">
<summary>
Indicates whether block elements inside of container when aligned center or right will reserve the space to the left. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.EqualItemSize">
<summary>
Gets or sets whether all items are equally sized based on the size of the largest item in the list.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.TitleStyle">
<summary>
Specifies the title background style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.TitleMouseOverStyle">
<summary>
Specifies the title mouse over background style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.TitleVisible">
<summary>
Indicates whether TitleText is visible if set. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.TitleText">
<summary>
Gets or sets the title text for the container.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.TitlePosition">
<summary>
Gets or sets position of title text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.KeyTips">
<summary>
Gets or sets the Key Tips access key or keys for the item when on Ribbon Control or Ribbon Bar. Use KeyTips property
when you want to assign the one or more letters to be used to access an item. For example assigning the FN to KeyTips property
will require the user to press F then N keys to select an item. Pressing the F letter will show only keytips for the items that start with letter F.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.AutoCollapseOnClick">
<summary>
Indicates whether the item will auto-collapse (fold) when clicked.
When item is on popup menu and this property is set to false, menu will not
close when item is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.CanCustomize">
<summary>
Gets or sets whether item can be customized by end user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.Category">
<summary>
Returns category for this item. If item cannot be customzied using the
customize dialog category is empty string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.ClickAutoRepeat">
<summary>
Gets or sets whether Click event will be auto repeated when mouse button is kept pressed over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.ClickRepeatInterval">
<summary>
Gets or sets the auto-repeat interval for the click event when mouse button is kept pressed over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.Cursor">
<summary>
Specifes the mouse cursor displayed when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.Description">
<summary>
Gets or sets item description. This description is displayed in
Customize dialog to describe the item function in an application.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.Enabled">
<summary>
Gets or sets a value indicating whether the item is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.GlobalItem">
<summary>
Gets or sets whether item is global or not.
This flag is used to propagate property changes to all items with the same name.
Setting for example Visible property on the item that has GlobalItem set to true will
set visible property to the same value on all items with the same name.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.ItemAlignment">
<summary>
Gets or sets item alignment inside the container.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.Shortcuts">
<summary>
Gets or sets the collection of shortcut keys associated with the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.ShowSubItems">
<summary>
Gets or sets whether item will display sub items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.Stretch">
<summary>
Gets or sets whether the item expands automatically to fill out the remaining space inside the container. Applies to Items on stretchable, no-wrap Bars only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.ThemeAware">
<summary>
Specifies whether item is drawn using Themes when running on OS that supports themes like Windows XP.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.Tooltip">
<summary>
Gets/Sets informational text (tooltip) for the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemContainer.KeyboardNavigationEnabled">
<summary>
Indicates whether container responds to keyboard presses and changes the active/mouse over item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ToolboxGroup.#ctor">
<summary>
Creates new instance of the ItemContainer object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ToolboxGroup.#ctor(System.String)">
<summary>
Creates new instance of the ItemContainer object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ToolboxGroup.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ToolboxGroup.InternalCopyToItem(DevComponents.DotNetBar.ButtonItem)">
<summary>
Copies the ButtonItem specific properties to new instance of the item.
</summary>
<param name="copy">New ButtonItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ToolboxGroup.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the ButtonItem specific properties to new instance of the item.
</summary>
<param name="copy">New ButtonItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ToolboxGroup.OnExpandChange">
<summary>
Occurs when Expanded state changes. If overridden base implementation must be called so default processing can occur.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ToolboxGroup.GetToolboxControl">
<summary>
Returns reference to the parent ToolboxControl.
</summary>
<returns></returns>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxGroup.TitleGroupExpandedStyle">
<summary>
Specifies the title background style when toolbox group is expanded.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxGroup.StretchItems">
<summary>
Indicates whether items in vertical layout orientation with MultiLine=false are stretched to fill group width. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxGroup.Expanded">
<summary>
Gets or sets a value indicating whether the item is expanded or not. For Popup items this would indicate whether the item is popped up or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxGroup.MultiLine">
<summary>
Gets or sets whether items in horizontal layout are wrapped into the new line when they cannot fit allotted container size. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxGroup.ResizeItemsToFit">
<summary>
Gets or sets whether items contained by container are resized to fit the container bounds. When container is in horizontal
layout mode then all items will have the same height. When container is in vertical layout mode then all items
will have the same width. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.ToolboxGroup.EqualItemSize">
<summary>
Gets or sets whether all items are equally sized based on the size of the largest item in the list.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ToolboxItem.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ToolboxItem.InternalCopyToItem(DevComponents.DotNetBar.Controls.ToolboxItem)">
<summary>
Copies the ButtonItem specific properties to new instance of the item.
</summary>
<param name="copy">New ButtonItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.ToolboxItem.GetToolboxControl">
<summary>
Returns reference to parent ToolboxControl, if group is parented to it.
</summary>
<returns>reference to ToolboxControl or null</returns>
</member>
<member name="T:DevComponents.DotNetBar.Controls.WarningBox">
<summary>
Represents non-intrusive Warning Box control with Options and Close button.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.WarningBox.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.WarningBox.OnCloseClick(System.EventArgs)">
<summary>
Raises the CloseClick event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.WarningBox.OnOptionsClick(System.EventArgs)">
<summary>
Raises the OptionsClick event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.WarningBox.UpdateColorScheme">
<summary>
Updates control color scheme based on currently selected Office 2007 Color Table. Usually it is not necessary to
call this method manually. You need to call it to update the colors on control if you customize the Office2007ColorTable.WarningBox values.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.WarningBox.OnMarkupLinkClick(DevComponents.DotNetBar.MarkupLinkClickEventArgs)">
<summary>
Invokes the MarkupLinkClick event.
</summary>
<param name="e">Provides additional data about event.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.WarningBox.OnAntiAliasChanged(System.Boolean,System.Boolean)">
<summary>
Called when AntiAlias property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="F:DevComponents.DotNetBar.Controls.WarningBox.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.WarningBox.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.WarningBox.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.WarningBox.CloseClick">
<summary>
Occurs when Close button is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.WarningBox.OptionsClick">
<summary>
Occurs when Options button is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.WarningBox.MarkupLinkClick">
<summary>
Occurs when warning text markup link is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.WarningBox.CloseButtonTooltip">
<summary>
Gets or sets the text displayed on close button tooltip.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.WarningBox.Text">
<summary>
Gets or sets the text displayed on warning control label. Supports text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.WarningBox.WordWrap">
<summary>
Gets or sets whether text is wrapped on multiple lines if it cannot fit the space allocated to the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.WarningBox.Image">
<summary>
Gets or sets the image displayed next to the warning label text. Default value is null.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.WarningBox.OptionsText">
<summary>
Gets or sets the text for the Options buttons.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.WarningBox.OptionsButtonVisible">
<summary>
Gets or sets whether Options button is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.WarningBox.CloseButtonVisible">
<summary>
Gets or sets whether Close button is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.WarningBox.AutoCloseTimeout">
<summary>
Gets or sets the timeout in seconds after which the control automatically closes itself. Default value is 0 which indicates that auto-close
is disabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.WarningBox.ColorScheme">
<summary>
Gets or sets the control's color scheme.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.WarningBox.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting. Default value is true.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Controls.eWarningBoxColorScheme">
<summary>
Defines available WarningBox control color schemes.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.CrumbBar">
<summary>
Represents compact tree bread-crumb control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBar.#ctor">
<summary>
Initializes a new instance of the CrumbBar class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBar.FindByName(System.String)">
<summary>
Finds CrumbBarItem with specified name.
</summary>
<param name="name">Name of item to look for</param>
<returns>Item or null if no item was found.</returns>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBar.SetSelectedItem(DevComponents.DotNetBar.CrumbBarItem,DevComponents.DotNetBar.eEventSource)">
<summary>
Sets the currently selected item in the control.
</summary>
<param name="selection">Reference to selected item.</param>
<param name="source">Source of the event.</param>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBar.ShowSelectedItemPopupMenu">
<summary>
Shows the selected item popup menu if it has menu items.
</summary>
<returns>true if popup was shown otherwise false</returns>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBar.GetIsInSelectedPath(DevComponents.DotNetBar.CrumbBarItem)">
<summary>
Gets whether an item is in selected path to the currently selected item as either one of the parents of selected item
or selected item itself.
</summary>
<param name="item">Item to test.</param>
<returns>true if item is in selected path otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBar.GetRenderer">
<summary>
Returns the renderer control will be rendered with.
</summary>
<returns>The current renderer.</returns>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBar.OnSelectedItemChanging(DevComponents.DotNetBar.CrumbBarSelectionEventArgs)">
<summary>
Raises the SelectedItemChanging event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBar.OnSelectedItemChanged(DevComponents.DotNetBar.CrumbBarSelectionEventArgs)">
<summary>
Raises the SelectedItemChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBar.GetFullPath(DevComponents.DotNetBar.CrumbBarItem,System.String)">
<summary>
Returns full path to the given node.
</summary>
<param name="item">Node to return path to.</param>
<returns>Full path to the node.</returns>
</member>
<member name="E:DevComponents.DotNetBar.CrumbBar.SelectedItemChanging">
<summary>
Occurs before SelectedItem has changed and provides opportunity to cancel the change. Set Cancel property on event arguments to true to cancel the change.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.CrumbBar.SelectedItemChanged">
<summary>
Occurs after SelectedItem has changed. The change of the selected item at this point cannot be canceled. For that use SelectedItemChanging event.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CrumbBar.SelectedItem">
<summary>
Gets or sets currently selected item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CrumbBar.Items">
<summary>
Gets collection of items assigned to the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CrumbBar.Style">
<summary>
Gets or sets the visual style of the control. Default value is Windows Vista style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CrumbBar.VistaColorTable">
<summary>
Gets the color table used by the Vista style renderer.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CrumbBar.AutoSize">
<summary>
Gets or sets a value indicating whether the control is automatically resized to display its entire contents. You can set MaximumSize.Width property to set the maximum width used by the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CrumbBar.PathSeparator">
<summary>
Gets or sets the delimiter string that the tree node path uses.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.CrumBarSelectionEventHandler">
<summary>
Defines delegate for CrumbBar selection events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.CrumbBarSelectionEventArgs">
<summary>
Provides data for CrumbBar selection events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.CrumbBarSelectionEventArgs.NewSelectedItem">
<summary>
Gets or sets newly selected item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBarSelectionEventArgs.#ctor(DevComponents.DotNetBar.CrumbBarItem)">
<summary>
Initializes a new instance of the CrumbBarSelectionEventArgs class.
</summary>
<param name="newSelectedItem"></param>
</member>
<member name="T:DevComponents.DotNetBar.CrumbBarItem">
<summary>
Represents an item for CrumbBar control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CrumbBarItem.IsSelected">
<summary>
Gets whether item is selected item in CrumbBar control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CrumbBarItem.SubItems">
<summary>
Returns the collection of sub items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CrumbBarItem.FullPath">
<summary>
Gets the path from the root tree node to the current tree node. The path consists of the labels of all the tree nodes that must be navigated to get to this tree node, starting at the root tree node. The node labels are separated by the delimiter character specified in the PathSeparator property of the Tree control that contains this node.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.CrumbBarItemsCollection">
<summary>
Represents collection of CrumbBarItem buttons.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBarItemsCollection.#ctor(DevComponents.DotNetBar.CrumbBar)">
<summary>
Initializes a new instance of the CrumbBarItemsCollection class.
</summary>
<param name="parent"></param>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBarItemsCollection.SetParent(DevComponents.DotNetBar.CrumbBar)">
<summary>
Sets the node collection belongs to.
</summary>
<param name="parent">CrumbBarItem that is parent of this collection.</param>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBarItemsCollection.Add(DevComponents.DotNetBar.CrumbBarItem)">
<summary>
Adds new object to the collection.
</summary>
<param name="ch">Object to add.</param>
<returns>Index of newly added object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBarItemsCollection.Insert(System.Int32,DevComponents.DotNetBar.CrumbBarItem)">
<summary>
Inserts new object into the collection.
</summary>
<param name="index">Position of the object.</param>
<param name="value">Object to insert.</param>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBarItemsCollection.IndexOf(DevComponents.DotNetBar.CrumbBarItem)">
<summary>
Returns index of the object inside of the collection.
</summary>
<param name="value">Reference to the object.</param>
<returns>Index of the object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBarItemsCollection.Contains(DevComponents.DotNetBar.CrumbBarItem)">
<summary>
Returns whether collection contains specified object.
</summary>
<param name="value">Object to look for.</param>
<returns>true if object is part of the collection, otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBarItemsCollection.Remove(DevComponents.DotNetBar.CrumbBarItem)">
<summary>
Removes specified object from the collection.
</summary>
<param name="value"></param>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBarItemsCollection.CopyTo(DevComponents.DotNetBar.CrumbBarItem[],System.Int32)">
<summary>
Copies collection into the specified array.
</summary>
<param name="array">Array to copy collection to.</param>
<param name="index">Starting index.</param>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBarItemsCollection.CopyTo(DevComponents.DotNetBar.CrumbBarItem[])">
<summary>
Copies contained items to the CrumbBarItem array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="P:DevComponents.DotNetBar.CrumbBarItemsCollection.Parent">
<summary>
Gets or sets the node this collection is associated with.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CrumbBarItemsCollection.Item(System.Int32)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CrumbBarItemsCollection.Item(System.String)">
<summary>
Returns reference to the object in collection based on it's name.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.CrumbBarItemView">
<summary>
Represents a view of CrumbBarItem displayed inside of CrumbBar control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBarItemView.#ctor">
<summary>
Initializes a new instance of the CrumbBarItemView class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBarItemView.Copy">
<summary>
Returns copy of ExplorerBarContainerItem item
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CrumbBarItemView.AttachedItem">
<summary>
Gets the item attached to the view.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CrumbBarItemView.Expanded">
<summary>
Gets or sets a value indicating whether the item is expanded or not. For Popup items this would indicate whether the item is popped up or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CrumbBarItemViewPainter.ColorTable">
<summary>
Gets or sets color table used by renderer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBarOverflowButton.#ctor">
<summary>
Creates new instance of BaseItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBarOverflowButton.#ctor(System.String)">
<summary>
Creates new instance of BaseItem and assigns item name.
</summary>
<param name="sItemName">Item name.</param>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBarOverflowButton.#ctor(System.String,System.String)">
<summary>
Creates new instance of BaseItem and assigns item name and item text.
</summary>
<param name="itemName">Item Name</param>
<param name="itemText">Item Text</param>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBarOverflowButton.Copy">
<summary>
Returns copy of ExplorerBarContainerItem item
</summary>
</member>
<member name="T:DevComponents.DotNetBar.CrumbBarViewContainer">
<summary>
Represents internal CrumbBar view container.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBarViewContainer.#ctor">
<summary>
Initializes a new instance of the CrumbBarViewContainer class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBarViewContainer.RecalcSize">
<summary>
Recalculates the size of the item
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBarViewContainer.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Paints this base container
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBarViewContainer.Copy">
<summary>
Returns copy of ExplorerBarContainerItem item
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CrumbBarViewContainer.OnSubItemExpandChange(DevComponents.DotNetBar.BaseItem)">
<summary>
Occurs when sub item expanded state has changed.
</summary>
<param name="item">Sub item affected.</param>
</member>
<member name="P:DevComponents.DotNetBar.CrumbBarViewContainer.Expanded">
<summary>
Gets or sets a value indicating whether the item is expanded or not. For Popup items this would indicate whether the item is popped up or not.
</summary>
</member>
<member name="T:DevComponents.AdvTree.ElementStyleCollection">
<summary>
Represents collection for Node objects.
</summary>
</member>
<member name="M:DevComponents.AdvTree.ElementStyleCollection.#ctor">
<summary>Creates new instance of the object.</summary>
</member>
<member name="M:DevComponents.AdvTree.ElementStyleCollection.Add(DevComponents.DotNetBar.ElementStyle)">
<summary>
Adds new object to the collection.
</summary>
<param name="tab">Object to add.</param>
<returns>Index of newly added object.</returns>
</member>
<member name="M:DevComponents.AdvTree.ElementStyleCollection.Insert(System.Int32,DevComponents.DotNetBar.ElementStyle)">
<summary>
Inserts new object into the collection.
</summary>
<param name="index">Position of the object.</param>
<param name="value">Object to insert.</param>
</member>
<member name="M:DevComponents.AdvTree.ElementStyleCollection.IndexOf(DevComponents.DotNetBar.ElementStyle)">
<summary>
Returns index of the object inside of the collection.
</summary>
<param name="value">Reference to the object.</param>
<returns>Index of the object.</returns>
</member>
<member name="M:DevComponents.AdvTree.ElementStyleCollection.Contains(DevComponents.DotNetBar.ElementStyle)">
<summary>
Returns whether collection contains specified object.
</summary>
<param name="value">Object to look for.</param>
<returns>true if object is part of the collection, otherwise false.</returns>
</member>
<member name="M:DevComponents.AdvTree.ElementStyleCollection.Remove(DevComponents.DotNetBar.ElementStyle)">
<summary>
Removes specified object from the collection.
</summary>
<param name="value"></param>
</member>
<member name="M:DevComponents.AdvTree.ElementStyleCollection.CopyTo(DevComponents.DotNetBar.ElementStyle[],System.Int32)">
<summary>
Copies collection into the specified array.
</summary>
<param name="array">Array to copy collection to.</param>
<param name="index">Starting index.</param>
</member>
<member name="M:DevComponents.AdvTree.ElementStyleCollection.CopyTo(DevComponents.DotNetBar.ElementStyle[])">
<summary>
Copies contained items to the Node array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="P:DevComponents.AdvTree.ElementStyleCollection.Item(System.Int32)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="P:DevComponents.AdvTree.ElementStyleCollection.Item(System.String)">
<summary>
Returns reference to the object in collection based on it's name.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Dpi">
<summary>
Provides High DPI support for DotNetBar controls.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Dpi.RecordScalePerControl">
<summary>
Indicates whether static scale factor is set when child controls get ScaleControl call. When set to false
this is done only from parent OfficeForm or RibbonForm.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Dpi.NormalizeScaleFactor">
<summary>
Gets or sets whether scale factor when set is normalized so both Width and Height values are the same. Default value is false.
If using ScaleMode=font the scale factor might not be same for Width and Height so this allows opportunity to keep existing size ratios on the DotNetBar sized controls.
When set to true the scale factor Height will always be set to scale factor Width.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Dpi.AutoScaleImages">
<summary>
Indicates whether controls will automatically scale current images based on the current DPI. Depending on scaling this may result in pixalted images.
Best policy is to provide separate images for each DPI level Windows runs on and if you do that you need to set this property to false to disable
automatic size scaling for the images. Default value is true which causes the images to be upscaled.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DualButton.#ctor">
<summary>
Initializes a new instance of the DualButton class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DualButton.OnButtonSizeChanged(System.Drawing.Size,System.Drawing.Size)">
<summary>
Called when ButtonSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.DualButton.OnText2Changed(System.String,System.String)">
<summary>
Called when Text2 property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.DualButton.OnMouseOverPartChanged(DevComponents.DotNetBar.eDualButtonPart,DevComponents.DotNetBar.eDualButtonPart)">
<summary>
Called when MouseOverPart property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.DualButton.OnLeftMouseButtonDownChanged(DevComponents.DotNetBar.eDualButtonPart,DevComponents.DotNetBar.eDualButtonPart)">
<summary>
Called when LeftMouseButtonDownPart property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.DualButton.OnCommand2Changed">
<summary>
Called when Command property value changes.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DualButton.OnIsSelectedChanged(DevComponents.DotNetBar.eDualButtonPart,DevComponents.DotNetBar.eDualButtonPart)">
<summary>
Called when IsSelected property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.DualButton.OnFontChanged(System.Drawing.Font,System.Drawing.Font)">
<summary>
Called when Font property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="P:DevComponents.DotNetBar.DualButton.Text2">
<summary>
Gets or sets the second button part text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DualButton.Command2">
<summary>
Gets or sets the command assigned to the item. Default value is null.
<remarks>Note that for ButtonItem instances if this property is set to null and command was assigned previously, Enabled property will be set to false automatically to disable the item.</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DualButton.Command2Parameter">
<summary>
Gets or sets user defined data value that can be passed to the command when it is executed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DualButton.IsSelected">
<summary>
Gets or sets the selected part of button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DualButton.Font">
<summary>
Gets or sets the text font.
</summary>
</member>
<member name="T:DevComponents.Editors.Calculator">
<summary>
Standalone Calculator control.
</summary>
</member>
<member name="M:DevComponents.Editors.Calculator.OnCalculatorDisplayChanged(System.EventArgs)">
<summary>
Raises CalculatorDisplayChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.Editors.Calculator.InvalidateAutoSize">
<summary>
Invalidates control auto-size and resizes the control if AutoSize is set to true.
</summary>
</member>
<member name="M:DevComponents.Editors.Calculator.OnFocusButtonsOnMouseDownChanged(System.Boolean,System.Boolean)">
<summary>
Called when FocusButtonsOnMouseDown property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.Editors.Calculator.OnDisplayVisibleChanged(System.Boolean,System.Boolean)">
<summary>
Called when DisplayVisible property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="F:DevComponents.Editors.Calculator.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.Editors.Calculator.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
</member>
<member name="M:DevComponents.Editors.Calculator.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="E:DevComponents.Editors.Calculator.ButtonClick">
<summary>
Occurs when a calc button has been clicked
</summary>
</member>
<member name="E:DevComponents.Editors.Calculator.ValueChanged">
<summary>
Occurs when the calculator value has changed
</summary>
</member>
<member name="P:DevComponents.Editors.Calculator.IsIntValue">
<summary>
Indicates whether calculator displays only Integer values.
</summary>
</member>
<member name="P:DevComponents.Editors.Calculator.ShowMemKeys">
<summary>
Gets or sets whether memory keys are visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.Calculator.DecimalKeyVisibility">
<summary>
Gets or sets visibility of the decimal calculator key.
</summary>
</member>
<member name="P:DevComponents.Editors.Calculator.AutoSize">
<summary>
Gets or sets a value indicating whether the control is automatically resized to display its entire contents. You can set MaximumSize.Width property to set the maximum width used by the control.
</summary>
</member>
<member name="P:DevComponents.Editors.Calculator.DisplayVisible">
<summary>
Gets or sets whether calculator display is visible. Default value is true.
</summary>
</member>
<member name="T:DevComponents.Editors.ButtonClickEventArgs">
<summary>
ButtonClickEventArgs
</summary>
</member>
<member name="M:DevComponents.Editors.ButtonClickEventArgs.#ctor(System.Object)">
<summary>
ButtonClickEventArgs
</summary>
</member>
<member name="P:DevComponents.Editors.ButtonClickEventArgs.Button">
<summary>
Gets the calc button that was clicked
</summary>
</member>
<member name="T:DevComponents.Editors.ValueChangedEventArgs">
<summary>
ValueChangedEventArgs
</summary>
</member>
<member name="M:DevComponents.Editors.ValueChangedEventArgs.#ctor(System.String,System.Double)">
<summary>
ValueChangedEventArgs
</summary>
<param name="svalue"></param>
<param name="value"></param>
</member>
<member name="P:DevComponents.Editors.ValueChangedEventArgs.SValue">
<summary>
Gets the input string value
</summary>
</member>
<member name="P:DevComponents.Editors.ValueChangedEventArgs.Value">
<summary>
Gets or sets calculator value
</summary>
</member>
<member name="T:DevComponents.Editors.DateTimeAdv.TimeSelector">
<summary>
Represents a control that enables the user to select time using visual time display.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelector.OnSelectedTimeChanged(System.EventArgs)">
<summary>
Raises SelectedTimeChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelector.OnOkClick(System.EventArgs)">
<summary>
Raises OkClick event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelector.#ctor">
<summary>
Initializes a new instance of the MonthCalendarAdv class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelector.ShouldSerializeSelectedTime">
<summary>
Returns whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelector.ResetSelectedTime">
<summary>
Resets property to default value.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelector.InvalidateAutoSize">
<summary>
Invalidates control auto-size and resizes the control if AutoSize is set to true.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.TimeSelector.SelectedTimeChanged">
<summary>
Occurs after SelectedTime changes.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.TimeSelector.OkClick">
<summary>
Occurs when OK button is clicked.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelector.OkText">
<summary>
Gets or sets the text displayed on OK button.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelector.OkButtonVisible">
<summary>
Gets or sets whether Ok button is visible.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelector.SelectedDateTime">
<summary>
Gets or sets the selected date time.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelector.SelectedTime">
<summary>
Gets or sets selected time. Returns TimeSpan.Zero if there is no time selected.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelector.TimeFormat">
<summary>
Gets or sets the time format used to present time by the selector.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelector.TimeFormat12H">
<summary>
Gets or sets the format for the 12 Hour Time Display.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelector.TimeFormat24H">
<summary>
Gets or sets the format for the 24 Hour Time Display.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelector.AutoSize">
<summary>
Gets or sets a value indicating whether the control is automatically resized to display its entire contents. You can set MaximumSize.Width property to set the maximum width used by the control.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelector.SelectorType">
<summary>
Indicates the type of the selector used to select time.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelector.ClearText">
<summary>
Gets or sets the text displayed on Clear button only when MonthCalendarStyle is used.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelector.HourText">
<summary>
Gets or sets the text displayed on Hour label.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelector.MinuteText">
<summary>
Gets or sets the text displayed on Minute label.
</summary>
</member>
<member name="T:DevComponents.Editors.DateTimeAdv.TimeSelectorItem">
<summary>
Represents the Time selector item.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.#ctor">
<summary>
Initializes a new instance of the TimeSelectionItem class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.OnSelectedTimeChanged(System.EventArgs)">
<summary>
Raises SelectedTimeChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.OnOkClick(System.EventArgs)">
<summary>
Raises OkClick event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.ShouldSerializeSelectedTime">
<summary>
Returns whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.ResetSelectedTime">
<summary>
Resets property to default value.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.OnSelectedTimeChanged(System.TimeSpan,System.TimeSpan)">
<summary>
Called when SelectedTime property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.OnTimeFormat24HChanged(System.String,System.String)">
<summary>
Called when TimeFormat24H property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.OnTimeFormat12HChanged(System.String,System.String)">
<summary>
Called when TimeFormat12H property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.OnSelectedDateTimeChanged(System.DateTime,System.DateTime)">
<summary>
Called when SelectedDateTime property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.OnOkTextChanged(System.String,System.String)">
<summary>
Called when OkText property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.OnClearTextChanged(System.String,System.String)">
<summary>
Called when ClearText property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.OnTimeFormatChanged(DevComponents.Editors.DateTimeAdv.eTimeSelectorFormat,DevComponents.Editors.DateTimeAdv.eTimeSelectorFormat)">
<summary>
Called when TimeFormat property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.OnOkButtonVisibleChanged(System.Boolean,System.Boolean)">
<summary>
Called when OkButtonVisible property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.OnClearButtonVisibleChanged(System.Boolean,System.Boolean)">
<summary>
Called when ClearButtonVisible property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.OnSelectorTypeChanged(DevComponents.Editors.DateTimeAdv.eTimeSelectorType,DevComponents.Editors.DateTimeAdv.eTimeSelectorType)">
<summary>
Called when SelectorType property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.OnHourTextChanged(System.String,System.String)">
<summary>
Called when HourText property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.OnMinuteTextChanged(System.String,System.String)">
<summary>
Called when MinuteText property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.SelectedTimeChanged">
<summary>
Occurs after SelectedTime changes.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.OkClick">
<summary>
Occurs when OK button is clicked.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.SelectedTime">
<summary>
Gets or sets selected time. Returns TimeSpan.Zero if there is no time selected.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.TimeFormat24H">
<summary>
Gets or sets the format for the 24 Hour Time Display.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.TimeFormat12H">
<summary>
Gets or sets the format for the 12 Hour Time Display.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.SelectedDateTime">
<summary>
Gets or sets the selected date time.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.OkText">
<summary>
Gets or sets the text displayed on OK button.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.ClearText">
<summary>
Gets or sets the text displayed on Clear button only when MonthCalendarStyle is used.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.TimeFormat">
<summary>
Gets or sets the time format used to present time by the selector.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.OkButtonVisible">
<summary>
Gets or sets whether Ok button is visible.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.ClearButtonVisible">
<summary>
Gets or sets whether Ok button is visible.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.SelectorType">
<summary>
Indicates the type of the selector used to select time.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.HourText">
<summary>
Gets or sets the text displayed on Hour label.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.TimeSelectorItem.MinuteText">
<summary>
Gets or sets the text displayed on Minute label.
</summary>
</member>
<member name="T:DevComponents.Editors.DateTimeAdv.eTimeSelectorFormat">
<summary>
Defines time selector format.
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.eTimeSelectorFormat.System">
<summary>
Selector uses system format.
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.eTimeSelectorFormat.Time24H">
<summary>
Selector uses 24-hour time format.
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.eTimeSelectorFormat.Time12H">
<summary>
Selector uses 12-hour time format.
</summary>
</member>
<member name="T:DevComponents.Editors.DateTimeAdv.eTimeSelectorType">
<summary>
Defines the TimeSelector styles.
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.eTimeSelectorType.MonthCalendarStyle">
<summary>
Time selector uses style similar to MonthCalendarStyle.
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.eTimeSelectorType.TouchStyle">
<summary>
Time selector uses the touch style.
</summary>
</member>
<member name="T:DevComponents.Editors.VisualInputGroup">
<summary>
Represents the group of the input items with automatic and manual item focus change.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualItem.OnRenderInvalid">
<summary>
Raises the RenderInvalid event.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualItem.OnArrangeInvalid">
<summary>
Raises the ArrangeInvalid event.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualItem.OnResetMouseHover">
<summary>
Raises the ResetMouseHover event.
</summary>
</member>
<member name="E:DevComponents.Editors.VisualItem.ArrangeInvalid">
<summary>
Occurs when item arrange becomes invalid.
</summary>
</member>
<member name="E:DevComponents.Editors.VisualItem.RenderInvalid">
<summary>
Occurs when item appearance becomes invalid and items needs to be repainted.
</summary>
</member>
<member name="E:DevComponents.Editors.VisualItem.ResetMouseHover">
<summary>
Occurs when item needs to signal to parent control that MouseHover needs to be reset usually in response to tooltip hiding.
</summary>
</member>
<member name="E:DevComponents.Editors.VisualItem.Click">
<summary>
Occurs when item is clicked.
</summary>
</member>
<member name="E:DevComponents.Editors.VisualItem.MouseClick">
<summary>
Occurs when item is clicked using mouse.
</summary>
</member>
<member name="E:DevComponents.Editors.VisualItem.MouseDown">
<summary>
Occurs when mouse button is pressed over the item.
</summary>
</member>
<member name="E:DevComponents.Editors.VisualItem.MouseUp">
<summary>
Occurs when mouse button is pressed over the item.
</summary>
</member>
<member name="E:DevComponents.Editors.VisualItem.MouseHover">
<summary>
Occurs when mouse hovers over the item.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualItem.Enabled">
<summary>
Gets or sets whether item is Enabled.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualItem.IsRendered">
<summary>
Gets or sets whether visual is rendered. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualItem.Parent">
<summary>
Gets the parent of the item.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualItem.Location">
<summary>
Gets the relative location of the element inside of its parent item.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualItem.Alignment">
<summary>
Gets or sets the item horizontal alignment inside of the parent group. Default value is left.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualGroup.OnInputComplete">
<summary>
Occurs when child item input is complete. Method should be used to forward the input focus onto the different field if desired.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualGroup.ProcessInputChanged(DevComponents.Editors.VisualInputBase)">
<summary>
Occurs when input stack on the child control has changed.
</summary>
<param name="input">Control on which input has changed</param>
</member>
<member name="M:DevComponents.Editors.VisualGroup.OnInputChanged(DevComponents.Editors.VisualInputBase)">
<summary>
Occurs when input stack on the child control has changed.
</summary>
<param name="input">Control on which input has changed</param>
</member>
<member name="P:DevComponents.Editors.VisualGroup.HorizontalItemSpacing">
<summary>
Gets or sets the horizontal spacing in pixels between the items.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualGroup.IsRootVisual">
<summary>
Gets or sets whether visual is root visual directly parented to the control.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualGroup.VerticalItemAlignment">
<summary>
Gets or sets group vertical alignment. Default value is middle.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualGroup.HorizontalItemAlignment">
<summary>
Gets or sets input group horizontal alignment. Default value is left.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualInputGroup.ResetInputPosition">
<summary>
Resets the input position so the new input overwrites current value.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualInputGroup.UpdateIsEmpty">
<summary>
Updates the IsEmpty property value based on the contained input controls.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualInputGroup.TabNavigationEnabled">
<summary>
Gets or sets whether Tab key is used to navigate between the fields. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualInputGroup.EnterNavigationEnabled">
<summary>
Gets or sets whether Enter key is used to navigate between input fields. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualInputGroup.ArrowNavigationEnabled">
<summary>
Gets or sets whether Arrow keys are used to navigate between input fields. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualInputGroup.AutoAdvance">
<summary>
Gets or sets whether input focus is automatically advanced to next input field when input is complete in current one.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualInputGroup.IsReadOnly">
<summary>
Gets or sets whether input items are read-only.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualInputGroup.IsEmpty">
<summary>
Gets or sets whether input group is empty i.e. it does not hold any value.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualInputGroup.AutoOverwrite">
<summary>
Gets or sets whether auto-overwrite functionality for input is enabled. When in auto-overwrite mode input field will erase existing entry
and start new one if typing is continued after InputComplete method is called.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualInputGroup.IsUserInput">
<summary>
Gets or sets whether current input is the user input.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualInputGroup.SelectNextInputCharacters">
<summary>
List of characters that when pressed would select next input field.
</summary>
</member>
<member name="M:DevComponents.Editors.IpAddressGroup.#ctor">
<summary>
Initializes a new instance of the IPAddressGroup class.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.EllipticalShapeDescriptor">
<summary>
Describes the Elliptical Shape.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.IShapeDescriptor.GetShape(System.Drawing.Rectangle)">
<summary>
Returns the shape that fits given bounds.
</summary>
<param name="bounds">Bounds to fit shape in.</param>
<returns>GraphicsPath representing shape or null if shape cannot be created.</returns>
</member>
<member name="M:DevComponents.DotNetBar.IShapeDescriptor.GetInnerShape(System.Drawing.Rectangle,System.Int32)">
<summary>
Returns the inner shape based on the specified border size.
</summary>
<param name="bounds">Bounds to fit shape in.</param>
<returns>GraphicsPath representing shape or null if shape cannot be created.</returns>
</member>
<member name="M:DevComponents.DotNetBar.IShapeDescriptor.CanDrawShape(System.Drawing.Rectangle)">
<summary>
Returns whether shape can be drawn given the bounds.
</summary>
<param name="bounds">Bounds to test.</param>
<returns>true if shape can be drawn inside of bounds otherwise false.</returns>
</member>
<member name="T:DevComponents.DotNetBar.EllipticalShapeDescriptorConverter">
<summary>
Represents EllipticalShapeDescriptor object converter.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.FormatHelper.#cctor">
<summary>
Initializes FormatHelper class.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ICommand">
<summary>
Defines an interface that represents the Command associated with an BaseItem instance.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ICommand.Execute">
<summary>
Executes the command without specifying the source of the command.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ICommand.Execute(DevComponents.DotNetBar.ICommandSource)">
<summary>
Executes the command and specifies the source of the command.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ICommand.CommandSourceRegistered(DevComponents.DotNetBar.ICommandSource)">
<summary>
Called when CommandSource is registered for the command.
</summary>
<param name="source">CommandSource registered.</param>
</member>
<member name="M:DevComponents.DotNetBar.ICommand.CommandSourceUnregistered(DevComponents.DotNetBar.ICommandSource)">
<summary>
Called when CommandSource is unregistered for the command.
</summary>
<param name="source">CommandSource unregistered.</param>
</member>
<member name="M:DevComponents.DotNetBar.ICommand.SetValue(System.String,System.Object)">
<summary>
Sets an property value on the subscribers through the reflection. If subscriber does not have
specified property with value type its value is not set.
</summary>
<param name="propertyName">Property name to set.</param>
<param name="value">Property value.</param>
</member>
<member name="E:DevComponents.DotNetBar.ICommand.Executed">
<summary>
Executes the code associated with the command.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ICommand.PreviewExecuted">
<summary>
Provides the opportunity to cancel the execution of the command. This event occurs before the Executed event.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ICommand.Text">
<summary>
Gets or sets the text associated with the items that are using command.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ICommand.Checked">
<summary>
Gets or sets the value of Checked property if item associated with the command support it.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ICommand.Visible">
<summary>
Gets or sets the value of Visible property if item associated with the command support it.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ICommand.Image">
<summary>
Gets or sets the value of Image property if item associated with the command support it.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ICommand.ImageSmall">
<summary>
Gets or sets the value of small image (ImageSmall) property if item associated with the command support it.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ICommand.Enabled">
<summary>
Gets or sets the value of Enabled property for items associated with the command.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Command">
<summary>
Defines an command that is associated with an instance of BaseItem
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Command.#ctor(System.ComponentModel.IContainer)">
<summary>
Initializes a new instance of the Command class with the specified container.
</summary>
<param name="container">An IContainer that represents the container for the command.</param>
</member>
<member name="M:DevComponents.DotNetBar.Command.#ctor(System.ComponentModel.IContainer,System.EventHandler)">
<summary>
Initializes a new instance of the Command class with the specified container.
</summary>
<param name="container">An IContainer that represents the container for the command.</param>
</member>
<member name="M:DevComponents.DotNetBar.Command.#ctor(System.EventHandler)">
<summary>
Initializes a new instance of the Command class with the specified execute event handler.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Command.#ctor">
<summary>
Initializes a new instance of the Command class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Command.Execute">
<summary>
Executes the command.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Command.Execute(DevComponents.DotNetBar.ICommandSource)">
<summary>
Executes the command.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Command.OnExecuted(DevComponents.DotNetBar.ICommandSource,System.EventArgs)">
<summary>
Raises the Execute event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.DotNetBar.Command.OnPreviewExecuted(DevComponents.DotNetBar.ICommandSource,System.ComponentModel.CancelEventArgs)">
<summary>
Raises the PreviewExecuted event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.DotNetBar.Command.OnTextChanged">
<summary>
Called when Text property is set.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Command.SetTextProperty">
<summary>
Sets the Text property on all subscribers to the command Text.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Command.SetValue(System.String,System.Object)">
<summary>
Sets an property value on the subscribers through the reflection. If subscriber does not have
specified property with value type its value is not set.
</summary>
<param name="propertyName">Property name to set.</param>
<param name="value">Property value.</param>
</member>
<member name="M:DevComponents.DotNetBar.Command.ShouldSerializeText">
<summary>
Gets whether property is set and whether it will be applied to items associated with the command.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Command.ResetText">
<summary>
Resets the property to its default value and disables its propagation to items that are associated with command.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Command.ShouldSerializeChecked">
<summary>
Gets whether property is set and whether it will be applied to items associated with the command.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Command.ResetChecked">
<summary>
Resets the property to its default value and disables its propagation to items that are associated with command.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Command.ShouldSerializeVisible">
<summary>
Gets whether property is set and whether it will be applied to items associated with the command.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Command.ResetVisible">
<summary>
Resets the property to its default value and disables its propagation to items that are associated with command.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Command.ShouldSerializeImage">
<summary>
Gets whether property is set and whether it will be applied to items associated with the command.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Command.ResetImage">
<summary>
Resets the property to its default value and disables its propagation to items that are associated with command.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Command.ShouldSerializeImageSmall">
<summary>
Gets whether property is set and whether it will be applied to items associated with the command.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Command.ResetImageSmall">
<summary>
Resets the property to its default value and disables its propagation to items that are associated with command.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Command.ShouldSerializeEnabled">
<summary>
Gets whether property is set and whether it will be applied to items associated with the command.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Command.ResetEnabled">
<summary>
Resets the property to its default value and disables its propagation to items that are associated with command.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Command.CommandSourceRegistered(DevComponents.DotNetBar.ICommandSource)">
<summary>
Called when CommandSource is registered for the command.
</summary>
<param name="source">CommandSource registered.</param>
</member>
<member name="M:DevComponents.DotNetBar.Command.CommandSourceUnregistered(DevComponents.DotNetBar.ICommandSource)">
<summary>
Called when CommandSource is unregistered for the command.
</summary>
<param name="source">CommandSource unregistered.</param>
</member>
<member name="E:DevComponents.DotNetBar.Command.Executed">
<summary>
Executes the code associated with the command when an instance of BaseItem is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Command.PreviewExecuted">
<summary>
Occurs before the Executed event and allows you to cancel the firing of Executed event.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Command.Text">
<summary>
Gets or sets the Text that is assigned to all command sources that are using this command and have Text property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Command.Checked">
<summary>
Gets or sets the value for the Checked property that is assigned to the command subscribers using this command and have Checked property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Command.IsSyncingCommand">
<summary>
Gets whether the command is in process of syncing its state to all subscribers.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Command.Visible">
<summary>
Gets or sets the value for the Visible property that is assigned to the command subscribers using this command and have Visible property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Command.Image">
<summary>
Gets or sets the image that is assigned to the command subscribers using this command and have Image property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Command.ImageSmall">
<summary>
Gets or sets the small image that is assigned to the command subscribers using this command and have ImageSmall property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Command.Enabled">
<summary>
Gets or sets the value for Enabled property assigned to the command subscribers using this command and have Enabled property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Command.Name">
<summary>
Returns name of the node that can be used to identify it from the code.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ItemDockContainer">
<summary>
Defines an container where you can arrange child elements added to SubItems collection either horizontally or vertically, relative to each other using SetDock and GetDock methods.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemDockContainer.#ctor">
<summary>
Initializes a new instance of the ItemDockContainer class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemDockContainer.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemDockContainer.InternalCopyToItem(DevComponents.DotNetBar.ButtonItem)">
<summary>
Copies the ButtonItem specific properties to new instance of the item.
</summary>
<param name="copy">New ButtonItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemDockContainer.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the ButtonItem specific properties to new instance of the item.
</summary>
<param name="copy">New ButtonItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemDockContainer.RecalcSize">
<summary>
Recalculates the size of the container. Assumes that DisplayRectangle.Location is set to the upper left location of this container.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemDockContainer.OnTopLocationChanged(System.Int32)">
<summary>
Called after TopInternal property has changed
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemDockContainer.OnLeftLocationChanged(System.Int32)">
<summary>
Called after LeftInternal property has changed
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemDockContainer.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Must be overridden by class that is inheriting to provide the painting for the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemDockContainer.GetDock(DevComponents.DotNetBar.BaseItem)">
<summary>
Retrieves the docking for specified item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemDockContainer.SetDock(DevComponents.DotNetBar.BaseItem,DevComponents.DotNetBar.eItemDock)">
<summary>
Sets the docking within container for specified item.
</summary>
<param name="item">Item to set docking for.</param>
<param name="dock">Docking value.</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemDockContainer.GetEmptyDesignTimeSize">
<summary>
Returns empty container default design-time size.
</summary>
<returns>Size of an empty container.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ItemDockContainer.InternalMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Occurs when the mouse pointer is over the item and a mouse button is pressed. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemDockContainer.ItemAtLocation(System.Int32,System.Int32)">
<summary>
Return Sub Item at specified location
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemDockContainer.LastChildFill">
<summary>
Gets or sets a value that indicates whether the last child element within a ItemDockContainer stretches to fill the remaining available space.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemDockContainer.Bounds">
<summary>
IBlock member implementation
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ItemVisualGenerator">
<summary>
Provides binding support for ItemPanel control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemVisualGenerator.#ctor(DevComponents.DotNetBar.IBindingSupport)">
<summary>
Initializes a new instance of the ItemVisualGenerator class.
</summary>
<param name="parent"></param>
</member>
<member name="M:DevComponents.DotNetBar.ItemVisualGenerator.OnBindingsChanged(System.Collections.Generic.List{DevComponents.DotNetBar.BindingDef},System.Collections.Generic.List{DevComponents.DotNetBar.BindingDef})">
<summary>
Called when Bindings property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemVisualGenerator.OnVisualTemplateChanged(System.ICloneable,System.ICloneable)">
<summary>
Called when VisualTemplate property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemVisualGenerator.SetItemsCore(System.Collections.IList)">
<summary>
When overridden in a derived class, sets the specified array of objects in a collection in the derived class.
</summary>
<param name="items">An array of items.</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemVisualGenerator.CreateVisualItem(System.Collections.IList,System.Object,System.Int32,System.Collections.Generic.List{DevComponents.DotNetBar.BindingDef})">
<summary>
Creates a new item from template for the data.
</summary>
<param name="item">Data to create item for.</param>
<returns>New instance of the BaseItem.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ItemVisualGenerator.SetItemCore(System.Int32,System.Object)">
<summary>
When overridden in a derived class, sets the object with the specified index in the derived class.
</summary>
<param name="index">The array index of the object.</param>
<param name="value">The object.</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemVisualGenerator.RefreshItems">
<summary>
When overridden in a derived class, resynchronizes the item data with the contents of the data source.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemVisualGenerator.DataSource">
<summary>
Gets or sets the data source for the ComboTree. Expected is an object that implements the IList or IListSource interfaces,
such as a DataSet or an Array. The default is null.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemVisualGenerator.VisualTemplate">
<summary>
Gets or sets the visual template that is generated for each data item.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.ItemVisualGenerator.CustomCollectionBinding" -->
<member name="T:DevComponents.DotNetBar.DataItemVisualEventHandler">
<summary>
Defines delegate for data visual creation based events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DataItemVisualEventArgs">
<summary>
Defines event arguments for data visual creation based events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DataItemVisualEventArgs.Visual">
<summary>
Gets or sets the visual that is created for data item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DataItemVisualEventArgs.DataItem">
<summary>
Gets the data-item node is being created for.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DataItemVisualEventArgs.#ctor(System.Object,System.Object)">
<summary>
Initializes a new instance of the DataNodeEventArgs class.
</summary>
<param name="node"></param>
<param name="dataItem"></param>
</member>
<member name="T:DevComponents.DotNetBar.Metro.BorderColors">
<summary>
Defines BorderColors structure used to define border colors.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.BorderColors.#ctor(System.Drawing.Color)">
<summary>
Creates new instance of the object.
</summary>
<param name="uniformLength">Uniform BorderColors</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.BorderColors.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color)">
<summary>
Creates new instance of the object.
</summary>
<param name="left">Left BorderColors</param>
<param name="top">Top BorderColors</param>
<param name="right">Right BorderColors</param>
<param name="bottom">Bottom BorderColors</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.BorderColors.Equals(System.Object)">
<summary>
Gets whether object equals to this instance.
</summary>
<param name="obj">object to test.</param>
<returns>returns whether objects are Equals</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.BorderColors.Equals(DevComponents.DotNetBar.Metro.BorderColors)">
<summary>
Gets whether object equals to this instance.
</summary>
<param name="BorderColors">object to test.</param>
<returns>returns whether objects are Equals</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.BorderColors.GetHashCode">
<summary>
Returns hash code for object.
</summary>
<returns>Hash code</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.BorderColors.ToString">
<summary>
Returns string representation of object.
</summary>
<returns>string representing BorderColors</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.BorderColors.ToString(System.Globalization.CultureInfo)">
<summary>
Gets string representation of object.
</summary>
<param name="cultureInfo">Culture info.</param>
<returns>string representing BorderColors</returns>
</member>
<member name="P:DevComponents.DotNetBar.Metro.BorderColors.IsEmpty">
<summary>
Returns whether all values are empty.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.BorderColors.IsUniform">
<summary>
Returns whether all values are the same.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.BorderColors.Left">
<summary>
Gets or sets the left BorderColors.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.BorderColors.Top">
<summary>
Gets or sets the top BorderColors.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.BorderColors.Right">
<summary>
Gets or sets the Right BorderColors.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.BorderColors.Bottom">
<summary>
Gets or sets the Bottom BorderColors.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.BorderColorsConverter">
<summary>
Provides BorderColors TypeConverter.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroColorTable.CanvasColor">
<summary>
Gets or sets the background color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroColorTable.CanvasColorShadeLight">
<summary>
Gets or sets the canvas light shade color. This property is not directly used but it is provided for reference.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroColorTable.CanvasColorShadeLighter">
<summary>
Gets or sets the canvas lighter shade color. This property is not directly used but it is provided for reference.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroColorTable.ForeColor">
<summary>
Gets or sets the foreground color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroColorTable.BaseColor">
<summary>
Gets or sets the base metro color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroColorTable.EditControlBackColor">
<summary>
Gets or sets background color of edit controls.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroColorTable.MetroAppForm">
<summary>
Gets or sets the color table for MetroAppForm.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroColorTable.MetroForm">
<summary>
Gets or sets the color table for MetroForm.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroColorTable.MetroTab">
<summary>
Gets or sets the color table for MetroTab.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroColorTable.MetroStatusBar">
<summary>
Gets or sets color table for MetroStatusBar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroColorTable.MetroToolbar">
<summary>
Gets or sets color table for MetroToolbar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroColorTable.MetroTile">
<summary>
Gets or sets the color table used by MetroTile items.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroColorTable.MetroPartColors">
<summary>
Gets or sets the metro-part colors that define the metro UI color scheme. These colors are provided for you reference and reuse in your app.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters">
<summary>
Represents class that defines parameters for Metro style color scheme.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters.#ctor(System.Drawing.Color,System.Drawing.Color)">
<summary>
Initializes a new instance of the MetroStyleParameters class.
</summary>
<param name="canvasColor">Canvas color.</param>
<param name="baseColor">Base color.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters.#ctor(System.Drawing.Color,System.Drawing.Color,System.String)">
<summary>
Initializes a new instance of the MetroColorGeneratorParameters structure.
</summary>
<param name="canvasColor">Canvas color.</param>
<param name="baseColor">Base color.</param>
<param name="themeName">User friendly theme name.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters.GetAllPredefinedThemes">
<summary>
Returns array of all predefined Metro color themes.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters.ShouldSerializeCanvasColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters.ResetCanvasColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters.ShouldSerializeBaseColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters.ResetBaseColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters.CanvasColor">
<summary>
Gets or sets the color of the Metro canvas.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters.BaseColor">
<summary>
Gets or sets the base color for the Metro style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters.ThemeName">
<summary>
Gets or sets the user friendly theme name.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.ColorTables.MetroColorTableInitializer">
<summary>
Initializes the Metro UI color table based on colors specified.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors">
<summary>
Defines base set of Metro UI color scheme.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.CanvasColor">
<summary>
Gets or sets the base canvas color, like form background.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.BaseColor">
<summary>
Gets or sets the chrome base color, used for window border, selection marking etc.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.BaseTextColor">
<summary>
Gets or sets the text color for text displayed over the BaseColor.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.TextColor">
<summary>
Gets or sets the text color displayed over the canvas color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.TextInactiveColor">
<summary>
Gets or sets the lighter text color used for example for inactive non selected tab text etc.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.TextDisabledColor">
<summary>
Gets or sets the text color used for disabled text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.TextLightColor">
<summary>
Gets or sets the text light color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.CanvasColorLight">
<summary>
Gets or sets the color that lighter than canvas color unless canvas is white in which case this will be white as well.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.CanvasColorDarkShade">
<summary>
Gets or sets the color that is in dark shade off of the canvas color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.CanvasColorDarkerShade">
<summary>
Gets or sets the color that is in darker shade off of the canvas color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.CanvasColorLightShade">
<summary>
Gets or sets the color that is in light shade off of the canvas color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.CanvasColorLighterShade">
<summary>
Gets or sets the color that is in lighter shade off of the canvas color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.BaseColorLight">
<summary>
Gets or sets the light base color shade.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.BaseColorLight1">
<summary>
Gets or sets the just a tad lighter base color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.BaseColorLightText">
<summary>
Gets or sets the text color for light base color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.BaseColorLighter">
<summary>
Gets or sets the lighter base color shade.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.BaseColorLightest">
<summary>
Gets or sets the lightest base color shade.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.BaseColorDark">
<summary>
Gets or sets the dark base color shade.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.BaseColorDarker">
<summary>
Gets or sets the darker base color shade.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.ComplementColor">
<summary>
Gets or sets the base color analogous color 1
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.ComplementColorLight">
<summary>
Gets or sets the Analogous color light variant.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.ComplementColorLightText">
<summary>
Gets or sets the text color for Analogous color light variant.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.ComplementColorDark">
<summary>
Gets or sets the Analogous color dark variant.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.ComplementColorDarker">
<summary>
Gets or sets the Analogous color darker variant.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.ComplementColorText">
<summary>
Gets or sets the Analogous color text color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.BaseButtonGradientStart">
<summary>
Gets or sets the off base color button gradient start.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.BaseButtonGradientEnd">
<summary>
Gets or sets the off base color button gradient start.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors.EditControlBackColor">
<summary>
Gets or sets background color of edit controls.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.ColorTables.MetroAppFormColorTable">
<summary>
Represents the MetroAppForm color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroAppFormColorTable.BorderThickness">
<summary>
Gets or sets the border thickness.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroAppFormColorTable.BorderPlainThickness">
<summary>
Gets or sets the border thickness for form when it is running on Windows without Glass effect enabled.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroAppFormColorTable.BorderColors">
<summary>
Gets or sets the border colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroAppFormColorTable.BorderColorsInactive">
<summary>
Gets or sets the inactive form border colors.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.ColorTables.MetroFormColorTable">
<summary>
Represents the MetroForm color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroFormColorTable.BorderThickness">
<summary>
Gets or sets the border thickness.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroFormColorTable.BorderPlainThickness">
<summary>
Gets or sets the border thickness for form when it is running on Windows without Glass effect enabled.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroFormColorTable.BorderColors">
<summary>
Gets or sets the border colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroFormColorTable.BorderColorsInactive">
<summary>
Gets or sets the inactive form border colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroStatusBarColorTable.TopBorders">
<summary>
Gets or sets the color array for the top-border lines.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroStatusBarColorTable.BottomBorders">
<summary>
Gets or sets the color array for the bottom-border lines.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroStatusBarColorTable.BackgroundStyle">
<summary>
Gets or sets status bar background style.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroStatusBarColorTable.ResizeMarkerLightColor">
<summary>
Gets or sets the resize handle marker light color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroStatusBarColorTable.ResizeMarkerColor">
<summary>
Gets or sets the resize handle marker color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroTabColorTable.TabStrip">
<summary>
Gets or sets the color table for MetroTabStrip.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroTabColorTable.TabPanelBackgroundStyle">
<summary>
Gets or sets tab panel background style.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroTabColorTable.MetroTabItem">
<summary>
Gets or sets the color table for MetroTabItem.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroTabColorTable.ActiveCaptionText">
<summary>
Gets or sets the color of the active form caption text displayed on metro strip.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroTabColorTable.InactiveCaptionText">
<summary>
Gets or sets the color of the inactive form caption text displayed on metro strip.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroTabColorTable.CaptionTextFormat">
<summary>
Gets or sets the text formatting for caption text.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.ColorTables.MetroTabItemColorTable">
<summary>
Represents MetroTabItem color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroTabItemColorTable.Default">
<summary>
Gets or sets the default state tab colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroTabItemColorTable.MouseOver">
<summary>
Gets or sets the mouse over state tab colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroTabItemColorTable.Selected">
<summary>
Gets or sets the selected state tab colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroTabItemColorTable.Pressed">
<summary>
Gets or sets the pressed state tab colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroTabItemColorTable.Disabled">
<summary>
Gets or sets the disabled state tab colors.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.ColorTables.MetroTabItemStateColorTable.#ctor(DevComponents.DotNetBar.ElementStyle)">
<summary>
Initializes a new instance of the MetroTabItemStateColorTable class.
</summary>
<param name="textColor"></param>
<param name="background"></param>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroTabItemStateColorTable.Background">
<summary>
Gets or sets the background style.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroTabStripColorTable.BackgroundStyle">
<summary>
Gets or sets tabstrip background style.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroTileColorTable.CheckBackground">
<summary>
Gets or sets the tile check-mark background overlay color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroTileColorTable.CheckForeground">
<summary>
Gets or sets the tile check-mark foreground overlay color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ColorTables.MetroToolbarColorTable.BackgroundStyle">
<summary>
Gets or sets toolbar background style.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.ColorTables.VisualStudio2012ColorTableInitializer">
<summary>
Initializes the Visual Studio 2012 color scheme Metro color table based on colors specified.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.Helpers.HSVColor.Hue">
<summary>
Gets or sets color hue. Hue is value from 0-1 which determines the degree on color wheel color is on, i.e. 0.5 = 180 degrees
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.Helpers.HSVColor.Saturation">
<summary>
Gets or sets the color saturation from 0-1, i.e. 0-100%.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.Helpers.HSVColor.Value">
<summary>
Gets or sets the amount of white and black in color.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Helpers.HSVColor.#ctor(System.Double,System.Double,System.Double)">
<summary>
Initializes a new instance of the HSVColor structure.
</summary>
<param name="hue"></param>
<param name="saturation"></param>
<param name="value"></param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Helpers.DoubleHelpers.AreClose(System.Double,System.Double)">
<summary>
Gets whether values are close.
</summary>
<param name="value1">First value.</param>
<param name="value2">Second value</param>
<returns>true if values are close enough</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Helpers.DoubleHelpers.IsZero(System.Double)">
<summary>
Gets whether value is zero
</summary>
<param name="value">value to check</param>
<returns>true if value is considered zero</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Helpers.DoubleHelpers.IsNaN(System.Double)">
<summary>
Gets whether value is not an number.
</summary>
<param name="value">value to test</param>
<returns>true if value is not an number</returns>
</member>
<member name="T:DevComponents.DotNetBar.Metro.MetroAppButton">
<summary>
Represents the Metro application button used on MetroTab control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroAppButton.#ctor">
<summary>
Initializes a new instance of the MetroAppButton class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroAppButton.ProcessEscapeKey(System.Windows.Forms.Keys)">
<summary>
Processes the Escape key when Application Button is hosting the backstage tab and uses it to close the tab if open.
This method is called from ProcessDialogKey method of MetroForm.
</summary>
<param name="keyData">Key data</param>
<returns>true if key was used to close backstage tab</returns>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppButton.Expanded">
<summary>
Gets or sets a value indicating whether the item is expanded or not. For Popup items this would indicate whether the item is popped up or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppButton.BackstageTabEnabled">
<summary>
Gets or sets whether control set on BackstageTab property is used on application menu popup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppButton.BackstageTab">
<summary>
Gets or sets the backstage tab that is displayed instead of popup menu.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroAppForm.OnPrepareModalPanelBounds(DevComponents.DotNetBar.Metro.ModalPanelBoundsEventArgs)">
<summary>
Raises PrepareModalPanelBounds event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroAppForm.#ctor">
<summary>
Initializes a new instance of the MetroForm class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroAppForm.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroAppForm.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroAppForm.ShowModalPanel(System.Windows.Forms.Control)">
<summary>
Shows the panel control in the center of the form and covers all non system controls making the panel effectively modal.
</summary>
<param name="panel">Control to show.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroAppForm.ShowModalPanel(System.Windows.Forms.Control,DevComponents.DotNetBar.Controls.eSlideSide)">
<summary>
Shows the panel control in the center of the form by sliding it in from specified side and covers all non system controls making the panel effectively modal.
</summary>
<param name="panel">Panel to show.</param>
<param name="slideFromSide">Side to slide panel into the view from.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroAppForm.ShowModalPanel(System.Windows.Forms.Control,DevComponents.DotNetBar.Controls.eSlideSide,System.Int32)">
<summary>
Shows the panel control in the center of the form by sliding it in from specified side and covers all non system controls making the panel effectively modal.
</summary>
<param name="panel">Panel to show.</param>
<param name="slideFromSide">Side to slide panel into the view from.</param>
<param name="animationTimeMilliseconds">Slide animation speed in milliseconds.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroAppForm.CloseModalPanel(System.Windows.Forms.Control)">
<summary>
Hides the panel control that was previously shown using ShowModalPanel method.
</summary>
<param name="panel">Control to hide.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroAppForm.CloseModalPanel(System.Windows.Forms.Control,DevComponents.DotNetBar.Controls.eSlideSide)">
<summary>
Hides the panel control that was previously shown using ShowModalPanel method by sliding it out of the view to the specified side.
</summary>
<param name="panel">Control to hide.</param>
<param name="slideOutToSide">Side to slide control into.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroAppForm.GetBorderThickness">
<summary>
Gets effective Border Thickness for the form.
</summary>
<returns>Thickness</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroAppForm.OnBorderThicknessChanged(DevComponents.DotNetBar.Metro.Thickness,DevComponents.DotNetBar.Metro.Thickness)">
<summary>
Called when BorderThickness property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroAppForm.OnBorderColorChanged(DevComponents.DotNetBar.Metro.BorderColors,DevComponents.DotNetBar.Metro.BorderColors)">
<summary>
Called when BorderColor property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroAppForm.WindowsMessageNCHitTest(System.Windows.Forms.Message@)">
<summary>
Called when WM_NCHITTEST message is received.
</summary>
<param name="m">Reference to message data.</param>
<returns>Return true to call base form implementation otherwise return false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroAppForm.WindowsMessageDwmCompositionChanged(System.Windows.Forms.Message@)">
<summary>
Called when WM_DWMCOMPOSITIONCHANGED message is received.
</summary>
<param name="m">Reference to message data.</param>
<returns>Return true to call base form implementation otherwise return false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroAppForm.WindowsMessageNCActivate(System.Windows.Forms.Message@)">
<summary>
Called when WM_NCACTIVATE message is received.
</summary>
<param name="m">Reference to message data.</param>
<returns>Return true to call base form implementation otherwise return false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroAppForm.WindowsMessageNCCalcSize(System.Windows.Forms.Message@)">
<summary>
Called when WM_NCCALCSIZE message is received.
</summary>
<param name="m">Message structure.</param>
<returns>true to call base WndProc otherwise false.</returns>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroAppForm.PrepareModalPanelBounds">
<summary>
Occurs before modal panel is shown and allows change of modal panel bounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.PreRenderShell">
<summary>
Gets or sets whether MetroShell is pre-rendered when form is shown to make first rendering smoother. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.IsModalPanelDisplayed">
<summary>
Gets whether at least one modal panel is displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.ModalPanelBoundsExcludeStatusBar">
<summary>
Indicates whether modal panel when displayed shows MetroStatusBar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.IsGlassEnabled">
<summary>
Returns whether Windows Glass effects are enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.MetroShell">
<summary>
Gets or sets the MetroTab that is hosted by this form. This property is for internal use only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.Sizable">
<summary>
Gets or sets whether form can be resized.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.BorderThickness">
<summary>
Gets or sets the form border thickness. Default value is empty thickness which indicates that thickness is taken from MetroFormColorTable.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.BorderColor">
<summary>
Gets or sets the form border colors.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.IsActive">
<summary>
Gets whether form is active.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.AutoHideTaskBarReduction">
<summary>
Indicates the number of pixels subtracted from form's height or width (depending on taskbar position) when form is maximized and taskbar is in auto-hide state. Default value is 4.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.FormBorderStyle">
<summary>
This property is not to be used with MetroForm.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.FormResizeBorder">
<summary>
Gets or sets the size of the border on the edges of the form that when mouse is over allow for form resizing.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.CloseBoxVisible">
<summary>
Indicates whether Close button in top-right corner of the form is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.AutoScroll">
<summary>
This property cannot be used on MetroAppForm
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.AutoScrollOffset">
<summary>
This property cannot be used on MetroAppForm
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.AutoScrollMargin">
<summary>
This property cannot be used on MetroAppForm
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.AutoScrollMinSize">
<summary>
This property cannot be used on MetroAppForm
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.SystemMenuRestore">
<summary>
Gets or sets text for form system menu Restore item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.SystemMenuMove">
<summary>
Gets or sets text for form system menu Move item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.SystemMenuSize">
<summary>
Gets or sets text for form system menu Size item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.SystemMenuMinimize">
<summary>
Gets or sets text for form system menu Minimize item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.SystemMenuMaximize">
<summary>
Gets or sets text for form system menu Maximize item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroAppForm.SystemMenuClose">
<summary>
Gets or sets text for form system menu Close item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.BorderOverlay.#ctor">
<summary>
Initializes a new instance of the BorderOverlay class.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.ModalPanelBoundsEventHandler">
<summary>
Delegate for PrepareModalPanelBounds event.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="T:DevComponents.DotNetBar.Metro.ModalPanelBoundsEventArgs">
<summary>
Provides data for PrepareModalPanelBounds event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.ModalPanelBoundsEventArgs.ModalPanelBounds">
<summary>
Gets or sets the bounds modal panel will occupy when shown.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.ModalPanelBoundsEventArgs.#ctor(System.Drawing.Rectangle)">
<summary>
Initializes a new instance of the ModalPanelBoundsEventArgs class.
</summary>
<param name="modalPanelBounds"></param>
</member>
<member name="F:DevComponents.DotNetBar.Metro.MetroMessageBoxDialog.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroMessageBoxDialog.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroMessageBoxDialog.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroMessageBoxDialog.ButtonsDividerVisible">
<summary>
Gets or sets whether divider panel that divides message box buttons and text content is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroMessageBoxDialog.TextMarkupEnabled">
<summary>
Gets or sets whether Text supports and renders text markup. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroMessageBoxDialog.AntiAlias">
<summary>
Gets or sets the anti-alias setting for text-pane.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.MetroMessageBoxDialog.SystemStrings">
<summary>
Enumeration of available common system strings.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.MetroQatCustomizeDialog.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroQatCustomizeDialog.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroQatCustomizeDialog.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroQatCustomizeDialog.LoadItems(DevComponents.DotNetBar.Metro.MetroShell)">
<summary>
Loads the items for the customization from MetroTab control. Registered MetroToolbar controls are enumerated and items
are added if they have CanCustomize=true.
</summary>
<param name="tab">MetroTab control that holds references to known MetroToolbars.</param>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroQatCustomizeDialog.QatCustomizePanel">
<summary>
Gets reference to the internal Quick Access Toolbar Customization panel.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.MetroShell">
<summary>
Represents Metro Tab control, usually used as application tab but can be used as standard tab control as well.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroShell.OnSettingsButtonClick(System.EventArgs)">
<summary>
Raises SettingsButtonClick event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroShell.OnHelpButtonClick(System.EventArgs)">
<summary>
Raises HelpButtonClick event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="F:DevComponents.DotNetBar.Metro.MetroShell.SysQatCustomizeItemName">
<summary>
Gets the name of the QAT Customize Item which is used to display the QAT Customize Dialog box.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.MetroShell.SysQatAddToItemName">
<summary>
Gets the name of the Add to Quick Access Toolbar context menu item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.MetroShell.SysQatRemoveFromItemName">
<summary>
Gets the name of the Remove from Quick Access Toolbar context menu item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.MetroShell.SysQatPlaceItemName">
<summary>
Gets the name of the QAT placement change context menu item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.MetroShell.SysQatCustomizeLabelName">
<summary>
Gets the name of the label displayed on Quick Access Toolbar customize popup menu.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.MetroShell.SysFrequentlyQatNamePart">
<summary>
Gets the string that is used as starting name for the frequently used QAT menu items created when QAT Customize menu is displayed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroShell.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroShell.SetTabPanelStyle(DevComponents.DotNetBar.Metro.MetroTabPanel)">
<summary>
Performs the setup of the MetroTabPanel with the current style of the MetroShell Control.
</summary>
<param name="panel">Panel to apply style changes to.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroShell.CreateTab(System.String,System.String,System.Int32)">
<summary>
Creates new Rendering Tab at specified position, creates new associated panel and adds them to the control.
</summary>
<param name="text">Specifies the text displayed on the tab.</param>
<param name="name">Specifies the name of the tab</param>
<param name="insertPosition">Specifies the position of the new tab inside of Items collection.</param>
<returns>New instance of the MetroTabItem that was created.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroShell.CreateTab(System.String,System.String)">
<summary>
Creates new Rendering Tab and associated panel and adds them to the control.
</summary>
<param name="text">Specifies the text displayed on the tab.</param>
<param name="name">Specifies the name of the tab</param>
<returns>New instance of the MetroTabItem that was created.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroShell.RecalcLayout">
<summary>
Recalculates layout of the control and applies any changes made to the size or position of the items contained.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroShell.TabStripTitleTextMarkupLinkClick(System.Object,DevComponents.DotNetBar.MarkupLinkClickEventArgs)">
<summary>
Occurs when text markup link is clicked.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroShell.OnTabStripRightClick(DevComponents.DotNetBar.Metro.MetroTabStrip,System.Int32,System.Int32)">
<summary>
Called when right-mouse button is pressed over MetroTabStrip
</summary>
<param name="metroStrip">Reference to MetroTabStrip object.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroShell.ShowCustomizeContextMenu(System.Object,System.Boolean)">
<summary>
Displays popup customize context menu for given customization object.
</summary>
<param name="o">Object that should be customized, usually an instance of BaseItem.</param>
<param name="isTabStrip">Indicates whether customize menu is displayed over metro tab strip</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroShell.RemoveItemFromQuickAccessToolbar(DevComponents.DotNetBar.BaseItem)">
<summary>
Removes an item from the Quick Access Toolbar.
</summary>
<param name="item">Reference to the item that is already part of Quick Access Toolbar.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroShell.AddItemToQuickAccessToolbar(System.Object)">
<summary>
Adds an instance of base type BaseItem to the Quick Access Toolbar. Note that this method creates
new instance of the item or an representation of the item being added and adds that to the Quick Access Toolbar.
</summary>
<param name="originalItem">Reference to the item to add, must be an BaseItem type.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroShell.OnBeforeCustomizeMenuPopup(DevComponents.DotNetBar.RibbonCustomizeEventArgs)">
<summary>
Raises the BeforeCustomizeMenuPopup event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroShell.OnBeforeAddItemToQuickAccessToolbar(DevComponents.DotNetBar.RibbonCustomizeEventArgs)">
<summary>
Raises the BeforeAddItemToQuickAccessToolbar event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroShell.ShowQatCustomizeDialog">
<summary>
Shows the quick access toolbar customize dialog.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroShell.ApplyQatCustomizePanelChanges(DevComponents.DotNetBar.Ribbon.QatCustomizePanel)">
<summary>
Applies the Quick Access Toolbar customization changes made on QatCustomizePanel to the MetroShell Control Quick Access Toolbar. Note that QatCustomizePanel.DataChanged property indicates whether user made any changes to the data on the panel.
</summary>
<param name="customizePanel">Reference to the QatCustomizePanel</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroShell.OnAfterQatDialogChangesApplied">
<summary>
Raises the AfterQatDialogChangesApplied event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroShell.GetApplicationButton">
<summary>
Returns the Metro Application Button.
</summary>
<returns>reference to Application Button or null if button is not found.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroShell.RegisterToolbar(DevComponents.DotNetBar.IOwner)">
<summary>
Registers the MetroToolbar or any other DotNetBar container that implements IOwner interface so it can participate in Quick Access Toolbar serialization and customization.
</summary>
<param name="toolbar"></param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroShell.UnregisterToolbar(DevComponents.DotNetBar.IOwner)">
<summary>
Registers the MetroToolbar or any other DotNetBar container that implements IOwner interface so it can participate in Quick Access Toolbar serialization and customization.
</summary>
<param name="toolbar"></param>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroShell.BeforeCustomizeMenuPopup">
<summary>
Occurs just before the customize popup menu is displayed and provides the ability to cancel the menu display as well
as to add/remove the menu items from the customize popup menu.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroShell.BeforeAddItemToQuickAccessToolbar">
<summary>
Occurs before an item is added to the quick access toolbar as result of user action. This event provides ability to
cancel the addition of the item by setting the Cancel=true of event arguments.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroShell.BeforeRemoveItemFromQuickAccessToolbar">
<summary>
Occurs before an item is removed from the quick access toolbar as result of user action. This event provides ability to
cancel the addition of the item by setting the Cancel=true of event arguments.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroShell.LocalizeString">
<summary>
Occurs when DotNetBar is looking for translated text for one of the internal text that are
displayed on menus, toolbars and customize forms. You need to set Handled=true if you want
your custom text to be used instead of the built-in system value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroShell.ItemClick">
<summary>
Occurs when Item on metro tab strip or quick access toolbar is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroShell.BeforeQatCustomizeDialog">
<summary>
Occurs before Quick Access Toolbar dialog is displayed. This event provides the opportunity to cancel the showing of
built-in dialog and display custom customization dialog. You can also set the Dialog property of the event arguments to
the custom dialog you want used instead of the DotNetBar system customization dialog.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroShell.AfterQatCustomizeDialog">
<summary>
Occurs after the Quick Access Toolbar dialog is closed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroShell.AfterQatDialogChangesApplied">
<summary>
Occurs after any changes done on the Quick Access Toolbar dialog are applied to the actual Quick Access Toolbar.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroShell.SelectedTabChanged">
<summary>
Occurs after selected Metro tab has changed. You can use
<see cref="P:DevComponents.DotNetBar.Metro.MetroShell.SelectedTab">MetroShell.SelectedTab</see>
property to get reference to newly selected tab.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroShell.TitleTextMarkupLinkClick">
<summary>
Occurs when text markup link from TitleText markup is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroShell.SettingsButtonClick">
<summary>
Occurs when SETTINGS button, if displayed, is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroShell.HelpButtonClick">
<summary>
Occurs when HELP button, if displayed, is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.QatFrequentCommands">
<summary>
Gets the collection of the Quick Access Toolbar Frequently used commands. You should add existing buttons to this collection that
you already have on the MetroToolbar controls or on the application menu. The list will be used to construct the frequently used
menu that is displayed when Customize Quick Access Toolbar menu is displayed and it allows end-user to remove and add these
frequently used commands to the QAT directly from this menu.
Note that items you add here should not be items that are already on Quick Access Toolbar, i.e. in MetroShell.QuickToolbarItems collection.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.KeyTipsEnabled">
<summary>
Gets or sets whether KeyTips functionality is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.ShowIcon">
<summary>
Indicates whether Form.Icon is shown in top-left corner.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.Metro.MetroShell.TitleText" -->
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.GlobalContextMenuBar">
<summary>
Gets or sets the Context menu bar associated with the this control which is used as part of Global Items feature. The context menu
bar assigned here will be used to search for the items with the same Name or GlobalName property so global properties can be propagated when changed.
You should assign this property to enable the Global Items feature to reach your ContextMenuBar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.CaptionVisible">
<summary>
Gets or sets whether custom caption and quick access toolbar provided by the control is visible. Default value is false.
This property should be set to true when control is used on MetroAppForm.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.CaptionFont">
<summary>
Gets or sets the font for the form caption text when CaptionVisible=true. Default value is NULL which means that system font is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.CaptionHeight">
<summary>
Gets or sets the explicit height of the caption provided by control. Caption height when set is composed of the TabGroupHeight and
the value specified here. Default value is 0 which means that system default caption size is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.KeyTipsFont">
<summary>
Gets or sets the font that is used to display Key Tips (accelerator keys) when they are displayed. Default value is null which means
that control Font is used for Key Tips display.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.BackgroundStyle">
<summary>
Specifies the background style of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.SelectedTab">
<summary>
Gets or sets the currently selected MetroTabItem. MetroTabItems are selected using the Checked property. Only a single
MetroTabItem can be selected (Checked) at any given time.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.MetroTabStrip">
<summary>
Returns reference to internal metro tab-strip control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.Items">
<summary>
Returns collection of items on a bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.QuickToolbarItems">
<summary>
Returns collection of quick toolbar access and caption items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.MouseWheelTabScrollEnabled">
<summary>
Gets or sets whether mouse wheel scrolls through the Metro tabs. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.Images">
<summary>
ImageList for images used on Items. Images specified here will always be used on menu-items and are by default used on all Bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.ImagesMedium">
<summary>
ImageList for medium-sized images used on Items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.ImagesLarge">
<summary>
ImageList for large-sized images used on Items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.TabStop">
<summary>
Gets or sets a value indicating whether the user can give the focus to this control using the TAB key. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.CanCustomize">
<summary>
Gets or sets whether control can be customized and items added by end-user using context menu to the quick access toolbar.
Caption of the control must be visible for customization to be enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.UseExternalCustomization">
<summary>
Gets or sets whether external implementation for metro toolbar and menu item customization will be used for customizing the control. When set to true
it enables the displaying of MetroToolbar and menu item context menus which allow customization. You are responsible for
adding the menu items to context menu to handle all aspects of item customization. See "MetroShell Control Quick Access Toolbar Customization" topic in help file under How To.
Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.UseCustomizeDialog">
<summary>
Gets or sets whether customize dialog is used to customize the quick access toolbar. You can handle the EnterCustomize event
to display your custom dialog instead of built-in dialog for customization. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.CategorizeMode">
<summary>
Gets or sets the categorization mode for the items on Quick Access Toolbar customize dialog box. Default value categorizes
items by the toolbar they appear on.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.QatLayout">
<summary>
Gets or sets the Quick Access Toolbar layout description. You can use the value obtained from this property to save
the customized Quick Access Toolbar into registry or into any other storage object. You can also set the saved layout description back
to restore user customize layout.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.QatLayoutChanged">
<summary>
Gets or sets whether Quick Access Toolbar has been customized by end-user. You can use value of this property to determine
whether Quick Access Toolbar layout that can be accessed using QatLayout property should be saved.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.SystemText">
<summary>
Gets the reference to the Metro localization object which holds all system text used by the component.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.TabStripDock">
<summary>
Gets or sets the side tab-strip is docked to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.SettingsButtonVisible">
<summary>
Gets or sets whether SETTINGS button is visible.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.Metro.MetroShell.HelpButtonVisible" -->
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.SettingsButtonText">
<summary>
Gets or sets the SETTINGS button text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.HelpButtonText">
<summary>
Gets or sets the HELP button text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroShell.TabStripFont">
<summary>
Gets or sets the font tab items are displayed with.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.eMetroCategorizeMode">
<summary>
Describes the categorization mode used to categorize items on the Customize Metro dialog.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.eMetroCategorizeMode.Toolbar">
<summary>
Items are automatically categorized by the toolbar they appear on.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.eMetroCategorizeMode.Categories">
<summary>
Items are categorized by the Category property on each item. Category property should be set on each item.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.MetroStatusBar">
<summary>
Represents Metro-UI Status Bar control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroStatusBar.#ctor">
<summary>
Initializes a new instance of the MetroStatusBar class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroStatusBar.OnResizeHandleVisibleChanged(System.Boolean,System.Boolean)">
<summary>
Called when ResizeHandleVisible property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroStatusBar.OverflowEnabled">
<summary>
Indicates whether items that cannot fit are displayed on popup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroStatusBar.Items">
<summary>
Returns collection of items on a bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroStatusBar.ResizeHandleVisible">
<summary>
Gets or sets whether resize handle used to resize the parent form is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroStatusBar.ItemSpacing">
<summary>
Gets or sets spacing between items, default value is 2.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.MetroStripContainerItem">
<summary>
Defines the internal container item for the ribbon strip control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroStripContainerItem.#ctor(DevComponents.DotNetBar.Metro.MetroTabStrip)">
<summary>
Creates new instance of the class and initializes it with the parent RibbonStrip control.
</summary>
<param name="parent">Reference to parent RibbonStrip control</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroStripContainerItem.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Paints this base container
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroStripContainerItem.Copy">
<summary>
Returns copy of GenericItemContainer item
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroStripContainerItem.ItemAtLocation(System.Int32,System.Int32)">
<summary>
Return Sub Item at specified location
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroStripContainerItem.OnSettingsButtonTextChanged(System.String,System.String)">
<summary>
Called when SettingsButtonText property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroStripContainerItem.OnHelpButtonTextChanged(System.String,System.String)">
<summary>
Called when HelpButtonText property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroStripContainerItem.RibbonStripContainer">
<summary>
Gets reference to internal ribbon strip container that contains tabs and/or other items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroStripContainerItem.CaptionContainer">
<summary>
Gets reference to internal caption container item that contains the quick toolbar, start button and system caption item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroStripContainerItem.Expanded">
<summary>
Gets or sets a value indicating whether the item is expanded or not. For Popup items this would indicate whether the item is popped up or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroStripContainerItem.SubItemsImageSize">
<summary>
When parent items does recalc size for its sub-items it should query
image size and store biggest image size into this property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroStripContainerItem.SettingsButtonVisible">
<summary>
Gets or sets whether Settings button is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroStripContainerItem.HelpButtonVisible">
<summary>
Gets or sets whether Help button is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroStripContainerItem.SettingsButtonText">
<summary>
Gets or sets the Settings button text.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.MetroTabItem">
<summary>
Represents Rendering Tab used on Metro Tab Control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTabItem.#ctor">
<summary>
Initializes a new instance of the MetroTabItem class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTabItem.Select">
<summary>
Selects the tab.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTabItem.OnCheckedChanged">
<summary>
Called after Checked property has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTabItem.OnClick">
<summary>
Occurs just before Click event is fired.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTabItem.OnVisibleChanged(System.Boolean)">
<summary>
Called when Visibility of the items has changed.
</summary>
<param name="bVisible">New Visible state.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTabItem.OnStyleChanged">
<summary>
Occurs after item visual style has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.ImageRenderBounds">
<summary>
Gets or sets cached image rendering bounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.TextRenderBounds">
<summary>
Gets or sets cached text rendering bounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.RenderTabState">
<summary>
Gets or sets whether tab renders its state. Used internally by DotNetBar. Do not set.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.PaddingHorizontal">
<summary>
Gets or sets the additional padding added around the tab item in pixels. Default value is 0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.ReducedSize">
<summary>
Gets or sets whether size of the tab has been reduced below the default calculated size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.ColorTable">
<summary>
Gets or sets the predefined color of item. Color specified here applies to items with Office 2007 style only. It does not have
any effect on other styles. Default value is eMetroTabColor.Default
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.Panel">
<summary>
Gets or sets the panel assigned to this tab item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.OptionGroup">
<summary>
Gets or set the Group item belongs to. The groups allows a user to choose from mutually exclusive options within the group. The choice is reflected by Checked property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.SubItems">
<summary>
Returns the collection of sub items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.AutoCollapseOnClick">
<summary>
Indicates whether the item will auto-collapse (fold) when clicked.
When item is on popup menu and this property is set to false, menu will not
close when item is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.AutoExpandOnClick">
<summary>
Indicates whether the item will auto-expand when clicked.
When item is on top level bar and not on menu and contains sub-items, sub-items will be shown only if user
click the expand part of the button. Setting this propert to true will expand the button and show sub-items when user
clicks anywhere inside of the button. Default value is false which indicates that button is expanded only
if its expand part is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.CanCustomize">
<summary>
Gets or sets whether item can be customized by end user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.Checked">
<summary>
Gets or set a value indicating whether the button is in the checked state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.ClickAutoRepeat">
<summary>
Gets or sets whether Click event will be auto repeated when mouse button is kept pressed over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.ClickRepeatInterval">
<summary>
Gets or sets the auto-repeat interval for the click event when mouse button is kept pressed over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.Enabled">
<summary>
Gets or sets a value indicating whether the item is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.MenuVisibility">
<summary>
Indicates item's visiblity when on pop-up menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.PersonalizedMenus">
<summary>
Indicates when menu items are displayed when MenuVisiblity is set to VisibleIfRecentlyUsed and RecentlyUsed is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.PopupAnimation">
<summary>
Indicates Animation type for Popups.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.PopupFont">
<summary>
Indicates the font that will be used on the popup window.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.PopupType">
<summary>
Indicates whether sub-items are shown on popup Bar or popup menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.PopupWidth">
<summary>
Specifies the inital width for the Bar that hosts pop-up items. Applies to PopupType.Toolbar only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.ShowSubItems">
<summary>
Gets or sets whether item will display sub items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.Stretch">
<summary>
Gets or sets whether the item expands automatically to fill out the remaining space inside the container. Applies to Items on stretchable, no-wrap Bars only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.SubItemsExpandWidth">
<summary>
Gets or sets the width of the expand part of the button item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.AlternateShortCutText">
<summary>
Gets or set the alternative shortcut text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.BeginGroup">
<summary>
Gets or sets whether item separator is shown before this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.Category">
<summary>
Returns category for this item. If item cannot be customzied using the
customize dialog category is empty string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.HotForeColor">
<summary>
Gets or sets the text color of the button when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.HotTrackingStyle">
<summary>
Indicates the way item is painting the picture when mouse is over it. Setting the value to Color will render the image in gray-scale when mouse is not over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.ForeColor">
<summary>
Gets or sets the text color of the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabItem.ButtonStyle">
<summary>
Gets/Sets the button style which controls the appearance of the button elements. Changing the property can display image only, text only or image and text on the button at all times.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.eMetroTabColor">
<summary>
Specifies predefined color assigned to Metro Tab.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.MetroTabPanel">
<summary>
Represents panel used by MetroTabItem as a container panel for the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTabPanel.#ctor">
<summary>
Creates new instance of the panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabPanel.UseCustomStyle">
<summary>
Indicates whether style of the panel is managed by tab control automatically.
Set this to true if you would like to control style of the panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabPanel.MetroTabItem">
<summary>
Gets or sets TabItem that this panel is attached to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabPanel.Dock">
<summary>
Gets or sets which edge of the parent container a control is docked to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabPanel.Size">
<summary>
Gets or sets the size of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabPanel.Location">
<summary>
Gets or sets the coordinates of the upper-left corner of the control relative to the upper-left corner of its container.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabPanel.Visible">
<summary>
Gets or sets a value indicating whether the control is displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabPanel.Anchor">
<summary>
Gets or sets which edges of the control are anchored to the edges of its container.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.MetroTabStrip">
<summary>
Represents Metro-UI TabStrip control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTabStrip.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTabStrip.InternalTitleTextMarkupLinkClick(System.Object,System.EventArgs)">
<summary>
Occurs when text markup link is clicked.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTabStrip.GetColorScheme">
<summary>
Returns the color scheme used by control. Color scheme for Office2007 style will be retrived from the current renderer instead of
local color scheme referenced by ColorScheme property.
</summary>
<returns>An instance of ColorScheme object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTabStrip.GetCaptionHeight">
<summary>
Returns effective caption height.
</summary>
<returns>Caption height.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTabStrip.GetAutoSizeHeight">
<summary>
Returns automatically calculated height of the control given current content.
</summary>
<returns>Height in pixels.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTabStrip.GetItems(System.String)">
<summary>
Returns the collection of items with the specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTabStrip.GetItems(System.String,System.Type)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTabStrip.GetItems(System.String,System.Type,System.Boolean)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<param name="useGlobalName">Indicates whether GlobalName property is used for searching.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTabStrip.GetItem(System.String)">
<summary>
Returns the first item that matches specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTabStrip.OnRibbonBarShowKeyTips(DevComponents.DotNetBar.RibbonBar)">
<summary>
Called when ShowKeyTips on RibbonBar contained by this Ribbon is set to true
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTabStrip.ExitKeyTipsMode">
<summary>
Forces the control to exit Ribbon Key-Tips mode.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTabStrip.OnPopupItemRightClick(DevComponents.DotNetBar.BaseItem)">
<summary>
Called when item on popup container is right-clicked.
</summary>
<param name="item">Instance of the item that is right-clicked.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTabStrip.StartFormMove">
<summary>
Starts moving of the parent form action which happens when user attempts to drag the form caption.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTabStrip.HitTestCaption(System.Drawing.Point)">
<summary>
Returns true if point is inside the caption area.
</summary>
<param name="p">Client point coordinates.</param>
<returns>True if point is inside of caption area otherwise false.</returns>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroTabStrip.TitleTextMarkupLinkClick">
<summary>
Occurs when text markup link from TitleText markup is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.Metro.MetroTabStrip.TitleText" -->
<member name="P:DevComponents.DotNetBar.Metro.MetroTabStrip.TitleTextMarkupBody">
<summary>
Gets reference to parsed markup body element if text was markup otherwise returns null.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabStrip.KeyTipsEnabled">
<summary>
Gets or sets whether KeyTips functionality is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabStrip.CanCustomize">
<summary>
Gets or sets whether control can be customized and items added by end-user using context menu to the quick access toolbar.
Caption of the control must be visible for customization to be enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabStrip.CaptionHeight">
<summary>
Gets or sets the explicit height of the caption provided by control. Caption height when set is composed of the TabGroupHeight and
the value specified here. Default value is 0 which means that system default caption size is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabStrip.CaptionVisible">
<summary>
Gets or sets whether custom caption line provided by the control is visible. Default value is false.
This property should be set to true when control is used on Office2007RibbonForm.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabStrip.CaptionFont">
<summary>
Gets or sets the font for the form caption text when CaptionVisible=true. Default value is NULL which means that system font is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabStrip.Style">
<summary>
Gets/Sets the visual style of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabStrip.Items">
<summary>
Returns collection of items on a bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabStrip.SelectedTab">
<summary>
Returns currently selected MetroTabItem. MetroTabItems are selected using the Checked property. Only a single
MetroTabItem can be Checked at any given time.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabStrip.IsInKeyTipsMode">
<summary>
Gets whether Ribbon is in key-tips mode including its child controls.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabStrip.ShowIcon">
<summary>
Indicates whether Form.Icon is shown in top-left corner.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabStrip.QuickToolbarItems">
<summary>
Returns collection of items on a bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabStrip.CaptionContainerItem">
<summary>
Gets the reference to the internal container item for the items displayed in control caption.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTabStrip.StripContainerItem">
<summary>
Gets the reference to the internal container for the ribbon tabs and other items.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.MetroTileItem">
<summary>
Represents Metro Tile.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.OnCheckedChanged(System.EventArgs)">
<summary>
Raises CheckedChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.OnOptionGroupChanging(DevComponents.DotNetBar.OptionGroupChangingEventArgs)">
<summary>
Raises OptionGroupChanging event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.#ctor">
<summary>
Creates new instance of metro tile.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.#ctor(System.String)">
<summary>
Creates new instance of metro tile and assigns the name to it.
</summary>
<param name="sItemName">Item name.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.#ctor(System.String,System.String)">
<summary>
Creates new instance of metro tile and assigns the name and text to it.
</summary>
<param name="sItemName">Item name.</param>
<param name="ItemText">item text.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.InternalCopyToItem(DevComponents.DotNetBar.Metro.MetroTileItem)">
<summary>
Copies the MetroTileItem specific properties to new instance of the item.
</summary>
<param name="copy">New ProgressBarItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the MetroTileItem specific properties to new instance of the item.
</summary>
<param name="copy">New MetroTileItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.OnNotificationMarkTextChanged(System.String,System.String)">
<summary>
Called when NotificationMarkText property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.OnNotificationMarkPositionChanged(DevComponents.DotNetBar.eNotificationMarkPosition,DevComponents.DotNetBar.eNotificationMarkPosition)">
<summary>
Called when NotificationMarkPosition property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.OnNotificationMarkSizeChanged(System.Int32,System.Int32)">
<summary>
Called when NotificationMarkSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.ShouldSerializeNotificationMarkColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.ResetNotificationMarkColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.OnNotificationMarkOffsetChanged(System.Drawing.Point,System.Drawing.Point)">
<summary>
Called when NotificationMarkOffset property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.ShouldSerializeNotificationMarkOffset">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.ResetNotificationMarkOffset">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.OnClick">
<summary>
Occurs just before Click event is fired.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.OnTileSizeChanged(System.Drawing.Size,System.Drawing.Size)">
<summary>
Called when TileSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.OnSymbolSetChanged(DevComponents.DotNetBar.eSymbolSet,DevComponents.DotNetBar.eSymbolSet)">
<summary>
Called when SymbolSet property value changes.
</summary>
<param name="oldValue">Indciates old value</param>
<param name="newValue">Indicates new value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.OnIsLeftMouseButtonDownChanged(System.Boolean,System.Boolean)">
<summary>
Called when IsLeftMouseButtonDown property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.OnIsMouseOverChanged(System.Boolean,System.Boolean)">
<summary>
Called when IsMouseOver property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.OnTitleTextMarkupLinkClick(System.EventArgs)">
<summary>
Raises TitleTextMarkupLinkClick event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.ShouldSerializeTitleTextColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.ResetTitleTextColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.ShouldSerializeImageIndent">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.ResetImageIndent">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.OnCheckedChanged(System.Boolean,System.Boolean)">
<summary>
Called when Checked property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.OnCheckBehaviorChanged(DevComponents.DotNetBar.Metro.eMetroTileCheckBehavior,DevComponents.DotNetBar.Metro.eMetroTileCheckBehavior)">
<summary>
Called when CheckBehavior property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.OnCurrentFrameChanged(System.Int32,System.Int32)">
<summary>
Called when CurrentFrame property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.OnAutoRotateFramesIntervalChanged(System.Int32,System.Int32)">
<summary>
Called when AutoRotateFramesInterval property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.OnDragStartPointChanged(System.Drawing.Point,System.Drawing.Point)">
<summary>
Called when DragStartPoint property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.ShouldSerializeDisabledBackColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileItem.ResetDisabledBackColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroTileItem.CheckedChanged">
<summary>
Occurs after Checked property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroTileItem.OptionGroupChanging">
<summary>
Occurs before an item in option group is checked and provides opportunity to cancel that.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroTileItem.MarkupLinkClick">
<summary>
Occurs when text markup link is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.NotificationMarkText">
<summary>
Specifies maximum of 2 character text displayed inside of the notification mark on top of the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.NotificationMarkPosition">
<summary>
Indicates the position of the notification marker within the bounds of the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.NotificationMarkSize">
<summary>
Specifies diameter of notification mark. When set to 0 system default value is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.NotificationMarkColor">
<summary>
Gets or sets background color of the notification mark.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.NotificationMarkOffset">
<summary>
Specifies the offset for the notification mark relative to its position.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.TileSize">
<summary>
Gets or sets the tile size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.TileColor">
<summary>
Gets or sets the predefined tile color for default tile frame.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.TileStyle">
<summary>
Specifies the Tile style default tile frame.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.Symbol">
<summary>
Indicates the symbol displayed on face of the tile instead of the image. Setting the symbol overrides the image setting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.SymbolSet">
<summary>
Gets or sets the symbol set used to represent the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.SymbolSize">
<summary>
Indicates the size of the symbol in points.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.SymbolColor">
<summary>
Gets or sets the color of the symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.Image">
<summary>
Gets or sets the image displayed on the tile.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.ImageTextAlignment">
<summary>
Gets or sets image alignment in relation to text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.Text">
<summary>
Gets or sets the text associated with this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.IsLeftMouseButtonDown">
<summary>
Gets whether left mouse button is pressed over the tile.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.IsMouseOver">
<summary>
Gets whether mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.TitleText">
<summary>
Gets or sets the tile title text displayed by default in lower left corner.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroTileItem.TitleTextMarkupLinkClick">
<summary>
Occurs when an hyperlink in title text markup is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.TitleTextFont">
<summary>
Gets or sets the title text font.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.TitleTextColor">
<summary>
Gets or sets the color of the title text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.TitleTextAlignment">
<summary>
Gets or sets title text alignment.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.ImageIndent">
<summary>
Gets or sets the top-left location of the image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.Checked">
<summary>
Gets or sets whether tile is checked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.CheckBehavior">
<summary>
Gets or sets the automatic check behavior of metro tile.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.OptionGroup">
<summary>
Gets or set the Group item belongs to. The groups allows a user to choose from mutually exclusive options within the group. The choice is reflected by Checked property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.Frames">
<summary>
Gets the list of tile frames that are displayed when frame animation is enabled using AnimationEnabled property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.CurrentFrame">
<summary>
Gets or sets index of currently displayed frame in Frames collection.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.LastFrame">
<summary>
Gets the index of last selected frame, i.e. before CurrentFrame was set with new value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.AnimationEnabled">
<summary>
Gets or sets whether Frame animation is enabled when CurrentFrame has changed. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.AnimationDuration">
<summary>
Gets or sets the frames animation duration in milliseconds. Default value is 800.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.AutoRotateFramesInterval">
<summary>
Gets or sets the automatic tile frame rotation interval in milliseconds. When set it will change the CurrentFrame property so each frame from Frames collection is displayed after interval set here.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.DisabledBackColor">
<summary>
Gets or sets tile background color when Enabled=false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.IsMarkupSupported">
<summary>
Gets whether item supports text markup. Default is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileItem.EnableMarkup">
<summary>
Gets or sets whether text-markup support is enabled for items Text property. Default value is true.
Set this property to false to display HTML or other markup in the item instead of it being parsed as text-markup.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.eMetroTileCheckBehavior">
<summary>
Specifies how MetroTileItem is checked.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.eMetroTileCheckBehavior.Inherit">
<summary>
Metro tile item inherits the check behavior from host control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.eMetroTileCheckBehavior.None">
<summary>
Metro tile item cannot be checked.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.eMetroTileCheckBehavior.RightMouseButtonClick">
<summary>
Metro tile item is checked using right mouse button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.eMetroTileCheckBehavior.MiddleMouseButtonClick">
<summary>
Metro tile item is checked using middle mouse button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.eMetroTileCheckBehavior.LeftMouseButtonClick">
<summary>
Metro tile item is checked using left mouse button.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.MetroTileFrame">
<summary>
Defines single frame for metro-tile item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.#ctor">
<summary>
Initializes a new instance of the MetroTileFrame class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.OnTitleTextChanged(System.String,System.String)">
<summary>
Called when TitleText property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.OnTitleTextMarkupLinkClick(System.EventArgs)">
<summary>
Raises TitleTextMarkupLinkClick event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.OnTitleTextFontChanged(System.Drawing.Font,System.Drawing.Font)">
<summary>
Called when TitleTextFont property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.OnTitleTextColorChanged(System.Drawing.Color,System.Drawing.Color)">
<summary>
Called when TitleTextColor property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.ShouldSerializeTitleTextColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.ResetTitleTextColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.OnTitleTextAlignmentChanged(System.Drawing.ContentAlignment,System.Drawing.ContentAlignment)">
<summary>
Called when TitleTextAlignment property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.OnSymbolChanged(System.String,System.String)">
<summary>
Called when Symbol property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.OnSymbolSetChanged(DevComponents.DotNetBar.eSymbolSet,DevComponents.DotNetBar.eSymbolSet)">
<summary>
Called when SymbolSet property value changes.
</summary>
<param name="oldValue">Indciates old value</param>
<param name="newValue">Indicates new value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.OnSymbolSizeChanged(System.Single,System.Single)">
<summary>
Called when SymbolSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.ShouldSerializeSymbolColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.ResetSymbolColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.OnImageChanged(System.Drawing.Image,System.Drawing.Image)">
<summary>
Called when Image property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.ShouldSerializeImageIndent">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.ResetImageIndent">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.OnTextChanged(System.String,System.String)">
<summary>
Called when Text property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.OnTileColorChanged(DevComponents.DotNetBar.Metro.eMetroTileColor,DevComponents.DotNetBar.Metro.eMetroTileColor)">
<summary>
Called when Color property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.OnFrameDisplayDurationChanged(System.Int32,System.Int32)">
<summary>
Called when FrameDisplayDuration property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.TextMarkupLinkClick(System.Object,System.EventArgs)">
<summary>
Occurs when text markup link is clicked.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.OnMarkupLinkClick(DevComponents.DotNetBar.MarkupLinkClickEventArgs)">
<summary>
Raises MarkupLinkClick event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.OnTextMarkupEnabledChanged(System.Boolean,System.Boolean)">
<summary>
Called when TextMarkupEnabled property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.OnImageTextAlignmentChanged(System.Drawing.ContentAlignment,System.Drawing.ContentAlignment)">
<summary>
Called when ImageTextAlignment property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTileFrame.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Raises the PropertyChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileFrame.TitleText">
<summary>
Gets or sets the tile title text displayed by default in lower left corner.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileFrame.TitleTextMarkupBody">
<summary>
Gets reference to parsed markup body element if text was markup otherwise returns null.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroTileFrame.TitleTextMarkupLinkClick">
<summary>
Occurs when an hyperlink in title text markup is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileFrame.TitleTextFont">
<summary>
Gets or sets the title text font.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileFrame.TitleTextColor">
<summary>
Gets or sets the color of the title text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileFrame.TitleTextAlignment">
<summary>
Gets or sets title text alignment.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileFrame.EffectiveStyle">
<summary>
Gets the effective style for the tile when TileColor property is set to predefined tile color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileFrame.TileStyle">
<summary>
Specifies the Tile style of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileFrame.SymbolRealized">
<summary>
Gets the realized symbol string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileFrame.Symbol">
<summary>
Indicates the symbol displayed on face of the tile instead of the image. Setting the symbol overrides the image setting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileFrame.SymbolSet">
<summary>
Gets or sets the symbol set used to represent the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileFrame.SymbolSize">
<summary>
Indicates the size of the symbol in points.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileFrame.SymbolColor">
<summary>
Gets or sets the color of the symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileFrame.Image">
<summary>
Gets or sets the image displayed on the tile.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileFrame.ImageIndent">
<summary>
Gets or sets the top-left location of the image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileFrame.Text">
<summary>
Gets or sets the text associated with this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileFrame.TileColor">
<summary>
Gets or sets the predefined tile color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileFrame.FrameDisplayDuration">
<summary>
Gets or sets the frame display duration in milliseconds during metro-tile frame animation. When not set then each frame will stay visible for duration set on MetroTileItem.AutoRotateFramesInterval.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroTileFrame.MarkupLinkClick">
<summary>
Occurs when text markup link is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileFrame.TextMarkupBody">
<summary>
Gets reference to parsed markup body element if text was markup otherwise returns null.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileFrame.TextMarkupEnabled">
<summary>
Gets or sets whether text-markup can be used in Text property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTileFrame.ImageTextAlignment">
<summary>
Gets or sets image alignment in relation to text.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroTileFrame.PropertyChanged">
<summary>
Occurs when property on BindingDef object has changed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.MetroTilePanel">
<summary>
Represents panel for Metro Tiles.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ItemPanel">
<summary>
Represents generic item panel container control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemPanel.GetChecked">
<summary>
Returns first checked top-level button item.
</summary>
<returns>An ButtonItem object or null if no button could be found.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ItemPanel.AddItem(System.String)">
<summary>
Adds new item to the ItemPanel based on specified ItemTemplate and sets its Text property.
</summary>
<param name="text">Text to assign to the item.</param>
<returns>reference to newly created item</returns>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanel.LayoutOrientation">
<summary>
Gets or sets default layout orientation inside the control. You can have multiple layouts inside of the control by adding
one or more instances of the ItemContainer object and chaning it's LayoutOrientation property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanel.ResizeItemsToFit">
<summary>
Gets or sets whether items contained by container are resized to fit the container bounds. When container is in horizontal
layout mode then all items will have the same height. When container is in vertical layout mode then all items
will have the same width. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanel.FitButtonsToContainerWidth">
<summary>
Gets or sets whether ButtonItem buttons when in vertical layout are fit into the available width so any text inside of them
is wrapped if needed. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanel.HorizontalItemAlignment">
<summary>
Gets or sets the item alignment when container is in horizontal layout. Default value is Left.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanel.MultiLine">
<summary>
Gets or sets whether items in horizontal layout are wrapped into the new line when they cannot fit allotted container size. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanel.Items">
<summary>
Returns collection of items on a bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanel.ReserveLeftSpace">
<summary>
Indicates whether block elements inside of container when aligned center or right will reserve the space to the left. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanel.SelectedIndex">
<summary>
Gets or sets the index specifying the currently selected item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanel.SelectedItems">
<summary>
Gets the list of ButtonItem or CheckBoxItem controls that have their Checked property set to true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemPanel.SelectedItem">
<summary>
Gets or sets ButtonItem or CheckBoxItem item that have their Checked property set to true.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroTilePanel.#ctor">
<summary>
Initializes a new instance of the MetroTilePanel class.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTilePanel.AutoScroll">
<summary>
Gets or sets a value indicating whether the control enables the user to scroll to items placed outside of its visible boundaries.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTilePanel.ItemSpacing">
<summary>
Gets or sets spacing in pixels between items. Default value is 1.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroTilePanel.ResizeItemsToFit">
<summary>
Gets or sets whether items contained by container are resized to fit the container bounds. When container is in horizontal
layout mode then all items will have the same height. When container is in vertical layout mode then all items
will have the same width. Default value is true.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroToolbar.OnExpandedChanging(System.ComponentModel.CancelEventArgs)">
<summary>
Raises ExpandedChanging event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroToolbar.OnExpandedChanged(System.EventArgs)">
<summary>
Raises ExpandedChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroToolbar.#ctor">
<summary>
Initializes a new instance of the MetroStatusBar class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroToolbar.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroToolbar.RegisterToolbar(DevComponents.DotNetBar.Metro.MetroShell)">
<summary>
Registers toolbar with MetroTab so it can participate in Quick Access Toolbar operations.
</summary>
<param name="tab">MetroTab</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroToolbar.UnregisterToolbar(DevComponents.DotNetBar.Metro.MetroShell)">
<summary>
Unregisters previously registered toolbar from MetroTab and removes it from Quick Access Toolbar operations.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroToolbar.GetAutoSizeHeight">
<summary>
Returns automatically calculated height of the control given current content.
</summary>
<returns>Height in pixels.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroToolbar.OnActiveWindowTrackingChanged">
<summary>
Called after change of active window has been detected. SetupActiveWindowTimer must be called to enable detection.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroToolbar.OnItemClick(DevComponents.DotNetBar.BaseItem)">
<summary>
Invokes the ItemClick event.
</summary>
<param name="item">Reference to the item that was clicked.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroToolbar.OnAutoCollapseChanged(System.Boolean,System.Boolean)">
<summary>
Called when AutoCollapse property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroToolbar.OnAnimationSpeedChanged(System.Int32,System.Int32)">
<summary>
Called when AnimationSpeed property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroToolbar.OnExpandDirectionChanged(DevComponents.DotNetBar.Metro.eExpandDirection,DevComponents.DotNetBar.Metro.eExpandDirection)">
<summary>
Called when ExpandDirection property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroToolbar.ExpandedChanging">
<summary>
Occurs before Expanded property has changed, i.e. control expanded or collapsed and allows you to cancel action by setting Cancel=true on event arguments.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Metro.MetroToolbar.ExpandedChanged">
<summary>
Occurs after Expanded property value has changed, i.e. control was expanded or collapsed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroToolbar.Items">
<summary>
Returns collection of items on a bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroToolbar.ItemSpacing">
<summary>
Gets or sets spacing between items, default value is 0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroToolbar.ExtraItems">
<summary>
Returns collection of items on a bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroToolbar.AutoRegister">
<summary>
Gets or sets whether toolbar is attempted to be automatically registered with parent MetroShell control so it can participate in Quick Access Toolbar operations. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroToolbar.Expanded">
<summary>
Gets or sets whether control is expanded or not. When control is expanded both main and extra toolbar items are visible. When collapsed
only main items are visible. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroToolbar.AutoCollapse">
<summary>
Gets or sets whether control is automatically collapsed, Expanded property set to False, if control was expanded and any button on the control was clicked or mouse is clicked elsewhere, parent form has lost input focus or some other control gains input focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroToolbar.AnimationSpeed">
<summary>
Gets or sets the animation speed duration in milliseconds. Default value is 150 milliseconds. Set to zero, 0 to disable animation.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroToolbar.ExpandDirection">
<summary>
Gets or sets the expand direction for the toolbar. Default value is Auto.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroToolbar.ExpandButtonVisible">
<summary>
Gets or sets whether Expand button is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroToolbar.AutoSize">
<summary>
Gets or sets whether control height is set automatically based on the content. Default value is false.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.eExpandDirection">
<summary>
Defines expand direction behavior for MetroToolbar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.eExpandDirection.Auto">
<summary>
Expand direction is automatically determined by the position of the control on the form.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.eExpandDirection.Top">
<summary>
Control is expanded up so bottom of the control is fixed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.eExpandDirection.Bottom">
<summary>
Control sis expanded down so top of the control is fixed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.MetroToolbarContainer">
<summary>
Defines the internal container item for the MetroToolbar control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroToolbarContainer.#ctor(DevComponents.DotNetBar.Metro.MetroToolbar)">
<summary>
Creates new instance of the class and initializes it with the parent RibbonStrip control.
</summary>
<param name="parent">Reference to parent MetroToolbar control</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroToolbarContainer.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Paints this base container
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroToolbarContainer.Copy">
<summary>
Returns copy of GenericItemContainer item
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.MetroToolbarContainer.OnExpandButtonVisibleChanged(System.Boolean,System.Boolean)">
<summary>
Called when ExpandButtonVisible property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroToolbarContainer.ExpandButtonVisible">
<summary>
Gets or sets whether Expand button is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroToolbarContainer.MainItemsContainer">
<summary>
Gets reference to container that host items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroToolbarContainer.ExtraItemsContainer">
<summary>
Gets reference to container that hosts extra items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroToolbarContainer.Expanded">
<summary>
Gets or sets a value indicating whether the item is expanded or not. For Popup items this would indicate whether the item is popped up or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.MetroToolbarContainer.SubItemsImageSize">
<summary>
When parent items does recalc size for its sub-items it should query
image size and store biggest image size into this property.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.ColorTables.OfficeMobile2014MetroInitializer">
<summary>
Initializes Office Mobile 2014 color scheme Metro color table based on colors specified.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Rendering.DrawingHelpers.DrawBorder(System.Drawing.Graphics,System.Drawing.RectangleF,DevComponents.DotNetBar.Metro.Thickness,DevComponents.DotNetBar.Metro.BorderColors)">
<summary>
Draws the border.
</summary>
<param name="g">Graphics canvas.</param>
<param name="bounds">Bounds for border.</param>
<param name="borderThickness">Border thickness.</param>
<param name="borderColor">Border color.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Rendering.DrawingHelpers.DrawBackground(System.Drawing.Graphics,System.Drawing.RectangleF,System.String)">
<summary>
Draws background.
</summary>
<param name="g">Graphics canvas.</param>
<param name="bounds">Background bounds.</param>
<param name="color">Background color</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Rendering.DrawingHelpers.Deflate(System.Drawing.RectangleF,DevComponents.DotNetBar.Metro.Thickness)">
<summary>
Deflates the rectangle by the border thickness.
</summary>
<param name="bounds">Rectangle.</param>
<param name="borderThickness">Border thickness</param>
<returns>Rectangle deflated by the border thickness</returns>
</member>
<member name="T:DevComponents.DotNetBar.Office2007SystemCaptionItemPainter">
<summary>
Represents the painter for the Office 2007 SystemCaptionItem
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SystemCaptionItemPainter">
<summary>
Represents the base class for the SystemCaptionItem painter.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Office2007SystemCaptionItemPainter.PaintSystemIcon(DevComponents.DotNetBar.SystemCaptionItemRendererEventArgs,System.Boolean)">
<summary>
Paints the SystemCaptionItem as icon in left hand corner.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Office2007SystemCaptionItemPainter.PaintFormButtons(DevComponents.DotNetBar.SystemCaptionItemRendererEventArgs)">
<summary>
Paints the SystemCaptionItem as set of buttons minimize, restore/maximize and close.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Office2007SystemCaptionItemPainter.PaintBackground(System.Drawing.Graphics,System.Drawing.Rectangle,DevComponents.DotNetBar.Rendering.Office2007SystemButtonStateColorTable)">
<summary>
Paints the background of the button using specified color table colors.
</summary>
<param name="g">Graphics object.</param>
<param name="r">Background bounds</param>
<param name="ct">Color Table</param>
</member>
<member name="P:DevComponents.DotNetBar.Office2007SystemCaptionItemPainter.ColorTable">
<summary>
Gets or sets color table used by renderer.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.Rendering.MetroRenderer">
<summary>
Abstract renderer for rendering Metro-UI controls.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Rendering.MetroRenderer.Render(DevComponents.DotNetBar.Metro.Rendering.MetroRendererInfo)">
<summary>
Renders the
</summary>
<param name="renderingInfo"></param>
</member>
<member name="P:DevComponents.DotNetBar.Office2007KeyTipsPainter.ColorTable">
<summary>
Gets or sets color table used by renderer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Rendering.MetroRender.Paint(DevComponents.DotNetBar.Metro.MetroTileItem,DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Renders the MetroTileItem.
</summary>
<param name="item">MetroTileItem to render.</param>
<param name="e">Rendering event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Rendering.MetroRender.Paint(DevComponents.DotNetBar.Metro.MetroAppForm,System.Windows.Forms.PaintEventArgs)">
<summary>
Renders the MetroForm.
</summary>
<param name="form">Form to render.</param>
<param name="e">Rendering event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Rendering.MetroRender.Paint(DevComponents.DotNetBar.Metro.BorderOverlay,System.Windows.Forms.PaintEventArgs)">
<summary>
Renders the MetroForm.
</summary>
<param name="formOverlay">Form to render.</param>
<param name="e">Rendering event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Rendering.MetroRender.Paint(DevComponents.DotNetBar.Metro.MetroTabItem,DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Renders the MetroTabItem.
</summary>
<param name="tab">Form to render.</param>
<param name="e">Rendering event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Rendering.MetroRender.Paint(DevComponents.DotNetBar.Metro.MetroTabStrip,DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Renders the MetroTabStrip
</summary>
<param name="tabStrip">TabStrip to render.</param>
<param name="pa">Paint args</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Rendering.MetroRender.Paint(DevComponents.DotNetBar.Metro.MetroStatusBar,DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Renders the MetroStatusBar.
</summary>
<param name="bar">Status bar to render</param>
<param name="pa">Paint args</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Rendering.MetroRender.Paint(DevComponents.DotNetBar.Metro.MetroToolbar,DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Renders the MetroStatusBar.
</summary>
<param name="bar">Status bar to render</param>
<param name="pa">Paint args</param>
</member>
<member name="T:DevComponents.DotNetBar.Metro.Rendering.MetroRendererInfo">
<summary>
Defines class for passing rendering information to renderer.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.Rendering.MetroRendererInfo.Control">
<summary>
Gets or sets the control to render.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.Rendering.MetroRendererInfo.PaintEventArgs">
<summary>
Gets or sets the paint event arguments to use to render out control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.Rendering.MetroRendererInfo.ColorTable">
<summary>
Gets or sets the current color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.Rendering.MetroRendererInfo.DefaultFont">
<summary>
Gets or sets default font.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.Rendering.MetroRendererInfo.DefaultPlainFont">
<summary>
Gets or sets default plain font.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.Rendering.MetroRendererInfo.RightToLeft">
<summary>
Gets or sets right-to-left setting.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Metro.Rendering.MetroRendererInfo.ItemPaintArgs">
<summary>
Gets or sets the paint information for items.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Office2007RibbonTabGroupPainter">
<summary>
Represents the Office 2007 Ribbon Tab Group painter.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Office2007RibbonTabGroupPainter.PaintTabGroup(DevComponents.DotNetBar.RibbonTabGroupRendererEventArgs)">
<summary>
Paints ribbon tab group.
</summary>
<param name="e">Context information</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SwitchButtonPainter.Paint(DevComponents.DotNetBar.Rendering.SwitchButtonRenderEventArgs)">
<summary>
Paints SwitchButton.
</summary>
<param name="e">Provides arguments for the operation.</param>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2010SwitchButtonPainter.ColorTable">
<summary>
Gets or sets color table used by renderer.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.Thickness">
<summary>
Defines Thickness structure used by borders and margins.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Thickness.#ctor(System.Double)">
<summary>
Creates new instance of the object.
</summary>
<param name="uniformLength">Uniform Thickness</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Thickness.#ctor(System.Double,System.Double,System.Double,System.Double)">
<summary>
Creates new instance of the object.
</summary>
<param name="left">Left Thickness</param>
<param name="top">Top Thickness</param>
<param name="right">Right Thickness</param>
<param name="bottom">Bottom Thickness</param>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Thickness.Equals(System.Object)">
<summary>
Gets whether object equals to this instance.
</summary>
<param name="obj">object to test.</param>
<returns>returns whether objects are Equals</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Thickness.Equals(DevComponents.DotNetBar.Metro.Thickness)">
<summary>
Gets whether object equals to this instance.
</summary>
<param name="thickness">object to test.</param>
<returns>returns whether objects are Equals</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Thickness.GetHashCode">
<summary>
Returns hash code for object.
</summary>
<returns>Hash code</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Thickness.ToString">
<summary>
Returns string representation of object.
</summary>
<returns>string representing Thickness</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Thickness.ToString(System.Globalization.CultureInfo)">
<summary>
Gets string representation of object.
</summary>
<param name="cultureInfo">Culture info.</param>
<returns>string representing Thickness</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Thickness.IsValid(System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Returns whether object holds valid value.
</summary>
<param name="allowNegative">Specifies whether negative values are allowed.</param>
<param name="allowNaN">Specifies whether NaN values are allowed.</param>
<param name="allowPositiveInfinity">Specifies whether positive infinity values are allowed</param>
<param name="allowNegativeInfinity">Specifies whether negative infinity values are allowed</param>
<returns>true if object holds valid value</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Thickness.IsClose(DevComponents.DotNetBar.Metro.Thickness)">
<summary>
Returns true if two objects are close.
</summary>
<param name="thickness">Thickness to test.</param>
<returns>true if values are close.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Metro.Thickness.AreClose(DevComponents.DotNetBar.Metro.Thickness,DevComponents.DotNetBar.Metro.Thickness)">
<summary>
Returns true if two objects are close.
</summary>
<param name="thickness1">Thickness 1</param>
<param name="thickness2">Thickness 2</param>
<returns>true if values are close.</returns>
</member>
<member name="P:DevComponents.DotNetBar.Metro.Thickness.IsZero">
<summary>
Returns whether all values are zero.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.Thickness.IsUniform">
<summary>
Returns whether all values are the same.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.Thickness.Left">
<summary>
Gets or sets the left Thickness.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.Thickness.Top">
<summary>
Gets or sets the top Thickness.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.Thickness.Right">
<summary>
Gets or sets the Right Thickness.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.Thickness.Bottom">
<summary>
Gets or sets the Bottom Thickness.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.Thickness.Horizontal">
<summary>
Gets the total horizontal thickness i.e. Left+Right.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Metro.Thickness.Vertical">
<summary>
Gets the total vertical thickness i.e. Top+Bottom.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Metro.ThicknessConverter">
<summary>
Provides Thickness TypeConverter.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.MicroCharts.MicroChartBase">
<summary>
Represents the base class each micro-chart implements
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.MicroChartBase.CreateChart(DevComponents.DotNetBar.MicroCharts.MicroChartRenderInfo)">
<summary>
Creates the chart image.
</summary>
<param name="info">Rendering information.</param>
<returns>Image of the chart.</returns>
</member>
<member name="T:DevComponents.DotNetBar.MicroCharts.AreaMicroChartStyle">
<summary>
Defines the style for Area micro chart.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.AreaMicroChartStyle.#ctor">
<summary>
Initializes a new instance of the AreaMicroChartStyle class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.AreaMicroChartStyle.OnStyleChanged(System.EventArgs)">
<summary>
Raises StyleChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.AreaMicroChartStyle.ShouldSerializeAreaColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.AreaMicroChartStyle.ResetAreaColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.AreaMicroChartStyle.ShouldSerializeHighPointColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.AreaMicroChartStyle.ResetHighPointColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.AreaMicroChartStyle.ShouldSerializeLowPointColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.AreaMicroChartStyle.ResetLowPointColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.AreaMicroChartStyle.ShouldSerializeFirstPointColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.AreaMicroChartStyle.ResetFirstPointColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.AreaMicroChartStyle.ShouldSerializeLastPointColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.AreaMicroChartStyle.ResetLastPointColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.MicroCharts.AreaMicroChartStyle.StyleChanged">
<summary>
Occurs when style appearance changes.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.AreaMicroChartStyle.ZeroLineValue">
<summary>
Gets or sets the value of the zero line, i.e. where zero line is drawn. Default value is 0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.AreaMicroChartStyle.AreaColor">
<summary>
Gets or sets the chart area color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.AreaMicroChartStyle.HighPointColor">
<summary>
Gets or sets the color of the high point dot on chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.AreaMicroChartStyle.LowPointColor">
<summary>
Gets or sets the color of the low point dot on chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.AreaMicroChartStyle.FirstPointColor">
<summary>
Gets or sets the color of the first point dot on chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.AreaMicroChartStyle.LastPointColor">
<summary>
Gets or sets the color of the last point dot on chart.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.MicroCharts.BarMicroChartStyle">
<summary>
Defines the style for the bar style micro charts.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.BarMicroChartStyle.OnStyleChanged(System.EventArgs)">
<summary>
Raises StyleChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.BarMicroChartStyle.ShouldSerializePositiveBarColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.BarMicroChartStyle.ResetPositiveBarColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.BarMicroChartStyle.ShouldSerializeNegativeBarColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.BarMicroChartStyle.ResetNegativeBarColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.BarMicroChartStyle.ShouldSerializeLowPointBarColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.BarMicroChartStyle.ResetLowPointBarColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.BarMicroChartStyle.ShouldSerializeHighPointBarColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.BarMicroChartStyle.ResetHighPointBarColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.MicroCharts.BarMicroChartStyle.StyleChanged">
<summary>
Occurs when style appearance changes.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.BarMicroChartStyle.MinBarSize">
<summary>
Gets or sets the minimum single bar width.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.BarMicroChartStyle.PositiveBarColor">
<summary>
Gets or sets the color of positive bar value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.BarMicroChartStyle.NegativeBarColor">
<summary>
Gets or sets the color of negative bar value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.BarMicroChartStyle.DrawAverageLine">
<summary>
Gets or sets whether average line is drawn.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.BarMicroChartStyle.ZeroLineValue">
<summary>
Gets or sets the value of the zero line, i.e. pivot point that determines negative and positive values. Default value is 0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.BarMicroChartStyle.LowPointBarColor">
<summary>
Gets or sets the color of the lowest value bar on graph.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.BarMicroChartStyle.HighPointBarColor">
<summary>
Gets or sets the color of the highest value bar on graph.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.MicroCharts.HundredPctMicroChartStyle">
<summary>
Defines the style for 100% bar chart.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.HundredPctMicroChartStyle.#ctor">
<summary>
Initializes a new instance of the PieMicroChartStyle class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.HundredPctMicroChartStyle.OnStyleChanged(System.EventArgs)">
<summary>
Raises StyleChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.HundredPctMicroChartStyle.ShouldSerializeBarOutlineColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.HundredPctMicroChartStyle.ResetBarOutlineColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.MicroCharts.HundredPctMicroChartStyle.StyleChanged">
<summary>
Occurs when style appearance changes.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.HundredPctMicroChartStyle.MinBarSize">
<summary>
Gets or sets the minimum single bar width.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.HundredPctMicroChartStyle.BarColors">
<summary>
Gets the pre-defined slice colors for the pie chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.HundredPctMicroChartStyle.BarOutlineColor">
<summary>
Gets or sets the color of the slice outline.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle">
<summary>
Defines the style for the line micro chart.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ShouldSerializeLineColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ResetLineColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ShouldSerializeAverageLineColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ResetAverageLineColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ShouldSerializeZeroLineColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ResetZeroLineColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.OnStyleChanged(System.EventArgs)">
<summary>
Raises StyleChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ShouldSerializeHighPointColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ResetHighPointColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ShouldSerializeLowPointColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ResetLowPointColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ShouldSerializeFirstPointColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ResetFirstPointColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ShouldSerializeLastPointColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ResetLastPointColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ShouldSerializeControlLine1Color">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ResetControlLine1Color">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ShouldSerializeControlLine2Color">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ResetControlLine2Color">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.LineColor">
<summary>
Gets or sets the color of the chart line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.DrawAverageLine">
<summary>
Gets or sets whether average line is drawn.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.AverageLineColor">
<summary>
Gets or sets the color of the
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.DrawZeroLine">
<summary>
Gets or sets whether zero-line is drawn on chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ZeroLineValue">
<summary>
Gets or sets the value of the zero line, i.e. where zero line is drawn. Default value is 0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ZeroLineColor">
<summary>
Gets or sets the color of the
</summary>
</member>
<member name="E:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.StyleChanged">
<summary>
Occurs when style appearance changes.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.HighPointColor">
<summary>
Gets or sets the color of the high point dot on chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.LowPointColor">
<summary>
Gets or sets the color of the low point dot on chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.FirstPointColor">
<summary>
Gets or sets the color of the first point dot on chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.LastPointColor">
<summary>
Gets or sets the color of the last point dot on chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.DrawControlLine1">
<summary>
Gets or sets whether control line is drawn. Default value is false. Control lines can be used to display for example low and high control bounds for the chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ControlLine1Color">
<summary>
Gets or sets the color of the first control line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ControlLine1StartValue">
<summary>
Gets or sets starting value that is used to draw first control line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ControlLine1EndValue">
<summary>
Gets or sets end value that is used to draw first control line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.DrawControlLine2">
<summary>
Gets or sets whether control line is drawn. Default value is false. Control lines can be used to display for example low and high control bounds for the chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ControlLine2Color">
<summary>
Gets or sets the color of the second control line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ControlLine2StartValue">
<summary>
Gets or sets starting value that is used to draw second control line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.LineMicroChartStyle.ControlLine2EndValue">
<summary>
Gets or sets end value that is used to draw second control line.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.MicroChart">
<summary>
Represents Micro-Chart Control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroChart.#ctor">
<summary>
Initializes a new instance of the MicroChart class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroChart.RecalcLayout">
<summary>
Forces the button to perform internal layout.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroChart.OnMouseOverDataPointChanged(System.EventArgs)">
<summary>
Raises MouseOverDataPointChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.MicroChart.InvalidateChart(System.Boolean)">
<summary>
Invalidates the chart display and requests the re-paint.
</summary>
<param name="animateTransition">Indicates whether to animate transition to new chart</param>
</member>
<member name="M:DevComponents.DotNetBar.MicroChart.OnCommandChanged">
<summary>
Called when Command property value changes.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.MouseOverDataPointTooltipEnabled">
<summary>
Gets or sets whether mouse over tooltip for data point is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.MouseOverDataPointIndex">
<summary>
Gets the index of data point (DataPoints collection) that mouse is over or returns -1 if mouse is not over any data-point.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.MicroChart.MouseOverDataPointChanged">
<summary>
Occurs when MouseOverDataPointIndex property changes due to user moving the mouse and pointing it to different data point on chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.DataPointTooltips">
<summary>
Gets or sets the tooltips for each data-point assigned through DataPoints property. If not set control will automatically
show tooltip based on the data-point value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.DataPoints">
<summary>
Gets or sets the chart data points. Note that if you are adding or removing points directly from this collection you must call
Refresh() method on the control to refresh the display.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.TooltipValueFormatString">
<summary>
Gets or sets the format string for the value when it is displayed as tool-tip for data point.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.TrackChartPoints">
<summary>
Gets or sets whether chart is tracking mouse movement to show data-point and its value on tooltip. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.AnimationEnabled">
<summary>
Gets or sets whether transition animation between same chart with different data-points is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.MouseOverEnabled">
<summary>
Gets or sets whether button like mouse over tracking is enabled for whole control. When enabled control looks like a button when mouse is over it. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.LineChartStyle">
<summary>
Gets the style used to customize appearance of Line micro-chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.PlotChartStyle">
<summary>
Gets the style used to customize appearance of Plot micro-chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.ColumnChartStyle">
<summary>
Gets the style used to customize appearance of Column micro-chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.BarChartStyle">
<summary>
Gets the style used to customize appearance of Bar micro-chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.WinLoseChartStyle">
<summary>
Gets the style used to customize appearance of Win-Lose micro-chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.PieChartStyle">
<summary>
Gets the style used to customize appearance of Pie micro-chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.AreaChartStyle">
<summary>
Gets the style used to customize appearance of Area micro-chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.HundredPctChartStyle">
<summary>
Gets the style used to customize appearance of 100% micro-chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.ChartType">
<summary>
Gets or sets the type of the chart rendered.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.DataMaxValue">
<summary>
Gets or sets the maximum value for data points. By default maximum data point is calculated based on that data displayed by the chart, but when
two charts need to be scaled the same setting maximum and minimum values for them will ensure that scales are visually the same.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.DataMinValue">
<summary>
Gets or sets the minimum value for data points. By default minimum data point is calculated based on that data displayed by the chart, but when
two charts need to be scaled the same setting maximum and minimum values for them will ensure that scales are visually the same.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.ExecuteCommandOnClick">
<summary>
Gets whether command is executed when control is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.Command">
<summary>
Gets or sets the command assigned to the item. Default value is null.
<remarks>Note that if this property is set to null Enabled property will be set to false automatically to disable the item.</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChart.CommandParameter">
<summary>
Gets or sets user defined data value that can be passed to the command when it is executed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.TrendInfo.#ctor(System.Double,System.Double,System.Double,System.Double)">
<summary>
Initializes a new instance of the TrendInfo structure.
</summary>
<param name="slope"></param>
<param name="intercept"></param>
<param name="start"></param>
<param name="end"></param>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.TrendInfo.#cctor">
<summary>
Initializes a new instance of the TrendInfo structure.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.MicroChartRenderInfo.#ctor(System.Collections.Generic.List{System.Double},System.Drawing.Graphics,System.Int32,System.Int32,System.Double,System.Double)">
<summary>
Initializes a new instance of the MicroChartRenderInfo structure.
</summary>
<param name="dataPoints"></param>
<param name="graphics"></param>
<param name="chartWidth"></param>
<param name="chartHeight"></param>
</member>
<member name="T:DevComponents.DotNetBar.MicroChartItem">
<summary>
Represents the micro-chart item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroChartItem.#ctor">
<summary>
Creates new instance of MicroChartItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroChartItem.#ctor(System.String)">
<summary>
Creates new instance of MicroChartItem and assigns the name to it.
</summary>
<param name="sItemName">Item name.</param>
</member>
<member name="M:DevComponents.DotNetBar.MicroChartItem.#ctor(System.String,System.String)">
<summary>
Creates new instance of MicroChartItem and assigns the name and text to it.
</summary>
<param name="sItemName">Item name.</param>
<param name="ItemText">item text.</param>
</member>
<member name="M:DevComponents.DotNetBar.MicroChartItem.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroChartItem.InternalCopyToItem(DevComponents.DotNetBar.MicroChartItem)">
<summary>
Copies the MicroChartItem specific properties to new instance of the item.
</summary>
<param name="copy">New MicroChartItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.MicroChartItem.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the MicroChartItem specific properties to new instance of the item.
</summary>
<param name="copy">New MicroChartItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.MicroChartItem.RecalcSize">
<summary>
Recalculate the size of the item. If overridden base implementation must be called so default processing can occur.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroChartItem.OnMouseOverDataPointChanged(System.EventArgs)">
<summary>
Raises MouseOverDataPointChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.MicroChartItem.InvalidateChart(System.Boolean)">
<summary>
Invalidates the chart display and requests the re-paint.
</summary>
<param name="animateTransition">Indicates whether to animate transition to new chart</param>
</member>
<member name="M:DevComponents.DotNetBar.MicroChartItem.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Draws the chart.
</summary>
<param name="p">Paint arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.MicroChartItem.ShouldSerializeTextColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroChartItem.ResetTextColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroChartItem.OnDataMaxValueChanged(System.Double,System.Double)">
<summary>
Called when DataMaxValue property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.MicroChartItem.OnDataMinValueChanged(System.Double,System.Double)">
<summary>
Called when DataMinValue property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.TextWidth">
<summary>
Gets or sets the suggested text-width. If you want to make sure that text you set wraps over multiple lines you can set suggested text-width so word break is performed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.TooltipValueFormatString">
<summary>
Gets or sets the format string for the value when it is displayed as tool-tip for data point.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.DataPoints">
<summary>
Gets or sets the chart data points. Note that if you are adding or removing points directly from this collection you must call
Refresh() method on the control to refresh the display.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.DataPointTooltips">
<summary>
Gets or sets the tooltips for each data-point assigned through DataPoints property. If not set control will automatically
show tooltip based on the data-point value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.AnimationEnabled">
<summary>
Gets or sets whether transition animation between same chart with different data-points is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.IsAnimationEnabled">
<summary>
Gets whether fade effect is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.TrackChartPoints">
<summary>
Gets or sets whether chart is tracking mouse movement to show data-point and its value on tooltip. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.MouseOverEnabled">
<summary>
Gets or sets whether button like mouse over tracking is enabled for whole control. When enabled control looks like a button when mouse is over it. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.MouseOverDataPointIndex">
<summary>
Gets the index of data point (DataPoints collection) that mouse is over or returns -1 if mouse is not over any data-point.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.MouseOverDataPointTooltipEnabled">
<summary>
Gets or sets whether mouse over tooltip for data point is enabled. Default value is true.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.MicroChartItem.MouseOverDataPointChanged">
<summary>
Occurs when MouseOverDataPointIndex property changes due to user moving the mouse and pointing it to different data point on chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.LineChartStyle">
<summary>
Gets the style used to customize appearance of Line micro-chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.PlotChartStyle">
<summary>
Gets the style used to customize appearance of Plot micro-chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.ColumnChartStyle">
<summary>
Gets the style used to customize appearance of Column micro-chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.BarChartStyle">
<summary>
Gets the style used to customize appearance of Bar micro-chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.WinLoseChartStyle">
<summary>
Gets the style used to customize appearance of Win-Lose micro-chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.PieChartStyle">
<summary>
Gets the style used to customize appearance of Pie micro-chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.AreaChartStyle">
<summary>
Gets the style used to customize appearance of Area micro-chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.HundredPctChartStyle">
<summary>
Gets the style used to customize appearance of 100% micro-chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.ChartWidth">
<summary>
Gets or sets the width of the chart part of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.ChartHeight">
<summary>
Gets or sets the height of the chart part of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.ChartType">
<summary>
Gets or sets the type of the chart rendered.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.IsMarkupSupported">
<summary>
Gets whether item supports text markup. Default is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.EnableMarkup">
<summary>
Gets or sets whether text-markup support is enabled for items Text property. Default value is true.
Set this property to false to display HTML or other markup in the item instead of it being parsed as text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.TextPosition">
<summary>
Gets or sets text-position in relation to the chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.Text">
<summary>
Gets or sets the text associated with this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.TextVisible">
<summary>
Gets or sets whether caption/label set using Text property is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.TextPadding">
<summary>
Gets or sets text padding.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.Margin">
<summary>
Gets or sets switch margin.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.TextColor">
<summary>
Gets or sets the text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.BackgroundImagePosition">
<summary>
Gets or sets the background image position
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.BackgroundImage">
<summary>
Gets or sets the background image used by the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.DataMaxValue">
<summary>
Gets or sets the maximum value for data points. By default maximum data point is calculated based on that data displayed by the chart, but when
two charts need to be scaled the same setting maximum and minimum values for them will ensure that scales are visually the same.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.DataMinValue">
<summary>
Gets or sets the minimum value for data points. By default minimum data point is calculated based on that data displayed by the chart, but when
two charts need to be scaled the same setting maximum and minimum values for them will ensure that scales are visually the same.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.MenuVisibility">
<summary>
Indicates item's visibility when on pop-up menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroChartItem.RecentlyUsed">
<summary>
Indicates whether item was recently used.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.MicroChartHotPoint">
<summary>
Represents MicroChart hot-points.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.MicroChartHotPoint.StartAngle">
<summary>
Start angle for pie slice.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.MicroChartHotPoint.SweepAngle">
<summary>
Sweep angle for pie slice.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroChartHotPoint.#ctor(System.Drawing.Rectangle,System.Drawing.Color,System.Double,System.Int32)">
<summary>
Initializes a new instance of the MicroChartHotPoint structure.
</summary>
<param name="hotPoint"></param>
<param name="hotPointColor"></param>
</member>
<member name="M:DevComponents.DotNetBar.MicroChartHotPoint.#ctor(System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Color,System.Double,System.Int32)">
<summary>
Initializes a new instance of the MicroChartHotPoint structure.
</summary>
<param name="hotPointBounds"></param>
<param name="chartSliceBounds"></param>
<param name="color"></param>
<param name="value"></param>
</member>
<member name="M:DevComponents.DotNetBar.MicroChartHotPoint.#ctor(System.Drawing.Rectangle,System.Drawing.Color,System.Double,System.Double,System.Double,System.Int32)">
<summary>
Initializes a new instance of the MicroChartHotPoint structure.
</summary>
<param name="bounds"></param>
<param name="color"></param>
<param name="value"></param>
<param name="startAngle"></param>
<param name="sweepAngle"></param>
</member>
<member name="T:DevComponents.DotNetBar.eMicroChartType">
<summary>
Defines available MicroChar types.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eMicroChartType.Plot">
<summary>
Identifies Plot chart.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eMicroChartType.WinLose">
<summary>
Identifies WinLose chart.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eMicroChartType.Area">
<summary>
Identifies Area chart.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eMicroChartType.Line">
<summary>
Identifies Line chart.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eMicroChartType.Column">
<summary>
Identifies Column chart.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eMicroChartType.Bar">
<summary>
Identifies Bar chart.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eMicroChartType.Pie">
<summary>
Identifies Pie chart.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eMicroChartType.HundredPercentBar">
<summary>
Identifies 100% bar.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eMicroChartTextPosition">
<summary>
Defines micro-chart text position in relation to the chart.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eMicroChartTextPosition.Left">
<summary>
Text is positioned to the left of the chart.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eMicroChartTextPosition.Right">
<summary>
Text is positioned to the right of the chart.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eMicroChartTextPosition.Top">
<summary>
Text is positioned on top of the chart.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eMicroChartTextPosition.Bottom">
<summary>
Text is positioned on bottom of the chart.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.MicroCharts.PieMicroChartStyle">
<summary>
Defines the style for pie chart.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PieMicroChartStyle.#ctor">
<summary>
Initializes a new instance of the PieMicroChartStyle class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PieMicroChartStyle.OnStyleChanged(System.EventArgs)">
<summary>
Raises StyleChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PieMicroChartStyle.ShouldSerializeSliceOutlineColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PieMicroChartStyle.ResetSliceOutlineColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.MicroCharts.PieMicroChartStyle.StyleChanged">
<summary>
Occurs when style appearance changes.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.PieMicroChartStyle.SliceColors">
<summary>
Gets the pre-defined slice colors for the pie chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.PieMicroChartStyle.SliceOutlineColor">
<summary>
Gets or sets the color of the slice outline.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle">
<summary>
Defines the style for the plot micro chart.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.OnStyleChanged(System.EventArgs)">
<summary>
Raises StyleChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ShouldSerializePlotColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ResetPlotColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ShouldSerializeAverageLineColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ResetAverageLineColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ShouldSerializeZeroLineColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ResetZeroLineColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ShouldSerializeHighPointColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ResetHighPointColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ShouldSerializeLowPointColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ResetLowPointColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ShouldSerializeFirstPointColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ResetFirstPointColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ShouldSerializeLastPointColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ResetLastPointColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ShouldSerializeControlLine1Color">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ResetControlLine1Color">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ShouldSerializeControlLine2Color">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ResetControlLine2Color">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.StyleChanged">
<summary>
Occurs when style appearance changes.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.PlotColor">
<summary>
Gets or sets the color of the chart line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.DrawAverageLine">
<summary>
Gets or sets whether average line is drawn.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.AverageLineColor">
<summary>
Gets or sets the color of the
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.DrawZeroLine">
<summary>
Gets or sets whether zero-line is drawn on chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ZeroLineValue">
<summary>
Gets or sets the value of the zero line, i.e. where zero line is drawn. Default value is 0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ZeroLineColor">
<summary>
Gets or sets the color of the
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.HighPointColor">
<summary>
Gets or sets the color of the high point dot on chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.LowPointColor">
<summary>
Gets or sets the color of the low point dot on chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.FirstPointColor">
<summary>
Gets or sets the color of the first point dot on chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.LastPointColor">
<summary>
Gets or sets the color of the last point dot on chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.DrawControlLine1">
<summary>
Gets or sets whether control line is drawn. Default value is false. Control lines can be used to display for example low and high control bounds for the chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ControlLine1Color">
<summary>
Gets or sets the color of the first control line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ControlLine1StartValue">
<summary>
Gets or sets starting value that is used to draw first control line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ControlLine1EndValue">
<summary>
Gets or sets end value that is used to draw first control line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.DrawControlLine2">
<summary>
Gets or sets whether control line is drawn. Default value is false. Control lines can be used to display for example low and high control bounds for the chart.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ControlLine2Color">
<summary>
Gets or sets the color of the second control line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ControlLine2StartValue">
<summary>
Gets or sets starting value that is used to draw second control line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MicroCharts.PlotMicroChartStyle.ControlLine2EndValue">
<summary>
Gets or sets end value that is used to draw second control line.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PopupManager">
<summary>
Class that tracks lists of all controls that host currently open popups.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PopupManager.RegisterPopup(DevComponents.DotNetBar.IOwnerMenuSupport)">
<summary>
Registers IOwnerMenuSupport popup host in response to host displaying its first popup.
</summary>
<param name="popupHost">IOwnerMenuSupport host to register</param>
</member>
<member name="M:DevComponents.DotNetBar.PopupManager.UnregisterPopup(DevComponents.DotNetBar.IOwnerMenuSupport)">
<summary>
Unregisters IOwnerMenuSupport popup host in response to host closing its last popup.
</summary>
<param name="popupHost">IOwnerMenuSupport host to unregister</param>
</member>
<member name="M:DevComponents.DotNetBar.PopupManager.CloseAllPopups">
<summary>
Closes all currently open popups.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PopupManager.CloseAllPopups(DevComponents.DotNetBar.IOwnerMenuSupport)">
<summary>
Closes all currently open popups excluding specified popup host.
</summary>
<param name="excludeHost">IOwnerMenuSupport host to exclude from closing or null</param>
</member>
<member name="T:DevComponents.DotNetBar.Primitives.CustomCollection`1">
<summary>
Represents custom collection with INotifyPropertyChanged and INotifyCollectionChanged interface support.
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="T:DevComponents.DotNetBar.Primitives.INotifyCollectionChanged">
<summary>
Represents collection changed notification interface.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Primitives.INotifyCollectionChanged.CollectionChanged">
<summary>
Occurs when collection changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.#ctor">
<summary>
Creates new instance of object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.#ctor(System.Int32)">
<summary>
Creates new instance of object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.#ctor(System.Collections.Generic.IList{`0})">
<summary>
Creates new instance of object.
</summary>
<param name="list">List to initialize collection with.</param>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.Add(`0)">
<summary>
Add item to collection.
</summary>
<param name="item">Item to add.</param>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.Clear">
<summary>
Remove all items from collection.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.ClearItems">
<summary>
Remove all items from collection.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.Contains(`0)">
<summary>
Checks whether collection contains item.
</summary>
<param name="item">Item to look for.</param>
<returns>true if item is in collection.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.CopyTo(`0[],System.Int32)">
<summary>
Copy collection to array.
</summary>
<param name="array">Array to copy to.</param>
<param name="index">Index to copy from.</param>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.CopyTo(`0[])">
<summary>
Copy collection to array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.GetEnumerator">
<summary>
Gets enumerator for collection.
</summary>
<returns>Enumerator.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.IndexOf(`0)">
<summary>
Returns index of an item.
</summary>
<param name="item">Reference to item.</param>
<returns>Index of item.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.Insert(System.Int32,`0)">
<summary>
Insert item at specified location.
</summary>
<param name="index">Index to insert item in.</param>
<param name="item">Item to insert.</param>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.InsertItem(System.Int32,`0)">
<summary>
Inserts item.
</summary>
<param name="index">Index to insert item at.</param>
<param name="item">Reference to item.</param>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.Remove(`0)">
<summary>
Removes item from collection.
</summary>
<param name="item">Item to remove.</param>
<returns>true if item was removed.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.RemoveAt(System.Int32)">
<summary>
Remove item at specified location.
</summary>
<param name="index">Index of item to remove.</param>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.RemoveItem(System.Int32)">
<summary>
Remove item at specified location.
</summary>
<param name="index">Index of item to remove.</param>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.SetItem(System.Int32,`0)">
<summary>
Set item on location.
</summary>
<param name="index">Index</param>
<param name="item">Item to assign.</param>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.GetItemsDirect">
<summary>
Returns items directly without checks.
</summary>
<returns>List of items.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.OnCollectionReadAccess">
<summary>
Occurs when collection is read.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Occurs when collection property has changed.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.BlockReentrancy">
<summary>
Blocks the collection reentrancy.
</summary>
<returns>IDisposable to end re-entrancy</returns>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.CheckReentrancy">
<summary>
Checks whether call creates reentrancy.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.CustomCollection`1.OnCollectionChanged(DevComponents.DotNetBar.Primitives.NotifyCollectionChangedEventArgs)">
<summary>
Called when collection has changed.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="E:DevComponents.DotNetBar.Primitives.CustomCollection`1.PropertyChanged">
<summary>
Occurs when property value has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Primitives.CustomCollection`1.Count">
<summary>
Returns number of items in collection.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Primitives.CustomCollection`1.Item(System.Int32)">
<summary>
Returns item at index.
</summary>
<param name="index">Index of item.</param>
<returns>Item at index.</returns>
</member>
<member name="P:DevComponents.DotNetBar.Primitives.CustomCollection`1.Items">
<summary>
Returns the IList interface for items in collection.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Primitives.CustomCollection`1.CollectionChanged">
<summary>
Occurs when collection has changed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedAction">
<summary>
Defines change actions.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedAction.Add">
<summary>
Items were added.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedAction.Remove">
<summary>
Items were removed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedAction.Replace">
<summary>
Items were replaced.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedAction.Move">
<summary>
Items were moved.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedAction.Reset">
<summary>
Collection was reset.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedEventHandler">
<summary>
Defines delegate for collection notification events.
</summary>
<param name="sender">Event sender.</param>
<param name="e">Event arguments.</param>
</member>
<member name="T:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedEventArgs">
<summary>
Defines collection change notification event arguments.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.Primitives.NotifyCollectionChangedAction)">
<summary>
Create new instance of object.
</summary>
<param name="action">Action</param>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.Primitives.NotifyCollectionChangedAction,System.Collections.IList)">
<summary>
Creates new instance of object.
</summary>
<param name="action">Specifies action.</param>
<param name="changedItems">List of changed items.</param>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.Primitives.NotifyCollectionChangedAction,System.Object)">
<summary>
Creates new instance of object.
</summary>
<param name="action">Specifies action.</param>
<param name="changedItem">Item that was changed.</param>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.Primitives.NotifyCollectionChangedAction,System.Collections.IList,System.Collections.IList)">
<summary>
Creates new instance of object.
</summary>
<param name="action">Action.</param>
<param name="newItems">New items in collection.</param>
<param name="oldItems">Old items in collection.</param>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.Primitives.NotifyCollectionChangedAction,System.Collections.IList,System.Int32)">
<summary>
Creates new instance of object.
</summary>
<param name="action">Action.</param>
<param name="changedItems">List of changed items.</param>
<param name="startingIndex">Starting index of change.</param>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.Primitives.NotifyCollectionChangedAction,System.Object,System.Int32)">
<summary>
Creates new instance of object.
</summary>
<param name="action">Action</param>
<param name="changedItem">Changed item</param>
<param name="index">Index of change</param>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.Primitives.NotifyCollectionChangedAction,System.Object,System.Object)">
<summary>
Creates new instance of object.
</summary>
<param name="action">Action</param>
<param name="newItem">New item</param>
<param name="oldItem">Old item</param>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.Primitives.NotifyCollectionChangedAction,System.Collections.IList,System.Collections.IList,System.Int32)">
<summary>
Creates new instance of object.
</summary>
<param name="action">Action</param>
<param name="newItems">New items.</param>
<param name="oldItems">Removed items.</param>
<param name="startingIndex">Starting index of change.</param>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.Primitives.NotifyCollectionChangedAction,System.Collections.IList,System.Int32,System.Int32)">
<summary>
Creates new instance of object.
</summary>
<param name="action">Action</param>
<param name="changedItems">Changed items</param>
<param name="index">New index</param>
<param name="oldIndex">Old index</param>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.Primitives.NotifyCollectionChangedAction,System.Object,System.Int32,System.Int32)">
<summary>
Creates new instance of object.
</summary>
<param name="action">Action</param>
<param name="changedItem">Changed item</param>
<param name="index">New index</param>
<param name="oldIndex">Old index</param>
</member>
<member name="M:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedEventArgs.#ctor(DevComponents.DotNetBar.Primitives.NotifyCollectionChangedAction,System.Object,System.Object,System.Int32)">
<summary>
Creates new instance of object.
</summary>
<param name="action">Action.</param>
<param name="newItem">New item</param>
<param name="oldItem">Old item</param>
<param name="index">New index</param>
</member>
<member name="P:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedEventArgs.Action">
<summary>
Gets the type of the collection change action.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedEventArgs.NewItems">
<summary>
Gets list of newly added items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedEventArgs.NewStartingIndex">
<summary>
Gets new starting index.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedEventArgs.OldItems">
<summary>
Gets list of removed items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Primitives.NotifyCollectionChangedEventArgs.OldStartingIndex">
<summary>
Old starting index.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.AdvPropertyGrid">
<summary>
Represents advanced property grid control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.IPropertyGridLocalizer">
<summary>
Defines an interface that is used by advanced property grid parser to localize property names.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.IPropertyGridLocalizer.GetPropertyName(System.String)">
<summary>
Gets localized property name.
</summary>
<param name="propertyName">Property name to retrieve localized name for.</param>
<returns>Localized Property name or null to use default.</returns>
</member>
<member name="M:DevComponents.DotNetBar.IPropertyGridLocalizer.GetCategoryName(System.String)">
<summary>
Gets localized category name.
</summary>
<param name="categoryName">Category to retrieve localized value for.</param>
<returns>Localized Category name or null to use default.</returns>
</member>
<member name="M:DevComponents.DotNetBar.IPropertyGridLocalizer.GetErrorTooltipMessage(System.String)">
<summary>
Gets localized message for Tooltip body when error setting the property value has occurred.
</summary>
<param name="message">Default system message.</param>
<returns>Localized message or null to use default.</returns>
</member>
<member name="P:DevComponents.DotNetBar.IPropertyElementStyleProvider.ReadOnlyStyle">
<summary>
Gets the style that is applied to property node when it is in read-only state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IPropertyElementStyleProvider.ValueChangedStyle">
<summary>
Gets the style that is applied to property node when its value has changed from the default value for the property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IPropertyElementStyleProvider.CategoryStyle">
<summary>
Gets the property category style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IPropertyElementStyleProvider.DefaultEditCellStyle">
<summary>
Gets the default style for unchanged value edit cell.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.#ctor">
<summary>
Initializes a new instance of the AdvPropertyGrid class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.OnPropertyValueChanging(DevComponents.DotNetBar.PropertyValueChangingEventArgs)">
<summary>
Invokes PropertyValueChanging event.
</summary>
<param name="e">Event data.</param>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.InvokePropertyValueChanged(System.String,System.Object,System.Object)">
<summary>
Invokes PropertyValueChanged event handler.
</summary>
<param name="propertyName">Name of the property that has changed.</param>
<param name="newValue">New property value.</param>
<param name="oldValue">Old property value.</param>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.OnPropertyValueChanged(System.String)">
<summary>
Invokes PropertyValueChanged event.
</summary>
<param name="propertyName">Name of property that has changed</param>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.OnValidatePropertyValue(DevComponents.DotNetBar.ValidatePropertyValueEventArgs)">
<summary>
Raises ValidatePropertyValue event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.OnPropertiesLoaded(System.EventArgs)">
<summary>
Raises PropertiesLoaded event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.CommitEdit">
<summary>
Commits any property edits that are currently in progress by applying the current entered value to the property.
Returns true if edit was applied.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.UpdatePropertyValue(System.String)">
<summary>
Updates specified property value in property grid.
</summary>
<param name="propertyName">Property Name to update value for.</param>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.RefreshPropertyValues">
<summary>
Refreshes the display of all property values in the grid.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.RefreshProperties">
<summary>
Reloads all properties from selected object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.CollapseAllGridItems">
<summary>
Collapses all the categories in the AdvPropertyGrid.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.ExpandAllGridItems">
<summary>
Expands all the categories in the AdvPropertyGrid.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.OnPrepareErrorSuperTooltip(DevComponents.DotNetBar.PropertyErrorTooltipEventArgs)">
<summary>
Raises the PrepareErrorSuperTooltip event.
</summary>
<param name="e">Provides information about event.</param>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.SetPropertyColumnWidth(System.Int32,System.Int32)">
<summary>
Sets the property grid column width.
</summary>
<param name="columnIndex">Column index</param>
<param name="width">Width of column in pixels</param>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.OnConvertPropertyValueToString(DevComponents.DotNetBar.ConvertValueEventArgs)">
<summary>
Raises the ConvertPropertyValueToString event.
</summary>
<param name="e">Provides event data</param>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.OnConvertFromStringToPropertyValue(DevComponents.DotNetBar.ConvertValueEventArgs)">
<summary>
Raises the ConvertFromStringToPropertyValue event.
</summary>
<param name="e">Provides event data</param>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.OnProvidePropertyValueList(DevComponents.DotNetBar.PropertyValueListEventArgs)">
<summary>
Raises the ProvidePropertyValueList event.
</summary>
<param name="e">Provides event data</param>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.OnProvideUITypeEditor(DevComponents.DotNetBar.ProvideUITypeEditorEventArgs)">
<summary>
Raises the ProvideUITypeEditor event.
</summary>
<param name="e">Provides event data</param>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.ShouldSerializeGridLinesColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.ResetGridLinesColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.GetPropertyNode(System.String)">
<summary>
Find PropertyNode using the property name.
</summary>
<param name="propertyName">Property to name</param>
<returns>PropertyNode or null if not found</returns>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.OnSubPropertiesDefaultSortChanged(DevComponents.DotNetBar.ePropertySort,DevComponents.DotNetBar.ePropertySort)">
<summary>
Called when SubPropertiesDefaultSort property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Raises the PropertyChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.BeginInit">
<summary>
Signals the object that initialization is starting.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGrid.EndInit">
<summary>
Signals the object that initialization is ending.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.AdvPropertyGrid.Localize">
<summary>
Occurs when property grid needs property names translated for UI.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.AdvPropertyGrid.PrepareErrorSuperTooltip">
<summary>
Occurs when Super Tooltip that is displayed for the error that occurred when property is being set is being assigned to a property node.
This event allows you to customize the super tooltip displayed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.AdvPropertyGrid.ConvertPropertyValueToString">
<summary>
Occurs when property value is being converted to text representation for display. You can handle this event
to provide custom conversion for property values. You must set IsConverted=true on event arguments to indicate that you have performed value conversion.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.AdvPropertyGrid.ConvertFromStringToPropertyValue">
<summary>
Occurs when text entered by user is being converted to typed property value to be assigned to the property. You can handle this event
to provide custom conversion for property values. You must set IsConverted=true on event arguments to indicate that you have performed value conversion.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.AdvPropertyGrid.ProvidePropertyValueList">
<summary>
Occurs when property looks for the list of valid values for the property to show on either drop-down or use
in auto-complete list. For example when property type is enum the internal implementation will convert available enum
values into string list and use on drop-down and in auto-complete list. You can use this event to provide
custom value list in combination with ConvertPropertyValueToString, ConvertFromStringToPropertyValue events.
You must set IsListValid=true on event arguments to indicate that list your provided should be used.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.AdvPropertyGrid.ProvideUITypeEditor">
<summary>
Occurs when property node needs the UITypeEditor for the property. You can handle this event and provide your own UITypeEditor to be used instead of the one specified on the property.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.AdvPropertyGrid.PropertyValueChanged">
<summary>
Occurs when user changes the value of the property in property grid.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.AdvPropertyGrid.PropertyValueChanging">
<summary>
Occurs before property value entered by the user is set on the property. You can cancel internal assignment by property grid by setting Handled=true on event arguments.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.AdvPropertyGrid.ValidatePropertyValue">
<summary>
Occurs when users changes the property value and attempts to commit the changes. This even allows you to validate the value and show error message if value is invalid and cancel its application.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.AdvPropertyGrid.PropertiesLoaded">
<summary>
Occurs after properties have been loaded into the property grid.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.SelectedObjects">
<summary>
Gets or sets the currently selected objects.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.SelectedObject">
<summary>
Gets or sets the currently selected object.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.BrowsableAttributes">
<summary>
Gets or sets the browsable attributes associated with the object that the property grid is attached to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.HighlightPropertyOnUpdate">
<summary>
Gets or sets whether property is highlighted to confirm the value update by user. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.IgnoredProperties">
<summary>
Gets or sets the list of property names that are not loaded into property grid regardless of their Browsable attribute setting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.IgnoredCategories">
<summary>
Gets or sets the list of category names properties below to that are not loaded into property grid regardless of the property Browsable attribute setting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.SuperTooltip">
<summary>
Returns reference to internal SuperTooltip component used by AdvPropertyGrid.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.Appearance">
<summary>
Defines the appearance of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.PropertySort">
<summary>
Gets or sets the property sorting inside of the grid.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.HelpType">
<summary>
Gets or sets the help type that is provided by the control. Default help type is SuperTooltip which shows tooltip over each property
that provides property description.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.HelpPanel">
<summary>
Gets reference to the help panel that is displayed below property grid and which provides selected property description.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.HelpExpandableSplitter">
<summary>
Gets reference to the expandable splitter that is displayed above the help panel and allows resizing of the panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.PropertyTree">
<summary>
Gets reference to internal AdvTree control that displays properties.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.GridLinesColor">
<summary>
Gets or sets the grid lines color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.Toolbar">
<summary>
Gets the reference to the internal toolbar control displayed above the property grid.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.ToolbarVisible">
<summary>
Gets or sets whether toolbar is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.SearchBoxVisible">
<summary>
Gets or sets whether search text box that allows property filtering is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.SearchTextBoxItem">
<summary>
Gets reference to internal TextBoxItem that represents search text box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.SystemText">
<summary>
Gets the reference to the property gird localization object which holds all system text used by the component.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.TabKeyNavigation">
<summary>
Gets or sets whether Tab key navigates between property nodes. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.PasswordChar">
<summary>
Gets or sets the password character used by the property values that are marked with PropertyPasswordText attribute.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.SubPropertiesDefaultSort">
<summary>
Gets or sets the sub property default sorting. Default value is Alphabetical.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.AdvPropertyGrid.PropertyChanged">
<summary>
Occurs when property defined by AdvPropertyGrid control has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.DevComponents#DotNetBar#IPropertyElementStyleProvider#ReadOnlyStyle">
<summary>
Gets the style that is applied to property node when it is in read-only state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.DevComponents#DotNetBar#IPropertyElementStyleProvider#ValueChangedStyle">
<summary>
Gets the style that is applied to property node when its value has changed from the default value for the property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.DevComponents#DotNetBar#IPropertyElementStyleProvider#DefaultEditCellStyle">
<summary>
Gets the style that is applied to property edit cell when its displaying unchanged property value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGrid.DevComponents#DotNetBar#IPropertyElementStyleProvider#CategoryStyle">
<summary>
Gets the property category style.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ePropertySort">
<summary>
Defines the sorting for the AdvPropertyGrid properties.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ePropertyGridHelpType">
<summary>
Specifies help types property grid uses to display help for selected property.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ePropertyGridHelpType.HelpHidden">
<summary>
No help is visible.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ePropertyGridHelpType.SuperTooltip">
<summary>
SuperTooltip with property description is displayed when mouse is over the property.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ePropertyGridHelpType.Panel">
<summary>
Panel below property grid is displayed which shows the description for the selected property.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.LocalizeEventHandler">
<summary>
Defines delegate for Localize AdvPropertyGrid event.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="T:DevComponents.DotNetBar.AdvPropertyGridLocalizeEventArgs">
<summary>
Defines data for Localize AdvPropertyGrid event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.AdvPropertyGridLocalizeEventArgs.Key">
<summary>
Gets the property name or category name localization is performed for. Inspect LocalizationType property to get localization type which
determines value specified in this property.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.AdvPropertyGridLocalizeEventArgs.LocalizationType">
<summary>
Gets the localization type being performed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.AdvPropertyGridLocalizeEventArgs.LocalizedValue">
<summary>
Gets or sets the localized value to be used. Set to null or empty string to use default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGridLocalizeEventArgs.#ctor(System.String,DevComponents.DotNetBar.ePropertyGridLocalizationType)">
<summary>
Initializes a new instance of the AdvPropertyGridLocalizeEventArgs class.
</summary>
<param name="key">Key value event is raised for.</param>
<param name="localizationType">Localization Type being performed.</param>
</member>
<member name="T:DevComponents.DotNetBar.ePropertyGridLocalizationType">
<summary>
Defines the localization types for AdvPropertyGrid control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ePropertyGridLocalizationType.PropertyName">
<summary>
Property name is localized.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ePropertyGridLocalizationType.Category">
<summary>
Category is localized.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ePropertyGridLocalizationType.ErrorTooltip">
<summary>
Error super tooltip parts are being localized.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PropertyErrorTooltipEventHandler">
<summary>
Defines delegate for Localize AdvPropertyGrid event.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="T:DevComponents.DotNetBar.PropertyErrorTooltipEventArgs">
<summary>
Defines data for PrepareErrorTooltip AdvPropertyGrid event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyErrorTooltipEventArgs.TooltipInfo">
<summary>
Gets or sets the SuperTooltipInfo that represent tooltip that will be displayed to provide error information.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyErrorTooltipEventArgs.PropertyName">
<summary>
Gets the name of the property tooltip is displayed for.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyErrorTooltipEventArgs.Exception">
<summary>
Gets reference to the exception that was thrown when property was set.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyErrorTooltipEventArgs.Value">
<summary>
Gets the value that was set and caused the error.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertyErrorTooltipEventArgs.#ctor(DevComponents.DotNetBar.SuperTooltipInfo,System.String,System.Exception,System.Object)">
<summary>
Initializes a new instance of the PropertyErrorTooltipEventArgs class.
</summary>
<param name="tooltipInfo">SuperTooltipInfo for error tooltip</param>
<param name="propertyName">Property that caused error</param>
<param name="exception">Exception that was raised when property was set</param>
<param name="value">Value that caused the error.</param>
</member>
<member name="T:DevComponents.DotNetBar.ConvertValueEventHandler">
<summary>
Defines delegate for Convert Value events.
</summary>
<param name="sender">Sender</param>
<param name="e">Event data.</param>
</member>
<member name="T:DevComponents.DotNetBar.ConvertValueEventArgs">
<summary>
Defines data for Convert Value events that allows custom value conversion for property grid.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ConvertValueEventArgs.StringValue">
<summary>
Gets or sets the string property value.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ConvertValueEventArgs.TypedValue">
<summary>
Gets or sets the typed property value.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ConvertValueEventArgs.PropertyName">
<summary>
Gets the property name for which conversion is being done.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ConvertValueEventArgs.TargetComponent">
<summary>
Gets the target component that property is on.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ConvertValueEventArgs.IsConverted">
<summary>
Gets or sets whether converted value is used. You need to set this property to true to indicate that you have performed value conversion.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ConvertValueEventArgs.PropertyDescriptor">
<summary>
Gets the property descriptor that describes property.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ConvertValueEventArgs.#ctor(System.String,System.Object,System.String,System.Object,System.ComponentModel.PropertyDescriptor)">
<summary>
Initializes a new instance of the ConvertValueEventArgs class.
</summary>
<param name="stringValue"></param>
<param name="typedValue"></param>
<param name="propertyName"></param>
<param name="targetComponent"></param>
</member>
<member name="T:DevComponents.DotNetBar.PropertyValueListEventHandler">
<summary>
Defines delegate for Convert Value events.
</summary>
<param name="sender">Sender</param>
<param name="e">Event data.</param>
</member>
<member name="T:DevComponents.DotNetBar.PropertyValueListEventArgs">
<summary>
Defines data for Convert Value events that allows custom value conversion for property grid.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyValueListEventArgs.PropertyName">
<summary>
Gets the property name value list is needed for.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyValueListEventArgs.TargetComponent">
<summary>
Gets the target component that property is on.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyValueListEventArgs.IsListValid">
<summary>
Gets or sets whether property ValueList provided is valid. You must set this property to true in order for the list to be used.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyValueListEventArgs.ValueList">
<summary>
Gets or sets the list of valid property values.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyValueListEventArgs.PropertyDescriptor">
<summary>
Gets the property descriptor that describes property.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertyValueListEventArgs.#ctor(System.String,System.Object,System.ComponentModel.PropertyDescriptor)">
<summary>
Initializes a new instance of the PropertyValueListEventArgs class.
</summary>
<param name="propertyName"></param>
<param name="targetComponent"></param>
</member>
<member name="T:DevComponents.DotNetBar.ProvideUITypeEditorEventHandler">
<summary>
Defines delegate for Localize AdvPropertyGrid event.
</summary>
<param name="sender">Sender of event.</param>
<param name="e">Event data.</param>
</member>
<member name="T:DevComponents.DotNetBar.ProvideUITypeEditorEventArgs">
<summary>
Defines data for PrepareErrorTooltip AdvPropertyGrid event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ProvideUITypeEditorEventArgs.PropertyName">
<summary>
Gets the property name UITypeEditor is looked for.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ProvideUITypeEditorEventArgs.PropertyDescriptor">
<summary>
Gets the property descriptor for property UITypeEditor is looked for.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ProvideUITypeEditorEventArgs.UITypeEditor">
<summary>
Gets or sets the instance of UITypeEditor to be used for the property. You set this property to the UITypeEditor that you want
used for the property while editing. Note that you must set EditorSpecified = true in order for this value to be used.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ProvideUITypeEditorEventArgs.EditorSpecified">
<summary>
Gets or sets whether the value specified in UITypeEditor property is used. You must set this value to true in order for
UITypeEditor property value to be used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ProvideUITypeEditorEventArgs.#ctor(System.String,System.ComponentModel.PropertyDescriptor)">
<summary>
Initializes a new instance of the ProvideUITypeEditorEventArgs class.
</summary>
<param name="propertyName">Property Name</param>
<param name="propertyDescriptor">Property Descriptor</param>
</member>
<member name="T:DevComponents.DotNetBar.PropertyValueChangingEventHandler">
<summary>
Defines delegate for PropertyValueChanging event.
</summary>
<param name="sender">Event sender.</param>
<param name="e">Event data.</param>
</member>
<member name="T:DevComponents.DotNetBar.PropertyValueChangingEventArgs">
<summary>
Defines arguments for PropertyValueChanging event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyValueChangingEventArgs.PropertyName">
<summary>
Gets the name of the property which value is changing.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyValueChangingEventArgs.NewValue">
<summary>
Gets the new value that is being set on property.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyValueChangingEventArgs.Handled">
<summary>
Gets or sets whether value assignment was handled by your code. Set to true to cancel internal AdvPropertyGrid property value assignment.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyValueChangingEventArgs.PropertyDescriptor">
<summary>
Gets the PropertyDescriptor for the property being changed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyValueChangingEventArgs.PropertyPath">
<summary>
Gets the full property path up to the selected object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertyValueChangingEventArgs.#ctor(System.String,System.Object)">
<summary>
Initializes a new instance of the PropertyValueChangingEventArgs class.
</summary>
<param name="propertyName"></param>
<param name="newValue"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyValueChangingEventArgs.#ctor(System.String,System.Object,System.ComponentModel.PropertyDescriptor,System.String)">
<summary>
Initializes a new instance of the PropertyValueChangingEventArgs class.
</summary>
<param name="propertyName"></param>
<param name="newValue"></param>
</member>
<member name="T:DevComponents.DotNetBar.ValidatePropertyValueEventHandler">
<summary>
Defines delegate for ValidatePropertyValue event.
</summary>
<param name="sender">Sender</param>
<param name="e">ValidatePropertyValue event arguments</param>
</member>
<member name="T:DevComponents.DotNetBar.ValidatePropertyValueEventArgs">
<summary>
Defines event arguments for ValidatePropertyValue event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ValidatePropertyValueEventArgs.Cancel">
<summary>
Gets or sets whether validation failed. Set to true to cancel property value assignment.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ValidatePropertyValueEventArgs.PropertyName">
<summary>
Gets the name of the property which value is changing.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ValidatePropertyValueEventArgs.NewValue">
<summary>
Gets the new value that is being set on property.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ValidatePropertyValueEventArgs.Target">
<summary>
Gets the target object on which property value is set.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ValidatePropertyValueEventArgs.Message">
<summary>
Gets or sets the message that is displayed to user if validation fails, i.e. Cancel=true.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ValidatePropertyValueEventArgs.#ctor(System.String,System.Object,System.Object)">
<summary>
Initializes a new instance of the ValidatePropertyValueEventArgs class.
</summary>
<param name="propertyName"></param>
<param name="newValue"></param>
<param name="target"></param>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGridAppearance.ShouldSerializeErrorHighlightColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGridAppearance.ResetErrorHighlightColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGridAppearance.ShouldSerializeSuccessHighlightColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGridAppearance.ResetSuccessHighlightColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGridAppearance.ErrorHighlightColor">
<summary>
Gets or sets the color of the node highlight when error has occurred while setting property value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGridAppearance.SuccessHighlightColor">
<summary>
Gets or sets the color of the node highlight when property update was successful.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGridAppearance.DefaultPropertyStyle">
<summary>
Gets or sets default style for property node.
</summary>
<value>
Default value is null.
</value>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGridAppearance.ReadOnlyPropertyStyle">
<summary>
Gets or sets style for property node when in read-only state.
</summary>
<value>
Default value is null.
</value>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGridAppearance.ValueChangedPropertyStyle">
<summary>
Gets or sets style for property node when in read-only state.
</summary>
<value>
Default value is null.
</value>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGridAppearance.DefaultEditCellStyle">
<summary>
Gets or sets style for property node edit cell when displaying unchanged property value.
</summary>
<value>
Default value is null.
</value>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGridAppearance.CategoryStyle">
<summary>
Gets or sets style for property node when in read-only state.
</summary>
<value>
Default value is null.
</value>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGridAppearance.PropertyValueErrorImage">
<summary>
Gets or sets the image that is displayed in property name cell when property value has failed the validation.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.AdvPropertyGridLocalization">
<summary>
Represents the class that stores text used by property grid control for localization purposes.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.AdvPropertyGridLocalization.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Raises the PropertyChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGridLocalization.CategorizeToolbarTooltip">
<summary>
Gets or sets tooltip used by Categorized toolbar button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGridLocalization.AlphabeticalToolbarTooltip">
<summary>
Gets or sets tooltip used by Alphabetical toolbar button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGridLocalization.ErrorSettingPropertyValueTooltip">
<summary>
Gets or sets the tooltip text used in tooltip when error occurred during property value setting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.AdvPropertyGridLocalization.SearchBoxWatermarkText">
<summary>
Gets or sets the watermark text displayed in search text-box.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.AdvPropertyGridLocalization.PropertyChanged">
<summary>
Occurs when property defined by AdvPropertyGridLocalization class has changed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PropertyCategoryNode">
<summary>
Represents the property category in AdvPropertyGrid.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PropertyCheckBoxNode">
<summary>
Represents check-box style property node in AdvPropertyGrid.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PropertyNode">
<summary>
Represents a property node in AdvPropertyGrid.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertyNode.#ctor(System.ComponentModel.PropertyDescriptor)">
<summary>
Initializes a new instance of the PropertyNode class.
</summary>
<param name="property"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyNode.ReleaseInlineEditor">
<summary>
Releases the inline editor used by the node.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertyNode.EnterEditorMode(DevComponents.AdvTree.eTreeAction,System.Boolean)">
<summary>
Places the node into the editing mode if possible, raises the exception if node is read-only.
</summary>
<param name="action">Action that caused the edit mode.</param>
<param name="focusEditor">Indicates whether to focus the editor.</param>
</member>
<member name="F:DevComponents.DotNetBar.PropertyNode.AfterEditorCreated">
<summary>
Called after property editor is created.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertyNode.ExitEditorMode(DevComponents.AdvTree.eTreeAction)">
<summary>
Exits the editor mode.
</summary>
<param name="action">Action that caused the editor mode exit.</param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyNode.OnDisplayChanged">
<summary>
Called when visual part of the node has changed due to the changes of its properties or properties of the cells contained by node.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertyNode.CancelEdit">
<summary>
Cancel the edit changes and applies the old property value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertyNode.ApplyEdit">
<summary>
Attempts to apply current edit value to the property.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertyNode.GetPropertyPath">
<summary>
Returns the full property path to the root of the selected object.
</summary>
<returns>Full property path.</returns>
</member>
<member name="M:DevComponents.DotNetBar.PropertyNode.StartHighlight(System.Drawing.Color)">
<summary>
Starts fade background color style highlight for the property node.
</summary>
<param name="color">Specifies the fade background color.</param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyNode.UpdatePropertySettings">
<summary>
Applies PropertySettings to this node.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PropertyNode.IsReadOnly">
<summary>
Gets or sets whether property text box is read only. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PropertyNode.IsEditing">
<summary>
Gets whether node is in editing mode.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PropertyNode.PropertySettings">
<summary>
Gets or sets the property settings that are applied to this property node.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PropertyNode.IsMultiObject">
<summary>
Gets or sets whether property node represents property for multiple objects.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PropertyNode.IsPassword">
<summary>
Gets or sets whether property is password property which value is not displayed as plain text.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PropertyNode.AfterEditorCreatedDelegate">
<summary>
Defines delegate that is called after property editor is created.
</summary>
<param name="sender">PropertyNode sender.</param>
<param name="editor">Reference to editor.</param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyCheckBoxNode.#ctor(System.ComponentModel.PropertyDescriptor)">
<summary>
Initializes a new instance of the PropertyNode class.
</summary>
<param name="property"></param>
</member>
<member name="T:DevComponents.DotNetBar.PropertyDateTimeEditor">
<summary>
Defines a attribute which applies an date-time editor to a property when used with AdvPropertyGrid control. Applies to DateTime property types only.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PropertyValueEditor">
<summary>
Defines base attribute for custom AdvPropertyGrid in-line property value editors.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertyValueEditor.CreateEditor(System.ComponentModel.PropertyDescriptor,System.Object)">
<summary>
Creates a control that is used as property value in-line editor. Control must implement IPropertyValueEditor interface.
</summary>
<param name="propertyDescriptor">PropertyDescriptor for the property being edited.</param>
<param name="targetObject">Target object that owns the property.</param>
<returns>Control that represents in-line editor.</returns>
</member>
<member name="F:DevComponents.DotNetBar.PropertyDateTimeEditor.Format">
<summary>
Gets or sets pre-defined format for date-time input.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyDateTimeEditor.CustomFormat">
<summary>
Gets or sets custom format for date-time input.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyDateTimeEditor.AllowEmptyState">
<summary>
Gets or sets whether empty null/nothing state of the control is allowed. Default value is false.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyDateTimeEditor.ShowDropDownButton">
<summary>
Gets or sets whether drop-down button that shows calendar is visible. Default value is true.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyDateTimeEditor.MinDate">
<summary>
Gets or sets the minimum date that control accepts.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyDateTimeEditor.MaxDate">
<summary>
Gets or sets the maximum date that control accepts.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertyDateTimeEditor.#ctor(DevComponents.Editors.eDateTimePickerFormat)">
<summary>
Initializes a new instance of the PropertyDateTimeEditor class.
</summary>
<param name="format"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyDateTimeEditor.#ctor(System.DateTime,System.DateTime)">
<summary>
Initializes a new instance of the PropertyDateTimeEditor class.
</summary>
<param name="minDate"></param>
<param name="maxDate"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyDateTimeEditor.#ctor(DevComponents.Editors.eDateTimePickerFormat,System.DateTime,System.DateTime)">
<summary>
Initializes a new instance of the PropertyDateTimeEditor class.
</summary>
<param name="format"></param>
<param name="minDate"></param>
<param name="maxDate"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyDateTimeEditor.#ctor(DevComponents.Editors.eDateTimePickerFormat,System.String,System.Boolean,System.Boolean,System.DateTime,System.DateTime)">
<summary>
Initializes a new instance of the PropertyDateTimeEditor class.
</summary>
<param name="format"></param>
<param name="customFormat"></param>
<param name="allowEmptyState"></param>
<param name="showDropDownButton"></param>
<param name="minDate"></param>
<param name="maxDate"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyDateTimeEditor.#ctor(DevComponents.Editors.eDateTimePickerFormat,System.Boolean)">
<summary>
Initializes a new instance of the PropertyDateTimeEditor class.
</summary>
<param name="format"></param>
<param name="allowEmptyState"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyDateTimeEditor.#ctor(System.String)">
<summary>
Initializes a new instance of the PropertyDateTimeEditor class.
</summary>
<param name="customFormat"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyDateTimeEditor.#ctor(System.String,System.Boolean)">
<summary>
Initializes a new instance of the PropertyDateTimeEditor class.
</summary>
<param name="customFormat"></param>
<param name="allowEmptyState"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyDateTimeEditor.#ctor">
<summary>
Initializes a new instance of the PropertyDateTimeEditor class.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.IPropertyValueEditor">
<summary>
Defines an interface that is implemented by the control that will be used by AdvPropertyGrid control to edit property value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.IPropertyValueEditor.FocusEditor">
<summary>
Focus the edit part of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IPropertyValueEditor.EditorFont">
<summary>
Gets or sets the font used by the edit part of the control. Font might be used to visually indicate that property value has changed. Implementing this property is optional.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IPropertyValueEditor.IsEditorFocused">
<summary>
Gets whether the edit part of the control is focused.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IPropertyValueEditor.EditValue">
<summary>
Gets or sets the value being edited.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.IPropertyValueEditor.EditValueChanged">
<summary>
Occurs when EditValue changes. Raising this even will cause the property value to be updated with the EditValue.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PropertyDoubleEditor">
<summary>
Defines a attribute which applies an double type numeric editor to a property when used with AdvPropertyGrid control. Applies to double property types only.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyDoubleEditor.ShowUpDownButton">
<summary>
Gets or sets whether up/down button is shown.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyDoubleEditor.DisplayFormat">
<summary>
Gets or sets the display format for the control when control does not have input focus.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyDoubleEditor.MinValue">
<summary>
Gets or sets the minimum value that can be entered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyDoubleEditor.MaxValue">
<summary>
Gets or sets the maximum value that can be entered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyDoubleEditor.AllowEmptyState">
<summary>
Gets or sets whether empty state i.e. null/nothing value is allowed when editor is used with nullable types.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertyDoubleEditor.#ctor">
<summary>
Initializes a new instance of the PropertyDoubleEditor class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertyDoubleEditor.#ctor(System.Boolean)">
<summary>
Initializes a new instance of the PropertyDoubleEditor class.
</summary>
<param name="showUpDownButton"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyDoubleEditor.#ctor(System.Double,System.Double)">
<summary>
Initializes a new instance of the PropertyDoubleEditor class.
</summary>
<param name="minValue"></param>
<param name="maxValue"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyDoubleEditor.#ctor(System.Boolean,System.Double,System.Double)">
<summary>
Initializes a new instance of the PropertyDoubleEditor class.
</summary>
<param name="showUpDownButton"></param>
<param name="minValue"></param>
<param name="maxValue"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyDoubleEditor.#ctor(System.Boolean,System.String,System.Double,System.Double)">
<summary>
Initializes a new instance of the PropertyDoubleEditor class.
</summary>
<param name="showUpDownButton"></param>
<param name="displayFormat"></param>
<param name="minValue"></param>
<param name="maxValue"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyDoubleEditor.#ctor(System.Boolean,System.String)">
<summary>
Initializes a new instance of the PropertyDoubleEditor class.
</summary>
<param name="showUpDownButton"></param>
<param name="displayFormat"></param>
</member>
<member name="T:DevComponents.DotNetBar.PropertyIntegerEditor">
<summary>
Defines a attribute which applies an integer type numeric editor to a property when used with AdvPropertyGrid control. Applies to int property types only.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyIntegerEditor.ShowUpDownButton">
<summary>
Gets or sets whether up/down button is shown.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyIntegerEditor.DisplayFormat">
<summary>
Gets or sets the display format for the control when control does not have input focus.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyIntegerEditor.MinValue">
<summary>
Gets or sets the minimum value that can be entered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyIntegerEditor.MaxValue">
<summary>
Gets or sets the maximum value that can be entered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertyIntegerEditor.AllowEmptyState">
<summary>
Gets or sets whether empty state i.e. null/nothing value is allowed when editor is used with nullable types.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertyIntegerEditor.#ctor">
<summary>
Initializes a new instance of the PropertyIntegerEditor class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertyIntegerEditor.#ctor(System.Boolean)">
<summary>
Initializes a new instance of the PropertyIntegerEditor class.
</summary>
<param name="showUpDownButton"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyIntegerEditor.#ctor(System.Int32,System.Int32)">
<summary>
Initializes a new instance of the PropertyIntegerEditor class.
</summary>
<param name="minValue"></param>
<param name="maxValue"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyIntegerEditor.#ctor(System.Boolean,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the PropertyIntegerEditor class.
</summary>
<param name="showUpDownButton"></param>
<param name="minValue"></param>
<param name="maxValue"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyIntegerEditor.#ctor(System.Boolean,System.String,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the PropertyIntegerEditor class.
</summary>
<param name="showUpDownButton"></param>
<param name="displayFormat"></param>
<param name="minValue"></param>
<param name="maxValue"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyIntegerEditor.#ctor(System.Boolean,System.String)">
<summary>
Initializes a new instance of the PropertyIntegerEditor class.
</summary>
<param name="showUpDownButton"></param>
<param name="displayFormat"></param>
</member>
<member name="T:DevComponents.DotNetBar.PropertyMultiChoiceEditor">
<summary>
Defines multiple choice, option or check-boxes, in-line AdvPropertyGrid property value editor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertyMultiChoiceEditor.#ctor">
<summary>
Initializes a new instance of the PropertyMultiChoiceEditor class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertyMultiChoiceEditor.#ctor(System.Collections.Generic.KeyValuePair{System.Object,System.String}[])">
<summary>
Initializes a new instance of the PropertyMultiChoiceEditor class.
</summary>
<param name="items"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyMultiChoiceEditor.#ctor(System.Collections.Generic.KeyValuePair{System.Object,System.String}[],System.Drawing.Color)">
<summary>
Initializes a new instance of the PropertyMultiChoiceEditor class.
</summary>
<param name="items"></param>
<param name="textColor"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyMultiChoiceEditor.#ctor(System.Collections.Generic.KeyValuePair{System.Object,System.String}[],System.Drawing.Color,System.Boolean)">
<summary>
Initializes a new instance of the PropertyMultiChoiceEditor class.
</summary>
<param name="items"></param>
<param name="textColor"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyMultiChoiceEditor.#ctor(System.Collections.Generic.KeyValuePair{System.Object,System.String}[],System.Boolean)">
<summary>
Initializes a new instance of the PropertyMultiChoiceEditor class.
</summary>
<param name="items"></param>
<param name="textColor"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyMultiChoiceEditor.#ctor(System.String)">
<summary>
Initializes a new instance of the PropertyMultiChoiceEditor class.
</summary>
<param name="commaSeparatedItemList"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyMultiChoiceEditor.#ctor(System.String,System.Boolean)">
<summary>
Initializes a new instance of the PropertyMultiChoiceEditor class.
</summary>
<param name="commaSeparatedItemList"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyMultiChoiceEditor.#ctor(System.String,System.Drawing.Color)">
<summary>
Initializes a new instance of the PropertyMultiChoiceEditor class.
</summary>
<param name="items"></param>
<param name="textColor"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyMultiChoiceEditor.#ctor(System.String,System.Drawing.Color,System.Boolean)">
<summary>
Initializes a new instance of the PropertyMultiChoiceEditor class.
</summary>
<param name="items"></param>
<param name="textColor"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyMultiChoiceEditor.#ctor(System.String[],System.Object[])">
<summary>
Initializes a new instance of the PropertyMultiChoiceEditor class.
</summary>
<param name="values"></param>
<param name="keys"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyMultiChoiceEditor.#ctor(System.String[],System.Object[],System.Drawing.Color)">
<summary>
Initializes a new instance of the PropertyMultiChoiceEditor class.
</summary>
<param name="displayValues"></param>
<param name="keys"></param>
<param name="textColor"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyMultiChoiceEditor.PropertyMultiChoiceItemEditor.#ctor(System.Collections.Generic.KeyValuePair{System.Object,System.String}[],System.Boolean,System.Drawing.Color,System.String)">
<summary>
Initializes a new instance of the PropertyMultiChoiceItemEditor class.
</summary>
<param name="itemsDefinition"></param>
<param name="isMultiChoice"></param>
</member>
<member name="T:DevComponents.DotNetBar.PropertyOptionListNode">
<summary>
Represents the option list property node for AdvPropertyGrid.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertyOptionListNode.#ctor(System.ComponentModel.PropertyDescriptor)">
<summary>
Initializes a new instance of the PropertyNode class.
</summary>
<param name="property"></param>
</member>
<member name="T:DevComponents.DotNetBar.PropertySettings">
<summary>
Describes the property settings applied to the property on AdvPropertyGrid control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertySettings.#ctor">
<summary>
Initializes a new instance of the PropertySettings class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertySettings.#ctor(System.String)">
<summary>
Initializes a new instance of the PropertySettings class.
</summary>
<param name="propertyName"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertySettings.#ctor(System.ComponentModel.PropertyDescriptor)">
<summary>
Initializes a new instance of the PropertySettings class.
</summary>
<param name="propertyDescriptor"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertySettings.OnConvertPropertyValueToString(DevComponents.DotNetBar.ConvertValueEventArgs)">
<summary>
Raises the ConvertPropertyValueToString event.
</summary>
<param name="e">Provides event data</param>
</member>
<member name="M:DevComponents.DotNetBar.PropertySettings.OnConvertFromStringToPropertyValue(DevComponents.DotNetBar.ConvertValueEventArgs)">
<summary>
Raises the ConvertFromStringToPropertyValue event.
</summary>
<param name="e">Provides event data</param>
</member>
<member name="M:DevComponents.DotNetBar.PropertySettings.OnProvidePropertyValueList(DevComponents.DotNetBar.PropertyValueListEventArgs)">
<summary>
Raises the ProvidePropertyValueList event.
</summary>
<param name="e">Provides event data</param>
</member>
<member name="M:DevComponents.DotNetBar.PropertySettings.OnTypeConverterChanged(System.ComponentModel.TypeConverter,System.ComponentModel.TypeConverter)">
<summary>
Called when TypeConverter property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.PropertySettings.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Raises PropertyChanged event.
</summary>
<param name="e">Event data.</param>
</member>
<member name="E:DevComponents.DotNetBar.PropertySettings.ConvertPropertyValueToString">
<summary>
Occurs when property value is being converted to text representation for display. You can handle this event
to provide custom conversion for property values. You must set IsConverted=true on event arguments to indicate that you have performed value conversion.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.PropertySettings.ConvertFromStringToPropertyValue">
<summary>
Occurs when text entered by user is being converted to typed property value to be assigned to the property. You can handle this event
to provide custom conversion for property values. You must set IsConverted=true on event arguments to indicate that you have performed value conversion.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.PropertySettings.ProvidePropertyValueList">
<summary>
Occurs when property looks for the list of valid values for the property to show on either drop-down or use
in auto-complete list. For example when property type is enum the internal implementation will convert available enum
values into string list and use on drop-down and in auto-complete list. You can use this event to provide
custom value list in combination with ConvertPropertyValueToString, ConvertFromStringToPropertyValue events.
You must set IsListValid=true on event arguments to indicate that list your provided should be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PropertySettings.ReadOnlyStyle">
<summary>
Gets or sets read-only property style.
</summary>
<value>
Default value is null.
</value>
</member>
<member name="P:DevComponents.DotNetBar.PropertySettings.ReadOnly">
<summary>
Gets or sets whether property is in read-only state. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PropertySettings.ReadOnlyTooltip">
<summary>
Gets or sets the SuperTooltip that is displayed when property is in read-only state (ReadOnly=true).
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PropertySettings.Tooltip">
<summary>
Gets or sets the SuperTooltip that is assigned to the property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PropertySettings.Image">
<summary>
Gets or sets the image that is displayed next to the property name in the grid.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PropertySettings.ImageAlignment">
<summary>
Gets or sets the image alignment in relation to the property name inside of the grid cell.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PropertySettings.Category">
<summary>
Gets or sets the custom category node will be placed in instead of category specified by Category attribute.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PropertySettings.DisplayName">
<summary>
Gets or sets the custom property name that is displayed in the grid instead of the real property name.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PropertySettings.PropertyName">
<summary>
Gets or sets the name of the property that is managed by this informational object. If you set PropertyDescriptor than that is the value
that will be used by the control regardless of PropertyName value.
If you set PropertyName but not PropertyDescriptor then all properties with given name
regardless of type will use these settings.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PropertySettings.PropertyDescriptor">
<summary>
Gets or sets property descriptor that identifies the property settings apply to. If you set PropertyDescriptor than that is the value
that will be used by the control regardless of PropertyName value.
If you set PropertyName but not PropertyDescriptor then all properties with given name
regardless of type will use these settings.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PropertySettings.Style">
<summary>
Gets or sets default property style.
</summary>
<value>
Default value is null.
</value>
</member>
<member name="P:DevComponents.DotNetBar.PropertySettings.UITypeEditor">
<summary>
Gets or sets the UITypeEditor used to edit the property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PropertySettings.ValueEditor">
<summary>
Gets or sets the custom in-line property value editor. Property value editor is created by inheriting from PropertyValueEditor class.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PropertySettings.Visible">
<summary>
Gets or sets whether node is visible in property grid. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PropertySettings.PropertyNodeType">
<summary>
Gets or sets the property node type that is used to edit this property value. Note that content of property grid would need to be
reloaded to apply any changes to this property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PropertySettings.Description">
<summary>
Gets or sets the property description that overrides description specified on property through DescriptionAttribute.
Default value is null.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PropertySettings.TypeConverter">
<summary>
Gets or sets custom TypeConverter assigned to the property which will override any TypeConverter that is returned by the PropertyDescriptor.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.PropertySettings.PropertyChanged">
<summary>
Occurs when property value on the object changes.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ePropertyNodeType">
<summary>
Defines the type of the property node in grid that is assigned to property.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ePropertyNodeType.Default">
<summary>
Specifies default node type for the property.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ePropertyNodeType.RadioButtonList">
<summary>
Specifies the node type that is constructed as group of option buttons that represent all values for the property. Works best
for smaller set of Enum values.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.InvalidPropertyValueException">
<summary>
Defines exception which is thrown when property value fails the validation in AdvPropertyGrid.ValidatePropertyValue event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.InvalidPropertyValueException.#ctor(System.String)">
<summary>
Initializes a new instance of the InvalidPropertyValueException class.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PropertyNodeColor">
<summary>
Defines Advanced Property Grid Node for Color type.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertyNodeColor.#ctor(System.ComponentModel.PropertyDescriptor)">
<summary>
Initializes a new instance of the PropertyNode class.
</summary>
<param name="property"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyNodeFactory.#ctor(DevComponents.DotNetBar.IPropertyElementStyleProvider)">
<summary>
Initializes a new instance of the PropertyNodeFactory class.
</summary>
<param name="categoryStyle"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyParser.#ctor(System.Object,System.Attribute[],DevComponents.DotNetBar.PropertyNodeFactory,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},DevComponents.DotNetBar.IPropertyGridLocalizer,DevComponents.DotNetBar.PropertySettingsCollection)">
<summary>
Initializes a new instance of the PropertyParser class.
</summary>
<param name="selectedObject"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyParser.#ctor(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[],DevComponents.DotNetBar.PropertyNodeFactory,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},DevComponents.DotNetBar.IPropertyGridLocalizer,DevComponents.DotNetBar.PropertySettingsCollection)">
<summary>
Initializes a new instance of the PropertyParser class.
</summary>
<param name="selectedObject"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyParser.#ctor(System.Object[],System.Attribute[],DevComponents.DotNetBar.PropertyNodeFactory,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},DevComponents.DotNetBar.IPropertyGridLocalizer,DevComponents.DotNetBar.PropertySettingsCollection)">
<summary>
Initializes a new instance of the PropertyParser class.
</summary>
<param name="selectedObject"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertyParser.#ctor(System.ComponentModel.ITypeDescriptorContext,System.Object[],System.Attribute[],DevComponents.DotNetBar.PropertyNodeFactory,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},DevComponents.DotNetBar.IPropertyGridLocalizer,DevComponents.DotNetBar.PropertySettingsCollection)">
<summary>
Initializes a new instance of the PropertyParser class.
</summary>
<param name="selectedObject"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertySettingsCollection.#ctor(DevComponents.DotNetBar.AdvPropertyGrid)">
<summary>
Initializes a new instance of the PropertyGridInfoCollection class.
</summary>
<param name="owner"></param>
</member>
<member name="P:DevComponents.DotNetBar.PropertySettingsCollection.Item(System.String)">
<summary>
Gets property info object based on property name.
</summary>
<param name="propertyName">Property name.</param>
<returns>PropertyGridInfo instance or null if it cannot be found.</returns>
</member>
<member name="P:DevComponents.DotNetBar.PropertySettingsCollection.Item(System.ComponentModel.PropertyDescriptor)">
<summary>
Gets property info object based on property descriptor.
</summary>
<param name="propertyDescriptor">Property descriptor.</param>
<returns>PropertyGridInfo instance or null if it cannot be found.</returns>
</member>
<member name="P:DevComponents.DotNetBar.PropertySettingsCollection.Item(System.ComponentModel.PropertyDescriptor,System.String)">
<summary>
Returns property setting based on property descriptor or name if property descriptor is not set on property settings
Property descriptor takes precedence.
</summary>
<param name="propertyDescriptor">Property descriptor to look for.</param>
<param name="propertyName">Property Name to look for.</param>
<returns>Property settings instance or null</returns>
</member>
<member name="P:DevComponents.DotNetBar.PropertySettingsCollection.Owner">
<summary>
Gets the owner of the collection.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PropertySliderEditor">
<summary>
Defines a attribute which applies an slider in-line editor to a property when used with AdvPropertyGrid control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertySliderEditor.MinValue">
<summary>
Gets or sets the minimum slider value.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertySliderEditor.MaxValue">
<summary>
Gets or sets the maximum slider value.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertySliderEditor.LabelVisible">
<summary>
Gets or sets whether slider text label is visible.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertySliderEditor.LabelWidth">
<summary>
Gets or sets the slider label width. Default value is 18.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PropertySliderEditor.TextColor">
<summary>
Gets or sets label text color.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PropertySliderEditor.#ctor(System.Int32,System.Int32)">
<summary>
Initializes a new instance of the PropertySliderEditor class.
</summary>
<param name="minValue">Minimum value for slider.</param>
<param name="maxValue">Maximum value for slider.</param>
</member>
<member name="M:DevComponents.DotNetBar.PropertySliderEditor.#ctor(System.Int32,System.Int32,System.Drawing.Color)">
<summary>
Initializes a new instance of the PropertySliderEditor class.
</summary>
<param name="minValue"></param>
<param name="maxValue"></param>
<param name="textColor"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertySliderEditor.#ctor(System.Int32,System.Int32,System.Boolean,System.Int32,System.Drawing.Color)">
<summary>
Initializes a new instance of the PropertySliderEditor class.
</summary>
<param name="minValue"></param>
<param name="maxValue"></param>
<param name="labelVisible"></param>
<param name="labelWidth"></param>
<param name="textColor"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertySliderEditor.#ctor(System.Int32,System.Int32,System.Boolean)">
<summary>
Initializes a new instance of the PropertySliderEditor class.
</summary>
<param name="minValue"></param>
<param name="maxValue"></param>
<param name="labelVisible"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertySliderEditor.#ctor(System.Int32,System.Int32,System.Boolean,System.Int32)">
<summary>
Initializes a new instance of the PropertySliderEditor class.
</summary>
<param name="minValue"></param>
<param name="maxValue"></param>
<param name="labelVisible"></param>
<param name="labelWidth"></param>
</member>
<member name="M:DevComponents.DotNetBar.PropertySliderEditor.CreateEditor(System.ComponentModel.PropertyDescriptor,System.Object)">
<summary>
Creates a control that is used as property value in-line editor. Control must implement IPropertyValueEditor interface.
</summary>
<param name="propertyDescriptor">PropertyDescriptor for the property being edited.</param>
<param name="targetObject">Target object that owns the property.</param>
<returns>Control that represents in-line editor.</returns>
</member>
<member name="T:DevComponents.DotNetBar.RadialMenu">
<summary>
Defines Radial Menu control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.#ctor">
<summary>
Initializes a new instance of the RadialMenu class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.OnBeforeMenuClose(DevComponents.DotNetBar.Events.CancelableEventSourceArgs)">
<summary>
Raises BeforeMenuClose event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.OnBeforeMenuOpen(DevComponents.DotNetBar.Events.CancelableEventSourceArgs)">
<summary>
Raises BeforeMenuOpen event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.OnMenuOpened(System.EventArgs)">
<summary>
Raises MenuOpened event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.OnMenuClosed(System.EventArgs)">
<summary>
Raises MenuClosed event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="F:DevComponents.DotNetBar.RadialMenu._Image">
<summary>
Gets or sets whether radial menu is open.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.OnImageChanged(System.Drawing.Image,System.Drawing.Image)">
<summary>
Called when Image property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.OnIsOpenChanged(System.Boolean,System.Boolean)">
<summary>
Called when IsOpen property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.SetIsOpen(System.Boolean,DevComponents.DotNetBar.eEventSource)">
<summary>
Sets whether radial menu is open and provides the source of the action.
</summary>
<param name="isOpen">true to open menu, false to close it.</param>
<param name="source">Source of the action.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.DevComponents#DotNetBar#IOwner#GetItems(System.String)">
<summary>
Returns the collection of items with the specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.DevComponents#DotNetBar#IOwner#GetItems(System.String,System.Type)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.DevComponents#DotNetBar#IOwner#GetItems(System.String,System.Type,System.Boolean)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<param name="useGlobalName">Indicates whether GlobalName property is used for searching.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.DevComponents#DotNetBar#IOwner#GetItem(System.String)">
<summary>
Returns the first item that matches specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.OnItemAdded(DevComponents.DotNetBar.BaseItem,System.EventArgs)">
<summary>
Raises ItemAdded event.
</summary>
<param name="source">Reference to item.</param>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.OnItemRemoved(DevComponents.DotNetBar.BaseItem,DevComponents.DotNetBar.ItemRemovedEventArgs)">
<summary>
Raises ItemRemoved event.
</summary>
<param name="source">Reference to item.</param>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.OnItemMouseEnter(DevComponents.DotNetBar.BaseItem,System.EventArgs)">
<summary>
Raises ItemMouseEnter event.
</summary>
<param name="source">Reference to item.</param>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.OnItemMouseHover(DevComponents.DotNetBar.BaseItem,System.EventArgs)">
<summary>
Raises ItemMouseHover event.
</summary>
<param name="source">Reference to item.</param>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.OnItemMouseLeave(DevComponents.DotNetBar.BaseItem,System.EventArgs)">
<summary>
Raises ItemMouseLeave event.
</summary>
<param name="source">Reference to item.</param>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.OnItemMouseDown(DevComponents.DotNetBar.BaseItem,System.Windows.Forms.MouseEventArgs)">
<summary>
Raises ItemMouseDown event.
</summary>
<param name="source">Reference to item.</param>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.OnItemMouseUp(DevComponents.DotNetBar.BaseItem,System.Windows.Forms.MouseEventArgs)">
<summary>
Raises ItemMouseUp event.
</summary>
<param name="source">Reference to item.</param>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.OnItemMouseMove(DevComponents.DotNetBar.BaseItem,System.Windows.Forms.MouseEventArgs)">
<summary>
Raises ItemMouseMove event.
</summary>
<param name="source">Reference to item.</param>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.OnItemClick(DevComponents.DotNetBar.BaseItem,System.EventArgs)">
<summary>
Raises ItemClick event.
</summary>
<param name="source">Reference to item.</param>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.OnItemDoubleClick(DevComponents.DotNetBar.BaseItem,System.Windows.Forms.MouseEventArgs)">
<summary>
Raises ItemDoubleClick event.
</summary>
<param name="source">Reference to item.</param>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.OnItemExpandedChanged(DevComponents.DotNetBar.BaseItem,System.EventArgs)">
<summary>
Raises ItemExpandedChanged event.
</summary>
<param name="source">Reference to item.</param>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.OnItemTextChanged(DevComponents.DotNetBar.BaseItem,System.EventArgs)">
<summary>
Raises ItemTextChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenu.OnItemTooltipShowing(System.Object,System.EventArgs)">
<summary>
Raises ItemTooltipShowing event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenu.BeforeMenuClose">
<summary>
Occurs before menu is closed and allows you to cancel closing.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenu.BeforeMenuOpen">
<summary>
Occurs before menu has been opened and allows you to cancel opening
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenu.MenuOpened">
<summary>
Occurs after menu has been opened.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenu.MenuClosed">
<summary>
Occurs after menu is closed.Occurs after menu is closed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.SubMenuEdgeWidth">
<summary>
Specifies the width of the sub-menu edge around the radial menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.SubMenuEdgeItemSpacing">
<summary>
Indicates spacing between sub-menu marking edge and the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.Diameter">
<summary>
Gets or sets radial menu diameter. Minimum value is 64.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.Colors">
<summary>
Gets reference to colors used by the radial menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.BackButtonSymbolSize">
<summary>
Indicates the size of the back symbol that is displayed on center of radial menu
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.BackButtonSymbol">
<summary>
Specifies the back button symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.BackButtonSymbolSet">
<summary>
Gets or sets the symbol set used to represent the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.CenterButtonDiameter">
<summary>
Indicates diameter of center button of radial menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.MaxItemPieAngle">
<summary>
Specifies the maximum pie part angle an item will occupy. Maximum is 180, minimum is 1 degree.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.MaxItemRadialAngle">
<summary>
Indicates maximum radial angle single item in menu can consume. By default this property is set to zero which indicates that
radial menu is equally divided between visible menu items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.MenuLocation">
<summary>
Indicates the position of top-left corner of radial menu when shown in screen coordinates
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.Image">
<summary>
Indicates image displayed in center of the radial menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.Symbol">
<summary>
Indicates symbol displayed in center of the radial menu. When set, it overrides any Image settings.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.SymbolSet">
<summary>
Gets or sets the symbol set used to represent the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.SymbolSize">
<summary>
Indicates the size of the symbol in points.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.IsOpen">
<summary>
Gets or sets whether radial menu is open.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.Items">
<summary>
Returns collection of items on a bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.SymbolBorderEnabled">
<summary>
Indicates whether border, a circle is rendered around the selected symbol which represents radial menu. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.ShortcutsEnabled">
<summary>
Gets or sets whether shortcut processing for the items hosted by this control is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.CloseMenuOnAppDeactivate">
<summary>
Indicates whether radial menu is closed automatically when app is deactivated. Default value is true, if set to false
you are responsible for closing the menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.UseHook">
<summary>
Gets or sets whether hooks are used for internal DotNetBar system functionality. Using hooks is recommended only if DotNetBar is used in hybrid environments like Visual Studio designers or IE.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.MenuType">
<summary>
Indicates the radial menu type. eRadialMenuType.Segment menu type allows for display of image, text and any sub-menu items.
eRadialMenuType.Circular allows only for display of Symbol or Image and it does not display either text or sub-menu items.
eRadialMenuType.Circular is designed to be used for single level menus only that don't need text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.AutoScale">
<summary>
Indicates whether control automatically scales the items if the parent Form performs scaling due to AutoScale settings.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.AccessibleHelp">
<summary>
Indicates accessibility help string
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.HasRegisteredPopups">
<summary>
Returns whether control has any popups registered.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.DispatchShortcuts">
<summary>
Indicates whether shortcuts handled by items are dispatched to the next handler or control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.ShowToolTips">
<summary>
Indicates whether items show tooltips.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.ShowShortcutKeysInToolTips">
<summary>
Indicates whether item shortcut is displayed in Tooltips.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.AlwaysDisplayKeyAccelerators">
<summary>
Gets or sets whether accelerator letters on buttons are underlined. Default value is false which indicates that system setting is used
to determine whether accelerator letters are underlined. Setting this property to true
will always display accelerator letter underlined.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenu.DisabledImagesGrayScale">
<summary>
Gets or sets whether gray-scale algorithm is used to create automatic gray-scale images. Default is true.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenu.ItemAdded">
<summary>
Occurs after an item has been added to items collection.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenu.ItemRemoved">
<summary>
Occurs after an item has been removed from items collection.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenu.ItemMouseEnter">
<summary>
Occurs when mouse pointer enters boundaries of an item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenu.ItemMouseHover">
<summary>
Occurs when mouse pointer hovers over an item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenu.ItemMouseLeave">
<summary>
Occurs when mouse pointer leaves boundaries of an item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenu.ItemMouseDown">
<summary>
Occurs when mouse button is pressed on item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenu.ItemMouseUp">
<summary>
Occurs when mouse button is released on item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenu.ItemMouseMove">
<summary>
Occurs when mouse moves over an item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenu.ItemClick">
<summary>
Occurs when an item is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenu.ItemDoubleClick">
<summary>
Occurs when an item is double-clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenu.ItemExpandedChanged">
<summary>
Occurs when an item Expanded property value has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenu.ItemTextChanged">
<summary>
Occurs when an item Text property value has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenu.ItemTooltipShowing">
<summary>
Occurs when tooltip for an item is about to be displayed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.RadialMenuColorTable">
<summary>
Defines colors used by Radial Menu Component.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ShouldSerializeRadialMenuButtonBackground">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ResetRadialMenuButtonBackground">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ShouldSerializeRadialMenuButtonBorder">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ResetRadialMenuButtonBorder">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ShouldSerializeRadialMenuBackground">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ResetRadialMenuBackground">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ShouldSerializeRadialMenuBorder">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ResetRadialMenuBorder">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ShouldSerializeRadialMenuMouseOverBorder">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ResetRadialMenuMouseOverBorder">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ShouldSerializeRadialMenuInactiveBorder">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ResetRadialMenuInactiveBorder">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ShouldSerializeRadialMenuExpandForeground">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ResetRadialMenuExpandForeground">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ShouldSerializeRadialMenuItemForeground">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ResetRadialMenuItemForeground">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ShouldSerializeRadialMenuItemMouseOverBackground">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ResetRadialMenuItemMouseOverBackground">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ShouldSerializeRadialMenuItemMouseOverForeground">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ResetRadialMenuItemMouseOverForeground">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ShouldSerialize_RadialMenuItemDisabledForeground">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.Reset_RadialMenuItemDisabledForeground">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ShouldSerializeCircularBackColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ResetCircularBackColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ShouldSerializeCircularForeColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ResetCircularForeColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ShouldSerializeCircularBorderColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.ResetCircularBorderColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Raises the PropertyChanged event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.RadialMenuButtonBackground">
<summary>
Gets or sets the color of the Radial Menu button background.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.RadialMenuButtonBorder">
<summary>
Gets or sets the color of the radial menu button border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.RadialMenuBackground">
<summary>
Gets or sets the color of the Radial Menu background.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.RadialMenuBorder">
<summary>
Gets or sets the color of the Radial Menu border
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.RadialMenuMouseOverBorder">
<summary>
Gets or sets the color of border for mouse over state for the radial menu item expand part.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.RadialMenuInactiveBorder">
<summary>
Gets or sets the color of the radial menu border for parts where items do not have sub-items, i.e. non-active area of the border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.RadialMenuExpandForeground">
<summary>
Gets or sets the color of the expand sign which shows menu item sub-items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.RadialMenuItemForeground">
<summary>
Gets or sets the color of the radial menu item text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.RadialMenuItemMouseOverBackground">
<summary>
Gets or sets the color of the radial menu item mouse over background.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.RadialMenuItemMouseOverForeground">
<summary>
Gets or sets the color of the radial menu item mouse over foreground.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.RadialMenuItemDisabledForeground">
<summary>
Gets or sets the color of the radial menu item foreground when disabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.CircularBackColor">
<summary>
Gets or sets background color of the circular menu item type. Applies only to circular menu types.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.CircularForeColor">
<summary>
Gets or sets text color of the circular menu item type. Applies only to circular menu types.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.CircularBorderColor">
<summary>
Gets or sets border color of the circular menu item type. Applies only to circular menu types.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.RadialMenuColorTable.PropertyChanged">
<summary>
Occurs when property value has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.#ctor">
<summary>
Initializes a new instance of the RadialMenuContainer class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.InternalCopyToItem(DevComponents.DotNetBar.RadialMenuContainer)">
<summary>
Copies the RadialMenuItem specific properties to new instance of the item.
</summary>
<param name="copy">New ProgressBarItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the RadialMenuItem specific properties to new instance of the item.
</summary>
<param name="copy">New RadialMenuItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.OnOpened(System.EventArgs)">
<summary>
Raises Opened event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.OnClosed(System.EventArgs)">
<summary>
Raises Closed event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.OnOpenStateChanged(System.Int32,System.Int32)">
<summary>
Called when OpenState property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.Close">
<summary>
Closes currently open popup.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.OnMaxItemRadialAngleChanged(System.Int32,System.Int32)">
<summary>
Called when MaxItemRadialAngle property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.OnDiameterChanged(System.Int32,System.Int32)">
<summary>
Called when Diameter property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.OnCenterButtonDiameterChanged(System.Int32,System.Int32)">
<summary>
Called when CenterButtonDiameter property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.OnSubMenuEdgeWidthChanged(System.Int32,System.Int32)">
<summary>
Called when SubMenuEdgeWidth property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.OnSubMenuEdgeItemSpacingChanged(System.Int32,System.Int32)">
<summary>
Called when SubMenuEdgeItemSpacing property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.ItemAtLocation(System.Int32,System.Int32)">
<summary>
Return Sub Item at specified location
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.OnMenuLocationChanged(System.Drawing.Point,System.Drawing.Point)">
<summary>
Called when MenuLocation property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.OnRadialMenuChanged(DevComponents.DotNetBar.RadialMenu,DevComponents.DotNetBar.RadialMenu)">
<summary>
Called when RadialMenu property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.ExpandedItem">
<summary>
Gets the current expanded subitem.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.OnBackSymbolSizeChanged(System.Int32,System.Int32)">
<summary>
Called when BackSymbolSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.OnBackSymbolChanged(System.String,System.String)">
<summary>
Called when BackSymbol property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.OnBackButtonSymbolSetChanged(DevComponents.DotNetBar.eSymbolSet,DevComponents.DotNetBar.eSymbolSet)">
<summary>
Called when BackButtonSymbolSet property value changes.
</summary>
<param name="oldValue">Indciates old value</param>
<param name="newValue">Indicates new value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.OnMaxItemPieAngleChanged(System.Int32,System.Int32)">
<summary>
Called when MaxItemPieAngle property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.OnMenuTypeChanged(DevComponents.DotNetBar.eRadialMenuType,DevComponents.DotNetBar.eRadialMenuType)">
<summary>
Called when MenuType property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.OnSymbolChanged(System.String,System.String)">
<summary>
Called when Symbol property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.OnSymbolSetChanged(DevComponents.DotNetBar.eSymbolSet,DevComponents.DotNetBar.eSymbolSet)">
<summary>
Called when SymbolSet property value changes.
</summary>
<param name="oldValue">Indciates old value</param>
<param name="newValue">Indicates new value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.OnSymbolSizeChanged(System.Single,System.Single)">
<summary>
Called when SymbolSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.OnImageChanged(System.Drawing.Image,System.Drawing.Image)">
<summary>
Called when Image property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.OnFontChanged(System.Drawing.Font,System.Drawing.Font)">
<summary>
Called when Font property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenuContainer.Opened">
<summary>
Occurs after radial menu is opened.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenuContainer.Closed">
<summary>
Occurs after radial menu is closed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuContainer.Popup">
<summary>
Returns internal popup control for radial menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuContainer.MaxItemRadialAngle">
<summary>
Indicates maximum radial angle single item in menu can consume. By default this property is set to zero which indicates that
radial menu is equally divided between visible menu items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuContainer.ActualDiameter">
<summary>
Returns diameter which takes in account current scaling factor.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuContainer.Diameter">
<summary>
Gets or sets radial menu diameter. Minimum value is 64.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuContainer.ActualCenterButtonDiameter">
<summary>
Returns actual center button diameter which takes in account current scale factor.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuContainer.CenterButtonDiameter">
<summary>
Indicates diameter of center button of radial menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuContainer.SubMenuEdgeWidth">
<summary>
Specifies the width of the sub-menu edge around the radial menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuContainer.SubMenuEdgeItemSpacing">
<summary>
Indicates spacing between sub-menu marking edge and the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuContainer.MenuLocation">
<summary>
Indicates the position of top-left corner of radial menu when shown in screen coordinates
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuContainer.BackButtonSymbolSize">
<summary>
Indicates the size of the back symbol that is displayed on center of radial menu
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuContainer.BackButtonSymbol">
<summary>
Specifies the back button symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuContainer.BackButtonSymbolSet">
<summary>
Gets or sets the symbol set used to represent the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuContainer.MaxItemPieAngle">
<summary>
Specifies the maximum pie part angle an item will occupy. Maximum is 180, minimum is 1 degree.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuContainer.Colors">
<summary>
Gets reference to colors used by the radial menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuContainer.MenuType">
<summary>
Indicates the radial menu type. eRadialMenuType.Radial menu type allows for display of image, text and any sub-menu items.
eRadialMenuType.Circular allows only for display of Symbol or Image and it does not display either text or sub-menu items.
eRadialMenuType.Circular is designed to be used for single level menus only that don't need text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuContainer.SymbolRealized">
<summary>
Gets the realized symbol string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuContainer.Symbol">
<summary>
Indicates the symbol displayed on face of the button instead of the image. Setting the symbol overrides the image setting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuContainer.SymbolSet">
<summary>
Gets or sets the symbol set used to represent the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuContainer.SymbolSize">
<summary>
Indicates the size of the symbol in points.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuContainer.Image">
<summary>
Gets or sets the image displayed on the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuContainer.Font">
<summary>
Specifies font for menu items.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.RadialSubItemInfo.#ctor(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.GraphicsPath,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the RadialSubItemInfo class.
</summary>
<param name="path"></param>
<param name="signPath"></param>
<param name="itemAngle"></param>
<param name="itemPieAngle"></param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuContainer.RadialMenuPopupProxy.#ctor(DevComponents.DotNetBar.RadialMenuContainer)">
<summary>
Initializes a new instance of the RadialMenuPopupProxy class.
</summary>
<param name="parentRadialMenu"></param>
</member>
<member name="T:DevComponents.DotNetBar.eRadialMenuType">
<summary>
Defines available radial menu type.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RadialMenuItem">
<summary>
Defines Radial Menu Item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.OnCheckedChanged(System.EventArgs)">
<summary>
Raises CheckedChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.OnDisplayPathChanged(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.GraphicsPath)">
<summary>
Called when DisplayPath property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.InternalCopyToItem(DevComponents.DotNetBar.RadialMenuItem)">
<summary>
Copies the RadialMenuItem specific properties to new instance of the item.
</summary>
<param name="copy">New ProgressBarItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the RadialMenuItem specific properties to new instance of the item.
</summary>
<param name="copy">New RadialMenuItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.OnSymbolChanged(System.String,System.String)">
<summary>
Called when Symbol property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.OnSymbolSetChanged(DevComponents.DotNetBar.eSymbolSet,DevComponents.DotNetBar.eSymbolSet)">
<summary>
Called when SymbolSet property value changes.
</summary>
<param name="oldValue">Indciates old value</param>
<param name="newValue">Indicates new value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.OnSymbolSizeChanged(System.Single,System.Single)">
<summary>
Called when SymbolSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.OnImageChanged(System.Drawing.Image,System.Drawing.Image)">
<summary>
Called when Image property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.OnDisabledImageChanged(System.Drawing.Image,System.Drawing.Image)">
<summary>
Called when DisabledImage property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.OnTextVisibleChanged(System.Boolean,System.Boolean)">
<summary>
Called when TextVisible property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.OnTracksMouseChanged(System.Boolean,System.Boolean)">
<summary>
Called when TracksMouse property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.OnCheckedChanged(System.Boolean,System.Boolean)">
<summary>
Called when Checked property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.OnTextOffsetChanged(System.Drawing.Point,System.Drawing.Point)">
<summary>
Called when TextOffset property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.OnBeforeMenuOpened(System.EventArgs)">
<summary>
Raises BeforeMenuOpened event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.OnBeforeMenuClosed(System.EventArgs)">
<summary>
Raises BeforeMenuClosed event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.OnCircularMenuDiameterChanged(System.Int32,System.Int32)">
<summary>
Called when CircularMenuDiameter property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.ShouldSerializeCircularBackColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.ResetCircularBackColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.ShouldSerializeCircularForeColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.ResetCircularForeColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.ShouldSerializeCircularBorderColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuItem.ResetCircularBorderColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenuItem.CheckedChanged">
<summary>
Occurs after Checked property has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuItem.DisplayPath">
<summary>
Gets display path of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuItem.SymbolRealized">
<summary>
Gets the realized symbol string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuItem.Symbol">
<summary>
Indicates the symbol displayed on face of the button instead of the image. Setting the symbol overrides the image setting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuItem.SymbolSet">
<summary>
Gets or sets the symbol set used to represent the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuItem.SymbolSize">
<summary>
Indicates the size of the symbol in points.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuItem.Image">
<summary>
Gets or sets the image displayed on the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuItem.DisabledImage">
<summary>
Gets or sets the disabled image for the item when Enabled is set to false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuItem.TextVisible">
<summary>
Indicates whether text on item is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuItem.IsMouseOver">
<summary>
Gets whether mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuItem.TracksMouse">
<summary>
Indicates whether item changes its appearance when mouse is over it or pressed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuItem.Checked">
<summary>
Indicates whether item is in checked state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuItem.TextOffset">
<summary>
Gets or sets the optional text offset for the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuItem.Expanded">
<summary>
Gets or sets a value indicating whether the item is expanded or not. For Popup items this would indicate whether the item is popped up or not.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenuItem.BeforeMenuOpened">
<summary>
Occurs before radial menu item is expanded and its sub-items displayed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RadialMenuItem.BeforeMenuClosed">
<summary>
Occurs before radial menu item is closed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuItem.ContainerControl">
<summary>
Control Container (System.Windows.Forms.Control or its descendant)
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuItem.CircularMenuDiameter">
<summary>
Specifies explicit circular menu type diameter. Applies to circular menu type only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuItem.CircularBackColor">
<summary>
Gets or sets background color of the circular menu item type. Applies only to circular menu types.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuItem.CircularForeColor">
<summary>
Gets or sets text color of the circular menu item type. Applies only to circular menu types.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuItem.CircularBorderColor">
<summary>
Gets or sets border color of the circular menu item type. Applies only to circular menu types.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuPopup.#ctor">
<summary>
Initializes a new instance of the RadialMenuPopup class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuPopup.OnDisplayItemChanged(DevComponents.DotNetBar.RadialMenuContainer,DevComponents.DotNetBar.RadialMenuContainer)">
<summary>
Called when DisplayItem property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuPopup.GetRenderer">
<summary>
Returns the renderer control will be rendered with.
</summary>
<returns>The current renderer.</returns>
</member>
<member name="M:DevComponents.DotNetBar.RadialMenuPopup.GetColorScheme">
<summary>
Returns the color scheme used by control. Color scheme for Office2007 style will be retrieved from the current renderer instead of
local color scheme referenced by ColorScheme property.
</summary>
<returns>An instance of ColorScheme object.</returns>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuPopup.DisplayItem">
<summary>
Identifies the item displayed by this popup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuPopup.ContentImage">
<summary>
Gets or sets the content image displayed on the window.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuPopup.RenderMode">
<summary>
Gets or sets the rendering mode used by control. Default value is eRenderMode.Global which means that static GlobalManager.Renderer is used. If set to Custom then Renderer property must
also be set to the custom renderer that will be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RadialMenuPopup.Renderer">
<summary>
Gets or sets the custom renderer used by the items on this control. RenderMode property must also be set to eRenderMode.Custom in order renderer
specified here to be used.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RatingItem">
<summary>
Represents rating item control which provides rating functionality.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RatingItem.#ctor">
<summary>
Initializes a new instance of the RatingItem class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RatingItem.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the ButtonItem specific properties to new instance of the item.
</summary>
<param name="copy">New ButtonItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.RatingItem.OnAverageRatingChanged(System.EventArgs)">
<summary>
Raises the AverageRatingChanged event.
</summary>
<param name="eventArgs">Event data.</param>
</member>
<member name="M:DevComponents.DotNetBar.RatingItem.OnParseAverageRatingValue(DevComponents.Editors.ParseDoubleValueEventArgs)">
<summary>
Raises the ParseAverageRatingValue event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RatingItem.SetRating(System.Int32,DevComponents.DotNetBar.eEventSource)">
<summary>
Sets the Rating value of the control and provides information about source of the rating change.
</summary>
<param name="newRating">New Rating value.</param>
<param name="eEventSource">Source of this change.</param>
</member>
<member name="M:DevComponents.DotNetBar.RatingItem.OnRatingChanging(DevComponents.DotNetBar.RatingChangeEventArgs)">
<summary>
Raises RatingChanging event.
</summary>
<param name="e">Event data</param>
</member>
<member name="M:DevComponents.DotNetBar.RatingItem.OnRatingChanged(System.EventArgs)">
<summary>
Raises the RatingChanged event.
</summary>
<param name="eventArgs">Event data.</param>
</member>
<member name="M:DevComponents.DotNetBar.RatingItem.OnParseRatingValue(DevComponents.Editors.ParseIntegerValueEventArgs)">
<summary>
Raises the ParseRating event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="E:DevComponents.DotNetBar.RatingItem.RatingChanged">
<summary>
Occurs when Rating property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RatingItem.RatingValueChanged">
<summary>
Occurs when RatingValue property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RatingItem.RatingChanging">
<summary>
Occurs when Rating property is about to be changed and provides opportunity to cancel the change.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RatingItem.AverageRatingChanged">
<summary>
Occurs when AverageRating property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RatingItem.AverageRatingValueChanged">
<summary>
Occurs when AverageRatingValue property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RatingItem.MarkupLinkClick">
<summary>
Occurs when text markup link is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RatingItem.ParseRatingValue">
<summary>
Occurs when RatingValue property is set and it allows you to provide custom parsing for the values.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RatingItem.ParseAverageRatingValue">
<summary>
Occurs when AverageRatingValue property is set and it allows you to provide custom parsing for the values.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RatingItem.AverageRating">
<summary>
Gets or sets the average rating shown by control. Control will display average rating (if set) when no explicit
Rating value is set through Rating property. Minimum value is 0 and Maximum value is controlled by NumberOfStars property value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RatingItem.AverageRatingValue">
<summary>
Gets or sets the AverageRating property. This property is provided for Data-Binding with NULL value support.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RatingItem.Rating">
<summary>
Gets or sets the rating value represented by the control. Default value is 0 which indicates
that there is no rating set. Maximum value is controlled by NumberOfStars property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RatingItem.RatingValue">
<summary>
Gets or sets the Rating property value. This property is provided for Data-Binding with NULL value support.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RatingItem.IsEditable">
<summary>
Gets or sets whether rating can be edited. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RatingItem.BackgroundStyle">
<summary>
Specifies the control background style. Default value is an empty style which means that container does not display any background.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RatingItem.CustomImages">
<summary>
Gets the reference to custom rating images.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RatingItem.TextVisible">
<summary>
Gets or sets whether text assigned to the check box is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RatingItem.TextColor">
<summary>
Gets or sets the text color. Default value is Color.Empty which indicates that default color is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RatingItem.TextSpacing">
<summary>
Gets or sets the spacing between optional text and the rating.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RatingItem.RatingOrientation">
<summary>
Gets or sets the orientation of rating control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RatingItem.NumberOfStars">
<summary>
Indicates number of stars used for the rating. Minium value is 2 stars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RatingItem.IsMarkupSupported">
<summary>
Gets whether item supports text markup. Default is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RatingItem.EnableMarkup">
<summary>
Gets or sets whether text-markup support is enabled for items Text property. Default value is true.
Set this property to false to display HTML or other markup in the item instead of it being parsed as text-markup.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RatingItem.RatingImage.#ctor(System.Drawing.Image,System.Drawing.Rectangle)">
<summary>
Initializes a new instance of the RatingImage structure.
</summary>
<param name="image"></param>
<param name="sourceBounds"></param>
</member>
<member name="T:DevComponents.DotNetBar.RatingImages">
<summary>
Defines the custom rating images for Rating control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RatingImages.#ctor(DevComponents.DotNetBar.RatingItem)">
<summary>
Initializes a new instance of the RatingImages class.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RatingImages.Unrated">
<summary>
Gets or sets the image used for unrated rating part.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RatingImages.UnratedMouseOver">
<summary>
Gets or sets the image used for unrated rating part when mouse is over the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RatingImages.Rated">
<summary>
Gets or sets the image used for rated part of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RatingImages.AverageRated">
<summary>
Gets or sets the image used for Average Rated part of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RatingImages.RatedMouseOver">
<summary>
Gets or sets the image used for rated part of the control when mouse is over the control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RatingChangeEventHandler">
<summary>
Delegate for Rating change events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RatingChangeEventArgs">
<summary>
Represents event arguments for Rating change events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RatingChangeEventArgs.NewRating">
<summary>
New Rating value being assigned.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RatingChangeEventArgs.OldRating">
<summary>
Previous or current value (if RatingChanging event).
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RatingChangeEventArgs.EventSource">
<summary>
Indicates the action that has caused the event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RatingChangeEventArgs.#ctor(System.Int32,System.Int32,DevComponents.DotNetBar.eEventSource)">
<summary>
Initializes a new instance of the RatingChangeEventArgs class.
</summary>
<param name="newRating"></param>
<param name="oldRating"></param>
<param name="eventSource"></param>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.CrumbBarItemViewColorTable">
<summary>
Represents color table for CrumbBarItemView.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.CrumbBarItemViewColorTable.Default">
<summary>
Gets or sets the default state color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.CrumbBarItemViewColorTable.MouseOver">
<summary>
Gets or sets active mouse over color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.CrumbBarItemViewColorTable.MouseOverInactive">
<summary>
Gets or sets inactive part mouse over color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.CrumbBarItemViewColorTable.Pressed">
<summary>
Gets or sets the pressed color table.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.CrumbBarItemViewStateColorTable">
<summary>
Defines state color table for CrumbBarItemView
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.CrumbBarItemViewStateColorTable.Foreground">
<summary>
Gets or sets foreground/text color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.CrumbBarItemViewStateColorTable.Background">
<summary>
Gets or sets the background color blend collection.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.CrumbBarItemViewStateColorTable.Border">
<summary>
Gets or sets the border color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.CrumbBarItemViewStateColorTable.BorderLight">
<summary>
Gets or sets the border color.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007CalendarViewColorTable">
<summary>
Represents the color table for Office 2007 Style CalendarView Control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007VistaBlackColorTableFactory.InitializeBlackLegacyColors(DevComponents.DotNetBar.ColorScheme,DevComponents.DotNetBar.Rendering.ColorFactory)">
<summary>
Initializes ColorScheme object with the black color scheme.
</summary>
<param name="c">ColorScheme object to initialize.</param>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007WarningBoxColorTable">
<summary>
Defines colors for the WarningBox control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007WarningBoxColorTable.BackColor">
<summary>
Gets or sets the background color of WarningBox control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007WarningBoxColorTable.WarningBorderColor">
<summary>
Gets or sets the border color of the warning panel.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007WarningBoxColorTable.WarningBackColor1">
<summary>
Gets or sets the back color of the warning panel.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007WarningBoxColorTable.WarningBackColor2">
<summary>
Gets or sets the end gradient back color of the warning panel.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007WarningBoxColorTable.GreenBackColor">
<summary>
Gets or sets the background color of WarningBox control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007WarningBoxColorTable.GreenWarningBorderColor">
<summary>
Gets or sets the border color of the warning panel.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007WarningBoxColorTable.GreenWarningBackColor1">
<summary>
Gets or sets the back color of the warning panel.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007WarningBoxColorTable.GreenWarningBackColor2">
<summary>
Gets or sets the end gradient back color of the warning panel.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007WarningBoxColorTable.YellowBackColor">
<summary>
Gets or sets the background color of WarningBox control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007WarningBoxColorTable.YellowWarningBorderColor">
<summary>
Gets or sets the border color of the warning panel.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007WarningBoxColorTable.YellowWarningBackColor1">
<summary>
Gets or sets the back color of the warning panel.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007WarningBoxColorTable.YellowWarningBackColor2">
<summary>
Gets or sets the end gradient back color of the warning panel.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007WarningBoxColorTable.RedBackColor">
<summary>
Gets or sets the background color of WarningBox control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007WarningBoxColorTable.RedWarningBorderColor">
<summary>
Gets or sets the border color of the warning panel.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007WarningBoxColorTable.RedWarningBackColor1">
<summary>
Gets or sets the back color of the warning panel.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007WarningBoxColorTable.RedWarningBackColor2">
<summary>
Gets or sets the end gradient back color of the warning panel.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.RangeSliderPainter">
<summary>
Renders the Range Slider items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2010RangeSliderPainter.ColorTable">
<summary>
Gets or sets color table used by renderer.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2010RangeSliderColorTable">
<summary>
Defines the color table for the Range Slider Item in single state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2010RangeSliderColorTable.MinRangeSlider">
<summary>
Gets or sets the colors for the slider which changes the minimum value of the range.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2010RangeSliderColorTable.MaxRangeSlider">
<summary>
Gets or sets the colors for the slider which changes the maximum value of the range.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2010RangeSliderColorTable.TickLineColor">
<summary>
Gets or sets the tick line color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2010RangeSliderColorTable.RangeValueLineColor">
<summary>
Gets or sets the color for the line which indicates current range value.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2010RangeSliderColorTable.RangeValueBackground">
<summary>
Gets or sets the background colors of the current range value.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2010RangeSliderColorTable.RangeLineColor">
<summary>
Gets or sets the color for the line showing control range.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2010RangeSliderColorTable.RangeBackground">
<summary>
Gets or sets the background colors for the line showing control range.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2010RangeSliderColorTable.RangeCornerRadius">
<summary>
Gets or sets the corner radius for the range rectangle.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2010RangeSliderPartStateColorTable">
<summary>
Defines the color table for the Range Slider Item in single state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2010RangeSliderPartStateColorTable.Default">
<summary>
Gets or sets the default state colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2010RangeSliderPartStateColorTable.MouseOver">
<summary>
Gets or sets the mouse over state colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2010RangeSliderPartStateColorTable.Pressed">
<summary>
Gets or sets the mouse pressed colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2010RangeSliderPartStateColorTable.Disabled">
<summary>
Gets or sets the disabled colors.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2010RangeChangePartColorTable.#ctor">
<summary>
Initializes a new instance of the Office2010RangeChangePartColorTable class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2010RangeChangePartColorTable.#ctor(DevComponents.DotNetBar.GradientColorTable,System.Drawing.Color,System.Drawing.Color)">
<summary>
Initializes a new instance of the Office2010RangeChangePartColorTable class.
</summary>
<param name="background"></param>
<param name="borderColor"></param>
<param name="borderLightColor"></param>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2010RangeChangePartColorTable.Background">
<summary>
Gets or sets the part background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2010RangeChangePartColorTable.BorderColor">
<summary>
Gets or sets the part border color
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2010RangeChangePartColorTable.BorderLightColor">
<summary>
Gets or sets the part border light color
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2010ColorTable">
<summary>
Represents color table for Office 2010 style.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007ColorTable">
<summary>
Represents color table for Office 2007 style.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.IElementStyleClassProvider">
<summary>
Defines the provider for the element style classes support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.IElementStyleClassProvider.GetClass(System.String)">
<summary>
Returns the instance of the ElementStyle with given class name or null if there is no class with that name defined.
</summary>
<param name="className">Class name. See static members of ElementStyleClassKeys class for the list of available keys.</param>
<returns>Instance of ElementStyle for given class name or null if class cannot be found.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007ColorTable.#ctor">
<summary>
Creates new instance of the object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007ColorTable.#ctor(DevComponents.DotNetBar.Rendering.ColorFactory)">
<summary>
Initializes a new instance of the Office2007ColorTable class.
</summary>
<param name="colorFactory">Specifies the color factory for the color table.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007ColorTable.#ctor(DevComponents.DotNetBar.Rendering.eOffice2007ColorScheme)">
<summary>
Creates new instance of the object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007ColorTable.#ctor(DevComponents.DotNetBar.Rendering.eOffice2007ColorScheme,DevComponents.DotNetBar.Rendering.ColorFactory)">
<summary>
Creates new instance of the object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007ColorTable.#ctor(DevComponents.DotNetBar.Rendering.eOffice2007ColorScheme,System.Drawing.Color)">
<summary>
Creates new instance of the color table and initializes it with custom color scheme.
</summary>
<param name="scheme">Predefined color scheme to be used as starting color scheme.</param>
<param name="baseSchemeColor">Color to use as basis for new color scheme</param>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.RibbonBar">
<summary>
Gets or sets the RibbonBar color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.ItemGroup">
<summary>
Gets or sets the background colors for the ItemContainer with BeginGroup property set to true.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.Bar">
<summary>
Gets or sets the background colors for the Bar object.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.RibbonControl">
<summary>
Gets or sets the colors for the RibbonControl.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.ColorItem">
<summary>
Gets or sets the colors for the ColorItem which is used by drop-down Color Picker.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.Menu">
<summary>
Gets or sets the color table for menus.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.ComboBox">
<summary>
Gets or sets the color table for ComboBoxItem.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.DialogLauncher">
<summary>
Gets or sets the colors for the Ribbon Bar dialog launcher button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.LegacyColors">
<summary>
Gets or sets the legacy color scheme object that applies to the user interface elements not covered by color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.SystemButton">
<summary>
Gets or sets the color table of the system buttons displayed in form caption.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.SystemButtonClose">
<summary>
Gets or sets the color table of the close system button displayed in form caption. Applies to Office 2010 styles and later only.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.Form">
<summary>
Gets or sets the color table for the form caption.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.QuickAccessToolbar">
<summary>
Gets or sets the bacgkround colors for the quick access toolbar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.TabControl">
<summary>
Gets or sets the colors for the tab and tab strip control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.DockTabStrip">
<summary>
Gets or sets the colors for the tab strip control used on docking windows. When not set TabControl color scheme is used.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.KeyTips">
<summary>
Gets or sets the KeyTips color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.CheckBoxItem">
<summary>
Gets or sets the color table for the CheckBoxItem.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.ScrollBar">
<summary>
Gets or sets the scroll bar colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.AppScrollBar">
<summary>
Gets or sets the application style scroll bar colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.ProgressBarItem">
<summary>
Gets or sets the color table for the ProgressBarItem.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.ProgressBarItemPaused">
<summary>
Gets or sets the color table for the paused ProgressBarItem.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.ProgressBarItemError">
<summary>
Gets or sets the color table for the error state of ProgressBarItem.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.Gallery">
<summary>
Gets or sets the color table for the galleries.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.NavigationPane">
<summary>
Gets or sets the color table for the NavigationPane control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.Slider">
<summary>
Gets or sets the color table for the Slider item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.RangeSlider">
<summary>
Gets or sets the color table for the Range Slider item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.SuperTooltip">
<summary>
Gets the SuperTooltip color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.ListViewEx">
<summary>
Gets the color table for the ListViewEx control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.DataGridView">
<summary>
Gets the color table for the ListViewEx control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.SideBar">
<summary>
Gets the color table used by SideBar control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.AdvTree">
<summary>
Gets or sets the color table for AdvTree control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.CrumbBarItemView">
<summary>
Gets or sets the CrumBarItem color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.CalendarView">
<summary>
Gets the color table used by Schedule control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.SwitchButton">
<summary>
Gets or sets SwitchButton color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.StepItem">
<summary>
Gets or sets the colors for the StepItem used in ProgressSteps control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.ListBoxItem">
<summary>
Gets or sets the colors for the ListBoxItem used in ListBoxAdv control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.RadialMenu">
<summary>
Gets or sets the color table for the radial menu.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.TokenEditor">
<summary>
Gets or sets color table for TokenEditor control tokens.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.Flyout">
<summary>
Gets or sets color table for Flyout control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.SideNav">
<summary>
Gets or sets the colors for the SideNav control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorTable.TabFormItemColorTables">
<summary>
Gets or sets the color tables for the TabFormItem. The key is the string representation of a eTabFormItemColor value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007ColorTable.GetClass(System.String)">
<summary>
Returns the instance of the ElementStyle with given class name or null if there is no class with that name defined.
</summary>
<param name="className">Class name. See static members of ElementStyleClassKeys class for the list of available keys.</param>
<returns>Instance of ElementStyle for given class name or null if class cannot be found.</returns>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007ColorTable.ButtonItemColors">
<summary>
Gets the reference to collection of Office2007ButtonItemColorTable objects the describe colors used by a button with Office 2007 style.
The collection by default has elements that are created to
represents the members of eButtonColor enumeration. The name of each color table object is the same as the string
enum representation. You can add custom members to this collection or modify the existing ones. Note that you must specify the
unique name for the new color table elements. Name specified there can be used in ButtonItem.CustomColorName property to specify
custom color table for an ButtonItem.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007ColorTable.RibbonButtonItemColors">
<summary>
Gets the reference to collection of Office2007ButtonItemColorTable objects the describe colors used by a button with Office 2007 style when
button is on RibbonBar control. When collection is empty the values from the ButtonItemColors collections are used instead.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007ColorTable.MenuButtonItemColors">
<summary>
Gets the reference to collection of Office2007ButtonItemColorTable objects the describe colors used by a button with Office 2007 style when
button is on menu bar. When collection is empty the values from the ButtonItemColors collections are used instead.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007ColorTable.ApplicationButtonColors">
<summary>
Gets the reference to collection of Office2007ButtonItemColorTable objects the describe colors used by Ribbon Application Menu Button in Office 2010 style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007ColorTable.BackstageButtonItemColors">
<summary>
Gets the reference to collection of Office2007ButtonItemColorTable objects the describe colors used by buttons that are on Backstage tab-strip.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007ColorTable.NavigationPaneButtonItemColors">
<summary>
Gets the reference to collection of Office2007ButtonItemColorTable objects the describe colors used by buttons that are on NavigationPane control. Currently used for Office 2010 style only. When empty ButtonItemColors is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007ColorTable.RibbonTabItemColors">
<summary>
Gets the reference to collection of Office2007RibbonTabItemColorTable objects the describe colors used by a ribbon tab with Office 2007 style.
The collection by default has elements that are created to
represents the members of eRibbonTabColor enumeration. The name of each color table object is the same as the string
enum representation. You can add custom members to this collection or modify the existing ones. Note that you must specify the
unique name for the new color table elements. Name specified there can be used in RibbonTabItem.CustomColorName property to specify
custom color table for an ButtonItem.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007ColorTable.RibbonTabGroupColors">
<summary>
Gets the reference to collection of Office2007RibbonTabGroupColorTableCollection objects the describe colors used by a ribbon tab groups with Office 2007 style.
The collection by default has elements that are created to
represents the members of eRibbonTabGroupColor enumeration. The name of each color table object is the same as the string
enum representation. You can add custom members to this collection or modify the existing ones. Note that you must specify the
unique name for the new color table elements.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007ColorTable.InitialColorScheme">
<summary>
Returns the color scheme table was initialized with.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007ColorTable.StyleClasses">
<summary>
Get the reference to the collection that holds system cached styles. In most cases there is no need for you to modify members of this collection.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007ColorTable.CloneImagesOnAccess">
<summary>
Gets or sets whether images like Start button image, are cloned when painted. This is reduces the performance but is necessary if they can be accessed from multiple threads.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007ColorTable.ContextualTables">
<summary>
Gets the reference to collection of contextual color tables that are based on items Control container type and other context properties.
When contextual color table is defined it overrides the default color table.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2010ColorTable.#ctor">
<summary>
Initializes a new instance of the Office2010ColorTable class.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2010ColorTable.ColorScheme">
<summary>
Gets the color scheme color table is initialized with.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.eOffice2010ColorScheme">
<summary>
Defines the color scheme type for the Office2010ColorTable.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.eOffice2010ColorScheme.Silver">
<summary>
Silver color scheme.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.eOffice2010ColorScheme.Blue">
<summary>
Blue color scheme.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.eOffice2010ColorScheme.Black">
<summary>
Black color scheme.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.eOffice2010ColorScheme.VS2010">
<summary>
Visual Studio 2010 Blue color scheme.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.StepIndicatorColorTable">
<summary>
Specifies colors for StepIndicator control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.StepIndicatorColorTable.#ctor">
<summary>
Initializes a new instance of the StepIndicatorColorTable class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.StepIndicatorColorTable.#ctor(System.Drawing.Color,System.Drawing.Color)">
<summary>
Initializes a new instance of the StepIndicatorColorTable class.
</summary>
<param name="backgroundColor"></param>
<param name="indicatorColor"></param>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.StepIndicatorColorTable.BackgroundColor">
<summary>
Gets or sets Background color of the control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.StepIndicatorColorTable.IndicatorColor">
<summary>
Gets or sets indicator color.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.SuperTabColorTable">
<summary>
Defines the color table for SuperTab states
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.SuperTabColorTable.ColorTableChanged">
<summary>
Event raised when the SuperTabColorTable is changed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabColorTable.Background">
<summary>
Gets or sets the Background color
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabColorTable.OuterBorder">
<summary>
Gets or sets the colors for the outer border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabColorTable.InnerBorder">
<summary>
Gets or sets the colors for the inner border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabColorTable.ControlBoxDefault">
<summary>
Gets or sets the ControlBoxDefault colors
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabColorTable.ControlBoxMouseOver">
<summary>
Gets or sets the ControlBoxMouseOver colors
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabColorTable.ControlBoxPressed">
<summary>
Gets or sets the ControlBoxPressed colors
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabColorTable.InsertMarker">
<summary>
Gets or sets the colors for the InsertMarker.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabColorTable.SelectionMarker">
<summary>
Gets or sets the color for the SelectionMarker.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabColorTable.IsEmpty">
<summary>
Gets whether the ColorTable is empty.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.SuperTabControlBoxStateColorTable">
<summary>
Defines the colors for the SuperTabControlBox states
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.SuperTabControlBoxStateColorTable.ColorTableChanged">
<summary>
Event raised when the SuperTabControlBoxStateColorTable is changed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabControlBoxStateColorTable.Background">
<summary>
Gets or sets the colors for the background.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabControlBoxStateColorTable.Border">
<summary>
Gets or sets the colors for the border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabControlBoxStateColorTable.Image">
<summary>
Gets or sets the colors for the drawn image.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.SuperTabItemColorTable">
<summary>
Defines the color table for SuperTabItem states
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.SuperTabItemColorTable.ColorTableChanged">
<summary>
Event raised when the SuperTabItemColorTable is changed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabItemColorTable.Default">
<summary>
Gets or sets the Default tab color settings
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabItemColorTable.Left">
<summary>
Gets or sets the Left Aligned tab color settings
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabItemColorTable.Bottom">
<summary>
Gets or sets the Bottom Aligned tab color settings
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabItemColorTable.Right">
<summary>
Gets or sets the Right Aligned tab color settings
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.SuperTabColorStates.ColorTableChanged">
<summary>
Event raised when the SuperTabColorStates is changed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabColorStates.Normal">
<summary>
Gets or sets the tab colors when the tab is not selected, and the mouse is not over it
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabColorStates.Selected">
<summary>
Gets or sets the tab colors when the tab is selected, but the mouse is not over the it
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabColorStates.MouseOver">
<summary>
Gets or sets the tab colors when the tab is not selected, but the mouse is over it
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabColorStates.SelectedMouseOver">
<summary>
Gets or sets the tab colors when the tab is selected, and the mouse is over it
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabColorStates.Disabled">
<summary>
Gets or sets the tab colors when the tab
is disabled, is not selected, and the mouse is not over it
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.SuperTabItemStateColorTable">
<summary>
Defines the colors for the SuperTabItem states
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.SuperTabItemStateColorTable.ColorTableChanged">
<summary>
Event raised when the SuperTabItemStateColorTable is changed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabItemStateColorTable.Background">
<summary>
Gets or sets the background colors.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabItemStateColorTable.OuterBorder">
<summary>
Gets or sets the outer border color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabItemStateColorTable.InnerBorder">
<summary>
Gets or sets the inner border color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabItemStateColorTable.Text">
<summary>
Gets or sets the text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabItemStateColorTable.CloseMarker">
<summary>
Gets or sets the Close Marker color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabItemStateColorTable.SelectionMarker">
<summary>
Gets or sets the Selection Marker color.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.SuperTabLinearGradientColorTable.ColorTableChanged">
<summary>
Event raised when the SuperTabLinearGradientColorTable is changed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabLinearGradientColorTable.Colors">
<summary>
Gets or sets the Gradient Colors
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabLinearGradientColorTable.Positions">
<summary>
Gets or sets the Gradient Color Positions
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabLinearGradientColorTable.GradientAngle">
<summary>
Gets or sets the Gradient angle
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabLinearGradientColorTable.AdaptiveGradient">
<summary>
Gets or sets whether the Gradient will adapt to changes in the TabAlignment
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabLinearGradientColorTable.IsEmpty">
<summary>
Gets whether color definition is empty
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.SuperTabPanelColorTable">
<summary>
Defines the colors for the SuperTabPanel
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.SuperTabPanelColorTable.ColorTableChanged">
<summary>
Event raised when the SuperTabPanelColorTable is changed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabPanelColorTable.Default">
<summary>
Gets or sets the Default tab panel color settings
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabPanelColorTable.Left">
<summary>
Gets or sets the Left Aligned tab panel color settings
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabPanelColorTable.Bottom">
<summary>
Gets or sets the Bottom Aligned tab panel color settings
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabPanelColorTable.Right">
<summary>
Gets or sets the Right Aligned tab panel color settings
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.SuperTabPanelItemColorTable.ColorTableChanged">
<summary>
Event raised when the SuperTabPanelItemColorTable is changed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabPanelItemColorTable.Background">
<summary>
Gets or sets the background colors.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabPanelItemColorTable.OuterBorder">
<summary>
Gets or sets the colors for the outer border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SuperTabPanelItemColorTable.InnerBorder">
<summary>
Gets or sets the colors for the inner border.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SuperTabStyleColorFactory.GetOffice2010BackstageColorTable">
<summary>
GetOffice2010BackstageColorTable
</summary>
<returns>Office2010BackstageColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SuperTabStyleColorFactory.GetOffice2010BackstageBlueColorTable(DevComponents.DotNetBar.Rendering.SuperTabColorTable,DevComponents.DotNetBar.Rendering.ColorFactory)">
<summary>
GetOffice2010BackstageBlueColorTable
</summary>
<param name="ct"></param>
<param name="factory"></param>
<returns>Office2010BackstageBlueColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SuperTabStyleColorFactory.GetVS2010BackstageBlueColorTable(DevComponents.DotNetBar.Rendering.SuperTabColorTable,DevComponents.DotNetBar.Rendering.ColorFactory)">
<summary>
GetVS2010BackstageBlueColorTable
</summary>
<param name="ct"></param>
<param name="factory"></param>
<returns>Office2010BackstageBlueColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SuperTabStyleColorFactory.GetOffice2010BackstageBlackColorTable(DevComponents.DotNetBar.Rendering.SuperTabColorTable,DevComponents.DotNetBar.Rendering.ColorFactory)">
<summary>
GetOffice2010BackstageBlackColorTable
</summary>
<param name="ct"></param>
<param name="factory"></param>
<returns>Office2010BackstageBlackColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SuperTabStyleColorFactory.GetOffice2010BackstageSilverColorTable(DevComponents.DotNetBar.Rendering.SuperTabColorTable,DevComponents.DotNetBar.Rendering.ColorFactory)">
<summary>
GetOffice2010BackstageSilverColorTable
</summary>
<param name="ct"></param>
<param name="factory"></param>
<returns>Office2010BackstageSilverColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SuperTabStyleColorFactory.GetOffice2007BackstageVistaGlassColorTable(DevComponents.DotNetBar.Rendering.SuperTabColorTable,DevComponents.DotNetBar.Rendering.ColorFactory)">
<summary>
GetOffice2007BackstageVistaGlassColorTable
</summary>
<param name="ct"></param>
<param name="factory"></param>
<returns>Office2010BackstageVistaGlassColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SuperTabStyleColorFactory.GetMetroBackstageColorTable(DevComponents.DotNetBar.Rendering.SuperTabColorTable,DevComponents.DotNetBar.Rendering.ColorFactory,DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors)">
<summary>
GetOffice2010BackstageSilverColorTable
</summary>
<param name="ct"></param>
<param name="factory"></param>
<returns>Office2010BackstageSilverColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SuperTabStyleColorFactory.GetOffice2010BackstageItemColorTable">
<summary>
GetOffice2010BackstageItemColorTable
</summary>
<returns>Office2010BackstageItemColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SuperTabStyleColorFactory.GetOffice2010BackstageBlueItemColorTable(DevComponents.DotNetBar.Rendering.SuperTabItemColorTable,DevComponents.DotNetBar.Rendering.ColorFactory)">
<summary>
GetOffice2010BackstageBlueItemColorTable
</summary>
<param name="ct"></param>
<param name="factory"></param>
<returns>Office2010BackstageBlueItemColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SuperTabStyleColorFactory.GetOffice2010BackstageBlackItemColorTable(DevComponents.DotNetBar.Rendering.SuperTabItemColorTable,DevComponents.DotNetBar.Rendering.ColorFactory)">
<summary>
GetOffice2010BackstageBlackItemColorTable
</summary>
<param name="ct"></param>
<param name="factory"></param>
<returns>Office2010BackstageBlackItemColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SuperTabStyleColorFactory.GetOffice2010BackstageSilverItemColorTable(DevComponents.DotNetBar.Rendering.SuperTabItemColorTable,DevComponents.DotNetBar.Rendering.ColorFactory)">
<summary>
GetOffice2010BackstageSilverItemColorTable
</summary>
<param name="ct"></param>
<param name="factory"></param>
<returns>Office2010BackstageSilverItemColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SuperTabStyleColorFactory.GetOffice2007BackstageVistaGlassItemColorTable(DevComponents.DotNetBar.Rendering.SuperTabItemColorTable,DevComponents.DotNetBar.Rendering.ColorFactory)">
<summary>
GetOffice2007BackstageVistaGlassItemColorTable
</summary>
<param name="ct"></param>
<param name="factory"></param>
<returns>Office2010BackstageVistaGlassItemColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SuperTabStyleColorFactory.GetMetroBackstageItemColorTable(DevComponents.DotNetBar.Rendering.SuperTabItemColorTable,DevComponents.DotNetBar.Rendering.ColorFactory,DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors)">
<summary>
GetOffice2010BackstageSilverItemColorTable
</summary>
<param name="ct"></param>
<param name="factory"></param>
<param name="metroColors"></param>
<returns>Office2010BackstageSilverItemColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SuperTabStyleColorFactory.GetOffice2010BackstagePanelColorTable">
<summary>
GetOffice2010BackstagePanelColorTable
</summary>
<returns>Office2010BackstagePanelColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SuperTabStyleColorFactory.GetOffice2010BackstageBluePanelColorTable(DevComponents.DotNetBar.Rendering.SuperTabPanelColorTable,DevComponents.DotNetBar.Rendering.ColorFactory)">
<summary>
GetOffice2010BackstageBluePanelColorTable
</summary>
<param name="ct"></param>
<param name="factory"></param>
<returns>Office2010BackstageBluePanelColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SuperTabStyleColorFactory.GetOffice2010BackstageBlackPanelColorTable(DevComponents.DotNetBar.Rendering.SuperTabPanelColorTable,DevComponents.DotNetBar.Rendering.ColorFactory)">
<summary>
GetOffice2010BackstageBlackPanelColorTable
</summary>
<param name="ct"></param>
<param name="factory"></param>
<returns>Office2010BackstageBlackPanelColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SuperTabStyleColorFactory.GetOffice2010BackstageSilverPanelColorTable(DevComponents.DotNetBar.Rendering.SuperTabPanelColorTable,DevComponents.DotNetBar.Rendering.ColorFactory)">
<summary>
GetOffice2010BackstageSilverPanelColorTable
</summary>
<param name="ct"></param>
<param name="factory"></param>
<returns>Office2010BackstageSilverPanelColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SuperTabStyleColorFactory.GetOffice2007BackstageVistaGlassPanelColorTable(DevComponents.DotNetBar.Rendering.SuperTabPanelColorTable,DevComponents.DotNetBar.Rendering.ColorFactory)">
<summary>
GetOffice2007BackstageVistaGlassPanelColorTable
</summary>
<param name="ct"></param>
<param name="factory"></param>
<returns>Office2010BackstageVistaGlassPanelColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SuperTabStyleColorFactory.GetMetroBackstagePanelColorTable(DevComponents.DotNetBar.Rendering.SuperTabPanelColorTable,DevComponents.DotNetBar.Rendering.ColorFactory,DevComponents.DotNetBar.Metro.ColorTables.MetroPartColors)">
<summary>
GetOffice2010BackstageSilverPanelColorTable
</summary>
<param name="ct"></param>
<param name="factory"></param>
<returns>Office2010BackstageSilverPanelColorTable</returns>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.SwitchButtonColorTable">
<summary>
Defines color table for the SwitchButton control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SwitchButtonColorTable.TextColor">
<summary>
Gets or set the text/caption color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SwitchButtonColorTable.OffTextColor">
<summary>
Gets or sets the OFF text color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SwitchButtonColorTable.OnTextColor">
<summary>
Gets or sets the ON text color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SwitchButtonColorTable.BorderColor">
<summary>
Gets or sets the button border color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SwitchButtonColorTable.OffBackColor">
<summary>
Gets or sets background color of OFF switch part.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SwitchButtonColorTable.OnBackColor">
<summary>
Gets or sets background color of ON switch part.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SwitchButtonColorTable.SwitchBorderColor">
<summary>
Gets or sets the switch border color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SwitchButtonColorTable.SwitchBackColor">
<summary>
Gets or sets the switch background color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SwitchButtonColorTable.SwitchOnBackColor">
<summary>
Gets or sets the switch background color when in ON state, i.e. Value=true. When set to Color.Empty SwitchBackColor is always used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.SwitchButtonColorTable.Disabled">
<summary>
Gets default disabled color scheme for the switch button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SwitchButtonColors.Default">
<summary>
Gets or sets default Switch Button color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SwitchButtonColors.Disabled">
<summary>
Gets or sets the disabled Switch Button color table.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Windows7BlueFactory">
<summary>
Represents the Windows 7 blue style color initialization class.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Windows7ColorTable">
<summary>
Represents color table for Windows 7 style.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Windows7ColorTable.#ctor">
<summary>
Initializes a new instance of the Office2010ColorTable class.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.eWindows7ColorScheme">
<summary>
Defines the color scheme type for the Office2010ColorTable.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.eWindows7ColorScheme.Blue">
<summary>
Blue color scheme.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ItemBindingData">
<summary>
Provides information about the binding for the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemBindingData.#ctor(System.Object,System.Int32)">
<summary>
Initializes a new instance of the ItemBindingInfo class.
</summary>
<param name="dataItem"></param>
<param name="bindingIndex"></param>
</member>
<member name="P:DevComponents.DotNetBar.ItemBindingData.DataItem">
<summary>
Gets or sets the data row item is bound to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemBindingData.BindingIndex">
<summary>
Gets or sets the data item index.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemBindingData.Tag">
<summary>
Gets or sets the additional data connected to this binding information.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RangeSliderItem">
<summary>
Represents the slider item which allows you to select a value from predefined range.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.#ctor">
<summary>
Creates new instance of SliderItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.#ctor(System.String)">
<summary>
Creates new instance of SliderItem and assigns the name to it.
</summary>
<param name="sItemName">Item name.</param>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.#ctor(System.String,System.String)">
<summary>
Creates new instance of SliderItem and assigns the name and text to it.
</summary>
<param name="sItemName">Item name.</param>
<param name="ItemText">item text.</param>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.InternalCopyToItem(DevComponents.DotNetBar.SliderItem)">
<summary>
Copies the SliderItem specific properties to new instance of the item.
</summary>
<param name="copy">New SliderItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the SliderItem specific properties to new instance of the item.
</summary>
<param name="copy">New SliderItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.OnValueChanging(DevComponents.DotNetBar.RangeSliderValueChangingEventArgs)">
<summary>
Raises ValueChanging event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.OnValueChanged(System.EventArgs)">
<summary>
Raises ValueChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.OnRangeTooltipText(DevComponents.DotNetBar.RangeTooltipEventArgs)">
<summary>
Raises GetRangeTooltipText event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.HitTest(System.Drawing.Point)">
<summary>
Gets the range part that is under specified client location.
</summary>
<param name="p">Location in parent control client coordinates.</param>
<returns>Range part at specified location.</returns>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.OnMinimumChanged(System.Int32,System.Int32)">
<summary>
Called when Minimum property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.OnMaximumChanged(System.Int32,System.Int32)">
<summary>
Called when Maximum property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.SetValue(DevComponents.DotNetBar.RangeValue,DevComponents.DotNetBar.eEventSource)">
<summary>
Sets the range value.
</summary>
<param name="value">New Range value.</param>
<param name="source">Source of the value change.</param>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.OnValueChanged(DevComponents.DotNetBar.RangeValue,DevComponents.DotNetBar.RangeValue)">
<summary>
Called when Value property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.OnTicksVisibleChanged(System.Boolean,System.Boolean)">
<summary>
Called when TicksVisible property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.OnTicksStepChanged(System.Int32,System.Int32)">
<summary>
Called when TicksStep property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.OnRangeButtonSizeChanged(System.Drawing.Size,System.Drawing.Size)">
<summary>
Called when RangeButtonSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.OnTicksPositionChanged(DevComponents.DotNetBar.eTicksPosition,DevComponents.DotNetBar.eTicksPosition)">
<summary>
Called when TicksPosition property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.OnMinimumAbsoluteRangeChanged(System.Int32,System.Int32)">
<summary>
Called when MinimumAbsoluteRange property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.OnRangeTooltipFormatChanged(System.String,System.String)">
<summary>
Called when RangeTooltipFormat property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.OnMinRangeSliderImageChanged(System.Drawing.Image,System.Drawing.Image)">
<summary>
Called when MinRangeSliderImage property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.OnMaxRangeSliderImageChanged(System.Drawing.Image,System.Drawing.Image)">
<summary>
Called when MaxRangeSliderImage property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.OnRangeLineHeightChanged(System.Int32,System.Int32)">
<summary>
Called when RangeLineHeight property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.ShouldSerializeRangeValueColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItem.ResetRangeValueColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RangeSliderItem.ValueChanging">
<summary>
Occurs before Value has changed and allow the cancellation of the change.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RangeSliderItem.ValueChanged">
<summary>
Occurs after Value property has changed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.MouseOverPart">
<summary>
Gets mouse over part.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.MouseDownPart">
<summary>
Gets current part that is pressed using mouse left button.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RangeSliderItem.RangeTooltipText">
<summary>
Occurs when control is about to display the range tooltip and it allows you to customize tooltip
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.Minimum">
<summary>
Gets or sets the minimum value of the range of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.Maximum">
<summary>
Gets or sets the maximum value of the range of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.Value">
<summary>
Gets or sets the range displayed by the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.TicksVisible">
<summary>
Indicates whether tick lines are shown
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.TicksBounds">
<summary>
Gets tick marks bounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.TicksBounds2">
<summary>
Gets tick marks bounds for second marker is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.RangeButtonMinBounds">
<summary>
Gets bounds of minimum range sliding button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.RangeButtonMaxBounds">
<summary>
Gets bounds of maximum range sliding button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.TicksStep">
<summary>
Indicates tick display period
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.SliderOrientation">
<summary>
Gets or sets the slider orientation. Default value is horizontal.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.Width">
<summary>
Gets or sets the width of the range slider in pixels. Value must be greater than 0. Default value is 140.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.Height">
<summary>
Gets or sets the Height of the range slider in pixels. Value must be greater than 0. Default value is 24.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.RangeButtonSize">
<summary>
Indicates the size of the range change buttons.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.TicksPosition">
<summary>
Specifies the ticks position inside of Range Slider.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.MinimumAbsoluteRange">
<summary>
Specifies minimum absolute range that user can select. Absolute range is defined as Abs(Value.Max-Value.Min) Applies to user performed selection through mouse only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.RangeTooltipFormat">
<summary>
Gets or sets the string that is used to format the range value to be displayed while user moves the range buttons. Value set here is used in string.Format(RangeTooltipFormat, Value.Min, Value.Max).
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.ShowRangeTooltip">
<summary>
Specifies whether range tooltip is shown while user is changing the range
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.MinRangeSliderImage">
<summary>
Indicates image to be used as minimum range slider button instead of built-in button. Image is scaled to size set by RangeButtonSize.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.MaxRangeSliderImage">
<summary>
Indicates image to be used as maximum range slider button instead of built-in button. Image is scaled to size set by RangeButtonSize.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.RangeLineHeight">
<summary>
Specifies the height of the range line
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.ClientClickRangeChangeEnabled">
<summary>
Indicates whether clicking the area outside of the range change buttons moves the range change button to the clicked location if possible thus allowing range change.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RangeSliderItem.RangeValueColor">
<summary>
Gets or sets the color of the range value.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eTicksPosition">
<summary>
Specifies the ticks position inside of Range Slider.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTicksPosition.Top">
<summary>
Ticks are displayed on top of range sliders.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTicksPosition.Bottom">
<summary>
Ticks are displayed on bottom of range sliders.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTicksPosition.TopAndBottom">
<summary>
Ticks are displayed on top and bottom of range sliders.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RangeValue">
<summary>
Defines value for the range slider controls.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RangeValue.Min">
<summary>
Gets or sets the range minimum value.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RangeValue.Max">
<summary>
Gets or sets the range maximum value.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RangeSliderItemRendererEventArgs">
<summary>
Provides data for the Slider item rendering events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RangeSliderItemRendererEventArgs.SliderItem">
<summary>
Gets or sets the reference to the item being rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RangeSliderItemRendererEventArgs.Graphics">
<summary>
Gets or sets the reference to graphics object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderItemRendererEventArgs.#ctor(DevComponents.DotNetBar.RangeSliderItem,System.Drawing.Graphics)">
<summary>
Creates new instance of the object and initializes it with default values.
</summary>
<param name="item">Reference to the Range Slider item being rendered.</param>
<param name="g">Reference to the graphics object.</param>
</member>
<member name="T:DevComponents.DotNetBar.RangeSliderValueChangingEventHandler">
<summary>
Defines delegate for RangeSliderValueChanging event.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="T:DevComponents.DotNetBar.RangeSliderValueChangingEventArgs">
<summary>
Provides information for RangeSliderValueChanging event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Events.EventSourceArgs">
<summary>
Represents event arguments that provide information on source of action.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Events.EventSourceArgs.Source">
<summary>
Gets the source of the event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Events.EventSourceArgs.#ctor(DevComponents.DotNetBar.eEventSource)">
<summary>
Initializes a new instance of the EventSourceArgs class.
</summary>
<param name="source"></param>
</member>
<member name="F:DevComponents.DotNetBar.RangeSliderValueChangingEventArgs.NewValue">
<summary>
New range value.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RangeSliderValueChangingEventArgs.Cancel">
<summary>
Set to true to cancel the value changing.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RangeSliderValueChangingEventArgs.#ctor(DevComponents.DotNetBar.eEventSource,DevComponents.DotNetBar.RangeValue)">
<summary>
Initializes a new instance of the RangeSliderValueChangingEventArgs class.
</summary>
<param name="newValue"></param>
</member>
<member name="T:DevComponents.DotNetBar.eRangeSliderPart">
<summary>
Defines the slider item parts.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eRangeSliderPart.None">
<summary>
Indicates no part.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eRangeSliderPart.MinRangeSlider">
<summary>
Indicates the minimum range slider button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eRangeSliderPart.MaxRangeSlider">
<summary>
Indicates the maximum range slider button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eRangeSliderPart.TickArea">
<summary>
Indicates the track area part of the control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RangeTooltipEventHandler">
<summary>
Defines delegate for RangeSliderValueChanging event.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="T:DevComponents.DotNetBar.RangeTooltipEventArgs">
<summary>
Provides information for GetRangeTooltip event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RangeTooltipEventArgs.Tooltip">
<summary>
Gets or sets the tooltip to display.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RangeTooltipEventArgs.#ctor(System.String)">
<summary>
Initializes a new instance of the RangeTooltipEventArgs class.
</summary>
<param name="tooltip"></param>
</member>
<member name="T:DevComponents.DotNetBar.Schedule.ColorDef">
<summary>
Color definition class
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Schedule.ColorDef.#ctor(System.Int32)">
<summary>
Constructor - solid def
</summary>
<param name="rgb">RGB value</param>
</member>
<member name="M:DevComponents.DotNetBar.Schedule.ColorDef.#ctor(System.Drawing.Color)">
<summary>
Constructor - solid def
</summary>
<param name="color">Color</param>
</member>
<member name="M:DevComponents.DotNetBar.Schedule.ColorDef.#ctor(System.Drawing.Color,System.Drawing.Color)">
<summary>
Constructor - 2 color def
</summary>
<param name="start">Start Color</param>
<param name="end">End Color</param>
</member>
<member name="M:DevComponents.DotNetBar.Schedule.ColorDef.#ctor(System.Drawing.Color,System.Drawing.Color,System.Single)">
<summary>
Constructor - 2 color def
</summary>
<param name="start">Start Color</param>
<param name="end">End Color</param>
<param name="angle">Gradient angle</param>
</member>
<member name="M:DevComponents.DotNetBar.Schedule.ColorDef.#ctor(System.Int32[],System.Single[])">
<summary>
Constructor - Gradient def
</summary>
<param name="rgbs">Array of RGB values</param>
<param name="cPositions">Gradient positions</param>
</member>
<member name="M:DevComponents.DotNetBar.Schedule.ColorDef.#ctor(System.Drawing.Color[],System.Single[])">
<summary>
Constructor - Gradient def
</summary>
<param name="colors">Array of Color values</param>
<param name="cPositions">Gradient positions</param>
</member>
<member name="M:DevComponents.DotNetBar.Schedule.ColorDef.#ctor(System.Int32[],System.Single[],System.Single)">
<summary>
Constructor - Gradient def
</summary>
<param name="rgbs">Array of RGB values</param>
<param name="cPositions">Gradient positions</param>
<param name="angle">Gradient angle</param>
</member>
<member name="M:DevComponents.DotNetBar.Schedule.ColorDef.#ctor(System.Drawing.Color[],System.Single[],System.Single)">
<summary>
Constructor - Gradient def
</summary>
<param name="colors">Array of Color values</param>
<param name="cPositions">Gradient positions</param>
<param name="angle">Gradient angle</param>
</member>
<member name="M:DevComponents.DotNetBar.Schedule.ColorDef.OnColorDefChanged">
<summary>
OnColorDefChanged
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Schedule.ColorDef.ColorDefChanged">
<summary>
Event raised when the SuperTabColorStates is changed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Schedule.ColorDef.Colors">
<summary>
Gets or sets the Color array
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Schedule.ColorDef.Positions">
<summary>
Gets or sets the Color Positions
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Schedule.ColorDef.Angle">
<summary>
Gets or sets the Gradient Angle
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Schedule.ColorDef.IsEmpty">
<summary>
IsEmpty
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Schedule.ColorDefConvertor">
<summary>
ColorDefConvertor
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Separator">
<summary>
Represents the visual separator line that is displayed between items.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Separator.#ctor">
<summary>
Creates new instance of Separator.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Separator.#ctor(System.String)">
<summary>
Creates new instance of Separator and assigns the name to it.
</summary>
<param name="sItemName">Item name.</param>
</member>
<member name="M:DevComponents.DotNetBar.Separator.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Separator.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the ButtonItem specific properties to new instance of the item.
</summary>
<param name="copy">New ButtonItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.Separator.ShouldSerializeSeparatorColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Separator.ResetSeparatorColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Separator.ShouldSerializeShadeColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Separator.ResetShadeColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Separator.Padding">
<summary>
Gets or sets separator padding.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Separator.FixedSize">
<summary>
Gets or sets the size of separator. Size specified is for separator in Vertical orientation. If orientation changes then the size will be internally switched to respect proper orientation.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Separator.SeparatorOrientation">
<summary>
Indicates splitter orientation.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Separator.SeparatorColor">
<summary>
Gets or sets the separator color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Separator.ShadeColor">
<summary>
Gets or sets the separator shade color.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.CustomizeItem">
<summary>
Defines an item that allows the toolbar customization.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CustomizeItem.#ctor">
<summary>
Creates new instance of CustomizeItem object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CustomizeItem.Copy">
<summary>
Returns copy of CustomizeItem item
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CustomizeItem.OnContainerChanged(System.Object)">
<summary>
Called when item container has changed. If you override this method you must call the base implementation to allow default processing to occur.
</summary>
<param name="objOldContainer">Previous container of the item.</param>
</member>
<member name="M:DevComponents.DotNetBar.CustomizeItem.OnTooltip(System.Boolean)">
<summary>
Occurs when tooltip is about to be shown or hidden.
</summary>
<param name="bShow">Specifies whether tooltip is shown or hidden.</param>
</member>
<member name="M:DevComponents.DotNetBar.CustomizeItem.LoadResources">
<summary>
Loads the resources (text) used by this item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CustomizeItem.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Overriden. Draws the item.
</summary>
<param name="g">Target Graphics object.</param>
</member>
<member name="M:DevComponents.DotNetBar.CustomizeItem.SetCustomTooltip(System.String)">
<summary>
Sets the custom system tooltip text for the item.
</summary>
<param name="text">Tooltip text.</param>
</member>
<member name="M:DevComponents.DotNetBar.CustomizeItem.RecalcSize">
<summary>
Overriden. Recalculates the size of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CustomizeItem.GetTooltipText">
<summary>
Gets localized tooltip text for this instance of the item.
</summary>
<returns>Tooltip text.</returns>
</member>
<member name="M:DevComponents.DotNetBar.CustomizeItem.MouseHoverCustomize">
<summary>
Called when mouse hovers over the customize item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CustomizeItem.Refresh">
<summary>
Forces the repaint the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CustomizeItem.GetFont">
<summary>
Returns the Font object to be used for drawing the item text.
</summary>
<returns>Font object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.CustomizeItem.Serialize(DevComponents.DotNetBar.ItemSerializationContext)">
<summary>
Overloaded. Serializes the item and all sub-items into the XmlElement.
</summary>
<param name="ThisItem">XmlElement to serialize the item to.</param>
</member>
<member name="M:DevComponents.DotNetBar.CustomizeItem.Deserialize(DevComponents.DotNetBar.ItemSerializationContext)">
<summary>
Overloaded. Deserializes the Item from the XmlElement.
</summary>
<param name="ItemXmlSource">Source XmlElement.</param>
</member>
<member name="P:DevComponents.DotNetBar.CustomizeItem.IsMouseOver">
<summary>
Gets whether the mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CustomizeItem.Visible">
<summary>
Gets or sets a value indicating whether the item is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CustomizeItem.CustomizeItemVisible">
<summary>
Gets or sets whether Customize menu item is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CustomizeItem.AutoCollapseOnClick">
<summary>
Indicates whether the item will auto-collapse (fold) when clicked.
When item is on popup menu and this property is set to false, menu will not
close when item is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CustomizeItem.CanCustomize">
<summary>
Gets or sets whether item can be customized by end user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.CustomizeItem.GlobalItem">
<summary>
Gets or sets whether item is global or not.
This flag is used to propagate property changes to all items with the same name.
Setting for example Visible property on the item that has GlobalItem set to true will
set visible property to the same value on all items with the same name.
</summary>
</member>
<member name="T:DevComponents.Editors.DateTimeAdv.CalendarBase">
<summary>
Represents base class for the CalendarMonth and MultiMonthCalendar controls. This class is used internally by DotNetBar and is not intended for public use.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.CalendarBase.#ctor">
<summary>
Initializes a new instance of the MultiMonthCalendar class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.CalendarBase.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Must be overridden by class that is inheriting to provide the painting for the item.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.CalendarBase.PaintBackground(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Paints background of the item.
</summary>
<param name="p">Provides painting arguments</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.CalendarBase.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.CalendarBase.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the CalendarMonth specific properties to new instance of the item.
</summary>
<param name="c">New ButtonItem instance.</param>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.CalendarBase.BackgroundStyle">
<summary>
Specifies the container background style. Default value is an empty style which means that container does not display any background.
BeginGroup property set to true will override this style on some styles.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.CalendarBase.Name">
<summary>
Returns name of the item that can be used to identify item from the code.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.CalendarBase.AccessibleRole">
<summary>
Gets or sets the accessible role of the item.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.Editors.DateTimeAdv.CalendarBase.KeyTips" -->
<member name="P:DevComponents.Editors.DateTimeAdv.CalendarBase.AutoCollapseOnClick">
<summary>
Indicates whether the item will auto-collapse (fold) when clicked.
When item is on popup menu and this property is set to false, menu will not
close when item is clicked.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.CalendarBase.CanCustomize">
<summary>
Gets or sets whether item can be customized by end user.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.CalendarBase.Category">
<summary>
Returns category for this item. If item cannot be customzied using the
customize dialog category is empty string.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.CalendarBase.ClickAutoRepeat">
<summary>
Gets or sets whether Click event will be auto repeated when mouse button is kept pressed over the item.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.CalendarBase.ClickRepeatInterval">
<summary>
Gets or sets the auto-repeat interval for the click event when mouse button is kept pressed over the item.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.CalendarBase.Cursor">
<summary>
Specifies the mouse cursor displayed when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.CalendarBase.Description">
<summary>
Gets or sets item description. This description is displayed in
Customize dialog to describe the item function in an application.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.CalendarBase.GlobalItem">
<summary>
Gets or sets whether item is global or not.
This flag is used to propagate property changes to all items with the same name.
Setting for example Visible property on the item that has GlobalItem set to true will
set visible property to the same value on all items with the same name.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.CalendarBase.ItemAlignment">
<summary>
Gets or sets item alignment inside the container.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.CalendarBase.Shortcuts">
<summary>
Gets or sets the collection of shortcut keys associated with the item.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.CalendarBase.ShowSubItems">
<summary>
Gets or sets whether item will display sub items.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.CalendarBase.Stretch">
<summary>
Gets or sets whether the item expands automatically to fill out the remaining space inside the container. Applies to Items on stretchable, no-wrap Bars only.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.CalendarBase.ThemeAware">
<summary>
Specifies whether item is drawn using Themes when running on OS that supports themes like Windows XP.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.CalendarBase.Tooltip">
<summary>
Gets/Sets informational text (tooltip) for the item.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.CalendarBase.Text">
<summary>
Gets or sets the text associated with this item.
</summary>
</member>
<member name="T:DevComponents.Editors.DateTimeAdv.DateAppearanceDescription">
<summary>
Defines the visual marking applied to dates through month calendar control.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateAppearanceDescription.#ctor">
<summary>
Initializes a new instance of the DateAppearanceDescription class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateAppearanceDescription.#ctor(DevComponents.DotNetBar.BaseItem)">
<summary>
Initializes a new instance of the DateAppearanceDescription class.
</summary>
<param name="parent"></param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateAppearanceDescription.ApplyTo(DevComponents.Editors.DateTimeAdv.DateAppearanceDescription)">
<summary>
Applies all settings from this object to specified object.
</summary>
<param name="desc">Reference to object.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateAppearanceDescription.ShouldSerializeBackColor">
<summary>Gets whether property should be serialized. Provided for WinForms designer support.</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateAppearanceDescription.ResetBackColor">
<summary>Resets property to its default value. Provided for WinForms designer support.</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateAppearanceDescription.ShouldSerializeBackColor2">
<summary>Gets whether property should be serialized. Provided for WinForms designer support.</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateAppearanceDescription.ResetBackColor2">
<summary>Resets property to its default value. Provided for WinForms designer support.</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateAppearanceDescription.ShouldSerializeTextColor">
<summary>Gets whether property should be serialized. Provided for WinForms designer support.</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateAppearanceDescription.ResetTextColor">
<summary>Resets property to its default value. Provided for WinForms designer support.</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateAppearanceDescription.ShouldSerializeBorderColor">
<summary>Gets whether property should be serialized. Provided for WinForms designer support.</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateAppearanceDescription.ResetBorderColor">
<summary>Resets property to its default value. Provided for WinForms designer support.</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateAppearanceDescription.IsBold">
<summary>
Gets or sets whether text is drawn using bold font.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateAppearanceDescription.BackColor">
<summary>
Gets or sets the background color for the marked day.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateAppearanceDescription.BackColor2">
<summary>
Gets or sets the background target gradient color for the marked date.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateAppearanceDescription.BackColorGradientAngle">
<summary>
Gets or sets the background gradient fill angle. Default value is 90.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateAppearanceDescription.TextColor">
<summary>
Gets or sets the text color for the marked date.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateAppearanceDescription.IsCustomized">
<summary>
Gets whether any of the appearance values have been changed.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateAppearanceDescription.BorderColor">
<summary>
Gets or sets the border color.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateAppearanceDescription.Selectable">
<summary>
Gets or sets whether day marked is selectable by end user. Default value is true.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualInputBase.UndoInput">
<summary>
Reverts the input to the last stored value.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualInputBase.InputComplete(System.Boolean)">
<summary>
Called when input field is full, i.e. it has an complete entry. If auto-overwrite is enabled the continued typing after input is complete
will erase the existing entry and start new one.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualInputBase.ResetInputPosition">
<summary>
Resets the input position so the new input overwrites current value.
</summary>
</member>
<member name="E:DevComponents.Editors.VisualInputBase.InputChanged">
<summary>
Occurs when input on the control has changed.
</summary>
</member>
<member name="E:DevComponents.Editors.VisualInputBase.ValidateInput">
<summary>
Occurs when validation of the input is performed and it allows you to deny the input.
</summary>
</member>
<member name="E:DevComponents.Editors.VisualInputBase.IsEmptyChanged">
<summary>
Occurs when IsEmpty property has changed.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualInputBase.DrawWatermark">
<summary>
Gets whether watermark will be drawn in current control state.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualInputBase.IsEmpty">
<summary>
Gets or sets whether control is empty.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualInputBase.AutoOverwrite">
<summary>
Gets or sets whether auto-overwrite functionality for input is enabled. When in auto-overwrite mode input field will erase existing entry
and start new one if typing is continued after InputComplete method is called.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualInputBase.WatermarkText">
<summary>
Gets or sets the watermark text displayed on the input control when control is empty.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualInputBase.WatermarkEnabled">
<summary>
Gets or sets whether watermark text is displayed if set. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualInputBase.IsReadOnly">
<summary>
Gets or sets whether input item is read-only.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualListInput.AllowEmptyState">
<summary>
Gets or sets whether control allows empty input state i.e. does not have an text entered. Default value is true.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualStringListInput.OnSelectedIndexChanged(System.EventArgs)">
<summary>
Raises SelectedIndexChanged event
</summary>
</member>
<member name="E:DevComponents.Editors.VisualStringListInput.SelectedIndexChanged">
<summary>
Occurs when SelectedIndex property has changed.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualStringListInput.Text">
<summary>
Gets or sets the text that is selected by the control.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualStringListInput.SelectedIndex">
<summary>
Gets or sets the currently selected index. -1 is returned if nothing is selected.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.HourPeriodInput.AMText">
<summary>
Gets or sets custom AM text used.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.HourPeriodInput.PMText">
<summary>
Gets or sets custom PM text used.
</summary>
</member>
<member name="T:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv">
<summary>
Represents a control that enables the user to select a date using a visual monthly calendar display.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.#ctor">
<summary>
Initializes a new instance of the MonthCalendarAdv class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.GetDayAt(System.Int32,System.Int32)">
<summary>
Returns the DayLabel at given client coordinates or null/nothing if there is no label at give location.
</summary>
<param name="x">X - position in client coordinates.</param>
<param name="y">Y - position in client coordinates.</param>
<returns>DayLabel at given coordinates or null/nothing.</returns>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.GetDay(System.DateTime)">
<summary>
Returns the DayLabel that represents the date.
</summary>
<param name="date">Date to find label for.</param>
<returns>DayLabel object or nothing if date cannot be founds.</returns>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ShouldSerializeMonthlyMarkedDates">
<summary>
Returns whether property should be serialized. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ResetMonthlyMarkedDates">
<summary>
Resets property to its default value. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.RemoveAllMonthlyMarkedDates">
<summary>
Removes all monthly marked dates. Note that you must call UpdateMarkedDates method to reflect these changes on calendar.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.RemoveMonthlyMarkedDate(System.DateTime)">
<summary>
Removes the date from the MonthlyMarkedDates. Note that you must call UpdateMarkedDates method to reflect these changes on calendar.
</summary>
<param name="dt"></param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ShouldSerializeWeeklyMarkedDays">
<summary>
Returns whether property should be serialized. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ResetWeeklyMarkedDays">
<summary>
Resets property to its default value. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.RemoveAllWeeklyMarkedDays">
<summary>
Removes all weekly marked dates. Note that you must call UpdateMarkedDates method to reflect these changes on calendar.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.RemoveWeeklyMarkedDay(System.DayOfWeek)">
<summary>
Removes the day from the WeeklyMarkedDays. Note that you must call UpdateMarkedDates method to reflect these changes on calendar.
</summary>
<param name="dt"></param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ShouldSerializeAnnuallyMarkedDates">
<summary>
Returns whether property should be serialized. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ResetAnnuallyMarkedDates">
<summary>
Resets property to its default value. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.RemoveAllAnnuallyMarkedDates">
<summary>
Removes all annually marked dates. Note that you must call UpdateMarkedDates method to reflect these changes on calendar.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.RemoveAnnuallyMarkedDate(System.DateTime)">
<summary>
Removes the date from the AnnuallyMarkedDates. Note that you must call UpdateMarkedDates method to reflect these changes on calendar.
</summary>
<param name="dt"></param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ShouldSerializeMarkedDates">
<summary>
Returns whether property should be serialized. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ResetMarkedDates">
<summary>
Resets property to its default value. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.RemoveAllMarkedDates">
<summary>
Removes all marked dates set through MarkedDates property. Note that you must call UpdateMarkedDates method to reflect these changes on calendar.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.RemoveMarkedDate(System.DateTime)">
<summary>
Removes the date from the MarkedDates collection. Note that you must call UpdateMarkedDates method to reflect these changes on calendar.
</summary>
<param name="dt"></param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.UpdateMarkedDates">
<summary>
Repaints the marked dates to reflect the dates set in the lists of marked dates.
Use this method to reflect the changes made to the AnnuallyMarkedDates, MonthlyMarkedDates or MarkedDates properties as well
as change to the marked Colors properties.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.OnDateChanged(System.EventArgs)">
<summary>
Raises the DateChanged event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.OnDateSelected(System.Windows.Forms.DateRangeEventArgs)">
<summary>
Raises the DateSelected event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.OnMonthChanged(System.EventArgs)">
<summary>
Raises the MonthChanged event.
</summary>
<param name="e">Provides additional event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.OnMonthChanging(System.EventArgs)">
<summary>
Raises the MonthChanging event.
</summary>
<param name="e">Provides additional event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.OnPaintLabel(System.Object,DevComponents.Editors.DateTimeAdv.DayPaintEventArgs)">
<summary>
Raises the PaintLabel event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.OnLabelMouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the LabelMouseDown event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.OnLabelMouseUp(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the LabelMouseUp event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.OnLabelMouseEnter(System.Object,System.EventArgs)">
<summary>
Raises the LabelMouseEnter event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.OnLabelMouseLeave(System.Object,System.EventArgs)">
<summary>
Raises the LabelMouseLeave event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.OnLabelMouseMove(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the LabelMouseMove event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.OnLabelMouseHover(System.Object,System.EventArgs)">
<summary>
Raises the LabelMouseHover event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ShouldSerializeDaySize">
<summary>
Gets whether property should be serialized. Provided for designer support.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ResetDaySize">
<summary>
Reset property to default value. Provided for designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ShouldSerializeNavigationButtonSize">
<summary>
Gets whether property should be serialized. Provided for designer support.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ResetNavigationButtonSize">
<summary>
Reset property to default value. Provided for designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ShouldSerializeMinDate">
<summary>
Gets whether Value property should be serialized by Windows Forms designer.
</summary>
<returns>true if value serialized otherwise false.</returns>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ResetMinDate">
<summary>
Reset the MinDate property to its default value.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ShouldSerializeMaxDate">
<summary>
Gets whether Value property should be serialized by Windows Forms designer.
</summary>
<returns>true if value serialized otherwise false.</returns>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ResetMaxDate">
<summary>
Reset the MaxDate property to its default value.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ResetCalendarDimensions">
<summary>
Resets property to its default value. Provided for design-time support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ShouldSerializeCalendarDimensions">
<summary>
Gets whether property should be serialized. Provided for design-time support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.SetCalendarDimensions(System.Int32,System.Int32)">
<summary>
Sets the number of columns and rows of months to display.
</summary>
<param name="columns">The number of columns. </param>
<param name="rows">The number of rows. </param>
<remarks>ArgumentOutOfRangeException will be raised if any value is less than zero or one value is grater than zero and other is zero.</remarks>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ShouldSerializeSelectionRange">
<summary>
Returns whether property should be serialized by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.SetSelectionRange(System.DateTime,System.DateTime)">
<summary>
Sets the selected dates in a month calendar control to the specified date range.
</summary>
<param name="startDate">The beginning date of the selection range.</param>
<param name="endDate">The end date of the selection range.</param>
<exception cref="T:System.ArgumentOutOfRangeException">startDate is less than the minimum date allowable for a month calendar control.<br/>
-or- <br/>
startDate is greater than the maximum allowable date for a month calendar control.<br/>
-or- <br/>
endDate is less than the minimum date allowable for a month calendar control.<br/>
-or- endDate is greater than the maximum allowable date for a month calendar control. <br/>
</exception>
<remarks>
If the startDate value is greater than endDate property value, the dates are swapped; the endDate value becomes the starting date, and startDate value becomes the end date.
</remarks>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.InvalidateAutoSize">
<summary>
Invalidates control auto-size and resizes the control if AutoSize is set to true.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.MonthChanged">
<summary>
Occurs when month displayed by the item has changed.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.MonthChanging">
<summary>
Occurs before the month that is displayed is changed.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.PaintLabel">
<summary>
Occurs when child label representing days is rendered and it allows you to override default rendering.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.LabelMouseDown">
<summary>
Occurs when mouse button is pressed over the day/week label inside of the calendar.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.LabelMouseUp">
<summary>
Occurs when mouse button is released over day/week label inside of the calendar.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.LabelMouseEnter">
<summary>
Occurs when mouse enters the day/week label inside of the calendar.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.LabelMouseLeave">
<summary>
Occurs when mouse leaves the day/week label inside of the calendar.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.LabelMouseMove">
<summary>
Occurs when mouse moves over the day/week label inside of the calendar.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.LabelMouseHover">
<summary>
Occurs when mouse remains still inside an day/week label of the calendar for an amount of time.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.DateChanged">
<summary>
Occurs when SelectedDate property has changed.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.DateSelected">
<summary>
Occurs when the user makes an explicit date selection using the mouse.
<remarks>
</remarks>
This event is similar to the DateChanged event, but it occurs at the end of a date selection made using the mouse.
The DateChanged event occurs during any date selection, whether by mouse, keyboard, or code. You should handle this event
when you enable multiple date selection through MultiSelect property and want to be notified after the date selection has been
made. DateChanged event would fire each time selection changes during the selection of multiple dates.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.MonthlyMarkedDates">
<summary>
Gets or sets the array of DateTime objects that determine which monthly days to mark using Colors.MonthlyMarker settings.
Make sure to call UpdateMarkedDates() method to update calendar display with marked dates.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.WeeklyMarkedDays">
<summary>
Gets or sets the array of DayOfWeek members that determine which days of week to mark using Colors.WeeklyMarker settings.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.AnnuallyMarkedDates">
<summary>
Gets or sets the array of DateTime objects that determines which annual days are marked using Colors.AnnualMarker settings.
Make sure to call UpdateMarkedDates() method to update calendar display with marked dates.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.MarkedDates">
<summary>
Gets or sets the array of DateTime objects that determines which non-recurring dates are marked using Colors.DayMarker settings.
Make sure to call UpdateMarkedDates() method to update calendar display with marked dates.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.DisplayMonth">
<summary>
Gets or sets the first month displayed by the control.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.DisplayedMonthCount">
<summary>
Gets number of months displayed on the control.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.Colors">
<summary>
Gets the calendar colors used by the control.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.DaySize">
<summary>
Gets or sets the size of each day item on the calendar. Default value is 24, 15.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.NavigationButtonSize">
<summary>
Gets or sets the size of date navigation buttons on the calendar. Default value is 13, 18. If you increase size of the navigation
buttons change DaySize as well so everything fits.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.MinDate">
<summary>
Gets or sets the minimum date and time that can be selected in the control.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.MaxDate">
<summary>
Gets or sets the maximum date and time that can be selected in the control.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.CommandsBackgroundStyle">
<summary>
Specifies the commands container background style. Commands container displays Today and Clear buttons if they are visible.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.NavigationBackgroundStyle">
<summary>
Specifies the navigation container background style. Navigation container displays month, year and optional buttons. Default value is an empty style which means that container does not display any background.
BeginGroup property set to true will override this style on some styles.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.CalendarDimensions">
<summary>
Gets or sets the number of columns and rows of months displayed on control. Default value is 0,0 which indicates that
calendar will display as many columns and rows as it is possible to fit into container space available.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.WeekendDaysSelectable">
<summary>
Gets or sets whether weekend days can be selected. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.WeekOfYearRule">
<summary>
Gets or sets the rule used to determine first week of the year for week of year display on calendar. Default value is first-day.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.TodayDate">
<summary>
Gets or sets the value that is used by calendar as today's date.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.TodayDateSet">
<summary>
Gets a value indicating whether the TodayDate property has been explicitly set.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ShowTodayMarker">
<summary>
Gets or sets whether today marker that indicates TodayDate is visible on the calendar. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ShowWeekNumbers">
<summary>
Gets or sets whether week of year is visible. Default value is false.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.DayNames">
<summary>
Gets or sets the array of custom names for days displayed on calendar header. The array must have exactly 7 elements representing day names from 0 to 6.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.FirstDayOfWeek">
<summary>
Gets or sets the first day of week displayed on the calendar. Default value is Sunday.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.TwoLetterDayName">
<summary>
Gets or sets whether control uses the two letter day names. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.SelectedDate">
<summary>
Gets or sets the calendar selected date. Note that SelectedDate property should be used only when MultiSelect property is set to false.
When multiple dates can be selected use range selection properties: SelectionStart, SelectionEnd and SelectionRange.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.MultiSelect">
<summary>
Gets or sets whether selection of multiple dates up to the MaxSelectionCount is enabled. Default value is false which indicates that only
single day can be selected.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.BottomContainer">
<summary>
Gets the reference to the bottom container that parents the Today, and Clear system buttons.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.TodayButtonVisible">
<summary>
Gets or sets whether Today button displayed at the bottom of the calendar is visible. Default value is false.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.ClearButtonVisible">
<summary>
Gets or sets whether Clear button displayed at the bottom of the calendar is visible. Clear button clears the currently selected date. Default value is false.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.MaxSelectionCount">
<summary>
Gets or sets the maximum number of days that can be selected in a month calendar control.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.SelectionStart">
<summary>
Gets or sets the start date of the selected range of dates.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.SelectionEnd">
<summary>
Gets or sets the end date of the selected range of dates.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.SelectionRange">
<summary>
Gets or sets the selected range of dates for a month calendar control.
<remarks>
Setting this property is functionally equivalent to using the SetSelectionRange method. You can set the start and end dates separately by setting either the SelectionStart or SelectionEnd properties. You cannot change the start and end dates by setting the SelectionRange.Start or SelectionRange.End property values of the SelectionRange property. You should use SelectionStart, SelectionEnd, or SetSelectionRange.
If the Start property value of the SelectionRange is greater than its End property value, the dates are swapped; the End property value becomes the starting date, and Start property value becomes the end date.</remarks>
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.YearSelectionEnabled">
<summary>
Gets or sets whether Year/Century selection is enabled when calendar is displaying single month.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.MonthSelectorShortMonthNames">
<summary>
Indicates whether month selector which is displayed when month label is clicked is using abbreviated month names instead of month number.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.MonthSelectionMode">
<summary>
Indicates whether calendar is used in month selection mode which shows only month and year.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarAdv.AutoSize">
<summary>
Gets or sets a value indicating whether the control is automatically resized to display its entire contents. You can set MaximumSize.Width property to set the maximum width used by the control.
</summary>
</member>
<member name="T:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar">
<summary>
Represents the container that presents single calendar month.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.#ctor">
<summary>
Initializes a new instance of the CalendarMonth class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.OnMonthSelectionModeChanged(System.Boolean,System.Boolean)">
<summary>
Called when MonthSelectionMode property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Must be overridden by class that is inheriting to provide the painting for the item.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the CalendarMonth specific properties to new instance of the item.
</summary>
<param name="c">New ButtonItem instance.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.OnMonthChanged(System.EventArgs)">
<summary>
Raises the MonthChanged event.
</summary>
<param name="e">Provides additional event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.OnMonthChanging(System.EventArgs)">
<summary>
Raises the MonthChanging event.
</summary>
<param name="e">Provides additional event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.ShouldSerializeDaySize">
<summary>
Gets whether property should be serialized. Provided for designer support.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.ResetDaySize">
<summary>
Reset property to default value. Provided for designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.ShouldSerializeNavigationButtonSize">
<summary>
Gets whether property should be serialized. Provided for designer support.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.ResetNavigationButtonSize">
<summary>
Reset property to default value. Provided for designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.OnPaintLabel(DevComponents.Editors.DateTimeAdv.DayLabel,DevComponents.Editors.DateTimeAdv.DayPaintEventArgs)">
<summary>
Raises the PaintLabel event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.OnSelectedDateChanged(System.EventArgs)">
<summary>
Raises the DateChanged event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.GetDayLabel(System.DateTime)">
<summary>
Gets the DayLabel item assigned to the given date. Returns null if there is no label displayed for the date.
</summary>
<param name="date">Date to return label for.</param>
<returns>DayLabel instance or null if date is not displayed on this calendar.</returns>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.OnSubItemExpandChange(DevComponents.DotNetBar.BaseItem)">
<summary>
Occurs when sub item expanded state has changed.
</summary>
<param name="item">Sub item affected.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.ShouldSerializeMinDate">
<summary>
Gets whether Value property should be serialized by Windows Forms designer.
</summary>
<returns>true if value serialized otherwise false.</returns>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.ResetMinDate">
<summary>
Reset the MinDate property to its default value.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.ShouldSerializeMaxDate">
<summary>
Gets whether Value property should be serialized by Windows Forms designer.
</summary>
<returns>true if value serialized otherwise false.</returns>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.ResetMaxDate">
<summary>
Reset the MaxDate property to its default value.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.OnDayClickAutoClosePopupChanged(System.Boolean,System.Boolean)">
<summary>
Called when DayClickAutoClosePopup property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.MonthChanged">
<summary>
Occurs when month displayed by the item has changed.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.MonthChanging">
<summary>
Occurs before the month that is displayed is changed.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.PaintLabel">
<summary>
Occurs when child label representing days is rendered and it allows you to override default rendering.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.LabelMouseDown">
<summary>
Occurs when mouse button is pressed over the day/week label inside of the calendar.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.LabelMouseUp">
<summary>
Occurs when mouse button is released over day/week label inside of the calendar.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.LabelMouseEnter">
<summary>
Occurs when mouse enters the day/week label inside of the calendar.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.LabelMouseLeave">
<summary>
Occurs when mouse leaves the day/week label inside of the calendar.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.LabelMouseMove">
<summary>
Occurs when mouse moves over the day/week label inside of the calendar.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.LabelMouseHover">
<summary>
Occurs when mouse remains still inside an day/week label of the calendar for an amount of time.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.DateChanged">
<summary>
Occurs when SelectedDate property has changed.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.MonthSelectionMode">
<summary>
Indicates whether calendar is used in month selection mode which shows only month and year.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.YearSelectionEnabled">
<summary>
Gets or sets whether Year/Century selection is enabled.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.MonthSelectorShortMonthNames">
<summary>
Indicates whether month selector which is displayed when month label is clicked is using abbreviated month names instead of month number.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.FirstDayOfWeek">
<summary>
Gets or sets the first day of week displayed on the calendar. Default value is Sunday.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.TrailingDaysVisible">
<summary>
Gets or sets whether trailing days outside of the current displayed month are visible on calendar.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.ShowWeekNumbers">
<summary>
Gets or sets whether week of year is visible. Default value is false.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.WeekOfYearRule">
<summary>
Gets or sets the rule used to determine first week of the year for week of year display on calendar. Default value is first-day.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.SubItems">
<summary>
Returns the collection of sub items.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.DaySize">
<summary>
Gets or sets the size of each day item on the calendar. Default value is 24, 15.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.NavigationButtonSize">
<summary>
Gets or sets the size of date navigation buttons on the calendar. Default value is 13, 18. If you increase size of the navigation
buttons change DaySize as well so everything fits.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.Colors">
<summary>
Gets the calendar colors used by the control.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.MultiSelect">
<summary>
Gets or sets whether multiple days can be selected by clicking each day. Default value is false.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.MouseSelectionEnabled">
<summary>
Gets or sets whether selection of dates using mouse is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.SelectedDate">
<summary>
Gets or sets the calendar selected date.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.WeekendDaysSelectable">
<summary>
Gets or sets whether weekend days can be selected. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.Expanded">
<summary>
Gets or sets a value indicating whether the item is expanded or not. For Popup items this would indicate whether the item is popped up or not.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.DefaultDayLabelTextAlign">
<summary>
Gets or sets default text alignment for the DayLabel items representing calendar days.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.TwoLetterDayName">
<summary>
Gets or sets whether control uses the two letter day names. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.DayNames">
<summary>
Gets or sets the array of custom names for days displayed on calendar header. The array must have exactly 7 elements representing day names from 0 to 6.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.HeaderNavigationEnabled">
<summary>
Gets or sets whether header navigation buttons for month and year are visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.NavigationBackgroundStyle">
<summary>
Specifies the navigation container background style. Navigation container displays month, year and optional buttons. Default value is an empty style which means that container does not display any background.
BeginGroup property set to true will override this style on some styles.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.ShowTodayMarker">
<summary>
Gets or sets whether today marker that indicates TodayDate is visible on the calendar. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.TodayDate">
<summary>
Gets or sets the value that is used by calendar as today's date.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.TodayDateSet">
<summary>
Gets a value indicating whether the TodayDate property has been explicitly set.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.MinDate">
<summary>
Gets or sets the minimum date and time that can be selected in the control.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.MaxDate">
<summary>
Gets or sets the maximum date and time that can be selected in the control.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.SingleMonthCalendar.DayClickAutoClosePopup">
<summary>
Gets or sets whether clicking the day closes the parent popup if item is on popup.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.YearSelectorControl.#ctor">
<summary>
Initializes a new instance of the YearSelectoControl class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.CenturySelectorControl.#ctor">
<summary>
Initializes a new instance of the CenturySelectorControl class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.YearSelectorContainer.#ctor">
<summary>
Initializes a new instance of the YearSelectorContainer class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.YearSelectorContainer.OnSelectedYearChanged(System.EventArgs)">
<summary>
Raises SelectedYearChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.CenturySelectorContainer.#ctor">
<summary>
Initializes a new instance of the YearSelectorContainer class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.CenturySelectorContainer.OnSelectedCenturyChanged(System.EventArgs)">
<summary>
Raises SelectedYearChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthSelectorControl.#ctor">
<summary>
Initializes a new instance of the CenturySelectorControl class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthSelectorContainer.#ctor">
<summary>
Initializes a new instance of the YearSelectorContainer class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthSelectorContainer.OnSelectedMonthChanged(System.EventArgs)">
<summary>
Raises SelectedYearChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="T:DevComponents.Editors.DateTimeAdv.MonthCalendarColors">
<summary>
Defines the MonthCalendar and SingleMonthCalendar colors for customization.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.ResetToday">
<summary>
Resets property to its default value. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.ResetSelection">
<summary>
Resets property to its default value. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.ResetTrailingDay">
<summary>
Resets property to its default value. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.ResetWeekOfYear">
<summary>
Resets property to its default value. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.ShouldSerializeDaysDividerBorderColors">
<summary>Gets whether property should be serialized. Provided for WinForms designer support.</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.ResetDaysDividerBorderColors">
<summary>Resets property to its default value. Provided for WinForms designer support.</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.ResetDay">
<summary>
Resets property to its default value. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.ResetWeekend">
<summary>
Resets property to its default value. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.ResetTrailingWeekend">
<summary>
Resets property to its default value. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.ResetDayLabel">
<summary>
Resets property to its default value. Provided for Windows Forms designer support.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.Today">
<summary>
Gets the appearance settings for the todays date.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.Selection">
<summary>
Gets the appearance settings for selected days.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.TrailingDay">
<summary>
Gets the appearance settings for the trailing days on calendar.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.WeekOfYear">
<summary>
Gets or sets the appearance settings for the labels that show week of year number.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.DaysDividerBorderColors">
<summary>
Gets or sets the days divider line color.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.Day">
<summary>
Gets the appearance settings for the numeric day of month label.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.Weekend">
<summary>
Gets the appearance settings for the weekend days on calendar (Saturday and Sunday).
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.TrailingWeekend">
<summary>
Gets the appearance settings for the trailing weekend days on calendar (Saturday and Sunday).
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.DayLabel">
<summary>
Gets the appearance settings for the labels that display day name in calendar header.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.MonthlyMarker">
<summary>
Gets or sets the marker settings for days specified by MonthCalendarItem.MonthlyMarkedDates property.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.AnnualMarker">
<summary>
Gets or sets the marker settings for days specified by MonthCalendarItem.AnnuallyMarkedDates property.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.DayMarker">
<summary>
Gets or sets the marker settings for days specified by MonthCalendarItem.MarkedDates property.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarColors.WeeklyMarker">
<summary>
Gets or sets the marker settings for days specified by MonthCalendarItem.WeeklyMarkedDays property.
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.DateTimeGroup.MinDateTime">
<summary>
Gets the minimum date value of the DateTimePicker control.
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.DateTimeGroup.MaxDateTime">
<summary>
Specifies the maximum date value of the DateTimePicker control. This field is read-only.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DateTimeGroup.OnValueChanged">
<summary>
Raises the ValueChanged event.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.DateTimeGroup.ValueChanged">
<summary>
Occurs when Value or IsEmpty property has changed.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeGroup.Value">
<summary>
Gets or sets the date time.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeGroup.Values">
<summary>
Gets or sets the values of the nested DateTimeGroup items.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeGroup.MinDate">
<summary>
Gets or sets the minimum value represented by the group.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeGroup.MaxDate">
<summary>
Gets or sets maximum value represented by the group.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DateTimeGroup.DefaultInputValues">
<summary>
Gets or sets whether input values are set to defaults while user is entering data. Default value is true.
</summary>
</member>
<member name="T:DevComponents.Editors.DateTimeAdv.eDateTimeSelectorVisibility">
<summary>
Defines the date-time selector visibility for DateTimeInput control popup.
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.eDateTimeSelectorVisibility.Auto">
<summary>
Depending on DateTimeInput.Format property setting either date or time selector is used.
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.eDateTimeSelectorVisibility.DateSelector">
<summary>
Only date selector is visible.
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.eDateTimeSelectorVisibility.TimeSelector">
<summary>
Only time selector is visible on popup.
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.eDateTimeSelectorVisibility.Both">
<summary>
Both date and time selectors are visible.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualLabel.TextPadding">
<summary>
Gets or sets the amount of padding added to text.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualLabel.Text">
<summary>
Gets or sets the text displayed by the label.
</summary>
</member>
<member name="T:DevComponents.Editors.DateTimeAdv.IDateTimePartInput">
<summary>
Defines an interface for the DateTime Part interaction.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.IDateTimePartInput.UndoInput">
<summary>
Reverts to the last input value control held.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.IDateTimePartInput.Value">
<summary>
Gets or sets the date/time part value.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.IDateTimePartInput.MinValue">
<summary>
Gets or sets the minimum value for the date/time part entry.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.IDateTimePartInput.MaxValue">
<summary>
Gets or sets the maximum value for the date/time part entry.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.IDateTimePartInput.Part">
<summary>
Gets the date time part control represents.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.IDateTimePartInput.IsEmpty">
<summary>
Gets or sets whether input part is empty.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DayLabelItem.Day">
<summary>
Gets or sets the day in numeric format to display. Allowed values are from -1 to 6. -1 represents an empty state.
0 represents Sunday and 6 Represents Saturday.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DayLabelItem.DayNames">
<summary>
Gets or sets the array of custom names for days. The array must have exactly 7 elements representing day names from 0 to 6.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DayLabelItem.UseAbbreviatedNames">
<summary>
Gets or sets whether abbreviated day names are used for display instead of full day names. Default value is false.
</summary>
</member>
<member name="T:DevComponents.Editors.DateTimeAdv.HourPeriodLabel">
<summary>
Represents a label for the NumericHourInput control that shows whether time is AM or PM.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.HourPeriodLabel.AMText">
<summary>
Gets or sets custom AM text used.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.HourPeriodLabel.PMText">
<summary>
Gets or sets custom PM text used.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthNameInput.UseAbbreviatedNames">
<summary>
Gets or sets whether abbreviated month names are used for display instead of full month names. Default value is false.
</summary>
</member>
<member name="E:DevComponents.Editors.VisualNumericInput.ValueChanged">
<summary>
Occurs when Value property has changed.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualNumericInput.MouseWheelValueChangeEnabled">
<summary>
Gets or sets whether mouse wheel increases or decreases the input value when used.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualNumericInput.AllowEmptyState">
<summary>
Gets or sets whether control allows empty input state i.e. does not have an number entered. Default value is true. When control is empty
IsEmpty property returns true and control does not display number. Set to false to always force control to have number displayed.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualIntegerInput.Increment">
<summary>
Gets or sets the value to increment or decrement the value of the control when the up or down buttons are clicked.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualIntegerInput.DisplayFormat">
<summary>
Gets or sets the Numeric String Format that is used to format the numeric value entered for display purpose.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.NumericDayInput.#ctor">
<summary>
Initializes a new instance of the NumericDayInput class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.NumericDayOfYearInput.#ctor">
<summary>
Initializes a new instance of the NumericDayOfYearInput class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.NumericHourInput.#ctor">
<summary>
Initializes a new instance of the NumericHourInput class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.NumericMinuteInput.#ctor">
<summary>
Initializes a new instance of the NumericMinuteInput class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.NumericMonthInput.#ctor">
<summary>
Initializes a new instance of the NumericMonthInput class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.NumericSecondInput.#ctor">
<summary>
Initializes a new instance of the NumericSecondInput class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.NumericYearInput.#ctor">
<summary>
Initializes a new instance of the NumericYearInput class.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.NumericYearInput.YearDisplayFormat">
<summary>
Gets or sets the year display format. Default value is four digit format.
</summary>
</member>
<member name="T:DevComponents.Editors.DateTimeAdv.ParseDateTimeValueEventArgs">
<summary>
Defines data for the ParseValue event that allows you to provide custom parsing for values set to ValueObject property.
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.ParseDateTimeValueEventArgs.ValueObject">
<summary>
Get the value that was set to the ValueObject property and which should be converted to ParsedValue DateTime.
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.ParseDateTimeValueEventArgs.IsParsed">
<summary>
Gets or sets whether you have provided ParsedValue.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.ParseDateTimeValueEventArgs.#ctor(System.Object)">
<summary>
Initializes a new instance of the ParseDateTimeValueEventArgs class.
</summary>
<param name="valueObject">Indicates the value object.</param>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.ParseDateTimeValueEventArgs.ParsedValue">
<summary>
/// <summary>
Gets or sets the parsed value from ValueObject property.
</summary>
</summary>
</member>
<member name="T:DevComponents.Editors.DateTimeAdv.ParseDateTimeValueEventHandler">
<summary>
Defines delegate for ParseDateTimeValue event.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DayLabel.#ctor">
<summary>
Initializes a new instance of the DayLabel class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DayLabel.OnPaintLabel(DevComponents.Editors.DateTimeAdv.DayPaintEventArgs)">
<summary>
Raises the PaintLabel event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DayLabel.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DayLabel.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the DayLabel specific properties to new instance of the item.
</summary>
<param name="c">New ButtonItem instance.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DayLabel.InternalMouseEnter">
<summary>
Occurs when the mouse pointer enters the item. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DayLabel.InternalMouseLeave">
<summary>
Occurs when the mouse pointer leaves the item. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DayLabel.InternalMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Occurs when the mouse pointer is over the item and a mouse button is pressed. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DayLabel.InternalMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
Occurs when the mouse pointer is over the item and a mouse button is released. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DayLabel.ShouldSerializeTextColor">
<summary>Gets whether property should be serialized. Provided for WinForms designer support.</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DayLabel.ResetTextColor">
<summary>Resets property to its default value. Provided for WinForms designer support.</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.DayLabel.PaintLabel">
<summary>
Occurs when label is rendered and it allows you to override default rendering.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DayLabel.Date">
<summary>
Gets or sets the date represented by this label. DateTime.MinValue indicates that label is either used as textual day representation
or the week number as specified by the IsWeekOfYear property.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DayLabel.IsDayLabel">
<summary>
Gets or sets whether this label is used as the label that displays the day name.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DayLabel.IsWeekOfYear">
<summary>
Gets or sets whether this label is used as the week of year label.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DayLabel.IsTrailing">
<summary>
Gets whether the label for date represents the trailing date, i.e. date that is from next or previous month for the month displayed.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DayLabel.IsMouseOver">
<summary>
Gets or sets whether mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DayLabel.IsMouseDown">
<summary>
Gets or sets whether left-mouse button is pressed over the item.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DayLabel.BackgroundStyle">
<summary>
Specifies the item background style. Default value is an empty style which means that container does not display any background.
BeginGroup property set to true will override this style on some styles.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DayLabel.IsSelected">
<summary>
Gets or sets whether label appears as selected.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DayLabel.TrackMouse">
<summary>
Gets or sets whether label provides visual indicator when mouse is over the label or pressed while over the label. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DayLabel.Selectable">
<summary>
Gets or sets whether label is selectable. IsSelected property returns whether label is selected. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DayLabel.TextColor">
<summary>
Gets or sets the label text color. Default value is an empty color.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DayLabel.IsBold">
<summary>
Gets or sets whether text is drawn using Bold font. Default value is false.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DayLabel.TextAlign">
<summary>
Gets or sets the text alignment.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DayLabel.ImageAlign">
<summary>
Gets or sets the image alignment.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DayLabel.Image">
<summary>
Gets or sets the image displayed on the label.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DayLabel.FlatOffice2007Style">
<summary>
Gets or sets whether flat Office 2007 style is used to render the item. Default value is false.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DayLabel.IsToday">
<summary>
Gets or sets whether date represented by label is marked as todays date.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.DayLabel.ExpandOnMouseDown">
<summary>
Gets or sets whether popup is displayed when mouse is pressed anywhere over the item. Default value is false which indicates
that popup is displayed only if image assigned to the item and mouse is pressed over image.
</summary>
</member>
<member name="T:DevComponents.Editors.DateTimeAdv.eLabelPartAlignment">
<summary>
Indicates the alignment of the DayLabel part like text or image.
</summary>
</member>
<member name="T:DevComponents.Editors.DateTimeAdv.DayPaintEventArgs">
<summary>
Provides data for DayLabel painting events.
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.DayPaintEventArgs.Graphics">
<summary>
Gets the graphics canvas for rendering.
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.DayPaintEventArgs.RenderParts">
<summary>
Gets or sets which parts of the item will be drawn by the system. You can set this to None to completely disable system rendering.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DayPaintEventArgs.#ctor(DevComponents.DotNetBar.ItemPaintArgs,DevComponents.Editors.DateTimeAdv.DayLabel)">
<summary>
Initializes a new instance of the DayPaintEventArgs class.
</summary>
<param name="graphics">Reference to Graphics canvas.</param>
<param name="item">Reference to item being rendered.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DayPaintEventArgs.PaintBackground">
<summary>
Renders the background of the item.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DayPaintEventArgs.PaintText">
<summary>
Renders the item text.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DayPaintEventArgs.PaintText(System.Drawing.Color)">
<summary>
Renders the item text.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DayPaintEventArgs.PaintText(System.Drawing.Color,DevComponents.Editors.DateTimeAdv.eLabelPartAlignment)">
<summary>
Renders the item text.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DayPaintEventArgs.PaintText(System.Drawing.Color,System.Drawing.Font)">
<summary>
Renders the item text.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DayPaintEventArgs.PaintText(System.Drawing.Color,System.Drawing.Font,DevComponents.Editors.DateTimeAdv.eLabelPartAlignment)">
<summary>
Renders the item text.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DayPaintEventArgs.PaintImage">
<summary>
Renders items image.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.DayPaintEventArgs.PaintImage(DevComponents.Editors.DateTimeAdv.eLabelPartAlignment)">
<summary>
Renders items image.
</summary>
</member>
<member name="T:DevComponents.Editors.DateTimeAdv.DayPaintEventHandler">
<summary>
Defines delegate for DayLabel painting events.
</summary>
<param name="sender">Source of the event.</param>
<param name="e">Provides event data.</param>
</member>
<member name="T:DevComponents.Editors.DateTimeAdv.eDayPaintParts">
<summary>
Specifies the parts of DayLabel control. Members of this enum are intended to be used as flags (combined).
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.eDayPaintParts.None">
<summary>
Specifies no part.
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.eDayPaintParts.Background">
<summary>
Specifies the label background.
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.eDayPaintParts.Text">
<summary>
Specifies the label text.
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.eDayPaintParts.Image">
<summary>
Specifies the label image.
</summary>
</member>
<member name="F:DevComponents.Editors.DateTimeAdv.eDayPaintParts.All">
<summary>
Specifies all parts.
</summary>
</member>
<member name="T:DevComponents.Editors.eHourPeriod">
<summary>
Indicates the hour format.
</summary>
</member>
<member name="F:DevComponents.Editors.eHourPeriod.AM">
<summary>
Indicates Ante Meridiem period, before the middle day.
</summary>
</member>
<member name="F:DevComponents.Editors.eHourPeriod.PM">
<summary>
Indicates Post Meridiem after the middle day".
</summary>
</member>
<member name="T:DevComponents.Editors.eDateTimePart">
<summary>
Identifies the date time part.
</summary>
</member>
<member name="T:DevComponents.Editors.eHorizontalAlignment">
<summary>
Specifies the input fields alignment inside of the control.
</summary>
</member>
<member name="T:DevComponents.Editors.eTextAlignment">
<summary>
Specifies the text alignment.
</summary>
</member>
<member name="T:DevComponents.Editors.eDateTimePickerFormat">
<summary>
Specifies the format of the date time picker.
</summary>
</member>
<member name="F:DevComponents.Editors.eDateTimePickerFormat.Custom">
<summary>
Indicates that custom format specified by CustomFormat property is used.
</summary>
</member>
<member name="F:DevComponents.Editors.eDateTimePickerFormat.Long">
<summary>
The DateTimePicker control displays the date/time value in the long date format set by the user's operating system.
</summary>
</member>
<member name="F:DevComponents.Editors.eDateTimePickerFormat.Short">
<summary>
The DateTimePicker control displays the date/time value in the short date format set by the user's operating system.
</summary>
</member>
<member name="F:DevComponents.Editors.eDateTimePickerFormat.LongTime">
<summary>
The DateTimePicker control displays the date/time value in the time format set by the user's operating system.
</summary>
</member>
<member name="F:DevComponents.Editors.eDateTimePickerFormat.ShortTime">
<summary>
The DateTimePicker control displays the date/time value in the short time format set by the user's operating system.
</summary>
</member>
<member name="T:DevComponents.Editors.eYearDisplayFormat">
<summary>
Specifies the display format of the year in input control.
</summary>
</member>
<member name="T:DevComponents.Editors.eItemAlignment">
<summary>
Specifies the visual item alignment inside the parent group.
</summary>
</member>
<member name="T:DevComponents.Editors.eVerticalAlignment">
<summary>
Specifies the vertical alignment.
</summary>
</member>
<member name="F:DevComponents.Editors.eSystemItemType.SystemButton">
<summary>
Describes the system button item type. System buttons are buttons created internally by controls.
</summary>
</member>
<member name="T:DevComponents.Editors.eUpDownButtonAutoChange">
<summary>
Specifies the auto-change item when VisualUpDownButton control is clicked.
</summary>
</member>
<member name="F:DevComponents.Editors.eUpDownButtonAutoChange.None">
<summary>
No item is automatically changed.
</summary>
</member>
<member name="F:DevComponents.Editors.eUpDownButtonAutoChange.FocusedItem">
<summary>
Auto-change focused item in parent group
</summary>
</member>
<member name="F:DevComponents.Editors.eUpDownButtonAutoChange.PreviousInputItem">
<summary>
Auto change first input item before the Up/Down button in parent group.
</summary>
</member>
<member name="T:DevComponents.Editors.eInputFieldNavigation">
<summary>
Specifies the keys used for navigation between input fields.
</summary>
</member>
<member name="F:DevComponents.Editors.eInputFieldNavigation.None">
<summary>
No key is used for the navigation.
</summary>
</member>
<member name="F:DevComponents.Editors.eInputFieldNavigation.Tab">
<summary>
Tab key is used to advance to the next input field.
</summary>
</member>
<member name="F:DevComponents.Editors.eInputFieldNavigation.Arrows">
<summary>
Arrow keys are used to advance to the next input field.
</summary>
</member>
<member name="F:DevComponents.Editors.eInputFieldNavigation.Enter">
<summary>
Enter key is used to advance to the next input field.
</summary>
</member>
<member name="F:DevComponents.Editors.eInputFieldNavigation.All">
<summary>
Tab, Arrows and Enter keys are used to advance to the next input field.
</summary>
</member>
<member name="T:DevComponents.Editors.InputButtonSettings">
<summary>
Describes input button settings.
</summary>
</member>
<member name="M:DevComponents.Editors.InputButtonSettings.#ctor">
<summary>
Initializes a new instance of the InputButtonSettings class.
</summary>
</member>
<member name="M:DevComponents.Editors.InputButtonSettings.#ctor(DevComponents.Editors.IInputButtonControl)">
<summary>
Initializes a new instance of the InputButtonSettings class.
</summary>
<param name="parent"></param>
</member>
<member name="M:DevComponents.Editors.InputButtonSettings.OnSymbolChanged(System.String,System.String)">
<summary>
Called when Symbol property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.Editors.InputButtonSettings.OnSymbolSetChanged(DevComponents.DotNetBar.eSymbolSet,DevComponents.DotNetBar.eSymbolSet)">
<summary>
Called when SymbolSet property value changes.
</summary>
<param name="oldValue">Indciates old value</param>
<param name="newValue">Indicates new value</param>
</member>
<member name="M:DevComponents.Editors.InputButtonSettings.ShouldSerializeSymbolColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.Editors.InputButtonSettings.ResetSymbolColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.Editors.InputButtonSettings.CopyToItem(DevComponents.Editors.InputButtonSettings)">
<summary>
Copies properties to new instance of the item.
</summary>
<param name="copy">New InputButtonSettings instance</param>
</member>
<member name="P:DevComponents.Editors.InputButtonSettings.Visible">
<summary>
Gets or sets whether button is visible.
</summary>
</member>
<member name="P:DevComponents.Editors.InputButtonSettings.Enabled">
<summary>
Gets or sets whether button is enabled.
</summary>
</member>
<member name="P:DevComponents.Editors.InputButtonSettings.DisplayPosition">
<summary>
Gets or sets the display position index of the button. Buttons are ordered from left to right with button with lowest index appearing as left-most button.
</summary>
</member>
<member name="P:DevComponents.Editors.InputButtonSettings.Image">
<summary>
Gets or sets the image displayed on the face of the button.
</summary>
</member>
<member name="P:DevComponents.Editors.InputButtonSettings.Text">
<summary>
Gets or sets the text displayed on the input button face.
</summary>
</member>
<member name="P:DevComponents.Editors.InputButtonSettings.ItemReference">
<summary>
Gets or sets the visual item button references for its action.
</summary>
</member>
<member name="P:DevComponents.Editors.InputButtonSettings.Shortcut">
<summary>
Gets or sets the shortcut key which when pressed triggers button click event or its default function.
</summary>
</member>
<member name="P:DevComponents.Editors.InputButtonSettings.Tooltip">
<summary>
Gets or sets tooltip displayed for the button when mouse hovers over it.
</summary>
</member>
<member name="P:DevComponents.Editors.InputButtonSettings.Symbol">
<summary>
Indicates the symbol displayed on face of the button instead of the image. Setting the symbol overrides the image setting.
</summary>
</member>
<member name="P:DevComponents.Editors.InputButtonSettings.SymbolSet">
<summary>
Gets or sets the symbol set used to represent the Symbol.
</summary>
</member>
<member name="P:DevComponents.Editors.InputButtonSettings.SymbolColor">
<summary>
Gets or sets the color of the Symbol.
</summary>
</member>
<member name="T:DevComponents.Editors.InputControlColors">
<summary>
Defines the system colors used by the input controls.
</summary>
</member>
<member name="M:DevComponents.Editors.InputControlColors.ResetHighlight">
<summary>
Resets property to its default value. Provided for design-time support.
</summary>
</member>
<member name="M:DevComponents.Editors.InputControlColors.ShouldSerializeHighlight">
<summary>
Returns whether property should be serialized. Provided for design-time support.
</summary>
</member>
<member name="M:DevComponents.Editors.InputControlColors.ResetHighlightText">
<summary>
Resets property to its default value. Provided for design-time support.
</summary>
</member>
<member name="M:DevComponents.Editors.InputControlColors.ShouldSerializeHighlightText">
<summary>
Returns whether property should be serialized. Provided for design-time support.
</summary>
</member>
<member name="E:DevComponents.Editors.InputControlColors.ColorChanged">
<summary>
Occurs when color has changed.
</summary>
</member>
<member name="P:DevComponents.Editors.InputControlColors.Highlight">
<summary>
Gets or sets the background color of input item part when part has input focus. Default value is Color.Empty which indicates that system Highlight color is used.
</summary>
</member>
<member name="P:DevComponents.Editors.InputControlColors.HighlightText">
<summary>
Gets or sets the text color of input item part when part has input focus. Default value is Color.Empty which indicates that system HighlightText color is used.
</summary>
</member>
<member name="M:DevComponents.Editors.InputValidationEventArgs.#ctor(System.String)">
<summary>
Initializes a new instance of the InputValidationEventArgs class.
</summary>
<param name="input">Indicates current input.</param>
</member>
<member name="T:DevComponents.Editors.InputValidationEventHandler">
<summary>
Defines delegate for input validation event.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.Editors.VisualToggleButton.#ctor">
<summary>
Initializes a new instance of the VisualToggleButton class.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualToggleButton.OnCheckedChanged(System.EventArgs)">
<summary>
Raises the CheckedChanged event.
</summary>
</member>
<member name="E:DevComponents.Editors.VisualToggleButton.CheckedChanged">
<summary>
Occurs when Checked property has changed.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualToggleButton.Checked">
<summary>
Gets or sets whether item is checked.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualToggleButton.IsMouseDown">
<summary>
Gets whether left mouse button is pressed over the item.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualToggleButton.IsMouseOver">
<summary>
Gets whether mouse is over the item.
</summary>
</member>
<member name="M:DevComponents.Editors.LockUpdateCheckBox.#ctor">
<summary>
Initializes a new instance of the LockUpdateCheckBox class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.#ctor">
<summary>
Initializes a new instance of the MonthCalendarItem class.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.InternalCopyToItem(DevComponents.Editors.DateTimeAdv.MonthCalendarItem)">
<summary>
Copies the CalendarMonth specific properties to new instance of the item.
</summary>
<param name="c">New ButtonItem instance.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the CalendarMonth specific properties to new instance of the item.
</summary>
<param name="c">New ButtonItem instance.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ShouldSerializeSelectionRange">
<summary>
Returns whether property should be serialized by Windows Forms desginer.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.SetSelectionRange(System.DateTime,System.DateTime)">
<summary>
Sets the selected dates in a month calendar control to the specified date range.
</summary>
<param name="startDate">The beginning date of the selection range.</param>
<param name="endDate">The end date of the selection range.</param>
<exception cref="T:System.ArgumentOutOfRangeException">startDate is less than the minimum date allowable for a month calendar control.<br/>
-or- <br/>
startDate is greater than the maximum allowable date for a month calendar control.<br/>
-or- <br/>
endDate is less than the minimum date allowable for a month calendar control.<br/>
-or- endDate is greater than the maximum allowable date for a month calendar control. <br/>
</exception>
<remarks>
If the startDate value is greater than endDate property value, the dates are swapped; the endDate value becomes the starting date, and startDate value becomes the end date.
</remarks>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ApplySelection">
<summary>
Applies current date selection to the control. You are usually not required to make calls to this method directly since it is automatically
done by the control when selection changes. This method returns immediately if MultiSelect
property is set to false or SelectionStart or SelectionEnd properties have DateTime.MinValue.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.GetDayAt(System.Int32,System.Int32)">
<summary>
Returns the DayLabel at given client coordinates or null/nothing if there is no label at give location.
</summary>
<param name="x">X - position in client coordinates.</param>
<param name="y">Y - position in client coordinates.</param>
<returns>DayLabel at given coordinates or null/nothing.</returns>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.GetDay(System.DateTime)">
<summary>
Returns the DayLabel that represents the date.
</summary>
<param name="date">Date to find label for.</param>
<returns>DayLabel object or nothing if date cannot be founds.</returns>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ShouldSerializeMonthlyMarkedDates">
<summary>
Returns whether property should be serialized. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ResetMonthlyMarkedDates">
<summary>
Resets property to its default value. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.RemoveAllMonthlyMarkedDates">
<summary>
Removes all monthly marked dates. Note that you must call UpdateMarkedDates method to reflect these changes on calendar.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.RemoveMonthlyMarkedDate(System.DateTime)">
<summary>
Removes the date from the MonthlyMarkedDates. Note that you must call UpdateMarkedDates method to reflect these changes on calendar.
</summary>
<param name="dt"></param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ShouldSerializeWeeklyMarkedDays">
<summary>
Returns whether property should be serialized. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ResetWeeklyMarkedDays">
<summary>
Resets property to its default value. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.RemoveAllWeeklyMarkedDays">
<summary>
Removes all weekly marked days. Note that you must call UpdateMarkedDates method to reflect these changes on calendar.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.RemoveWeeklyMarkedDay(System.DayOfWeek)">
<summary>
Removes the date from the MonthlyMarkedDates. Note that you must call UpdateMarkedDates method to reflect these changes on calendar.
</summary>
<param name="dt"></param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ShouldSerializeAnnuallyMarkedDates">
<summary>
Returns whether property should be serialized. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ResetAnnuallyMarkedDates">
<summary>
Resets property to its default value. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.RemoveAllAnnuallyMarkedDates">
<summary>
Removes all annually marked dates. Note that you must call UpdateMarkedDates method to reflect these changes on calendar.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.RemoveAnnuallyMarkedDate(System.DateTime)">
<summary>
Removes the date from the AnnuallyMarkedDates. Note that you must call UpdateMarkedDates method to reflect these changes on calendar.
</summary>
<param name="dt"></param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ShouldSerializeMarkedDates">
<summary>
Returns whether property should be serialized. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ResetMarkedDates">
<summary>
Resets property to its default value. Provided for Windows Forms designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.RemoveAllMarkedDates">
<summary>
Removes all marked dates set through MarkedDates property. Note that you must call UpdateMarkedDates method to reflect these changes on calendar.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.RemoveMarkedDate(System.DateTime)">
<summary>
Removes the date from the MarkedDates collection. Note that you must call UpdateMarkedDates method to reflect these changes on calendar.
</summary>
<param name="dt"></param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.UpdateMarkedDates">
<summary>
Repaints the marked dates to reflect the dates set in the lists of marked dates.
Use this method to reflect the changes made to the AnnuallyMarkedDates, MonthlyMarkedDates or MarkedDates properties as well
as change to the marked Colors properties.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.OnMonthChanged(System.EventArgs)">
<summary>
Raises the MonthChanged event.
</summary>
<param name="e">Provides additional event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.OnMonthChanging(System.EventArgs)">
<summary>
Raises the MonthChanging event.
</summary>
<param name="e">Provides additional event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.OnPaintLabel(DevComponents.Editors.DateTimeAdv.DayLabel,DevComponents.Editors.DateTimeAdv.DayPaintEventArgs)">
<summary>
Raises the PaintLabel event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.OnLabelMouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the LabelMouseDown event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.OnLabelMouseUp(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the LabelMouseUp event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.OnLabelMouseEnter(System.Object,System.EventArgs)">
<summary>
Raises the LabelMouseEnter event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.OnLabelMouseLeave(System.Object,System.EventArgs)">
<summary>
Raises the LabelMouseLeave event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.OnLabelMouseMove(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the LabelMouseMove event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.OnLabelMouseHover(System.Object,System.EventArgs)">
<summary>
Raises the LabelMouseHover event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ShouldSerializeDaySize">
<summary>
Gets whether property should be serialized. Provided for designer support.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ResetDaySize">
<summary>
Reset property to default value. Provided for designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ShouldSerializeNavigationButtonSize">
<summary>
Gets whether property should be serialized. Provided for designer support.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ResetNavigationButtonSize">
<summary>
Reset property to default value. Provided for designer support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ShouldSerializeMinDate">
<summary>
Gets whether Value property should be serialized by Windows Forms designer.
</summary>
<returns>true if value serialized otherwise false.</returns>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ResetMinDate">
<summary>
Reset the MinDate property to its default value.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ShouldSerializeMaxDate">
<summary>
Gets whether Value property should be serialized by Windows Forms designer.
</summary>
<returns>true if value serialized otherwise false.</returns>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ResetMaxDate">
<summary>
Reset the MaxDate property to its default value.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ResetCalendarDimensions">
<summary>
Resets property to its default value. Provided for design-time support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ShouldSerializeCalendarDimensions">
<summary>
Gets whether property should be serialized. Provided for design-time support.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.SetCalendarDimensions(System.Int32,System.Int32)">
<summary>
Sets the number of columns and rows of months to display.
</summary>
<param name="columns">The number of columns. </param>
<param name="rows">The number of rows. </param>
<remarks>ArgumentOutOfRangeException will be raised if any value is less than zero or one value is grater than zero and other is zero.</remarks>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.OnDateChanged(System.EventArgs)">
<summary>
Raises the DateChanged event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.OnDateSelected(System.Windows.Forms.DateRangeEventArgs)">
<summary>
Raises the DateSelected event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ReloadLocalizedStrings">
<summary>
Reloads the localized strings for Today and Clear buttons.
</summary>
</member>
<member name="M:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.OnDayClickAutoClosePopupChanged(System.Boolean,System.Boolean)">
<summary>
Called when DayClickAutoClosePopup property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.MonthChanged">
<summary>
Occurs when month displayed by the item has changed.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.MonthChanging">
<summary>
Occurs before the month that is displayed is changed.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.PaintLabel">
<summary>
Occurs when child label representing days is rendered and it allows you to override default rendering.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.LabelMouseDown">
<summary>
Occurs when mouse button is pressed over the day/week label inside of the calendar.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.LabelMouseUp">
<summary>
Occurs when mouse button is released over day/week label inside of the calendar.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.LabelMouseEnter">
<summary>
Occurs when mouse enters the day/week label inside of the calendar.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.LabelMouseLeave">
<summary>
Occurs when mouse leaves the day/week label inside of the calendar.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.LabelMouseMove">
<summary>
Occurs when mouse moves over the day/week label inside of the calendar.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.LabelMouseHover">
<summary>
Occurs when mouse remains still inside an day/week label of the calendar for an amount of time.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.DateChanged">
<summary>
Occurs when SelectedDate property has changed.
</summary>
</member>
<member name="E:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.DateSelected">
<summary>
Occurs when the user makes an explicit date selection using the mouse.
<remarks>
</remarks>
This event is similar to the DateChanged event, but it occurs at the end of a date selection made using the mouse.
The DateChanged event occurs during any date selection, whether by mouse, keyboard, or code. You should handle this event
when you enable multiple date selection through MultiSelect property and want to be notified after the date selection has been
made. DateChanged event would fire each time selection changes during the selection of multiple dates.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.MaxSelectionCount">
<summary>
Gets or sets the maximum number of days that can be selected in a month calendar control.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.SelectionStart">
<summary>
Gets or sets the start date of the selected range of dates.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.SelectionEnd">
<summary>
Gets or sets the end date of the selected range of dates.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.SelectionRange">
<summary>
Gets or sets the selected range of dates for a month calendar control.
<remarks>
Setting this property is functionally equivalent to using the SetSelectionRange method. You can set the start and end dates separately by setting either the SelectionStart or SelectionEnd properties. You cannot change the start and end dates by setting the SelectionRange.Start or SelectionRange.End property values of the SelectionRange property. You should use SelectionStart, SelectionEnd, or SetSelectionRange.
If the Start property value of the SelectionRange is greater than its End property value, the dates are swapped; the End property value becomes the starting date, and Start property value becomes the end date.</remarks>
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.MultiSelect">
<summary>
Gets or sets whether selection of multiple dates up to the MaxSelectionCount is enabled. Default value is false which indicates that only
single day can be selected.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.MonthlyMarkedDates">
<summary>
Gets or sets the array of DateTime objects that determine which monthly days to mark using Colors.MonthlyMarker settings.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.WeeklyMarkedDays">
<summary>
Gets or sets the array of DayOfWeek members that determine which days of week to mark using Colors.WeeklyMarker settings.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.AnnuallyMarkedDates">
<summary>
Gets or sets the array of DateTime objects that determines which annual days are marked using Colors.AnnualMarker settings.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.MarkedDates">
<summary>
Gets or sets the array of DateTime objects that determines which nonrecurring dates are marked using Colors.DayMarker settings.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.DisplayMonth">
<summary>
Gets or sets the first month displayed by the control.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.DisplayedMonthCount">
<summary>
Gets number of months displayed on the control.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.Colors">
<summary>
Gets the calendar colors used by the control.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.DaySize">
<summary>
Gets or sets the size of each day item on the calendar. Default value is 24, 15.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.NavigationButtonSize">
<summary>
Gets or sets the size of date navigation buttons on the calendar. Default value is 13, 18. If you increase size of the navigation
buttons change DaySize as well so everything fits.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.MinDate">
<summary>
Gets or sets the minimum date and time that can be selected in the control.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.MaxDate">
<summary>
Gets or sets the maximum date and time that can be selected in the control.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.CommandsBackgroundStyle">
<summary>
Specifies the commands container background style. Commands container displays Today and Clear buttons if they are visible.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.NavigationBackgroundStyle">
<summary>
Specifies the navigation container background style. Navigation container displays month, year and optional buttons. Default value is an empty style which means that container does not display any background.
BeginGroup property set to true will override this style on some styles.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.CalendarDimensions">
<summary>
Gets or sets the number of columns and rows of months displayed on control. Default value is 0,0 which indicates that
calendar will display as many columns and rows as it is possible to fit into container space available.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.WeekendDaysSelectable">
<summary>
Gets or sets whether weekend days can be selected. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.WeekOfYearRule">
<summary>
Gets or sets the rule used to determine first week of the year for week of year display on calendar. Default value is first-day.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.TodayDate">
<summary>
Gets or sets the value that is used by calendar as today's date.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.TodayDateSet">
<summary>
Gets a value indicating whether the TodayDate property has been explicitly set.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ShowTodayMarker">
<summary>
Gets or sets whether today marker that indicates TodayDate is visible on the calendar. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ShowWeekNumbers">
<summary>
Gets or sets whether week of year is visible. Default value is false.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.TwoLetterDayName">
<summary>
Gets or sets whether control uses the two letter day names. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.DayNames">
<summary>
Gets or sets the array of custom names for days displayed on calendar header. The array must have exactly 7 elements representing day names from 0 to 6.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.FirstDayOfWeek">
<summary>
Gets or sets the first day of week displayed on the calendar. Default value is Sunday.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.SelectedDate">
<summary>
Gets or sets the calendar selected date. Note that SelectedDate property should be used only when MultiSelect property is set to false.
When multiple dates can be selected use range selection properties: SelectionStart, SelectionEnd and SelectionRange.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.BottomContainer">
<summary>
Gets the reference to the bottom container that parents the Today, and Clear system buttons.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.TodayButton">
<summary>
Gets reference to internal Today button on calendar.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.TodayButtonVisible">
<summary>
Gets or sets whether Today button displayed at the bottom of the calendar is visible. Default value is false.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.ClearButtonVisible">
<summary>
Gets or sets whether Clear button displayed at the bottom of the calendar is visible. Clear button clears the currently selected date. Default value is false.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.Expanded">
<summary>
Gets or sets a value indicating whether the item is expanded or not. For Popup items this would indicate whether the item is popped up or not.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.DayClickAutoClosePopup">
<summary>
Gets or sets whether clicking the day closes the parent popup if item is on popup.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.YearSelectionEnabled">
<summary>
Gets or sets whether Year/Century selection is enabled when calendar is displaying single month.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.MonthSelectorShortMonthNames">
<summary>
Indicates whether month selector which is displayed when month label is clicked is using abbreviated month names instead of month number.
</summary>
</member>
<member name="P:DevComponents.Editors.DateTimeAdv.MonthCalendarItem.MonthSelectionMode">
<summary>
Indicates whether calendar is used in month selection mode which shows only month and year.
</summary>
</member>
<member name="P:DevComponents.Editors.PaintInfo.AvailableSize">
<summary>
Gets or sets the size available for the item currently being arranged.
</summary>
</member>
<member name="P:DevComponents.Editors.PaintInfo.MouseOver">
<summary>
Gets or sets whether mouse is over the host control.
</summary>
</member>
<member name="P:DevComponents.Editors.PaintInfo.Colors">
<summary>
Gets or sets system colors used by the control.
</summary>
</member>
<member name="T:DevComponents.Editors.ParseDoubleValueEventArgs">
<summary>
Defines data for the ParseValue event that allows you to provide custom parsing for values set to ValueObject property.
</summary>
</member>
<member name="F:DevComponents.Editors.ParseDoubleValueEventArgs.ValueObject">
<summary>
Get the value that was set to the ValueObject property and which should be converted to ParsedValue DateTime.
</summary>
</member>
<member name="F:DevComponents.Editors.ParseDoubleValueEventArgs.IsParsed">
<summary>
Gets or sets whether you have provided ParsedValue.
</summary>
</member>
<member name="M:DevComponents.Editors.ParseDoubleValueEventArgs.#ctor(System.Object)">
<summary>
Initializes a new instance of the ParseDateTimeValueEventArgs class.
</summary>
<param name="valueObject">Indicates the value object.</param>
</member>
<member name="P:DevComponents.Editors.ParseDoubleValueEventArgs.ParsedValue">
<summary>
/// <summary>
Gets or sets the parsed value from ValueObject property.
</summary>
</summary>
</member>
<member name="T:DevComponents.Editors.ParseDoubleValueEventHandler">
<summary>
Defines delegate for ParseValue event.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="T:DevComponents.Editors.ParseIntegerValueEventArgs">
<summary>
Defines data for the ParseValue event that allows you to provide custom parsing for values set to ValueObject property.
</summary>
</member>
<member name="F:DevComponents.Editors.ParseIntegerValueEventArgs.ValueObject">
<summary>
Get the value that was set to the ValueObject property and which should be converted to ParsedValue DateTime.
</summary>
</member>
<member name="F:DevComponents.Editors.ParseIntegerValueEventArgs.IsParsed">
<summary>
Gets or sets whether you have provided ParsedValue.
</summary>
</member>
<member name="M:DevComponents.Editors.ParseIntegerValueEventArgs.#ctor(System.Object)">
<summary>
Initializes a new instance of the ParseDateTimeValueEventArgs class.
</summary>
<param name="valueObject">Indicates the value object.</param>
</member>
<member name="P:DevComponents.Editors.ParseIntegerValueEventArgs.ParsedValue">
<summary>
/// <summary>
Gets or sets the parsed value from ValueObject property.
</summary>
</summary>
</member>
<member name="T:DevComponents.Editors.ParseIntegerValueEventHandler">
<summary>
Defines delegate for ParseValue event.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="P:DevComponents.Editors.VisualButtonBase.ClickAutoRepeat">
<summary>
Gets or sets whether button automatically gets Click events repeated when mouse is kept pressed on the button. Default value is false.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualButtonBase.ClickRepeatInterval">
<summary>
Gets or sets the auto-repeat interval for the click event when mouse button is kept pressed over the item.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualButtonBase.RenderDefaultBackground">
<summary>
Gets or sets whether default button background is rendered when mouse is not over the host control. Default value is true.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualButtonBase.Shortcut">
<summary>
Gets or sets the shortcut key which when pressed triggers button click event or its default function.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualButtonBase.Tooltip">
<summary>
Gets or sets the button tooltip.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualButton.OnSymbolChanged(System.String,System.String)">
<summary>
Called when Symbol property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.Editors.VisualButton.OnSymbolSetChanged(DevComponents.DotNetBar.eSymbolSet,DevComponents.DotNetBar.eSymbolSet)">
<summary>
Called when SymbolSet property value changes.
</summary>
<param name="oldValue">Indciates old value</param>
<param name="newValue">Indicates new value</param>
</member>
<member name="P:DevComponents.Editors.VisualButton.Height">
<summary>
Gets or sets the fixed button height.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualButton.IsMouseOver">
<summary>
Gets whether mouse is over the control.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualButton.IsMouseDown">
<summary>
Gets whether mouse is pressed on the control.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualButton.Text">
<summary>
Gets or sets the text displayed on the face of the button.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualButton.Image">
<summary>
Gets or sets the image displayed on the face of the button.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualButton.SymbolRealized">
<summary>
Gets the realized symbol string.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualButton.Symbol">
<summary>
Indicates the symbol displayed on face of the button instead of the image. Setting the symbol overrides the image setting.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualButton.SymbolSet">
<summary>
Gets or sets the symbol set used to represent the Symbol.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualButton.SymbolColor">
<summary>
Gets or sets the color of the Symbol.
</summary>
</member>
<member name="M:DevComponents.Editors.FreeTextEntryBox.OnDecreaseValue(System.EventArgs)">
<summary>
Raises DecreaseValue event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.Editors.FreeTextEntryBox.OnIncreaseValue(System.EventArgs)">
<summary>
Raises IncreaseValue event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="T:DevComponents.Editors.FreeTextEntryConversionEventArgs">
<summary>
Defines data for ConvertFreeTextEntry event.
</summary>
</member>
<member name="F:DevComponents.Editors.FreeTextEntryConversionEventArgs.ValueEntered">
<summary>
Gets the string value that was entered by the user.
</summary>
</member>
<member name="F:DevComponents.Editors.FreeTextEntryConversionEventArgs.ControlValue">
<summary>
Gets or sets the converted ValueEntered into the control's value type. For example for IpAddressInput the value set here
must be of string type and in IP address format. For IntegerInput control the value set here must be an int type. For DateTimeInput
control value set here must be DateTime type.
If you provide ControlValue set ValueConverted=true to indicate so.
</summary>
</member>
<member name="F:DevComponents.Editors.FreeTextEntryConversionEventArgs.IsValueConverted">
<summary>
Gets or sets whether ValueEntered has been converted to ControlValue. Set to true to indicate that you have performed conversion.
</summary>
</member>
<member name="T:DevComponents.Editors.FreeTextEntryConversionEventHandler">
<summary>
Defines delegate for ConvertFreeTextEntry event.
</summary>
<param name="sender">Source of event.</param>
<param name="ea">Provides event data.</param>
</member>
<member name="P:DevComponents.Editors.VisualDoubleInput.Increment">
<summary>
Gets or sets the value to increment or decrement the value of the control when the up or down buttons are clicked.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualDoubleInput.DisplayFormat">
<summary>
Gets or sets the Numeric String Format that is used to format the numeric value entered for display purpose.
</summary>
</member>
<member name="T:DevComponents.Editors.eTriggerType">
<summary>
Specifies trigger types for the value changed events on editor controls.
</summary>
</member>
<member name="F:DevComponents.Editors.eTriggerType.Immediate">
<summary>
ValueChanged event is fired as soon as user types in the value.
</summary>
</member>
<member name="F:DevComponents.Editors.eTriggerType.LostFocus">
<summary>
ValueChanged event is fired after control loses input focus.
</summary>
</member>
<member name="F:DevComponents.Editors.eTriggerType.LostFocusAndEnterKey">
<summary>
ValueChanged event is fired after control loses input focus or user presses the Enter key.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualItemCollection.#ctor">
<summary>Creates new instance of the class.</summary>
</member>
<member name="M:DevComponents.Editors.VisualItemCollection.#ctor(DevComponents.Editors.VisualGroup)">
<summary>Creates new instance of the class.</summary>
</member>
<member name="M:DevComponents.Editors.VisualItemCollection.Add(DevComponents.Editors.VisualItem)">
<summary>
Adds new object to the collection.
</summary>
<param name="item">Object to add.</param>
<returns>Index of newly added object.</returns>
</member>
<member name="M:DevComponents.Editors.VisualItemCollection.AddRange(DevComponents.Editors.VisualItem[])">
<summary>
Adds array of new objects to the collection.
</summary>
<param name="items">Array of object to add.</param>
</member>
<member name="M:DevComponents.Editors.VisualItemCollection.AddRange(System.Collections.IList)">
<summary>
Adds array of new objects to the collection.
</summary>
<param name="items">Array of object to add.</param>
</member>
<member name="M:DevComponents.Editors.VisualItemCollection.Insert(System.Int32,DevComponents.Editors.VisualItem)">
<summary>
Inserts new object into the collection.
</summary>
<param name="index">Position of the object.</param>
<param name="value">Object to insert.</param>
</member>
<member name="M:DevComponents.Editors.VisualItemCollection.IndexOf(DevComponents.Editors.VisualItem)">
<summary>
Returns index of the object inside of the collection.
</summary>
<param name="value">Reference to the object.</param>
<returns>Index of the object.</returns>
</member>
<member name="M:DevComponents.Editors.VisualItemCollection.Contains(DevComponents.Editors.VisualItem)">
<summary>
Returns whether collection contains specified object.
</summary>
<param name="value">Object to look for.</param>
<returns>true if object is part of the collection, otherwise false.</returns>
</member>
<member name="M:DevComponents.Editors.VisualItemCollection.Remove(DevComponents.Editors.VisualItem)">
<summary>
Removes specified object from the collection.
</summary>
<param name="value"></param>
</member>
<member name="M:DevComponents.Editors.VisualItemCollection.CopyTo(DevComponents.Editors.VisualItem[],System.Int32)">
<summary>
Copies collection into the specified array.
</summary>
<param name="array">Array to copy collection to.</param>
<param name="index">Starting index.</param>
</member>
<member name="M:DevComponents.Editors.VisualItemCollection.CopyTo(DevComponents.Editors.VisualItem[])">
<summary>
Copies contained items to the VisualItem array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="P:DevComponents.Editors.VisualItemCollection.Item(System.Int32)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="T:DevComponents.Editors.VisualUpDownButton">
<summary>
Represents the up down button which allows change of the value in currently focused input control.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualUpDownButton.#ctor">
<summary>
Initializes a new instance of the VisualUpDownButton class.
</summary>
</member>
<member name="M:DevComponents.Editors.VisualUpDownButton.OnUpClick(System.EventArgs)">
<summary>
Raises the UpClick event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="M:DevComponents.Editors.VisualUpDownButton.OnDownClick(System.EventArgs)">
<summary>
Raises the DownClick event.
</summary>
<param name="e">Provides event data.</param>
</member>
<member name="E:DevComponents.Editors.VisualUpDownButton.UpClick">
<summary>
Occurs when Up part of the button has been clicked.
</summary>
</member>
<member name="E:DevComponents.Editors.VisualUpDownButton.DownClick">
<summary>
Occurs when Down part of the button has been clicked.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualUpDownButton.UpImage">
<summary>
Gets or sets the image displayed on the face of the button.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualUpDownButton.DownImage">
<summary>
Gets or sets the image displayed on the face of the button.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualUpDownButton.ButtonWidth">
<summary>
Gets or sets the default width of the buttons.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualUpDownButton.AutoChange">
<summary>
Gets or sets whether control automatically tries to increase/decrease the value of the item that has input focus in the same
parent group as the button. Default value is false.
</summary>
</member>
<member name="P:DevComponents.Editors.VisualUpDownButton.AutoChangeItem">
<summary>
Gets or sets the item that is automatically changed when buttons are pressed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DesignTime">
<summary>
Statis functions for design-time support.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DesignTimeDte">
<summary>
Summary description for DesignTimeDte.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DisplayHelp">
<summary>
Summary description for Display.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DisplayMoreItem">
<summary>
System item that displays the items that could not fit inside the container on popup menu or toolbar.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DisplayMoreItem.#ctor">
<summary>
Create new instance of DisplayMoreItem object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DisplayMoreItem.Copy">
<summary>
Returns copy of DisplayMoreItem item
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DisplayMoreItem.OnContainerChanged(System.Object)">
<summary>
Called when item container has changed. If you override this method you must call the base implementation to allow default processing to occur.
</summary>
<param name="objOldContainer">Previous container of the item.</param>
</member>
<member name="M:DevComponents.DotNetBar.DisplayMoreItem.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Overridden. Draws the item.
</summary>
<param name="g">Target Graphics object.</param>
</member>
<member name="M:DevComponents.DotNetBar.DisplayMoreItem.RecalcSize">
<summary>
Overriden. Recalculates the size of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DisplayMoreItem.Popup(System.Drawing.Point)">
<summary>
Overridden. Displays the sub-items on popup.
</summary>
<param name="p">Popup location.</param>
</member>
<member name="M:DevComponents.DotNetBar.DisplayMoreItem.Popup(System.Int32,System.Int32)">
<summary>
Overridden. Displays the sub-items on popup.
</summary>
<param name="x">Horizontal coordinate in pixels of the upper left corner of a popup.</param>
<param name="y">Vertical coordinate in pixels of the upper left corner of a popup.</param>
</member>
<member name="M:DevComponents.DotNetBar.DisplayMoreItem.PopupBar(System.Int32,System.Int32)">
<summary>
Overridden. Displays the sub-items on popup toolbar.
</summary>
<param name="x">Horizontal coordinate in pixels of the upper left corner of a popup.</param>
<param name="y">Vertical coordinate in pixels of the upper left corner of a popup.</param>
</member>
<member name="M:DevComponents.DotNetBar.DisplayMoreItem.PopupMenu(System.Int32,System.Int32)">
<summary>
Overridden. Displays the sub-items on popup menu.
</summary>
<param name="x">Horizontal coordinate in pixels of the upper left corner of a popup.</param>
<param name="y">Vertical coordinate in pixels of the upper left corner of a popup.</param>
</member>
<member name="M:DevComponents.DotNetBar.DisplayMoreItem.ClosePopup">
<summary>
Overridden. Close the popup window if open.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DisplayMoreItem.AddItems">
<summary>
Adds the items that are not visible to the overflow popup.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DisplayMoreItem.GetReInsertIndex">
<summary>
Returns the insertion index for the items removed from overflow popup. Assumes that right-most items are removed first by the layout manager.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.DisplayMoreItem.RemoveItems">
<summary>
Removes the items from the overflow and adds them back to the parent item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DisplayMoreItem.Refresh">
<summary>
Forces the repaint the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DisplayMoreItem.FixedSize">
<summary>
Returns the fixed size of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DisplayMoreItem.NeedRecalcSize">
<summary>
Get or sets whether item has been changed in a way that it needs its size recalculated. This is internal
property and it should not be used by your code.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DisplayMoreItem.IsMouseOver">
<summary>
Gets whether the mouse is over the item.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PanelDockContainer">
<summary>
Represents panel that is hosted by DockContainerItem as docked control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PanelEx">
<summary>
Represents graphical panel control with support for different visual styles and gradients.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.#ctor">
<summary>
Default constructor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.RefreshStyleSystemColors">
<summary>
Applies color scheme colors to the style objects.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.SetMouseDown(System.Boolean)">
<summary>
Sets the internal mouse down flag which controls appearance of the control. You can use this method to simulate the pressed state for the panel with appropriate StyleMouseDown assigned.
</summary>
<param name="mouseDown">New value for the mouse down flag.</param>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.SetMouseOver(System.Boolean)">
<summary>
Sets the mouse over internal flag that tracks whether the mouse is over the control. You can use this method to simulate the mouse over appearance when appropriate StyleMouseOver style is set.
</summary>
<param name="mouseOver">New value for the mouse over flag.</param>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.ShouldSerializeCanvasColor">
<summary>
Indicates whether CanvasColor should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.ResetCanvasColor">
<summary>
Resets CanvasColor to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.ResetStyle">
<summary>
Resets the style to it's default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.ResetMouseTracking">
<summary>
Resets the internal mouse tracking properties that track whether mouse is over the panel and whether is mouse pressed while over the panel.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.ResetStyleMouseOver">
<summary>
Resets the style to it's default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.ResetStyleMouseDown">
<summary>
Resets the style to it's default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.OnAntiAliasChanged">
<summary>
Called when AntiAlias property has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.OnColorSchemeChanged">
<summary>
Called after either ColorScheme or ColorSchemeStyle has changed. If you override make sure that you call base implementation so default
processing can occur.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.GetAutoSize">
<summary>
Returns the size of the panel calculated based on the text assigned.
</summary>
<returns>Calculated size of the panel or Size.Empty if panel size cannot be calculated.</returns>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.GetAutoSize(System.Int32)">
<summary>
Returns the size of the panel calculated based on the text assigned.
</summary>
<returns>Calculated size of the panel or Size.Empty if panel size cannot be calculated.</returns>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.UpdateMarkupSize">
<summary>
Updates the markup size to reflect current position of the scrollbars. You must call this method if you are scrolling control with markup using the AutoScrollPosition property.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.ApplyPanelStyle">
<summary>
Applies predefined Panel color scheme to the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.ApplyButtonStyle">
<summary>
Applies predefined Button color scheme to the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.ApplyLabelStyle">
<summary>
Applies predefined Label color scheme to the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.NotifyDefault(System.Boolean)">
<summary>
Notifies a control that it is the default button so that its appearance and behavior is adjusted accordingly.
</summary>
<param name="value">true if the control should behave as a default button; otherwise false.</param>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.PerformClick">
<summary>
Generates a Click event for the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.GetRenderer">
<summary>
Returns the renderer control will be rendered with.
</summary>
<returns>The current renderer.</returns>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.OnNonClientSizeChanged(System.EventArgs)">
<summary>
Raises NonClientSizeChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.OnScrollBarValueChanged(DevComponents.DotNetBar.Controls.ScrollValueChangedEventArgs)">
<summary>
Raises ScrollBarValueChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.PanelEx.OnControlMoved(System.EventArgs)">
<summary>
Raises NonClientSizeChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="E:DevComponents.DotNetBar.PanelEx.MarkupLinkClick">
<summary>
Occurs when text markup link is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.RightToLeftLayout">
<summary>
Gets or sets a value indicating whether right-to-left mirror placement is turned on. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.ColorScheme">
<summary>
Gets or sets Bar Color Scheme. Note that when ColorSchemeStyle property is set to Office 2007 style the color scheme is always retrived from the GlobalManager.Renderer and any\
changes made on this property will not have any effect.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.SuspendPaint">
<summary>
Gets or sets whether paint operations for the control are suspended.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.TextMarkupEnabled">
<summary>
Gets or sets whether Text supports and renders text markup. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.Text">
<summary>
Gets or sets the text displayed on panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.ShowFocusRectangle">
<summary>
Gets or sets whether focus rectangle is displayed when control has focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.CanvasColor">
<summary>
Gets or sets the canvas color for the panel. Canvas color will be visible on areas of the control that do not get covered
by the style and it will also be used as a base color for style to be painted on.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.Style">
<summary>
Gets or sets the panel style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.StyleMouseOver">
<summary>
Gets or sets the panel style when mouse hovers over the panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.StyleMouseDown">
<summary>
Gets or sets the panel style when mouse button is pressed on the panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.ColorSchemeStyle">
<summary>
Gets or sets color scheme style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.AutoScroll">
<summary>
Gets or sets a value indicating whether the container will allow the user to scroll to any controls placed outside of its visible boundaries.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.TextDockConstrained">
<summary>
Gets or sets whether text rectangle painted on panel is considering docked controls inside the panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.ClientTextRectangle">
<summary>
Gets or sets the text rectangle. This property is set by internal implementation and it should not be set by outside code.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.MarkupUsesStyleAlignment">
<summary>
Gets or sets whether text markup if it occupies less space than control provides uses the Style Alignment and LineAlignment properties to align the markup inside of the control. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.VScrollBar">
<summary>
Returns reference to internal vertical scroll-bar control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.HScrollBar">
<summary>
Returns reference to internal horizontal scroll-bar control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.UseThemedScrollbars">
<summary>
Indicates whether panel uses themed DotNetBar scrollbars. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.ScrollBarAppearance">
<summary>
Gets or sets the scroll-bar visual style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.DialogResult">
<summary>
Gets or sets the value returned to the parent form when the button is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.ThemeAware">
<summary>
Specifies whether item is drawn using Themes when running on OS that supports themes like Windows XP.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelEx.DisabledBackColor">
<summary>
Specifies back color when Enabled=false
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelDockContainer.#ctor">
<summary>
Creates new instance of the panel.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelDockContainer.OnColorSchemeChanged">
<summary>
Called after either ColorScheme or ColorSchemeStyle has changed. If you override make sure that you call base implementation so default
processing can occur.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelDockContainer.UseCustomStyle">
<summary>
Indicates whether style of the panel is managed by tab control automatically.
Set this to true if you would like to control style of the panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelDockContainer.DockContainerItem">
<summary>
Gets or sets TabItem that this panel is attached to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelDockContainer.Dock">
<summary>
Gets or sets which edge of the parent container a control is docked to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelDockContainer.Size">
<summary>
Gets or sets the size of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelDockContainer.Location">
<summary>
Gets or sets the coordinates of the upper-left corner of the control relative to the upper-left corner of its container.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelDockContainer.Visible">
<summary>
Gets or sets a value indicating whether the control is displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelDockContainer.Anchor">
<summary>
Gets or sets which edges of the control are anchored to the edges of its container.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BackgroundColorBlend">
<summary>
Defines single color blend point for the multicolor gradient fills.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BackgroundColorBlend.#ctor">
<summary>
Creates new instance of the class. When defining multicolor gradinet blends and using the percentage positions the positions created
must start with 0f and end with 1f.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BackgroundColorBlend.#ctor(System.Drawing.Color,System.Single)">
<summary>
Creates new instance of the class and initialize it with default values.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BackgroundColorBlend.#ctor(System.Int32,System.Single)">
<summary>
Creates new instance of the class and initialize it with default values.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BackgroundColorBlend.Color">
<summary>
Gets or sets Color to use in multicolor gradient blend at specified position.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.BackgroundColorBlend.Position">
<summary>
Gets or sets the color position in multicolor gradient blend. Values less or equal to 1 are used as percentage specifing percentages of distance along the gradient line.
Values greater than 1 are used as absolute pixel values of distance along the gradient line.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BackgroundColorBlendCollection">
<summary>
Represents Collection for the BackgroundColorBlend objects.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BackgroundColorBlendCollection.#ctor">
<summary>Creates new instance of the class.</summary>
</member>
<member name="M:DevComponents.DotNetBar.BackgroundColorBlendCollection.Add(DevComponents.DotNetBar.BackgroundColorBlend)">
<summary>
Adds new object to the collection.
</summary>
<param name="item">Object to add.</param>
<returns>Index of newly added object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BackgroundColorBlendCollection.AddRange(DevComponents.DotNetBar.BackgroundColorBlend[])">
<summary>
Adds array of new objects to the collection.
</summary>
<param name="items">Array of object to add.</param>
</member>
<member name="M:DevComponents.DotNetBar.BackgroundColorBlendCollection.Insert(System.Int32,DevComponents.DotNetBar.BackgroundColorBlend)">
<summary>
Inserts new object into the collection.
</summary>
<param name="index">Position of the object.</param>
<param name="value">Object to insert.</param>
</member>
<member name="M:DevComponents.DotNetBar.BackgroundColorBlendCollection.IndexOf(DevComponents.DotNetBar.BackgroundColorBlend)">
<summary>
Returns index of the object inside of the collection.
</summary>
<param name="value">Reference to the object.</param>
<returns>Index of the object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BackgroundColorBlendCollection.Contains(DevComponents.DotNetBar.BackgroundColorBlend)">
<summary>
Returns whether collection contains specified object.
</summary>
<param name="value">Object to look for.</param>
<returns>true if object is part of the collection, otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.BackgroundColorBlendCollection.Remove(DevComponents.DotNetBar.BackgroundColorBlend)">
<summary>
Removes specified object from the collection.
</summary>
<param name="value"></param>
</member>
<member name="M:DevComponents.DotNetBar.BackgroundColorBlendCollection.CopyTo(DevComponents.DotNetBar.BackgroundColorBlend[],System.Int32)">
<summary>
Copies collection into the specified array.
</summary>
<param name="array">Array to copy collection to.</param>
<param name="index">Starting index.</param>
</member>
<member name="M:DevComponents.DotNetBar.BackgroundColorBlendCollection.CopyTo(DevComponents.DotNetBar.BackgroundColorBlend[])">
<summary>
Copies contained items to the BackgroundColorBlend array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="M:DevComponents.DotNetBar.BackgroundColorBlendCollection.GetColorBlend">
<summary>
Creates ColorBlend object based on the members of the collection. ColorBlend object will be valid only if all members of the collection
represents relative/percentage based color blends.
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.BackgroundColorBlendCollection.CopyFrom(DevComponents.DotNetBar.BackgroundColorBlendCollection)">
<summary>
Adds the BackgroundColorBlend objects from the collection.
</summary>
<param name="col">Collection to copy objects from</param>
</member>
<member name="M:DevComponents.DotNetBar.BackgroundColorBlendCollection.InitializeCollection(DevComponents.DotNetBar.BackgroundColorBlendCollection,System.Int32,System.Int32)">
<summary>
Initializes the collection with the two color blend.
</summary>
<param name="collection">Collection to initialize.</param>
<param name="backColor1">Start color.</param>
<param name="backColor2">End color.</param>
</member>
<member name="M:DevComponents.DotNetBar.BackgroundColorBlendCollection.InitializeCollection(DevComponents.DotNetBar.BackgroundColorBlendCollection,System.Drawing.Color,System.Drawing.Color)">
<summary>
Initializes the collection with the two color blend.
</summary>
<param name="collection">Collection to initialize.</param>
<param name="backColor1">Start color.</param>
<param name="backColor2">End color.</param>
</member>
<member name="M:DevComponents.DotNetBar.BackgroundColorBlendCollection.InitializeCollection(DevComponents.DotNetBar.BackgroundColorBlendCollection,System.Drawing.Color)">
<summary>
Initializes the collection with the two color blend.
</summary>
<param name="collection">Collection to initialize.</param>
<param name="backColor1">Solid Color</param>
</member>
<member name="P:DevComponents.DotNetBar.BackgroundColorBlendCollection.Item(System.Int32)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.BackgroundColorBlendConverter">
<summary>
Represents BackgroundColorBlend object converter.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.CancelIntValueEventArgs">
<summary>
Represents the cancelable event arguments with integer value.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.CancelIntValueEventArgs.NewValue">
<summary>
Gets or sets the new value that will be used if event is not canceled.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.CancelIntValueEventArgs.EventSource">
<summary>
Indicates the source of the event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.CancelIntValueEventHandler">
<summary>
Defines delegate for cancelable events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.CancelObjectValueEventArgs">
<summary>
Represents the cancelable event arguments with object value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CancelObjectValueEventArgs.#ctor(System.Object)">
<summary>
Initializes a new instance of the CancelObjectValueEventArgs class.
</summary>
<param name="o"></param>
</member>
<member name="F:DevComponents.DotNetBar.CancelObjectValueEventArgs.Data">
<summary>
Gets or sets the data connected to this event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.CancelObjectValueEventHandler">
<summary>
Defines delegate for cancelable events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.CheckBoxItemRenderEventArgs">
<summary>
Provides data for CheckBoxItem rendering events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.CheckBoxItemRenderEventArgs.Graphics">
<summary>
Gets or sets Graphics object group is rendered on.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.CheckBoxItemRenderEventArgs.CheckBoxItem">
<summary>
Gets or sets the reference to CheckBoxItem being rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.CheckBoxItemRenderEventArgs.ColorScheme">
<summary>
ColorScheme object that is used to provide colors for rendering check box item in legacy styles like Office 2003. Office 2007 style
uses color tables provided by renderers.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.CheckBoxItemRenderEventArgs.RightToLeft">
<summary>
Indicates whether item is in Right-To-Left environment.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.CheckBoxItemRenderEventArgs.Font">
<summary>
Gets or sets the text font.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.CheckBoxItemRenderEventArgs.ItemPaintArgs">
<summary>
Gets or sets the ItemPaintArgs reference.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.CheckBoxItemRenderEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.CheckBoxItem,DevComponents.DotNetBar.ColorScheme,System.Drawing.Font,System.Boolean)">
<summary>
Creates new instance of the object and provides default values.
</summary>
<param name="g">Reference to Graphics object</param>
<param name="item">Reference to CheckBoxItem</param>
<param name="cs">Reference to legacy ColorScheme</param>
<param name="f">Indicates the font for the text.</param>
<param name="rtl">Indicates whether item is in Right-To-Left environment.</param>
</member>
<member name="T:DevComponents.DotNetBar.ColorPreviewEventArgs">
<summary>
Defines the event arguments class for ColorPickerDropDown ColorPreview event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ColorPreviewEventArgs.Color">
<summary>
Gets the color that is being previewed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ColorPreviewEventArgs.ColorItem">
<summary>
Gets the ColorItem if available for the color being previewed. This property can be null if there is no ColorItem connected with the color.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorPreviewEventArgs.#ctor(System.Drawing.Color,DevComponents.DotNetBar.ColorItem)">
<summary>
Creates new instance of the object.
</summary>
<param name="c">Color being previewed.</param>
<param name="ci">ColorItem connected with the color.</param>
</member>
<member name="T:DevComponents.DotNetBar.ColorPreviewEventHandler">
<summary>
Defines delegate for ColorPreview event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Events.CancelableEventSourceHandler">
<summary>
Delegate for the CancelableEventSource event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Events.CancelableEventSourceArgs">
<summary>
Represents event arguments that provide information on source of action and allow canceling of action.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Events.CancelableEventSourceArgs.Cancel">
<summary>
Gets or sets whether event action will be canceled.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Events.CancelableEventSourceArgs.#ctor(DevComponents.DotNetBar.eEventSource)">
<summary>
Initializes a new instance of the EventSourceArgs class.
</summary>
<param name="source"></param>
</member>
<member name="M:DevComponents.DotNetBar.Events.CancelableEventSourceArgs.#ctor(DevComponents.DotNetBar.eEventSource,System.Boolean)">
<summary>
Initializes a new instance of the CancelableEventSourceArgs class.
</summary>
<param name="cancel"></param>
</member>
<member name="T:DevComponents.DotNetBar.NavPaneRenderEventArgs">
<summary>
Provides data for the Navigation Pane rendering events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.NavPaneRenderEventArgs.Graphics">
<summary>
Gets or sets Graphics object group is rendered on.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.NavPaneRenderEventArgs.Bounds">
<summary>
Gets or sets the rendering bounds.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavPaneRenderEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Creates new instance of the objects and initializes it with default values.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ProgressBarItemRenderEventArgs">
<summary>
Provides data for the ProgressBarItem rendering events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ProgressBarItemRenderEventArgs.Graphics">
<summary>
Gets or sets Graphics object group is rendered on.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ProgressBarItemRenderEventArgs.ProgressBarItem">
<summary>
Gets or sets the reference to ProgressBarItem being rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ProgressBarItemRenderEventArgs.RightToLeft">
<summary>
Indicates whether item is in Right-To-Left environment.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ProgressBarItemRenderEventArgs.Font">
<summary>
Gets or sets the text font.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ProgressBarItemRenderEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.ProgressBarItem,System.Drawing.Font,System.Boolean)">
<summary>
Creates new instance of the object and provides default values.
</summary>
<param name="g">Reference to Graphics object</param>
<param name="item">Reference to ProgressBarItem</param>
<param name="f">Indicates the font for the text.</param>
<param name="rtl">Indicates whether item is in Right-To-Left environment.</param>
</member>
<member name="T:DevComponents.DotNetBar.QatCustomizeDialogEventArgs">
<summary>
Provides data for the Quick Access Toolbar Customize dialog events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.QatCustomizeDialogEventArgs.Cancel">
<summary>
Gets or sets whether to cancel the current operation. When showing the dialog this allows to cancel the showing. When dialog is closed
it allows to cancel the changes made on customize dialog.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.QatCustomizeDialogEventArgs.Dialog">
<summary>
Gets or sets the reference to the form that is acting as dialog. You can set this value to your custom form to display it instead of
built-in dialog.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.QatCustomizeDialogEventArgs.#ctor(System.Windows.Forms.Form)">
<summary>
Creates new instance of the object and initializes it with default values.
</summary>
<param name="dialog">Reference to the dialog being used for customization.</param>
</member>
<member name="T:DevComponents.DotNetBar.QatCustomizeItemRendererEventArgs">
<summary>
Provides data for the Quick Access Toolbar Customize Item rendering events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.QatCustomizeItemRendererEventArgs.CustomizeItem">
<summary>
Gets or sets the reference to the item being rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.QatCustomizeItemRendererEventArgs.Graphics">
<summary>
Gets or sets the reference to graphics object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.QatCustomizeItemRendererEventArgs.#ctor(DevComponents.DotNetBar.QatCustomizeItem,System.Drawing.Graphics)">
<summary>
Creates new instance of the object and initializes it with default values.
</summary>
<param name="overflowItem">Reference to the customize item being rendered.</param>
<param name="g">Reference to the graphics object.</param>
</member>
<member name="T:DevComponents.DotNetBar.QatOverflowItemRendererEventArgs">
<summary>
Provides data for the Quick Access Toolbar Overflow item rendering events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.QatOverflowItemRendererEventArgs.OverflowItem">
<summary>
Gets or sets the reference to the item being rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.QatOverflowItemRendererEventArgs.Graphics">
<summary>
Gets or sets the reference to graphics object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.QatOverflowItemRendererEventArgs.#ctor(DevComponents.DotNetBar.QatOverflowItem,System.Drawing.Graphics)">
<summary>
Creates new instance of the object and initializes it with default values.
</summary>
<param name="overflowItem">Reference to the overflow item being rendered.</param>
<param name="g">Reference to the graphics object.</param>
</member>
<member name="T:DevComponents.DotNetBar.RibbonCustomizeEventArgs">
<summary>
Provides information for ribbon customization events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonCustomizeEventArgs.Cancel">
<summary>
Gets or sets whether the menu popup will be cancelled. Default value is false.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonCustomizeEventArgs.ContextObject">
<summary>
Gets or sets the reference to the object customize menu will be acting on. This could be an ButtonItem or any
BaseItem derived class as well as RibbonBar object.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonCustomizeEventArgs.PopupMenu">
<summary>
Gets or sets the reference to the popup menu that will be displayed. You can change the members of SubItems collection to add/remove/change
the context menu items that will be displayed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonCustomizeEventArgs.#ctor(System.Object,DevComponents.DotNetBar.BaseItem)">
<summary>
Creates new instance of the object and initializes it with default values.
</summary>
<param name="contextObject">Reference to context object.</param>
<param name="popupMenuItem">Reference to popup menu item if any.</param>
</member>
<member name="T:DevComponents.DotNetBar.MdiSystemItemRendererEventArgs">
<summary>
Provides data for the RenderMdiSystemitem event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.MdiSystemItemRendererEventArgs.Graphics">
<summary>
Gets or sets Graphics object group is rendered on.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.MdiSystemItemRendererEventArgs.MdiSystemItem">
<summary>
Gets or sets the reference to MdiSystemItem being rendered.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MdiSystemItemRendererEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.MDISystemItem)">
<summary>
Creates new instance of the class and initializes it with default values.
</summary>
<param name="g">Reference to graphics object.</param>
<param name="mdi">Reference to MdiSystemItem being rendered.</param>
</member>
<member name="T:DevComponents.DotNetBar.RibbonControlRendererEventArgs">
<summary>
Represents events arguments for the Ribbon Control rendering events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonControlRendererEventArgs.Graphics">
<summary>
Gets or sets Graphics control is rendered on.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonControlRendererEventArgs.RibbonControl">
<summary>
Gets the reference to RibbonControl instance being rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonControlRendererEventArgs.GlassEnabled">
<summary>
Gets whether Windows Vista Glass is enabled.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControlRendererEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.RibbonControl,System.Boolean)">
<summary>
Creates new instance and initializes it with the default values.
</summary>
<param name="g">Reference to Graphics object</param>
<param name="rc">Reference to RibbonControl</param>
</member>
<member name="F:DevComponents.DotNetBar.RibbonPopupCloseEventArgs.Cancel">
<summary>
Gets or sets whether the closing of the ribbon menu is canceled.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonPopupCloseEventArgs.Source">
<summary>
Gets or sets the source object that was cause of the menu closing. For example this could be reference to an item that was clicked.
Default value is null which indicates that there is no information about the object that caused closing available.
</summary>
<remarks>
<para>Following is the possible list of types that this property could be set to
and causes for closing:</para>
<list type="bullet">
<item>BaseItem - when an item is clicked the Source will be set to the instance
of the item that was clicked.</item>
<item>RibbonControl - when parent form RibbonControl is on loses the input
focus the Source will be set to the RibbonControl</item>
<item>RibbonTabItem - when tab menu is displayed and user clicks the same tab
to close the menu. The RibbonTabItem with EventSource=Code will be also set as
source when user double-clicks the tab to maximize the ribbon.</item>
<item>Any other type if RibbonControl.PopupRibbon method is called by your
code.</item>
</list>
</remarks>
</member>
<member name="F:DevComponents.DotNetBar.RibbonPopupCloseEventArgs.EventSource">
<summary>
Gets or sets the source of the event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPopupCloseEventArgs.#ctor(System.Object,DevComponents.DotNetBar.eEventSource)">
<summary>
Creates new instance of the object.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SideBarPanelItemRendererEventArgs.Graphics">
<summary>
Gets or sets the reference to graphics object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SideBarPanelItemRendererEventArgs.#ctor(DevComponents.DotNetBar.SideBarPanelItem,System.Drawing.Graphics)">
<summary>
Initializes a new instance of the SideBarPanelItemRendererEventArgs class.
</summary>
<param name="sideBarPanelItem"></param>
<param name="graphics"></param>
</member>
<member name="F:DevComponents.DotNetBar.SideBarRendererEventArgs.Graphics">
<summary>
Gets or sets the reference to graphics object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SideBarRendererEventArgs.#ctor(DevComponents.DotNetBar.SideBar,System.Drawing.Graphics)">
<summary>
Initializes a new instance of the SideBarRendererEventArgs class.
</summary>
<param name="sideBar"></param>
<param name="graphics"></param>
</member>
<member name="T:DevComponents.DotNetBar.SliderItemRendererEventArgs">
<summary>
Provides data for the Slider item rendering events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SliderItemRendererEventArgs.SliderItem">
<summary>
Gets or sets the reference to the item being rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SliderItemRendererEventArgs.Graphics">
<summary>
Gets or sets the reference to graphics object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SliderItemRendererEventArgs.#ctor(DevComponents.DotNetBar.SliderItem,System.Drawing.Graphics)">
<summary>
Creates new instance of the object and initializes it with default values.
</summary>
<param name="overflowItem">Reference to the Slider item being rendered.</param>
<param name="g">Reference to the graphics object.</param>
</member>
<member name="T:DevComponents.DotNetBar.FormCaptionPainter">
<summary>
Defines the abstract class for form caption painter.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.FormCaptionRendererEventArgs">
<summary>
Provides data for form caption rendering events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.FormCaptionRendererEventArgs.Graphics">
<summary>
Gets or sets the reference to graphics object.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.FormCaptionRendererEventArgs.Bounds">
<summary>
Gets or sets the caption bounds.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.FormCaptionRendererEventArgs.Form">
<summary>
Gets or sets the form caption is rendered for.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.FormCaptionRendererEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.Form)">
<summary>
Creates new instance of the class.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Office2007FormCaptionPainter">
<summary>
Defines the Office 2007 style form caption painter.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Office2007FormCaptionPainter.ColorTable">
<summary>
Gets or sets color table used by renderer.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SystemCaptionItem">
<summary>
Represents an item that provides system buttons displayed on form caption.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.MDISystemItem">
<summary>
Summary description for MDISystemItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MDISystemItem.Copy">
<summary>
Returns copy of CustomizeItem item
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MDISystemItem.GetButtonSize">
<summary>
Returns the single button size.
</summary>
<returns>Size of the button.</returns>
</member>
<member name="P:DevComponents.DotNetBar.MDISystemItem.IsSystemIcon">
<summary>
MDI System Item can render itself as either Simple icon with system drop down menu or set of
system buttons Minimize, Restore and Close. This item is rendered on the Bar that is designated as
Menu bar and when bar is used on MDI form and MDI Child form is maximized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SystemCaptionItem.GetButtonSize">
<summary>
Gets the default size of the system buttons.
</summary>
<returns></returns>
</member>
<member name="P:DevComponents.DotNetBar.SystemCaptionItem.CustomButtonSize">
<summary>
Gets or sets the custom button size to use instead of system determined size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SystemCaptionItem.MinimizeVisible">
<summary>
Gets or sets whether Minimize button is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SystemCaptionItem.RestoreMaximizeVisible">
<summary>
Gets or sets whether Restore/Maximize button is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SystemCaptionItem.CloseVisible">
<summary>
Gets or sets whether Close button is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SystemCaptionItem.HelpVisible">
<summary>
Gets or sets whether help button is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SystemCaptionItem.QueryIconOnPaint">
<summary>
Gets or sets whether Icon is queried when item is painted. Default value is false.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SystemCaptionItemRendererEventArgs">
<summary>
Provides data for the RenderSystemCaptionItem event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SystemCaptionItemRendererEventArgs.Graphics">
<summary>
Gets or sets Graphics control is rendered on.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SystemCaptionItemRendererEventArgs.SystemCaptionItem">
<summary>
Gets reference to SystemCaptionItem being rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SystemCaptionItemRendererEventArgs.GlassEnabled">
<summary>
Gets whether Windows Vista Glass is enabled.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SystemCaptionItemRendererEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.SystemCaptionItem,System.Boolean)">
<summary>
Creates new instance of the class and initializes it with default values.
</summary>
<param name="g">Reference to Graphics object.</param>
<param name="item">Reference to item being rendered.</param>
<param name="glassEnabled">Indicates whether Vista Glass effect is enabled.</param>
</member>
<member name="T:DevComponents.DotNetBar.Presentation.Line">
<summary>
Represents the line drawn between start and end point.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Presentation.Shape.Paint(DevComponents.DotNetBar.Presentation.ShapePaintInfo)">
<summary>
Paints the shape on canvas. If overriden base implementation must be called to paint any child shapes.
</summary>
<param name="p">Shape paint information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Presentation.Shape.GetLocation(System.Drawing.Rectangle)">
<summary>
Returns absolute location of the shape based on parent bounds.
</summary>
<param name="bounds">Parent absolute bounds.</param>
<returns>Absolute location of the shape</returns>
</member>
<member name="M:DevComponents.DotNetBar.Presentation.Shape.GetSize(System.Drawing.Rectangle)">
<summary>
Returns absolute size of the shape based on the parent bounds.
</summary>
<param name="bounds">Absolute parent bounds.</param>
<returns>Absolute size of the shape.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Presentation.Shape.GetBounds(System.Drawing.Rectangle)">
<summary>
Gets the absolute bounds of the shape.
</summary>
<param name="parentBounds">Parent bounds.</param>
<returns>Absolute bounds of the shape.</returns>
</member>
<member name="P:DevComponents.DotNetBar.Presentation.Shape.Location">
<summary>
Gets the location of the shape.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Presentation.Shape.Size">
<summary>
Gets the size of the shape.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Presentation.Shape.Padding">
<summary>
Gets the shape padding. Padding is the inside spacing between shape and it's child shapes.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Presentation.Shape.Children">
<summary>
Gets the collection of child shapes.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Presentation.Shape.SetChildClip">
<summary>
Gets or sets whether this shape will set the ShapePaintInfo.ChildContentClip property to the region that represents the inside content of the shape.
This is used when there is inside content of the shape which is not part of the shape itself and calling routine needs
access to the region that defines the shape inside bounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Presentation.Line.StartPoint">
<summary>
Gets the start point of the line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Presentation.Line.EndPoint">
<summary>
Gets the end point of the line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Presentation.Line.Border">
<summary>
Gets the line border.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Presentation.Location">
<summary>
Describes the shape location.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Presentation.Location.X">
<summary>
Gets or sets the X location of the shape relative to it's parent.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Presentation.Location.Y">
<summary>
Gets or sets the Y location of the shape relative to it's parent.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Presentation.Location.RelativeX">
<summary>
Gets or sets the relative X position.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Presentation.Location.RelativeY">
<summary>
Gets or sets the relative Y position.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Presentation.eRelativeLocation">
<summary>
Describes the relative location.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Presentation.PaddingInfo">
<summary>
Describes the padding for the shape. Padding is the space inside the shape and between it's child shapes.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Presentation.PaddingInfo.#ctor">
<summary>
Creates new instance of the class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Presentation.PaddingInfo.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates new instance of the class and initializes it with default values.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Presentation.PaddingInfo.Left">
<summary>
Gets or sets the left padding in pixels.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Presentation.PaddingInfo.Right">
<summary>
Gets or sets the right padding in pixels.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Presentation.PaddingInfo.Top">
<summary>
Gets or sets the top padding in pixels.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Presentation.PaddingInfo.Bottom">
<summary>
Gets or sets the bottom padding in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Presentation.PaddingInfo.HorizontalPadding">
<summary>
Gets the total horizontal padding.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Presentation.PaddingInfo.VerticalPadding">
<summary>
Gets the total vertical padding.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Presentation.Rectangle.PaintBorder(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints the border.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Presentation.Rectangle.PaintFill(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints the border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Presentation.Rectangle.CornerSize">
<summary>
Gets or sets the rounded corner size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Presentation.Rectangle.Border">
<summary>
Gets the shape border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Presentation.Rectangle.Fill">
<summary>
Gets the shape fill.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Presentation.ShapeBorder">
<summary>
Defines the shape border.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Presentation.ShapeBorder.Width">
<summary>
Gets or sets the border width in pixels.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Presentation.ShapeBorder.Color1">
<summary>
Gets or sets the border color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Presentation.ShapeBorder.Color2">
<summary>
Gets or sets the ending gradient border color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Presentation.ShapeBorder.GradientAngle">
<summary>
Gets or sets the gradient angle. Default value is 90.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Presentation.ShapeCollection.#ctor">
<summary>Creates new instance of the class.</summary>
</member>
<member name="M:DevComponents.DotNetBar.Presentation.ShapeCollection.Add(DevComponents.DotNetBar.Presentation.Shape)">
<summary>
Adds new object to the collection.
</summary>
<param name="Shape">Object to add.</param>
<returns>Index of newly added object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Presentation.ShapeCollection.Insert(System.Int32,DevComponents.DotNetBar.Presentation.Shape)">
<summary>
Inserts new object into the collection.
</summary>
<param name="index">Position of the object.</param>
<param name="value">Object to insert.</param>
</member>
<member name="M:DevComponents.DotNetBar.Presentation.ShapeCollection.IndexOf(DevComponents.DotNetBar.Presentation.Shape)">
<summary>
Returns index of the object inside of the collection.
</summary>
<param name="value">Reference to the object.</param>
<returns>Index of the object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Presentation.ShapeCollection.Contains(DevComponents.DotNetBar.Presentation.Shape)">
<summary>
Returns whether collection contains specified object.
</summary>
<param name="value">Object to look for.</param>
<returns>true if object is part of the collection, otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Presentation.ShapeCollection.Remove(DevComponents.DotNetBar.Presentation.Shape)">
<summary>
Removes specified object from the collection.
</summary>
<param name="value"></param>
</member>
<member name="M:DevComponents.DotNetBar.Presentation.ShapeCollection.CopyTo(DevComponents.DotNetBar.Presentation.Shape[],System.Int32)">
<summary>
Copies collection into the specified array.
</summary>
<param name="array">Array to copy collection to.</param>
<param name="index">Starting index.</param>
</member>
<member name="M:DevComponents.DotNetBar.Presentation.ShapeCollection.CopyTo(DevComponents.DotNetBar.Presentation.Shape[])">
<summary>
Copies contained items to the Shape array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="P:DevComponents.DotNetBar.Presentation.ShapeCollection.Item(System.Int32)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Presentation.ShapeFill.Color1">
<summary>
Gets or sets the starting fill color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Presentation.ShapeFill.Color2">
<summary>
Gets or sets the end fill color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Presentation.ShapeFill.GradientAngle">
<summary>
Gets or sets the gradient angle.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Presentation.ShapeFill.BackgroundColorBlend">
<summary>
Gets or sets the background color collection blend.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Presentation.ShapeFill.GradientType">
<summary>
Gets or sets the fill gradient type.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Presentation.ShapePath.PaintBorder(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints the border.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Presentation.ShapePath.PaintFill(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints the border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Presentation.ShapePath.Border">
<summary>
Gets the shape border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Presentation.ShapePath.Fill">
<summary>
Gets the shape fill.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Presentation.SizeInfo">
<summary>
Describes shape size.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Presentation.SizeInfo.Width">
<summary>
Gets or sets the width of the shape. When RelativeWidth is specified then number specifed here is added to the actual shape width.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Presentation.SizeInfo.Height">
<summary>
Gets or sets the height of the shape. When RelativeHeight is specified the number specified here is added to the actual shape height.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Presentation.SizeInfo.RelativeWidth">
<summary>
Gets or sets the relative shape width.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Presentation.SizeInfo.RelativeHeight">
<summary>
Gets or sets the relative shape height.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Properties.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Properties.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Properties.Resources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.ColorFactory">
<summary>
Represents the class used to create Color objects.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.ColorFactory.#ctor">
<summary>
Creates new instance of the object.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.ColorBlendFactory">
<summary>
Represents the class used to create Color objects blended based on base color.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.ColorBlendFactory.#ctor(System.Drawing.Color)">
<summary>
Creates new instance of the object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.ColorBlendFactory.GetColor(System.Int32)">
<summary>
Converts integer color representation to Color type.
</summary>
<param name="rgb">Color representation as 32-bit RGB value.</param>
<returns>Reference to Color object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.ColorBlendFactory.GetColor(System.Int32,System.Int32)">
<summary>
Converts integer color representation to Color type.
</summary>
<param name="rgb">Color representation as 32-bit RGB value.</param>
<returns>Reference to Color object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.ColorBlendFactory.GetColor(System.Drawing.Color)">
<summary>
Converts integer color representation to Color type.
</summary>
<param name="c">Color value.</param>
<returns>Reference to Color object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.ColorBlendFactory.GetColor(System.Int32,System.Drawing.Color)">
<summary>
Converts color representation to alpha Color type.
</summary>
<param name="c">Color value.</param>
<returns>Reference to Color object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.ColorBlendFactory.GetColor(System.String)">
<summary>
Converts integer color representation to Color type.
</summary>
<param name="c">Color value.</param>
<returns>Reference to Color object.</returns>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys">
<summary>
Defines the names for the ElementStyle.Class style classes.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.RibbonGalleryContainerKey">
<summary>
Gets the key for the GalleryContainer background style class.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.RibbonFileMenuContainerKey">
<summary>
Gets the key for the Ribbon File menu outer container background style class.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.RibbonFileMenuTwoColumnContainerKey">
<summary>
Gets the key for the Ribbon File menu two column container background style class.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.RibbonFileMenuColumnOneContainerKey">
<summary>
Gets the key for the Ribbon File menu first column container background style class.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.RibbonFileMenuColumnTwoContainerKey">
<summary>
Gets the key for the Ribbon File menu second column container background style class.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.RibbonFileMenuBottomContainerKey">
<summary>
Gets the key for the Ribbon File menu bottom container background style class.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.TextBoxBorderKey">
<summary>
Gets the key for the text box border style class.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.RichTextBoxBorderKey">
<summary>
Gets the key for the RichTextBox control border style class.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.ItemPanelKey">
<summary>
Gets the key for the ItemPanel style class.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.ListBoxAdvKey">
<summary>
Gets the key for the ListBoxAdv style class.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.DateTimeInputBackgroundKey">
<summary>
Gets the key for the date time input background style class.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.RibbonClientPanelKey">
<summary>
Gets the style key for the Ribbon client panel.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.ListViewBorderKey">
<summary>
Gets the style key for the ListView control border style.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.Office2007StatusBarBackground2Key">
<summary>
Gets the style key for the Office2007 Status Bar alternative background.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.TreeBorderKey">
<summary>
Gets the style key for the AdvTree control border and background.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.TreeColumnsHeaderKey">
<summary>
Gets the style key for the AdvTree control columns header.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.TreeNodesColumnsHeaderKey">
<summary>
Gets the style key for the AdvTree control columns header for the child nodes.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.TreeColumnKey">
<summary>
Gets the style key for the AdvTree control column.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.CrumbBarBackgroundKey">
<summary>
Gets the style key for the CrumbBar background style.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.DataGridViewBorderKey">
<summary>
Gets the key for the DataGridView border style class.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.DataGridViewNumericBorderKey">
<summary>
Gets the key for the DataGridViewNumeric border style class.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.DataGridViewDateTimeBorderKey">
<summary>
Gets the key for the DataGridViewDateTime border style class.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.DataGridViewIpAddressBorderKey">
<summary>
Gets the key for the DataGridViewIpAddress border style class.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.SlideOutButtonKey">
<summary>
Gets the key for SlidePanel slide-out button style.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.MetroTilePanelKey">
<summary>
Gets the key for the MetroTilePanel style class.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.MetroTileGroupTitleKey">
<summary>
Gets the key for Metro tile group container title class.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.MonthCalendarAdvKey">
<summary>
Gets the style key for the MonthCalendarAdv control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.ProgressStepsKey">
<summary>
Gets the style key for the ProgressSteps control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.SideNavStripKey">
<summary>
Gets the style key for the SideNavStrip control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.TabFormPanelKey">
<summary>
Gets the style key for the TabFormPanel control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.ToolboxGroupTitleKey">
<summary>
Gets the style key for the ToolboxGroup title.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.ToolboxGroupTitleMouseOverKey">
<summary>
Gets the style key for the ToolboxGroup title mouse over.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.ToolboxGroupExpandedTitleKey">
<summary>
Gets the style key for the ToolboxGroup title group expanded state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.ElementStyleClassKeys.ToolboxControlKey">
<summary>
Gets the style key for the ToolboxControl.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.GlobalManager">
<summary>
Represents a static class that maintains the global rendering properties for all controls when eRenderMode is set to global.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.GlobalManager.Renderer">
<summary>
Gets or sets the global renderer used by all controls that have RenderMode set to eRenderMode.Global.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.GradientColorTable">
<summary>
Represents complex gradient color table.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.GradientColorTable.#ctor">
<summary>
Creates new instance of the object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.GradientColorTable.#ctor(System.Drawing.Color)">
<summary>
Creates new instance of the object and initializes it with default values.
</summary>
<param name="color1">Start color</param>
<param name="color2">End color</param>
</member>
<member name="M:DevComponents.DotNetBar.GradientColorTable.#ctor(System.Int32,System.Int32)">
<summary>
Creates new instance of the object and initializes it with default values.
</summary>
<param name="color1">Start color</param>
<param name="color2">End color</param>
</member>
<member name="M:DevComponents.DotNetBar.GradientColorTable.#ctor(System.Drawing.Color,System.Drawing.Color)">
<summary>
Creates new instance of the object and initializes it with default values.
</summary>
<param name="color1">Start color</param>
<param name="color2">End color</param>
</member>
<member name="M:DevComponents.DotNetBar.GradientColorTable.#ctor(System.Int32,System.Int32,System.Int32)">
<summary>
Creates new instance of the object and initializes it with default values.
</summary>
<param name="color1">Start color</param>
<param name="color2">End color</param>
<param name="linearGradientAngle">Linear gradient angle</param>
</member>
<member name="M:DevComponents.DotNetBar.GradientColorTable.#ctor(System.Drawing.Color,System.Drawing.Color,System.Int32)">
<summary>
Creates new instance of the object and initializes it with default values.
</summary>
<param name="color1">Start color</param>
<param name="color2">End color</param>
<param name="linearGradientAngle">Linear gradient angle</param>
</member>
<member name="F:DevComponents.DotNetBar.GradientColorTable.Colors">
<summary>
Gets or sets the color collection blend that describes the gradient.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.GradientColorTable.GradientType">
<summary>
Gets or sets the gradient type.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.GradientColorTable.LinearGradientAngle">
<summary>
Gets or sets the linear gradient angle.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.GradientColorTable.Clone">
<summary>
Creates a copy of table.
</summary>
<returns>A copy.</returns>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.LinearGradientColorTable">
<summary>
Represents the color table of linear gradient.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.LinearGradientColorTable.#ctor">
<summary>
Creates new instance of the object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.LinearGradientColorTable.#ctor(System.Drawing.Color)">
<summary>
Creates new instance of the object.
</summary>
<param name="start">Start color.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.LinearGradientColorTable.#ctor(System.Drawing.Color,System.Drawing.Color)">
<summary>
Creates new instance of the object.
</summary>
<param name="start">Start color.</param>
<param name="end">End color.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.LinearGradientColorTable.#ctor(System.String,System.String)">
<summary>
Creates new instance of the object.
</summary>
<param name="start">Start color in hexadecimal representation like FFFFFF.</param>
<param name="end">End color in hexadecimal representation like FFFFFF.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.LinearGradientColorTable.#ctor(System.Int32)">
<summary>
Creates new instance of the object.
</summary>
<param name="start">Start color in 32-bit RGB representation.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.LinearGradientColorTable.#ctor(System.Int32,System.Int32)">
<summary>
Creates new instance of the object.
</summary>
<param name="start">Start color in 32-bit RGB representation.</param>
<param name="end">End color in 32-bit RGB representation.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.LinearGradientColorTable.#ctor(System.Int32,System.Int32,System.Int32)">
<summary>
Creates new instance of the object.
</summary>
<param name="start">Start color in 32-bit RGB representation.</param>
<param name="end">End color in 32-bit RGB representation.</param>
<param name="gradientAngle">Gradient angle.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.LinearGradientColorTable.#ctor(System.Drawing.Color,System.Drawing.Color,System.Int32)">
<summary>
Creates new instance of the object.
</summary>
<param name="start">Start color.</param>
<param name="end">End color.</param>
<param name="gradientAngle">Gradient angle.</param>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.LinearGradientColorTable.Start">
<summary>
Gets or sets the start color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.LinearGradientColorTable.End">
<summary>
Gets or sets the end color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.LinearGradientColorTable.GradientAngle">
<summary>
Gets or sets the gradient angle. Default value is 90.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.LinearGradientColorTable.IsEmpty">
<summary>
Gets whether both colors assigned are empty.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DockContainerItem">
<summary>
Item container for dockable windows.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DockContainerItem.#ctor">
<summary>
Creates new instance of ControlContainerItem and assigns item name.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DockContainerItem.#ctor(System.String)">
<summary>
Creates new instance of ControlContainerItem and assigns item name.
</summary>
<param name="sName">Item name.</param>
</member>
<member name="M:DevComponents.DotNetBar.DockContainerItem.#ctor(System.String,System.String)">
<summary>
Creates new instance of ControlContainerItem and assigns item name and item text.
</summary>
<param name="sName">Item name.</param>
<param name="ItemText">Item text.</param>
</member>
<member name="M:DevComponents.DotNetBar.DockContainerItem.Copy">
<summary>
Overriden. Returns the copy of the ControlContainerItem.
</summary>
<returns>Copy of the ControlContainerItem.</returns>
</member>
<member name="M:DevComponents.DotNetBar.DockContainerItem.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Overriden. Draws the item.
</summary>
<param name="g">Target Graphics object.</param>
</member>
<member name="M:DevComponents.DotNetBar.DockContainerItem.RecalcSize">
<summary>
Overriden. Recalculates the size of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DockContainerItem.GetFont">
<summary>
Returns the Font object to be used for drawing the item text.
</summary>
<returns>Font object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.DockContainerItem.OnAfterItemRemoved(DevComponents.DotNetBar.BaseItem,System.Int32)">
<summary>
Occurs after an item has been removed.
</summary>
<param name="item">Item being removed.</param>
</member>
<member name="M:DevComponents.DotNetBar.DockContainerItem.OnTextChanged">
<summary>
Occurs after text has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DockContainerItem.OnStyleChanged">
<summary>
Occurs after item visual style has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DockContainerItem.ContainerLoadControl">
<summary>
Occurs when container control needs to be assigned to the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.Control">
<summary>
Gets or sets the reference to the contained control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.Category">
<summary>
Returns category for this item. If item cannot be customzied using the
customize dialog category is empty string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.ClickAutoRepeat">
<summary>
Gets or sets whether Click event will be auto repeated when mouse button is kept pressed over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.ClickRepeatInterval">
<summary>
Gets or sets the auto-repeat interval for the click event when mouse button is kept pressed over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.Description">
<summary>
Gets or sets item description. This description is displayed in
Customize dialog to describe the item function in an application.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.ItemAlignment">
<summary>
Gets or sets item alignment inside the container.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.Shortcuts">
<summary>
Gets or sets the collection of shortcut keys associated with the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.ShowSubItems">
<summary>
Gets or sets whether item will display sub items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.Visible">
<summary>
Gets or sets a value indicating whether the item is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.Image">
<summary>
Specifies the Tab image. Image specified here is used only on Tab when there are multiple dock containers on Bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.ImageIndex">
<summary>
Specifies the index of the Tab image if ImageList is used. Image specified here is used only on Tab when there are multiple dock containers on Bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.Icon">
<summary>
Specifies the Button icon. Icons support multiple image sizes and alpha blending.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.PredefinedTabColor">
<summary>
Gets or sets the predefined tab color. Default value is eTabItemColor.Default which means that default color is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.Selected">
<summary>
Gets or sets whether tab that dock container item is on is selected.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.Width">
<summary>
Gets or sets the width of the item in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.Height">
<summary>
Gets or sets the height of the item in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.MinimumSize">
<summary>
Gets or sets the minimum size of the item. When used please note that layout logic for dockable windows expects that
all DockContainerItems that are in particular docking side have exact same minimum size. When setting this property it is
best to set the same value for all DockContainerItem instances you create.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.DefaultFloatingSize">
<summary>
Gets or sets the default floating size of the Bar that is containing this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.MinFormClientSize">
<summary>
Gets or sets the minimum size of the form client area that is tried to maintain when dockable window is resized.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.Stretch">
<summary>
Gets or sets whether the item expands automatically to fill out the remaining space inside the container. Applies to Items on stretchable, no-wrap Bars only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.CanCustomize">
<summary>
Gets or sets whether item can be customized by end user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.DesignMode">
<summary>
Returns whether item is in design mode or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.GlobalItem">
<summary>
Gets or sets whether item is global or not.
This flag is used to propagate property changes to all items with the same name.
Setting for example Visible property on the item that has GlobalItem set to true will
set visible property to the same value on all items with the same name.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.CanClose">
<summary>
Gets or sets the close button behavior on the host Bar. Default value is eDockContainerClose.Inherit which means that Bar.CanHide will control whether DockContainerItem can be closed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockContainerItem.Enabled">
<summary>
Gets or sets a value indicating whether the item is enabled.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eDockContainerClose">
<summary>
Specifies the behavior of the close button on host bar for the DockContainerItem.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eDockContainerClose.Inherit">
<summary>
Closing of the bar is inherited from the host bar. Bar.CanHide property will control close button visibility.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eDockContainerClose.Yes">
<summary>
Closing of the DockContainerItem is allowed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eDockContainerClose.No">
<summary>
Closing of DockContainerItem is not allowed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DockingHint">
<summary>
Summary description for DockingHint.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DockingHint.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DockingHint.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DockingHint.UpdateControlRegion">
<summary>
Update control region based on hint side
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DockingHint.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DockSiteInfo">
<summary>
Represent the docking information for an control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DockSiteInfo.DockSide">
<summary>
Control dock side.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DockSiteInfo.objDockSite">
<summary>
Control dock site.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DockSiteInfo.DockOffset">
<summary>
Docking offset.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DockSiteInfo.DockLine">
<summary>
Docking line.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DockSiteInfo.DockedWidth">
<summary>
Docked control width.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DockSiteInfo.DockedHeight">
<summary>
Docked control height.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DockSiteInfo.InsertPosition">
<summary>
Control position.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DockSiteInfo.UseOutline">
<summary>
Indicates whether to use outline or not
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DockSiteInfo.FullSizeDock">
<summary>
Indicates that dock site should change it's Z-Order so it maximizes the space it consumes as related to other dock sites.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DockSiteInfo.PartialSizeDock">
<summary>
Indicates that dock site should change it's Z-Order so it reduces the amount of space it consumes as related to other dock sites.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DockSiteInfo.DockSiteZOrderIndex">
<summary>
When either FullSizeDock or PartialSizeDock is set it indicates the new dock site Z-Order index.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DockSiteInfo.MouseOverBar">
<summary>
Returns the bar that mouse is placed over.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DockSiteInfo.MouseOverDockSide">
<summary>
Returns dock side the mouse is indicating user wants to dock bar at.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DockSiteInfo.LastRelativeDockToBar">
<summary>
Gets the last relative docked to bar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DockSiteInfo.LastRelativeDocumentId">
<summary>
Gets the last relative docked to document id.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DockSiteInfo.LastDockSiteSide">
<summary>
Returns side of last docked-to dock site.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DockSite">
<summary>
Dock Sites are created by DotNetBar control on each edge of the
DotNetBar container control and are used for docking purposes.
If Dock Site does not contain any controls it will be invisible.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DockSite.#ctor(System.Windows.Forms.DockStyle)">
<summary>
Creates new instance of DockSite object with specified dock style.
</summary>
<param name="DockSide">Specifies the position and manner in which a site is docked.</param>
</member>
<member name="M:DevComponents.DotNetBar.DockSite.#ctor">
<summary>
Creates new instance of DockSite object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DockSite.GetDocumentUIManager">
<summary>
Returns reference to the DocumentDockUIManager object used for interaction with document docking engine.
</summary>
<returns>Reference to the DocumentDockUIManager object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.DockSite.SaveLayout(System.Xml.XmlElement)">
<summary>
Saves layout for bars contained by dock site.
</summary>
<param name="xmlBars">Parent XmlElement.</param>
</member>
<member name="M:DevComponents.DotNetBar.DockSite.LoadLayout(System.Xml.XmlElement)">
<summary>
Loads layout for the bars.
</summary>
<param name="xmlBars">Parent XmlElement that was passed to SaveLayout method to save layout</param>
</member>
<member name="M:DevComponents.DotNetBar.DockSite.SuspendLayout">
<summary>
Suspends normal layout logic.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DockSite.ResumeLayout">
<summary>
Resumes normal layout logic.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DockSite.ResumeLayout(System.Boolean)">
<summary>
Resumes normal layout logic. Optionally forces an immediate layout of pending layout requests.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DockSite.AddBar(System.Windows.Forms.Control)">
<summary>
Docks the bar to the dock site.
</summary>
<param name="objBar">Bar to dock.</param>
</member>
<member name="M:DevComponents.DotNetBar.DockSite.AddBar(System.Windows.Forms.Control,System.Int32)">
<summary>
Dockes the Bar to dock site at specified position.
</summary>
<param name="objBar">Bar to dock.</param>
<param name="iInsertAtPosition">Bar insert position.</param>
</member>
<member name="M:DevComponents.DotNetBar.DockSite.RecalcLayout">
<summary>
Relayouts all docked controls in the site.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DockSite.GetDockSiteInfo(DevComponents.DotNetBar.IDockInfo,System.Int32,System.Int32)">
<summary>
Returns the docking information for current position.
</summary>
<param name="pDock">Controls docking provider.</param>
<param name="x">Horizontal assumed docking position.</param>
<param name="y">Vertical assumed docking position.</param>
<returns>Docking information.</returns>
</member>
<!-- Badly formed XML comment ignored for member "M:DevComponents.DotNetBar.DockSite.GetBarDockRectangle(DevComponents.DotNetBar.Bar,DevComponents.DotNetBar.DockSiteInfo@)" -->
<member name="M:DevComponents.DotNetBar.DockSite.RemoveBar(System.Windows.Forms.Control)">
<summary>
Undocks the control from the site.
</summary>
<param name="objBar">Control to undock.</param>
</member>
<member name="P:DevComponents.DotNetBar.DockSite.OptimizeLayoutRedraw">
<summary>
Gets or sets whether painting is disabled on dock site while layout of bars is performed. Default value is true.
You might need to set this property to false if you are expirience vide flashing while using DirectX video animation in Bar controls that are part of the
dock site.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockSite.BackgroundImagePosition">
<summary>
Specifies background image position when container is larger than image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockSite.BackgroundImageAlpha">
<summary>
Specifies the transparency of background image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockSite.BackColor2">
<summary>
Gets or sets the target gradient background color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockSite.BackColorGradientAngle">
<summary>
Gets or sets gradient fill angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockSite.Dock">
<summary>
Specifies the position and manner in which a site is docked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DockSite.Owner">
<summary>
Gets the reference to the DotNetBarManager that uses this dock site.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DocumentBarContainer">
<summary>
Represents class that is a bar container for document docking.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DocumentBaseContainer">
<summary>
Represents Document container base class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBaseContainer.#ctor">
<summary>
Creates new instance of the class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBaseContainer.Layout(System.Drawing.Rectangle)">
<summary>
Resizes the document within specified bounds.
</summary>
<param name="bounds">Area available for the document.</param>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBaseContainer.SetDisplayBounds(System.Drawing.Rectangle)">
<summary>
Sets the display bounds.
</summary>
<param name="r">New display bounds.</param>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBaseContainer.SetLayoutBounds(System.Drawing.Rectangle)">
<summary>
Sets layout bounds.
</summary>
<param name="r">New layout bounds.</param>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBaseContainer.ResetLayoutBounds">
<summary>
Resets the layout bounds for the document base container to the empty bounds.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBaseContainer.ResetDisplayBounds">
<summary>
Resets the layout bounds for the document base container to the empty bounds.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBaseContainer.SetParent(DevComponents.DotNetBar.DocumentBaseContainer)">
<summary>
Sets the parent document.
</summary>
<param name="parent">Parent container.</param>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBaseContainer.SetWidth(System.Int32)">
<summary>
Sets the width of the document.
</summary>
<param name="width">Width in pixels</param>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBaseContainer.SetHeight(System.Int32)">
<summary>
Sets the height of the document.
</summary>
<param name="height">Height in pixels.</param>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBaseContainer.OnSetWidth(DevComponents.DotNetBar.DocumentBaseContainer,System.Int32)">
<summary>
Occurs when width is being set on child document.
</summary>
<param name="doc">Reference document being changed</param>
<param name="width">Width in pixels</param>
<returns>True if width was applied by parent otherwise false</returns>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBaseContainer.OnSetHeight(DevComponents.DotNetBar.DocumentBaseContainer,System.Int32)">
<summary>
Occurs when height is being set on child document.
</summary>
<param name="doc">Reference document being changed</param>
<param name="height">Height in pixels</param>
<returns>True if width was applied by parent otherwise false</returns>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBaseContainer.UpdateScrollBounds(System.Int32,System.Int32,System.Boolean)">
<summary>
Updates bounds of the item in response to the scrolling of LayoutControl.
</summary>
<param name="xScroll"></param>
<param name="yScroll"></param>
</member>
<member name="P:DevComponents.DotNetBar.DocumentBaseContainer.Id">
<summary>
Gets the unique ID for the container.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DocumentBaseContainer.DisplayBounds">
<summary>
Returns actual display bounds of the document.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DocumentBaseContainer.LayoutBounds">
<summary>
Returns layout bounds of the document. Layout bounds are proposed bounds of the layout and might not be the same
as DisplayBounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DocumentBaseContainer.Parent">
<summary>
Gets the parent container.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DocumentBaseContainer.Visible">
<summary>
Gets whether document is visible or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DocumentBaseContainer.MinimumSize">
<summary>
Gets minimum size of the document.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBarContainer.#ctor">
<summary>
Creates new instance of the class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBarContainer.#ctor(DevComponents.DotNetBar.Bar)">
<summary>
Creates new instance of the class and initializes it with the Bar object.
</summary>
<param name="bar">Bar to contain on document.</param>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBarContainer.#ctor(DevComponents.DotNetBar.Bar,System.Int32,System.Int32)">
<summary>
Creates new instance of the class and initializes it with the bar and propesed width and height.
</summary>
<param name="bar">Bar to contain on document.</param>
<param name="proposedWidth">Proposed width of the document in pixels</param>
<param name="proposedHeight">Proposed height of the document in pixels</param>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBarContainer.Layout(System.Drawing.Rectangle)">
<summary>
Resizes document object.
</summary>
<param name="bounds">Available bounds for the document.</param>
</member>
<member name="P:DevComponents.DotNetBar.DocumentBarContainer.Bar">
<summary>
Gets or sets the bar that is contained by this document.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DocumentBarContainer.Visible">
<summary>
Gets whether document is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DocumentBarContainer.MinimumSize">
<summary>
Gets the minimum size of the document.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DocumentBarContainerConverter">
<summary>
Represents DocumentBarContainer converter.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBarContainerConverter.#ctor">
<summary>
Creates new instance of the class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBarContainerConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Checks whether conversion can be made to specified type.
</summary>
<param name="context">Context Information.</param>
<param name="destinationType">Destination type.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBarContainerConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts object to specified type.
</summary>
<param name="context">Context information.</param>
<param name="culture">Culture information.</param>
<param name="value">Object to convert.</param>
<param name="destinationType">Destination type.</param>
<returns>Object converted to destination type.</returns>
</member>
<member name="T:DevComponents.DotNetBar.DocumentBaseContainerCollection">
<summary>
Collection of DocumentBaseContainer objects.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBaseContainerCollection.Add(DevComponents.DotNetBar.DocumentBaseContainer)">
<summary>
Adds new object to the collection.
</summary>
<param name="tab">Object to add.</param>
<returns>Index of newly added object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBaseContainerCollection.AddRange(DevComponents.DotNetBar.DocumentBaseContainer[])">
<summary>
Adds new objects to the collection.
</summary>
<param name="documents">Array of documents to add.</param>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBaseContainerCollection.Insert(System.Int32,DevComponents.DotNetBar.DocumentBaseContainer)">
<summary>
Inserts new object into the collection.
</summary>
<param name="index">Position of the object.</param>
<param name="value">Object to insert.</param>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBaseContainerCollection.IndexOf(DevComponents.DotNetBar.DocumentBaseContainer)">
<summary>
Returns index of the object inside of the collection.
</summary>
<param name="value">Reference to the object.</param>
<returns>Index of the object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBaseContainerCollection.Contains(DevComponents.DotNetBar.DocumentBaseContainer)">
<summary>
Returns whether collection contains specified object.
</summary>
<param name="value">Object to look for.</param>
<returns>true if object is part of the collection, otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBaseContainerCollection.Remove(DevComponents.DotNetBar.DocumentBaseContainer)">
<summary>
Removes specified object from the collection.
</summary>
<param name="value"></param>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBaseContainerCollection.CopyTo(DevComponents.DotNetBar.DocumentBaseContainer[],System.Int32)">
<summary>
Copies collection into the specified array.
</summary>
<param name="array">Array to copy collection to.</param>
<param name="index">Starting index.</param>
</member>
<member name="M:DevComponents.DotNetBar.DocumentBaseContainerCollection.CopyTo(DevComponents.DotNetBar.DocumentBaseContainer[])">
<summary>
Copies contained items to the DocumentBaseContainer array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="P:DevComponents.DotNetBar.DocumentBaseContainerCollection.Item(System.Int32)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DocumentDockContainer">
<summary>
Represents Dock container with either horizontal or vertical layout.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DocumentDockContainer.#ctor(DevComponents.DotNetBar.DocumentBaseContainer[],DevComponents.DotNetBar.eOrientation)">
<summary>
Creates new instance of the object and initializes it with specified values.
</summary>
<param name="documents">Array of documents to host in this container.</param>
<param name="orientation">Container orientation</param>
</member>
<member name="M:DevComponents.DotNetBar.DocumentDockContainer.#ctor">
<summary>
Creates new instance of the object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DocumentDockContainer.Layout(System.Drawing.Rectangle)">
<summary>
Resizes the object inside of the given bounds.
</summary>
<param name="bounds">Available area.</param>
</member>
<member name="M:DevComponents.DotNetBar.DocumentDockContainer.OnSetWidth(DevComponents.DotNetBar.DocumentBaseContainer,System.Int32)">
<summary>
Occurs when width is being set on child document.
</summary>
<param name="doc">Reference document being changed</param>
<param name="width">Width in pixels</param>
<returns>True if width was applied by parent otherwise false</returns>
</member>
<member name="M:DevComponents.DotNetBar.DocumentDockContainer.OnSetHeight(DevComponents.DotNetBar.DocumentBaseContainer,System.Int32)">
<summary>
Occurs when height is being set on child document.
</summary>
<param name="doc">Reference document being changed</param>
<param name="height">Height in pixels</param>
<returns>True if width was applied by parent otherwise false</returns>
</member>
<member name="M:DevComponents.DotNetBar.DocumentDockContainer.GetBarDocumentContainer(DevComponents.DotNetBar.Bar)">
<summary>
Returns the DocumentBarContainer object for a given bar.
</summary>
<param name="bar">Bar to search for.</param>
<returns>Reference to container or null if bar could not be found</returns>
</member>
<member name="P:DevComponents.DotNetBar.DocumentDockContainer.Visible">
<summary>
Gets whether document is visible or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DocumentDockContainer.Orientation">
<summary>
Gets the orientation of the container. Default value is Horizontal.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DocumentDockContainer.Documents">
<summary>
Returns collection of the documents hosted by this container.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DocumentDockContainer.MinimumSize">
<summary>
Returns minimum size of the object.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DocumentDockContainer.SplitterSize">
<summary>
Gets or sets splitter size in pixels between the documents docking inside the container. Default value is 3.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DocumentDockContainer.RecordDocumentSize">
<summary>
Gets or sets whether the size of the documents is recorded once the layout is calculated.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DocumentDockContainer.OversizeEnabled">
<summary>
Indicates whether the container is allowed to exceed the parent control client size due to inner child windows minimum size constraints.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DocumentDockContainerConverter">
<summary>
Represents DocumentDockContainer object converter.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DocumentDockUIManager">
<summary>
Represents class that manages document docking UI interaction.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "M:DevComponents.DotNetBar.DocumentDockUIManager.GetDockPreviewRectangle(DevComponents.DotNetBar.Bar,DevComponents.DotNetBar.DockSiteInfo@)" -->
<member name="M:DevComponents.DotNetBar.DocumentDockUIManager.GetDocumentFromBar(DevComponents.DotNetBar.Bar)">
<summary>
Returns DocumentBaseContainer that holds the reference bar.
</summary>
<param name="bar">Bar to return document container for.</param>
<returns>Returns null if document container cannot be found or reference to the document container.</returns>
</member>
<member name="M:DevComponents.DotNetBar.DocumentDockUIManager.Dock(DevComponents.DotNetBar.Bar)">
<summary>
Docks specified bar by appending it to the container. Bar will be added according to the container's orientation.
</summary>
<param name="barToDock">Bar to dock.</param>
</member>
<member name="M:DevComponents.DotNetBar.DocumentDockUIManager.Dock(DevComponents.DotNetBar.Bar,DevComponents.DotNetBar.Bar,DevComponents.DotNetBar.eDockSide)">
<summary>
Docks specified bar by appending it to the container. Bar will be added according to the container's orientation.
</summary>
<param name="barToDock">Bar to dock.</param>
<param name="dockSide">Side to dock bar at.</param>
</member>
<member name="M:DevComponents.DotNetBar.DocumentDockUIManager.AdjustContainerSize(DevComponents.DotNetBar.Bar,System.Boolean)">
<summary>
Adjusts the size of the dock container if needed after a bar has been docked to it.
</summary>
<param name="barToDock">Bar object that has been docked.</param>
<param name="visibleChanged">Indicates that bar was already docked but its Visible property has changed</param>
</member>
<member name="M:DevComponents.DotNetBar.DocumentDockUIManager.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
Processes OnMouseMove events from DockSite. This routine assumes that mouse messages are received only when mouse is actually over
the dock site and not containing bars. This is significant because it will receive messages only if mouse is over the splitter
space between bars.
</summary>
<param name="e">Mouse event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.DocumentDockUIManager.GetContainerFromRoot(System.Int32,System.Int32)">
<summary>
Returns reference to the DocumentDockContainer that contains specified coordinates. Searches through the Documents collection first.
</summary>
<param name="x">X coordinate</param>
<param name="y">Y coordinate</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.DocumentDockUIManager.SetBarWidth(DevComponents.DotNetBar.Bar,System.Int32)">
<summary>
Sets the width of the bar that is managed by this document layout. Width can be set only if parent container has
Horizontal orientation. Note that bar minimum size is respected by this method and
it will be enforced. If width is less than minimum width bar's width will be set to minimum width.
</summary>
<param name="bar">Reference to bar object.</param>
<param name="width">Desired width.</param>
</member>
<member name="M:DevComponents.DotNetBar.DocumentDockUIManager.SetBarHeight(DevComponents.DotNetBar.Bar,System.Int32)">
<summary>
Sets the height of the bar that is managed by this document layout. Height can be set only if parent container has
vertical orientation. Note that bar minimum size is respected by this method and
it will be enforced. If height is less than minimum height bar's height will be set to minimum height.
</summary>
<param name="bar">Reference to bar object.</param>
<param name="height">Desired height.</param>
</member>
<member name="P:DevComponents.DotNetBar.DocumentDockUIManager.RootDocumentDockContainer">
<summary>
Gets or sets the root document dock container object.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DocumentDockUIManager.SplitterWidth">
<summary>
Gets or sets the splitter width used for mouse hit-testing.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DocumentDockUIManager.Container">
<summary>
Gets or sets the container of the document.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DocumentDockUIManager.IsResizingDocument">
<summary>
Gets whether document/bar is being resized.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DotNetBarManager">
<summary>
Represent the menu, toolbar and popup menu structure for the form.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.OnBarStateChanged(DevComponents.DotNetBar.BarStateChangedEventArgs)">
<summary>
Raises BarStateChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.#ctor">
<summary>
Creates new instance of DotNetBarManager.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.#ctor(System.ComponentModel.IContainer)">
<summary>
Creates new instance of DotNetBarManager.
</summary>
<param name="cont">Container.</param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.Dock(DevComponents.DotNetBar.Bar,DevComponents.DotNetBar.eDockSide)">
<summary>
Dock bar to the specified side of the form.
</summary>
<param name="barToDock">Bar to dock.</param>
<param name="side">Side to dock bar to.</param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.Dock(DevComponents.DotNetBar.Bar,DevComponents.DotNetBar.Bar,DevComponents.DotNetBar.eDockSide)">
<summary>
Docks the bar to the specified side of the reference bar.
</summary>
<param name="barToDock">Bar to dock.</param>
<param name="referenceBar">Reference bar.</param>
<param name="dockToReferenceBarSide">Side of the reference bar to dock the bar to.</param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.Dock(DevComponents.DotNetBar.DockContainerItem,DevComponents.DotNetBar.eDockSide)">
<summary>
Docks specified DockContainerItem.
</summary>
<param name="itemToDock">DockContainerItem to dock.</param>
<param name="side">Side to dock item to.</param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.Dock(DevComponents.DotNetBar.DockContainerItem,DevComponents.DotNetBar.Bar,DevComponents.DotNetBar.eDockSide)">
<summary>
Docks specified DockContainerItem.
</summary>
<param name="itemToDock">DockContainerItem to dock.</param>
<param name="referenceBar">Reference bar.</param>
<param name="dockToReferenceBarSide">Side to dock item to.</param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.Dock(DevComponents.DotNetBar.DockContainerItem,DevComponents.DotNetBar.Bar,DevComponents.DotNetBar.eDockSide,System.Drawing.Point)">
<summary>
Docks specified DockContainerItem.
</summary>
<param name="itemToDock">DockContainerItem to dock.</param>
<param name="referenceBar">Reference bar.</param>
<param name="dockToReferenceBarSide">Side to dock item to.</param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.Float(DevComponents.DotNetBar.DockContainerItem)">
<summary>
Tear-off specified DockContainerItem and float it.
</summary>
<param name="itemToFloat">Item to float.</param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.Float(DevComponents.DotNetBar.DockContainerItem,System.Drawing.Point)">
<summary>
Tear-off specified DockContainerItem and float it.
</summary>
<param name="itemToFloat">Item to float.</param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.Float(DevComponents.DotNetBar.Bar)">
<summary>
Make specified bar floating bar, i.e. undock it and place in floating window.
</summary>
<param name="barToFloat">Bar to float.</param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.Float(DevComponents.DotNetBar.Bar,System.Drawing.Point)">
<summary>
Make specified bar floating bar, i.e. undock it and place in floating window and specified location on the screen.
</summary>
<param name="barToFloat">Bar to float.</param>
<param name="initialFloatingLocation">Screen coordinates for the floating bar.</param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.OnActiveDockContainerChanged(DevComponents.DotNetBar.ActiveDockContainerChangedEventArgs)">
<summary>
Raises the ActiveDockContainerChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.OnItemDoubleClick(DevComponents.DotNetBar.BaseItem,System.Windows.Forms.MouseEventArgs)">
<summary>
Invokes ItemDoubleClick event.
</summary>
<param name="objItem">Reference to item double-clicked</param>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.GetItemBar(DevComponents.DotNetBar.BaseItem)">
<summary>
Returns the Bar object that contains the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.ShouldSerializeMinimumClientSize">
<summary>
Returns whether property should be serialized by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.RemoveBar(DevComponents.DotNetBar.Bar)">
<summary>
Use to remove bar from DotNetBar control. Bar will be undocked if it is docked and
removed from all internal collections.
</summary>
<param name="bar">Bar to remove.</param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.ForceDefinitionLoad">
<summary>
Forces the loading of the definition specified in DefinitionName property.
By default definition is loaded after parent form handle has been created and form is loaded.
However, under certain circumstances you might need DotNetBar to load definition right away so
you can access bars and items. We recommend moving the code to Form Load event and leaving the loading process for DotNetBar definition as is.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.LoadDefinition(System.String)">
<summary>
Loads DotNetBar definition from file.
</summary>
<param name="FileName">File that contains DotNetBar defintion.</param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.DevComponents#DotNetBar#ICustomSerialization#InvokeSerializeItem(DevComponents.DotNetBar.SerializeItemEventArgs)">
<summary>
Invokes SerializeItem event.
</summary>
<param name="e">Provides data for the event.</param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.DevComponents#DotNetBar#ICustomSerialization#InvokeDeserializeItem(DevComponents.DotNetBar.SerializeItemEventArgs)">
<summary>
Invokes DeserializeItem event.
</summary>
<param name="e">Provides data for the event.</param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.SaveDefinition(System.String)">
<summary>
Saves current DotNetBar definition and state to the file.
</summary>
<param name="FileName">File name.</param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.LoadLayout(System.String)">
<summary>
Loads DotNetBar layout from file.
</summary>
<param name="FileName">File that contains DotNetBar defintion.</param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.SaveLayout(System.String)">
<summary>
Saves current DotNetBar layout to the file.
</summary>
<param name="FileName">File name.</param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.Customize">
<summary>
Invokes the DotNetBar Customize dialog.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.GetItems(System.String)">
<summary>
Returns the collection of items with the specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.GetItems(System.String,System.Boolean)">
<summary>
Returns the collection of items with the specified name. This method search for items on all Bars, Items collection and ContextMenus collection.
The order of search is as follows. All Bars from Bars collections are searched, then Items collection and then ContextMenus collection.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="FullSearch">Specifies that search will be performed through all DotNetBar collections.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.GetItems(System.String,System.Type)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="itemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.GetItems(System.String,System.Type,System.Boolean)">
<summary>
Returns the collection of items with the specified name and type. This method will searchs for items on all Bars, Items collection and ContextMenus collection.
The order of search is as follows. All Bars from Bars collections are searced, then Items collection and then ContextMenus collection.
</summary>
<param name="itemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<param name="fullSearch">Specifies that full search (through all collections) will be performed.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.GetItems(System.String,System.Type,System.Boolean,System.Boolean)">
<summary>
Returns the collection of items with the specified name and type. This method will searchs for items on all Bars, Items collection and ContextMenus collection.
The order of search is as follows. All Bars from Bars collections are searced, then Items collection and then ContextMenus collection.
</summary>
<param name="itemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<param name="fullSearch">Specifies that full search (through all collections) will be performed.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.GetItem(System.String)">
<summary>
Returns the first item that matches specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.GetItem(System.String,System.Boolean)">
<summary>
Returns the first item that matches specified name with the option to indicate full search of all collections.
The order of search is as follows. All Bars from Bars collections are searced, then Items collection and then ContextMenus collection.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="FullSearch">Specifies that all collection will be searched.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.BeginModalDisplay">
<summary>
Called before modal dialog is displayed using ShowModal() method.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.EndModalDisplay">
<summary>
Called after modal dialog is closed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.CustomizeClosing">
<summary>
You must call this procedure if you are implementing custom customize dialog box after your dialog box is closed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.RegisterPopup(DevComponents.DotNetBar.PopupItem)">
<summary>
Registers popup item with DotNetBar. Use this function carefully. The registration is required only if Popup item is created completely from code and it is not added to any DotNetBarManager collection.
</summary>
<param name="objPopup"></param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.UnregisterPopup(DevComponents.DotNetBar.PopupItem)">
<summary>
Un-registers specified popup. See RegisterPopup for more information.
</summary>
<param name="objPopup"></param>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.ResetColorScheme">
<summary>
Resets the ColorScheme property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.MdiChildActivated">
<summary>
Informs the DotNetBarManager that Mdi Child for has been activated. Calling this method is needed only under special
conditions where MDI child system items do not show.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DotNetBarManager.ResetUsageData">
<summary>
Resets all usage data collected by DotNetBar in relation to the Personalized menus.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.BarStateChanged">
<summary>
Occurs after bar registered with DotNetBarManager state has changed, like selected dock tab has changed, bar has closed, bar has been docked or undocked etc.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.ActiveDockContainerChanged">
<summary>
Occurs when focused (active) DockContainerItem has changed. You can use ActiveDockContainerItem property to get reference to currently focused DockContainerItem.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.CustomizeContextMenu">
<summary>
Occurs just before customize popup menu is shown.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.ItemClick">
<summary>
Occurs when Item is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.ItemDoubleClick">
<summary>
Occurs when Item is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.PopupContainerLoad">
<summary>
Occurs when popup of type container is loading.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.PopupContainerUnload">
<summary>
Occurs when popup of type container is unloading.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.PopupOpen">
<summary>
Occurs when popup item is about to open.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.PopupClose">
<summary>
Occurs when popup item is closing.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.PopupShowing">
<summary>
Occurs just before popup window is shown.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.ExpandedChange">
<summary>
Occurs when Item Expanded property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.BarDock">
<summary>
Occurs when Bar is docked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.BarUndock">
<summary>
Occurs when Bar is Undocked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.BeforeDockTabDisplay">
<summary>
Occurs before dock tab is displayed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.AutoHideChanged">
<summary>
Occurs when Bar auto-hide state has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.MouseDown">
<summary>
Occurs when mouse button is pressed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.MouseUp">
<summary>
Occurs when mouse button is released.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.MouseEnter">
<summary>
Occurs when mouse enters the item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.MouseLeave">
<summary>
Occurs when mouse leaves the item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.MouseMove">
<summary>
Occurs when mouse moves over the item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.MouseHover">
<summary>
Occurs when mouse remains still inside an item for an amount of time.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.LostFocus">
<summary>
Occurs when item loses input focus.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.GotFocus">
<summary>
Occurs when item receives input focus.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.UserCustomize">
<summary>
Occurs when user changes the item position, removes the item, adds new item or creates new bar.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.DefinitionLoaded">
<summary>
Occurs after DotNetBar definition is loaded.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.ResetDefinition">
<summary>
Occurs when users wants to reset the DotNetBar to default state.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.ItemRemoved">
<summary>
Occurs after an Item is removed from SubItemsCollection.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.ItemAdded">
<summary>
Occurs after an Item has been added to the SubItemsCollection.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.ContainerLoadControl">
<summary>
Occurs when ControlContainerControl is created and contained control is needed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.ItemTextChanged">
<summary>
Occurs when Text property of an Item has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.EnterCustomize">
<summary>
Occurs when Customize Dialog is about to be shown.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.ExitCustomize">
<summary>
Occurs when Customize Dialog is closed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.ContainerControlSerialize">
<summary>
Use this event if you want to serialize the hosted control state directly into the DotNetBar definition file.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.ContainerControlDeserialize">
<summary>
Use this event if you want to deserialize the hosted control state directly from the DotNetBar definition file.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.DockTabChange">
<summary>
Occurs when current Dock tab has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.BarClosing">
<summary>
Occurs when Bar is about to be closed as a result of user clicking the Close button on the bar.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.AutoHideDisplay">
<summary>
Occurs when Bar in auto-hide state is about to be displayed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.CustomizeStartItemDrag">
<summary>
Occurs when user starts to drag the item when customize dialog is open.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.BarTearOff">
<summary>
Occurs when users Tears-off the Tab from the Bar and new Bar is created as result of that action.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.LocalizeString">
<summary>
Occurs when DotNetBar is looking for translated text for one of the internal text that are
displayed on menus, toolbars and customize forms. You need to set Handled=true if you want
your custom text to be used instead of the built-in system value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.OptionGroupChanging">
<summary>
Occurs before an item in option group is checked and provides opportunity to cancel the change.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.ToolTipShowing">
<summary>
Occurs before tooltip for an item is shown. Sender could be the BaseItem or derived class for which tooltip is being displayed or it could be a ToolTip object itself it tooltip is not displayed for any item in particular.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.DockTabClosing">
<summary>
Occurs on dockable bars when end-user attempts to close the individual DockContainerItem objects using system buttons on dock tab.
Event can be canceled by setting the Cancel property of event arguments to true. This even will occur only after user presses the
X button on tab that is displaying the dockable windows/documents.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.DockTabClosed">
<summary>
Occurs on dockable bars after DockContainerItem is closed. This action cannot be cancelled.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.SerializeItem">
<summary>
Occurs after an item has been serialized to XmlElement and provides you with opportunity to add any custom data
to serialized XML. This allows you to serialize any data with the item and load it back up in DeserializeItem event.
</summary>
<remarks>
<para>To serialize custom data to XML definition control creates handle this event and use CustomXmlElement
property on SerializeItemEventArgs to add new nodes or set attributes with custom data you want saved.</para>
</remarks>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.DeserializeItem">
<summary>
Occurs after an item has been de-serialized (load) from XmlElement and provides you with opportunity to load any custom data
you have serialized during SerializeItem event.
</summary>
<remarks>
<para>To de-serialize custom data from XML definition handle this event and use CustomXmlElement
property on SerializeItemEventArgs to retrive any data you saved in SerializeItem event.</para>
</remarks>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.TextBoxItemTextChanged">
<summary>
Occurs when TextBoxItem input text has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.ColorPickerSelectedColorChanged">
<summary>
Occurs when color on ColorPickerDropDown is choosen from drop-down color picker or from Custom Colors dialog box. Selected color can be accessed through SelectedColor property.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.DotNetBarManager.ButtonCheckedChanged">
<summary>
Occurs when Checked property of an button has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.DockSplitterSize">
<summary>
Gets or sets docking splitter size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.MouseDockingEnabled">
<summary>
Indicates whether mouse drag and drop for docking is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.EnableDockCtrlTabKey">
<summary>
Indicates whether Ctrl+Tab keys cycles the currently selected dock tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.GlobalContextMenuBar">
<summary>
Gets or sets the Context menu bar associated with the this control which is used as part of Global Items feature. The context menu
bar assigned here will be used to search for the items with the same Name or GlobalName property so global properties can be propagated when changed.
You should assign this property to enable the Global Items feature to reach your ContextMenuBar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.ParentForm">
<summary>
Gets or sets the form DotNetBarManager is attached to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.ParentUserControl">
<summary>
Gets or sets the user control DotNetBarManager is parented to when on user control and providing popups only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.ActiveDockContainerItem">
<summary>
Gets currently focused (active) DockContainerItem. Note that only if DockContainer Item has input focus it will be consider active
so there can only be one active DockContainerItem at a time.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.IsDisposed">
<summary>
Gets whether component has been disposed.
</summary>
<value>
</value>
<remarks>
Disposed will return true after Dispose method has been executed.
</remarks>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.DisposeGCCollect">
<summary>
Gets or sets whether GC.Collect() is called when this component is disposed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.MinimumClientSize">
<summary>
Gets or sets the minimum client size that docking windows will try to maintain for the client area (not occupied by dock windows).
Note that this value is suggested value and cannot be observed when form is resized below the minimum size required for the given layout.
Default value is 48x48 pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.DockingHintsEnabled">
<summary>
Indicates whether DotNetBar provides docking hints for easy docking of bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.EnableFullSizeDock">
<summary>
Gets or sets whether user can control how first bar is docked when using docking hints (default value is True). When enabled (default value) placing the mouse over the middle
docking hint will dock the bar at partial size and using the far docking hint will dock bar at full size. Full size indicates that dock site which hosts the bar
consumes all the space of the parent form while partial size indicates that dock site consumes the full size minus the space of the other dock sites. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.ApplyDocumentBarStyle">
<summary>
Gets or sets whether uniform styling is applied to bars docked as documents. Default value is true which means
that bar that will be docked as document will have it's style changed so it fits in default document styling.
Such bars will have GrabHandleStyle=None, DockTabAlignment=Top and AlwaysDisplayDockTab=true.
Set this property to false to have bars keep these properties once they are docked as documents.
Value of these properties will be returned back to the default values once bar is not docked as document.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.Bars">
<summary>
Gets the collection of the Bar objects associated with DotNetBarManager.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.IsDefinitionLoaded">
<summary>
Gets whether definition is loaded.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.Items">
<summary>
Gets the collection of all items that are used for end-user design-time customization.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.ContextMenus">
<summary>
Gets the collection of all popup menus managed by DotNetBarManager.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.DispatchShortcuts">
<summary>
Indicates whether shortucts handled by items are dispatched to the next handler or control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.AutoDispatchShortcuts">
<summary>
Gets or sets the collection of shortcut keys that are automatically dispatched to the control that has focus even if they are handled and used by one of the items. This gives you fine control over which shortcuts are passed through the system and which ones are marked as handled by DotNetBar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.ShowResetButton">
<summary>
Indicates whether Reset buttons is shown that allows end-user to reset the toolbar state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.Images">
<summary>
ImageList for images used on Items. Images specified here will always be used on menu-items and are by default used on all Bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.ImagesMedium">
<summary>
ImageList for medium-sized images used on Items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.ImagesLarge">
<summary>
ImageList for large-sized images used on Items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.SuspendLayout">
<summary>
Suspends the bar layout for all bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.MenuDropShadow">
<summary>
Specifes whether drop shadow is displayed for Menus and pop-up Bars. OfficeXP Style only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.AlphaBlendShadow">
<summary>
Specifes whether to use Alpha-Blending shadows for pop-up items if supported by target OS. Disabling Alpha-Blended shadows can improve performance.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.DisabledImagesGrayScale">
<summary>
Gets or sets whether gray-scale algorithm is used to create automatic gray-scale images. Default is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.UseHook">
<summary>
Gets or sets whether hooks are used for internal DotNetBar system functionality. Using hooks is recommended only if DotNetBar is used in hybrid environments like Visual Studio designers or IE.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.DevComponents#DotNetBar#ICustomSerialization#HasSerializeItemHandlers">
<summary>
Gets whether any handlers have been defined for SerializeItem event. If no handles have been defined to optimize performance SerializeItem event will not be attempted to fire.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.DevComponents#DotNetBar#ICustomSerialization#HasDeserializeItemHandlers">
<summary>
Gets whether any handlers have been defined for DeserializeItem event. If no handles have been defined to optimize performance DeserializeItem event will not be attempted to fire.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.IsLoadingDefinition">
<summary>
Returns whether definition is being currently loaded.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.IncludeDockDocumentsInDefinition">
<summary>
Gets or sets whether document bars are saved in definition file. Default value is false which means that document
bars are not saved as part of definition file. You can set this value to true to save document bar to definition file and
be able to load them.
</summary>
<remarks>
Note that by default Document bars that you created during design-time get member
variables assigned to them by Windows Forms designer. If you decide to save definition
of such bars and load definition back member variables will not point to correct bar
instances since loading definition recreates all bars from scratch. You should always
use Bars collection to access bars when saving and loading definitions.
</remarks>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.Definition">
<summary>
Gets or sets the DotNetBar definition string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.LayoutDefinition">
<summary>
Gets or sets the DotNetBar layout string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.IsLoadingLayout">
<summary>
Gets whether DotNetBarManager is loading layout.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.UseCustomCustomizeDialog">
<summary>
Specifies that custom customize dialog will be used. Use EnterCustomize event to show your custom dialog box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.ToolbarTopDockSite">
<summary>
Gets or sets the toolbar Top dock site used by DotNetBarManager.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.ToolbarBottomDockSite">
<summary>
Gets or sets the toolbar Bottom dock site used by DotNetBarManager.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.ToolbarLeftDockSite">
<summary>
Gets or sets the toolbar Left dock site used by DotNetBarManager.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.ToolbarRightDockSite">
<summary>
Gets or sets the toolbar Right dock site used by DotNetBarManager.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.TopDockSite">
<summary>
Gets or sets the Top dock site used by DotNetBarManager.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.BottomDockSite">
<summary>
Gets or sets the Bottom dock site used by DotNetBarManager.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.LeftDockSite">
<summary>
Gets or sets the Left dock site used by DotNetBarManager.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.RightDockSite">
<summary>
Gets or sets the Right dock site used by DotNetBarManager.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.FillDockSite">
<summary>
Gets or sets the Fill dock site used by DotNetBarManager. Fill dock site is most commonly used as dock site
for document type docking.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.ThemeAware">
<summary>
Specifies whether bars are drawn using Themes when running on OS that supports themes like Windows XP.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.Style">
<summary>
Sets the style of all items in DotNetBar Manager.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.ColorScheme">
<summary>
Gets or sets Color scheme for all bars. Note that you need to set UseGlobalColorScheme to true to indicate
that this ColorScheme object will be used on all bars managed by this instance of DotNetBarManager.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.UseGlobalColorScheme">
<summary>
Gets or sets whether ColorScheme object on DotNetBarManager is used as a default ColorScheme for all bars managed by DotNetBarManager.
Default value is false which indicates that ColorScheme on each Bar is used.
When set to true each bar will use the ColorScheme settings from DotNetBarManager and it will ignore any
setting on the Bar.ColorScheme object.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.AlwaysShowFullMenus">
<summary>
Indicates whether the Personalized menu setting is ignored and full menus are always shown.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.AlwaysDisplayKeyAccelerators">
<summary>
Gets or sets whether accelerator letters for menu or toolbar commands are underlined regardless of
current Windows settings. Accelerator keys allow easy access to menu commands by using
Alt + choosen key (letter). Default value is false which indicates that system setting is used
to determine whether accelerator letters are underlined. Setting this property to true
will always display accelerator letter underlined.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.IsThemeActive">
<summary>
Returns whether theme support is enabled on the OS that supports themes like Windows XP.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.AllowUserBarCustomize">
<summary>
Indicates whether the CustomizeItem (allows toolbar customization) is added for new Bars end users are creating.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.IgnoreF10Key">
<summary>
Gets or sets whether DotNetBar ignores the F10 key which when pressed sets the focus to menu bar
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.ShowFullMenusOnHover">
<summary>
Indicates whether the items that are not recenly used are shown after mouse hovers over the expand button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.ShowToolTips">
<summary>
Indicates whether Tooltips are shown on Bars and menus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.ShowShortcutKeysInToolTips">
<summary>
Indicates whether item shortcut is displayed in Tooltips.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.PopupAnimation">
<summary>
Specifies the pop-up animation style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.MdiSystemItemVisible">
<summary>
Specifies whether the MDI system buttons are displayed in menu bar when MDI Child window is maximized.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.HideMdiSystemMenu">
<summary>
Gets or sets whether MDI Child form System Menu is hidden. System menu is displayed in MDI form menu area when form is maximized. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.ShowCustomizeContextMenu">
<summary>
Gets or sets whether customize context menu is shown on all bars or dock sites.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.DotNetBarManager.ActivateOnLayoutLoad">
<summary>
Gets or sets whether parent form is activated when dock window layout is loaded.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DotNetBarManager.CustomizeContextMenuEventHandler">
<summary>
Represents delegate for ContextMenu events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DotNetBarManager.ItemRemovedEventHandler">
<summary>
Represents the method that will handle the ItemRemoved event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DotNetBarManager.DockTabChangeEventHandler">
<summary>
Defines the delegate for DockTabChange event
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DotNetBarManager.BarClosingEventHandler">
<summary>
Defines the delegate for BarClosing event
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DotNetBarManager.AutoHideDisplayEventHandler">
<summary>
Defines the delegate for BarAutoHideDisplay event
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DotNetBarManager.LocalizeStringEventHandler">
<summary>
Represents the method that will handle the LocalizeString event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.AutoHideDisplayEventArgs.DisplayRectangle">
<summary>
Gets or sets the display rectangle for popup auto-hide bar.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.LocalizeEventArgs">
<summary>
Event arguments for LocalizeString event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizeEventArgs.Handled">
<summary>
Indicates that event has been handled and that LocalizedValue should be used.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizeEventArgs.Key">
<summary>
Indicates the string key for the text that needs to be localized.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizeEventArgs.LocalizedValue">
<summary>
Indicates the localized text value. If you are performing custom string localization
you need to set this value to the translated text for current locale and you need to set
Handled property to true.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.LocalizeEventArgs.#ctor">
<summary>
Default constructor.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.EndUserCustomizeEventArgs">
<summary>
Event arguments for EndUserCustomize event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.EndUserCustomizeEventArgs.Action">
<summary>
Indicates the customize action that user executed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.EndUserCustomizeEventArgs.#ctor(DevComponents.DotNetBar.eEndUserCustomizeAction)">
<summary>
Default constructor.
</summary>
<param name="action">Indicates action user executed.</param>
</member>
<member name="M:DevComponents.DotNetBar.EndUserCustomizeEventArgs.#ctor(DevComponents.DotNetBar.eEndUserCustomizeAction,System.Object)">
<summary>
Initializes a new instance of the EndUserCustomizeEventArgs class.
</summary>
<param name="action"></param>
<param name="actionData"></param>
</member>
<member name="F:DevComponents.DotNetBar.EndUserCustomizeEventArgs.ActionData">
<summary>
Gets any action data, might be null/nothing.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.EndUserCustomizeEventHandler">
<summary>
Delegate for EndUserCustomize event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ActiveDockContainerChangedEventHandler">
<summary>
Defines delegate for ActiveDockContainerChanged event.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="T:DevComponents.DotNetBar.ActiveDockContainerChangedEventArgs">
<summary>
Provides event arguments for ActiveDockContainerChanged event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ActiveDockContainerChangedEventArgs.Item">
<summary>
Gets the DockContainerItem that has been activate or deactivated.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ActiveDockContainerChangedEventArgs.#ctor(DevComponents.DotNetBar.DockContainerItem,System.Boolean)">
<summary>
Initializes a new instance of the ActiveDockContainerChangedEventArgs class.
</summary>
<param name="item"></param>
</member>
<member name="T:DevComponents.DotNetBar.DotNetBarResourcesAttribute">
<summary>
Summary description for DotNetBarResourcesAttribute.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DotNetBarStreamer">
<summary>
Summary description for DotNetBarStreamer.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ElementSerializer">
<summary>
Represents class that can serialize compatible marked properties.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementSerializer.DeserializeImage(System.Xml.XmlElement)">
<summary>
XML element is expected to be something like <image>Image data Base64 encoded</image>
</summary>
<param name="xml">Image data</param>
<returns></returns>
</member>
<member name="T:DevComponents.DotNetBar.ElementStyle">
<summary>
Represents visual style of an User Interface Element.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.#ctor">
<summary>Creates new instance of the class.</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.#ctor(System.String)">
<summary>
Initializes a new instance of the ElementStyle class.
</summary>
<param name="styleClass"></param>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.#ctor(System.Drawing.Color)">
<summary>Creates new instance of the class.</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.#ctor(System.Drawing.Color,System.Drawing.Color)">
<summary>Creates new instance of the class.</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Color)">
<summary>Creates new instance of the class.</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ShouldSerializeBackColor">
<summary>
Indicates whether BackgroundColor should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ResetBackColor">
<summary>
Resets BackgroundColor to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ShouldSerializeBackColor2">
<summary>
Indicates whether BackgroundColor2 should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ResetBackColor2">
<summary>
Resets BackgroundColor2 to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ResetBackgroundImage">
<summary>
Resets BackgroundImage to it's default value null (VB Nothing). Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ShouldSerializeTextColor">
<summary>
Indicates whether TextColor should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ResetTextColor">
<summary>
Resets TextColor to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ShouldSerializeTextShadowColor">
<summary>
Indicates whether TextShadowColor should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ResetTextShadowColor">
<summary>
Resets TextColor to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ShouldSerializeTextShadowOffset">
<summary>
Indicates whether TextShadowOffset should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ResetTextShadowOffset">
<summary>
Resets TextShadowOffset to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.SetSize(System.Drawing.Size)">
<summary>
Sets size of the element style.
</summary>
<param name="size">Indicates new size.</param>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ShouldSerializeBorderColor">
<summary>
Indicates whether BorderColor should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ResetBorderColor">
<summary>
Resets BorderColor to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ShouldSerializeBorderColor2">
<summary>
Indicates whether BorderColor3 should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ResetBorderColor2">
<summary>
Resets BorderColor to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ShouldSerializeBorderColorLight">
<summary>
Indicates whether BorderColorLight should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ResetBorderColorLight">
<summary>
Resets BorderColor to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ShouldSerializeBorderColorLight2">
<summary>
Indicates whether BorderColor2 should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ResetBorderColorLight2">
<summary>
Resets BorderColorLight2 to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ShouldSerializeBorderLeftColor">
<summary>
Indicates whether property should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ResetBorderLeftColor">
<summary>
Resets property to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ShouldSerializeBorderRightColor">
<summary>
Indicates whether property should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ResetBorderRightColor">
<summary>
Resets property to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ShouldSerializeBorderTopColor">
<summary>
Indicates whether property should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ResetBorderTopColor">
<summary>
Resets property to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ShouldSerializeBorderBottomColor">
<summary>
Indicates whether property should be serialized. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ResetBorderBottomColor">
<summary>
Resets property to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.Dispose">
<summary>
Releases all resources used in this control. After calling Dispose()
object is not in valid state and cannot be recovered to the valid state.
Recreation of the object is required.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ApplyFontStyle(DevComponents.DotNetBar.ElementStyle)">
<summary>
Applies a "child/inherited" style text and box properties but not any background or border properties to this style.
Use this method to create style hierarchies.
</summary>
<param name="style">Style to apply to this style</param>
<seealso cref="M:DevComponents.DotNetBar.ElementStyle.ApplyStyle(DevComponents.DotNetBar.ElementStyle)"/>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.ApplyStyle(DevComponents.DotNetBar.ElementStyle)">
<summary>
Applies a "child/inherited" style to this style. Use this method to create style
hierarchies.
</summary>
<remarks>
This method is used to support style hierarchies where a base style is defined
and inherited/child styles are derived and based on it. By using this method on the
base style you can apply only style changes defined by the child style. For example if
you defined a base style for normal user interface element then in most cases you do
not want to redefine the styling for the case when same user interface element is
selected. You will just defined the behavior of the selected state and then apply it to
the base normal style using ApplyStyle method.
</remarks>
<param name="style">Style to apply to current style.</param>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.Copy">
<summary>
Makes an exact copy of the style.
</summary>
<returns>New copy of ElementStyle object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.Reset">
<summary>
Reset all style properties to default values.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.GetDefaultCellStyle(DevComponents.DotNetBar.ElementStyle)">
<summary>Returns default style for the Cell object.</summary>
<param name="defaultNodeStyle">
Reference to the default style for the Node. Cell style is based on the given
node style.
</param>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.GetDefaultDisabledCellStyle">
<summary>Returns default style for disabled cells.</summary>
<returns>Returns new instance of ElementStyle object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.GetDefaultSelectedCellStyle">
<summary>Returns default style for the selected cell object.</summary>
<returns>New instance of the ElementStyle object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.SetColorsAlpha(DevComponents.DotNetBar.ElementStyle,System.Int32)">
<summary>
Sets Alpha value for all colors defined by style to specified value.
</summary>
<param name="style">Style to change.</param>
<param name="alpha">Alpha value for the colors.</param>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyle.GetColorScheme">
<summary>
Returns reference to ColorScheme object used by this style.
</summary>
<returns>Instance of ColorScheme object or null if object could not be obtained.</returns>
</member>
<member name="E:DevComponents.DotNetBar.ElementStyle.StyleChanged">
<summary>
Occurs when appearance property of the style has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ElementStyle.Disposed">
<summary>
Occurs when component is Disposed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BackColorBlend">
<summary>
Gets the collection that defines the multicolor gradient background.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BackColor">
<summary>
Gets or sets the background color for UI element. If used in combination with
BackgroundColor2 is specifies starting gradient color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BackColorSchemePart">
<summary>
Gets or sets the color scheme color that is used as background color. Setting
this property overrides the setting of the corresponding BackColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.Tree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through BackColor property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BackColor2">
<summary>
Gets or sets the target gradient background color for UI element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BackColor2SchemePart">
<summary>
Gets or sets the color scheme color that is used as target gradient background color. Setting
this property overrides the setting of the corresponding BackColor2 property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.Tree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through BackColor2 property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BackColorGradientAngle">
<summary>
Gets or sets the background gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BackColorGradientType">
<summary>
Gets or sets the background gradient fill type. Default value is Linear.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BackgroundImage">
<summary>
Specifies background image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BackgroundImagePosition">
<summary>
Specifies background image position when container is larger than image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BackgroundImageAlpha">
<summary>
Specifies the transparency of background image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.TextColor">
<summary>
Gets or sets the text color displayed in this UI element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.TextColorSchemePart">
<summary>
Gets or sets the color scheme color that is used as text color. Setting
this property overrides the setting of the corresponding TextColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.Tree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through TextColor property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.TextShadowColor">
<summary>
Gets or sets the text shadow color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.TextShadowColorSchemePart">
<summary>
Gets or sets the color scheme color that is used as text shadow color. Setting
this property overrides the setting of the corresponding TextShadowColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.Tree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through TextColor property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.TextShadowOffset">
<summary>
Indicates text shadow offset in pixels
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.Font">
<summary>
Gets or sets the Font used to draw this the text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.WordWrap">
<summary>
Gets or sets a value that determines whether text is displayed in multiple lines or one long line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.TextAlignment">
<summary>
Specifies alignment of the text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.TextLineAlignment">
<summary>
Specifies alignment of the text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.TextTrimming">
<summary>
Specifies how to trim characters when text does not fit.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.MarginHorizontal">
<summary>
Gets the total horizontal margin (Left + Right)
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.MarginVertical">
<summary>
Gets the total vertical margin (Top + Bottom)
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.MarginLeft">
<summary>
Gets or sets the left margin.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.MarginRight">
<summary>
Gets or sets the right margin.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.MarginTop">
<summary>
Gets or sets the top margin.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.MarginBottom">
<summary>
Gets or sets the bottom margin.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.SizeChanged">
<summary>
Gets or sets whether any style property has changed which could influence the size of the style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.Size">
<summary>
Gets the calcuated size of the element style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.Border">
<summary>
Gets or sets the border type for all sides of the element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderWidth">
<summary>
Gets or sets border width in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderTop">
<summary>
Gets or sets the border type for top side of the element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderBottom">
<summary>
Gets or sets the border type for bottom side of the element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderLeft">
<summary>
Gets or sets the border type for left side of the element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderRight">
<summary>
Gets or sets the border type for right side of the element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderTopWidth">
<summary>
Gets or sets border width in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderBottomWidth">
<summary>
Gets or sets border width in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderLeftWidth">
<summary>
Gets or sets border width in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderRightWidth">
<summary>
Gets or sets border width in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderColor">
<summary>
Gets or sets the border color for all sides. Specifing the color for the side will override this value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderColorSchemePart">
<summary>
Gets or sets the color scheme color that is used as border color. Setting
this property overrides the setting of the corresponding BorderColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.Tree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through BorderColor property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderColor2">
<summary>
Gets or sets the target background gradient color for border on all sides. Specifing the color for the side will override this value. Gradient border colors
be employed only when per side border color is not specified.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderColor2SchemePart">
<summary>
Gets or sets the color scheme color that is used as taget gradient border color. Setting
this property overrides the setting of the corresponding BorderColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.Tree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through BorderColor property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderGradientAngle">
<summary>
Gets or sets the border gradient angle. Default value is 90.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderColorLight">
<summary>
Gets or sets the color for light border part when etched border is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderColorLightSchemePart">
<summary>
Gets or sets the color scheme color that is used as border light color for etched border style. Setting
this property overrides the setting of the corresponding BorderColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.Tree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through BorderColor property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderColorLight2">
<summary>
Gets or sets the target background gradient color for border on all sides. Specifing the color for the side will override this value. Gradient border colors
be employed only when per side border color is not specified.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderColorLight2SchemePart">
<summary>
Gets or sets the color scheme color that is used as taget gradient border light color for etched border style. Setting
this property overrides the setting of the corresponding BorderColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.Tree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through BorderColor property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderLightGradientAngle">
<summary>
Gets or sets the light border gradient angle. Default value is 90.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderLeftColor">
<summary>
Gets or sets the background color for the left side border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderLeftColorSchemePart">
<summary>
Gets or sets the color scheme color that is used as left border color. Setting
this property overrides the setting of the corresponding BorderLeftColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.Tree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through BorderLeftColor property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderRightColor">
<summary>
Gets or sets the background color for the right side border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderRightColorSchemePart">
<summary>
Gets or sets the color scheme color that is used as right border color. Setting
this property overrides the setting of the corresponding BorderRightColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.Tree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through BorderRightColor property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderTopColor">
<summary>
Gets or sets the background color for the top side border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderTopColorSchemePart">
<summary>
Gets or sets the color scheme color that is used as top border color. Setting
this property overrides the setting of the corresponding BorderTopColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.Tree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through BorderTopColor property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderBottomColor">
<summary>
Gets or sets the background color for the bottom side border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.BorderBottomColorSchemePart">
<summary>
Gets or sets the color scheme color that is used as bottom border color. Setting
this property overrides the setting of the corresponding BorderBottomColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
<a href="AdvTree~DevComponents.Tree.eColorSchemePart.html">eColorSchemePart.None</a> to
specify explicit color to use through BorderBottomColor property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.PaddingHorizontal">
<summary>
Gets the total horizontal padding (Left + Right)
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.PaddingVertical">
<summary>
Gets the total vertical padding (Top + Bottom)
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.Padding">
<summary>
Gets or sets the padding space in pixels for all 4 sides of the box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.PaddingTop">
<summary>
Gets or sets the amount of space to insert between the top border of the element and the content.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.PaddingBottom">
<summary>
Gets or sets the amount of space to insert between the bottom border of the element and the content.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.PaddingLeft">
<summary>
Gets or sets the amount of space to insert between the left border of the element and the content.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.PaddingRight">
<summary>
Gets or sets the amount of space to insert between the right border of the element and the content.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.Name">
<summary>
Gets or sets the name of the style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.Class">
<summary>
Gets or sets the class style belongs to. The Class styles are used to apply predefined values to the styles that belong to the same class.
This feature is used to manage color schemes/tables per class style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.Description">
<summary>
Gets or sets the description of the style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.Site">
<summary>
Gets or sets the Site associated with this component. Used by Windows forms designer.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.MaximumHeight">
<summary>
Gets or sets the maximum height of the element. This property should be used in
conjunction with the <see cref="P:DevComponents.DotNetBar.ElementStyle.WordWrap">WordWrap</see> property to limit the size of
text bounding box.
</summary>
<remarks>Default value is 0 which indicates that height of the style is unlimited.</remarks>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.StringFormat">
<summary>
Returns System.Drawing.StringFormat constructed from current style settings.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.UseMnemonic">
<summary>
Gets or sets a value indicating whether the control interprets an ampersand character (&amp;) in the control's Text property to be an access key prefix character. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.HideMnemonic">
<summary>
Indicates whether control hides the underlines of the letter prefixed by ampersand character when UseMnemonic=true
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.TextFormat">
<summary>
Returns eTextFormat constructed from current style settings.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.CornerType">
<summary>
Gets or sets the border corner type for all 4 sides. Default corner type is Square.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.CornerTypeTopLeft">
<summary>
Gets or sets the border corner type for top left corner. Default value is Inherit which means that setting from CornerType property is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.CornerTypeTopRight">
<summary>
Gets or sets the border corner type for top right corner. Default value is Inherit which means that setting from CornerType property is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.CornerTypeBottomLeft">
<summary>
Gets or sets the border corner type for bottom left corner. Default value is Inherit which means that setting from CornerType property is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.CornerTypeBottomRight">
<summary>
Gets or sets the border corner type for bottom right corner. Default value is Inherit which means that setting from CornerType property is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.CornerDiameter">
<summary>
Gets or sets the diameter in pixels of the corner type rounded or diagonal.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.PaintLeftBorder">
<summary>
Gets whether to paint left border for the style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.PaintRightBorder">
<summary>
Gets whether to paint right border for the style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.PaintTopBorder">
<summary>
Gets whether to paint top border for the style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.PaintBottomBorder">
<summary>
Gets whether to paint bottom border for the style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.PaintBorder">
<summary>
Gets whether to paint any border for the style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.PaintAllBorders">
<summary>
Gets whether to paint any border for the style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.Custom">
<summary>
Gets whether custom has any of properties changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.DesignMode">
<summary>
Gets or sets whether ElementStyle is in design mode.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.MaximumWidth">
<summary>
Gets or sets the maximum width of the element. This property should be used in
conjunction with the <see cref="P:DevComponents.DotNetBar.ElementStyle.WordWrap">WordWrap</see> property to limit the size of
text bounding box.
</summary>
<remarks>Default value is 0 which indicates that width of the style is not limited.</remarks>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.Parent">
<summary>
Gets or sets the reference to the parent collection.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ElementStyle.TreeControl">
<summary>
Gets or sets the tree control style is assigned to.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eGradientType">
<summary>
Specifies the type of the gradient fill.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eGradientType.Linear">
<summary>
Represents linear gradient fill.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eGradientType.Radial">
<summary>
Represents radial gradient fill.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ElementStyleDisplay">
<summary>
Paints the ElementStyle
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleDisplay.#ctor">
<summary>Creates new instance of the object.</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleDisplay.PaintText(DevComponents.DotNetBar.ElementStyleDisplayInfo,System.String,System.Drawing.Font)">
<summary>
Paints text for given style.
</summary>
<param name="e">Display information.</param>
<param name="text">Text to paint.</param>
<param name="defaultFont">Default font if no font by style is specified.</param>
</member>
<!-- Badly formed XML comment ignored for member "M:DevComponents.DotNetBar.ElementStyleDisplay.PaintText(DevComponents.DotNetBar.ElementStyleDisplayInfo,System.String,System.Drawing.Font,System.Boolean)" -->
<!-- Badly formed XML comment ignored for member "M:DevComponents.DotNetBar.ElementStyleDisplay.PaintText(DevComponents.DotNetBar.ElementStyleDisplayInfo,System.String,System.Drawing.Font,System.Boolean,DevComponents.DotNetBar.eTextFormat)" -->
<member name="M:DevComponents.DotNetBar.ElementStyleDisplay.GetStyleRegion(DevComponents.DotNetBar.ElementStyleDisplayInfo)">
<summary>Returns new Region object for given ElementStyle.</summary>
<returns>New instance of Region object.</returns>
<param name="e">Information to describe ElementStyle.</param>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleDisplay.GetInsideClip(DevComponents.DotNetBar.ElementStyleDisplayInfo)">
<summary>
Returns the clipping for the content of the element style.
</summary>
<param name="e"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleDisplay.Paint(DevComponents.DotNetBar.ElementStyleDisplayInfo)">
<summary>
Paints the element style on the canvas.
</summary>
<param name="e">Holds information necessary to paint style on canvas.</param>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleDisplay.PaintBorder(DevComponents.DotNetBar.ElementStyleDisplayInfo)">
<summary>
Paint style border.
</summary>
<param name="e">Style display information.</param>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleDisplay.PaintBackground(DevComponents.DotNetBar.ElementStyleDisplayInfo)">
<summary>
Paints style background.
</summary>
<param name="e">Style display information.</param>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleDisplay.PaintBackground(DevComponents.DotNetBar.ElementStyleDisplayInfo,System.Boolean)">
<summary>
Paints style background.
</summary>
<param name="e">Style display information.</param>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleDisplay.PaintBackgroundImage(DevComponents.DotNetBar.ElementStyleDisplayInfo)">
<summary>
Paints style background image.
</summary>
<param name="e">Style display information.</param>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleDisplay.GetBackgroundRectangle(DevComponents.DotNetBar.ElementStyle,System.Drawing.Rectangle)">
<summary>
Returns background rectangle for given style by taking in account margins.
</summary>
<param name="style">Reference to style object.</param>
<param name="bounds">Style bounds</param>
<returns>Background rectangle.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleDisplay.GetBackgroundPath(DevComponents.DotNetBar.ElementStyle,System.Drawing.Rectangle)">
<summary>
Returns GraphicsPath for given style.
</summary>
<param name="style">Reference to style.</param>
<param name="bounds">Style bounds.</param>
<returns>New instance of GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleDisplay.GetBackgroundPath(DevComponents.DotNetBar.ElementStyle,System.Drawing.Rectangle,DevComponents.DotNetBar.eStyleBackgroundPathPart)">
<summary>
Returns GraphicsPath for given style.
</summary>
<param name="style">Reference to style.</param>
<param name="bounds">Style bounds.</param>
<returns>New instance of GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleDisplay.BorderDrawInfo.#ctor(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Initializes a new instance of the BorderDrawInfo structure.
</summary>
<param name="hasLeftBorder"></param>
<param name="hasRightBorder"></param>
<param name="hasTopBorder"></param>
<param name="hasBottomBorder"></param>
<param name="isTwistedDoubleBorder"></param>
</member>
<member name="T:DevComponents.DotNetBar.ElementStyleDisplayInfo">
<summary>
Represents information necessary to paint the style on canvas.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ElementStyleDisplayInfo.Style">
<summary>Reference to ElementStyle object.</summary>
</member>
<member name="F:DevComponents.DotNetBar.ElementStyleDisplayInfo.Graphics">
<summary>Reference to Graphics object.</summary>
</member>
<member name="F:DevComponents.DotNetBar.ElementStyleDisplayInfo.Bounds">
<summary>ElementStyle bounds.</summary>
</member>
<member name="F:DevComponents.DotNetBar.ElementStyleDisplayInfo.RightToLeft">
<summary>Get or sets whether layout is right-to-left.</summary>
</member>
<member name="F:DevComponents.DotNetBar.ElementStyleDisplayInfo.IsTwistedDoubleBorder">
<summary>
Gets or sets whether bottom and right border is "twisted" giving beveled look when double border is used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleDisplayInfo.#ctor">
<summary>Creates new instance of the object.</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleDisplayInfo.#ctor(DevComponents.DotNetBar.ElementStyle,System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>Creates new instance of the object and initializes it with default values.</summary>
<param name="style">Style to initialize object with.</param>
<param name="g">Graphics object to initialize object with.</param>
<param name="bounds">Bounds to initialize object with.</param>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleDisplayInfo.#ctor(DevComponents.DotNetBar.ElementStyle,System.Drawing.Graphics,System.Drawing.Rectangle,System.Boolean)">
<summary>Creates new instance of the object and initializes it with default values.</summary>
<param name="style">Style to initialize object with.</param>
<param name="g">Graphics object to initialize object with.</param>
<param name="bounds">Bounds to initialize object with.</param>
</member>
<member name="T:DevComponents.DotNetBar.eStyleBackgroundPathPart">
<summary>
Specifies part of the background path.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleBackgroundPathPart.Complete">
<summary>
Indicates complete background path
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleBackgroundPathPart.TopHalf">
<summary>
Indicates Top half of background path
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleBackgroundPathPart.BottomHalf">
<summary>
Indicates Bottom half of background path
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ElementStyleLayout">
<summary>
Represents the layout for the element style.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleLayout.CalculateStyleSize(DevComponents.DotNetBar.ElementStyle,System.Drawing.Font)">
<summary>
Calculates size of an style element.
</summary>
<param name="style">Style to calculate size for.</param>
<param name="defaultFont">Default font that will be used by style if style does not uses it's own font.</param>
<returns>Size of the style element. At this time only Height member will be calculated.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleLayout.HorizontalStyleWhiteSpace(DevComponents.DotNetBar.ElementStyle)">
<summary>
Returns the total white space for a style. Whitespace is the space between the edge of the element and inner content of the element.
</summary>
<param name="es">Style to return white space for</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleLayout.VerticalStyleWhiteSpace(DevComponents.DotNetBar.ElementStyle)">
<summary>
Returns the total white space for a style. Whitespace is the space between the edge of the element and inner content of the element.
</summary>
<param name="es">Style to return white space for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleLayout.LeftWhiteSpace(DevComponents.DotNetBar.ElementStyle)">
<summary>
Returns total white space for left side of the style. Whitespace is the space between the edge of the element and inner content of the element.
</summary>
<param name="es">Style to return white space for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleLayout.LeftWhiteSpace(DevComponents.DotNetBar.ElementStyle,DevComponents.DotNetBar.eSpacePart)">
<summary>
Returns total white space for left side of the style. Whitespace is the space between the edge of the element and inner content of the element.
</summary>
<param name="es">Style to return white space for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleLayout.RightWhiteSpace(DevComponents.DotNetBar.ElementStyle)">
<summary>
Returns total white space for right side of the style. Whitespace is the space between the edge of the element and inner content of the element.
</summary>
<param name="es">Style to return white space for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleLayout.RightWhiteSpace(DevComponents.DotNetBar.ElementStyle,DevComponents.DotNetBar.eSpacePart)">
<summary>
Returns total white space for right side of the style. Whitespace is the space between the edge of the element and inner content of the element.
</summary>
<param name="es">Style to return white space for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleLayout.TopWhiteSpace(DevComponents.DotNetBar.ElementStyle)">
<summary>
Returns total white space for top side of the style. Whitespace is the space between the edge of the element and inner content of the element.
</summary>
<param name="es">Style to return white space for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleLayout.TopWhiteSpace(DevComponents.DotNetBar.ElementStyle,DevComponents.DotNetBar.eSpacePart)">
<summary>
Returns total white space for top side of the style. Whitespace is the space between the edge of the element and inner content of the element.
</summary>
<param name="es">Style to return white space for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleLayout.BottomWhiteSpace(DevComponents.DotNetBar.ElementStyle)">
<summary>
Returns total white space for top side of the style. Whitespace is the space between the edge of the element and inner content of the element.
</summary>
<param name="es">Style to return white space for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleLayout.BottomWhiteSpace(DevComponents.DotNetBar.ElementStyle,DevComponents.DotNetBar.eSpacePart)">
<summary>
Returns total white space for top side of the style. Whitespace is the space between the edge of the element and inner content of the element.
</summary>
<param name="es">Style to return white space for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleLayout.StyleSpacing(DevComponents.DotNetBar.ElementStyle,DevComponents.DotNetBar.eSpacePart,DevComponents.DotNetBar.eStyleSide)">
<summary>
Returns amount of spacing for specified style parts.
</summary>
<param name="es">Style to calculate spacing for.</param>
<param name="part">Part of the style spacing is calculated for. Values can be combined.</param>
<param name="side">Side of the style to use for calculation.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ElementStyleLayout.GetInnerRect(DevComponents.DotNetBar.ElementStyle,System.Drawing.Rectangle)">
<summary>
Gets inner rectangle taking in account style padding, margins and border.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eDotNetBarStyle">
<summary>
Specifies the appearance of a item.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eCrumbBarStyle">
<summary>
Specifies the CrumbBar control style.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eBarState">
<summary>
Specifies the Bar state.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eGrabHandleStyle">
<summary>
Specifies the Bar grab handle style.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eOrientation">
<summary>
Specifies the Orientation of the item within container.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eDesignMarkerOrientation">
<summary>
Specifies the design-marker orientation for the item.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eSupportedOrientation">
<summary>
Specifies the supported orientations by the item.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eBorderType">
<summary>
Specifies the docked Bar border type.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eAlignment">
<summary>
Specifes vertical alignment.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eItemAlignment">
<summary>
Specifies item alignment.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ePopupType">
<summary>
Specifies the popup type.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eDockSide">
<summary>
Specifies the dock side.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eShortcut">
<summary>
Specifies the item shortcut.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eMenuVisibility">
<summary>
Specifies the item menu visibility.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ePersonalizedMenus">
<summary>
Specifies the item behavior personalized menus.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ePopupAnimation">
<summary>
Specifies the popup animation.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eButtonStyle">
<summary>
Specifies ButtonItem style.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eImagePosition">
<summary>
Specifies the image position.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eHotTrackingStyle">
<summary>
Specifies the hot tracking style for buttons.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eMenuDropShadow">
<summary>
Specifies the menu drop shadow.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eBarImageSize">
<summary>
Specifies the image size for the items on the Bar.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eButtonImageListSelection">
<summary>
Specifies button image list selection.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBackgroundImagePosition.Stretch">
<summary>
Indicates that image is stretched to fill the container space.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBackgroundImagePosition.Center">
<summary>
Image is centered inside of container space.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBackgroundImagePosition.Tile">
<summary>
Image is tiled to fill container space.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBackgroundImagePosition.TopLeft">
<summary>
Image is drawn in top left corner of container space.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBackgroundImagePosition.TopRight">
<summary>
Image is drawn in top right corner of container space.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBackgroundImagePosition.BottomLeft">
<summary>
Image is drawn in bottom left corner of container space.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBackgroundImagePosition.BottomRight">
<summary>
Image is drawn in bottom right corner of container space.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBackgroundImagePosition.CenterLeft">
<summary>
Image is drawn on the left side in the middle of the container space.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBackgroundImagePosition.CenterRight">
<summary>
Image is drawn on the right side in the middle of the container space.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eBorderSide">
<summary>
Specifies the sides of a rectangle to apply a border to.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBorderSide.None">
<summary>
No Border.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBorderSide.Left">
<summary>
Border on the Left edge.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBorderSide.Right">
<summary>
Border on the Right edge.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBorderSide.Top">
<summary>
Border on the Top edge.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBorderSide.Bottom">
<summary>
Border on the Bottom edge.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBorderSide.All">
<summary>
Border on all 4 sides.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eSideBarAppearance">
<summary>
Specifies appearance type of the Side Bar control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSideBarAppearance.Traditional">
<summary>
Traditional Side Bar appearance with 3D panels.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSideBarAppearance.Flat">
<summary>
Improved Flat Side Bar appearance with extended appearance options.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eSideBarColorScheme">
<summary>
Specifies predefined side bar color scheme.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ePopupSide">
<summary>
Specifies the side popup is displayed in relation to it's parent.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eSideBarLayoutType">
<summary>
Indicates layout type used for items within side bar panel.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSideBarLayoutType.Default">
<summary>
Default layout all items arranged in one column.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSideBarLayoutType.MultiColumn">
<summary>
Items arranged in multiple columns determined by the width of the panel.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eTabItemColor">
<summary>
Indicates color scheme assigned to the tab item.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eEndUserCustomizeAction">
<summary>
Indicates the action end user took during toolbar/menubar customization.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eEndUserCustomizeAction.BarVisibilityChanged">
<summary>
User has changed the visibility of the bar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eEndUserCustomizeAction.ItemVisibilityChanged">
<summary>
Indicates that item visibility has changed i.e. it's visible property.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eEndUserCustomizeAction.ItemMoved">
<summary>
Indicates that an item has been moved to different location.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eEndUserCustomizeAction.ItemDeleted">
<summary>
Indicates that an item has been removed from the bar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eEndUserCustomizeAction.ItemTextChanged">
<summary>
Indicates that item's text has been changed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eEndUserCustomizeAction.ItemStyleChanged">
<summary>
Indicates that style of the button i.e. ButtonStyle property has changed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eEndUserCustomizeAction.ItemBeginGroupChanged">
<summary>
Indicates that item's BeginGroup property has changed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eEndUserCustomizeAction.NewBarCreated">
<summary>
Indicates that user has created a new bar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eEndUserCustomizeAction.BarRenamed">
<summary>
Indicates that user has renamed the bar i.e. changed it's Text property.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eEndUserCustomizeAction.BarDeleted">
<summary>
Indicates that user has deleted the bar.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eTabLayoutType">
<summary>
Specifies the type of the layout for tabs.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTabLayoutType.FitContainer">
<summary>
Tabs are auto-sized to fit the width of the container.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox">
<summary>
Tab's width is calculated based on the image and text and navigation box is displayed
when tabs cannot fit the container.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTabLayoutType.MultilineWithNavigationBox">
<summary>
Tab are wrapping on multiple lines based on the width and navigation box is displayed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTabLayoutType.MultilineNoNavigationBox">
<summary>
Tab are wrapping on multiple lines based on the width and NO navigation box is displayed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eCornerType">
<summary>
Indicates the corner type.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eCornerType.Inherit">
<summary>
Inherits setting if applies.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eCornerType.Square">
<summary>
Specifies square corner.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eCornerType.Rounded">
<summary>
Specifies rounded corner.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eCornerType.Diagonal">
<summary>
Specifies diagonal corner.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eEventSource">
<summary>
Specifies the action that raised a event
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eEventSource.Keyboard">
<summary>
The event was caused by a keystroke.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eEventSource.Mouse">
<summary>
The event was caused by a mouse operation.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eEventSource.Code">
<summary>
The event is caused programmatically from user code.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eBubbleButtonAlignment">
<summary>
Specifies the button alignment inside of the BubbleBar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBubbleButtonAlignment.Top">
<summary>
Buttons are aligned to the top and arranged horizontally.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBubbleButtonAlignment.Bottom">
<summary>
Buttons are aligned to the bottom and arranged horizontally.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eStyleBackgroundImage">
<summary>Specifies the way background image is displayed on background.</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleBackgroundImage.Stretch">
<summary>Image is stretched to fill the background</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleBackgroundImage.Center">
<summary>Image is centered inside the background</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleBackgroundImage.Tile">
<summary>Image is tiled inside the background</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleBackgroundImage.TopLeft">
<summary>
Image is drawn in top left corner of container space.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleBackgroundImage.TopRight">
<summary>
Image is drawn in top right corner of container space.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleBackgroundImage.BottomLeft">
<summary>
Image is drawn in bottom left corner of container space.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleBackgroundImage.BottomRight">
<summary>
Image is drawn in bottom right corner of container space.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleBackgroundImage.Zoom">
<summary>
Imaged is centered and fills the control but aspect ratio is unchanged.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eStyleBorderType">
<summary>
Specifies the border type for style element.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleBorderType.None">
<summary>Indicates no border</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleBorderType.Solid">
<summary>Border is a solid line</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleBorderType.Dash">
<summary>Border is a solid dash line</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleBorderType.DashDot">
<summary>Border is solid dash-dot line</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleBorderType.DashDotDot">
<summary>Border is solid dash-dot-dot line</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleBorderType.Dot">
<summary>Border consists of dots</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleBorderType.Etched">
<summary>Border consists light and dark part creating an etched effect</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleBorderType.Double">
<summary>Border consists dark and light part. Light part is the inside border.</summary>
</member>
<member name="T:DevComponents.DotNetBar.eStyleTextAlignment">
<summary>
Specifies the alignment of a text string relative to its element's rectangle.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleTextAlignment.Near">
<summary>
Specifies the text be aligned near from the origin position of the element's rectangle. In a left-to-right layout, the near position is left. In a right-to-left layout, the near position is right.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleTextAlignment.Center">
<summary>
Specifies that text is aligned in the center of the element's rectangle.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleTextAlignment.Far">
<summary>
Specifies that text is aligned far from the origin position of the element's rectangle. In a left-to-right layout, the far position is right. In a right-to-left layout, the far position is left.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eStyleTextTrimming">
<summary>
Specifies how to trim characters from a text that does not completely fit into a element's shape.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleTextTrimming.Character">
<summary>
Specifies that the text is trimmed to the nearest character.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleTextTrimming.EllipsisCharacter">
<summary>
Specifies that the text is trimmed to the nearest character, and an ellipsis is inserted at the end of a trimmed line.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleTextTrimming.EllipsisPath">
<summary>
The center is removed from trimmed lines and replaced by an ellipsis. The algorithm keeps as much of the last slash-delimited segment of the line as possible.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleTextTrimming.EllipsisWord">
<summary>
Specifies that text is trimmed to the nearest word, and an ellipsis is inserted at the end of a trimmed line.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleTextTrimming.None">
<summary>
Specifies no trimming.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleTextTrimming.Word">
<summary>
Specifies that text is trimmed to the nearest word.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eTitleButtonAlignment">
<summary>
Specifies the alignment of buttons in title bar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTitleButtonAlignment.Left">
<summary>
Buttons are left aligned.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTitleButtonAlignment.Right">
<summary>
Buttons are right aligned.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eSpacePart">
<summary>
Indicates white-space part of the style.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSpacePart.Padding">
<summary>
Represents style padding.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSpacePart.Border">
<summary>
Represents style border.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSpacePart.Margin">
<summary>
Represents style margin.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eStyleSide">
<summary>
Indicates the style side.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleSide.Left">
<summary>
Specifies left side of the style.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleSide.Right">
<summary>
Specifies right side of the style.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleSide.Top">
<summary>
Specifies top side of the style.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eStyleSide.Bottom">
<summary>
Specifies bottom side of the style.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eButtonState">
<summary>
Specifies the button state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eButtonState.Normal">
<summary>
Button is in it's default state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eButtonState.Disabled">
<summary>
Button is disabled
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eButtonState.MouseOver">
<summary>
Mouse is over the button
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eButtonState.MouseDownLeft">
<summary>
Left mouse button is pressed
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eButtonState.MouseDownRight">
<summary>
Right mouse button is pressed
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eButtonState.Hidden">
<summary>
Button is hidden.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eTooltipColor">
<summary>
Indicates predefined color scheme assigned to super tooltip.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eRibbonTabColor">
<summary>
Specifies predefined color assigned to ribbon items.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eRibbonTabGroupColor">
<summary>
Specifies predefined color assigned to ribbon tab groups.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eWizardButtonState">
<summary>
Specifies the state of the Wizard button.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eWizardPageChangeSource">
<summary>
Specifies the button that caused the wizard page change.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eWizardPageChangeSource.BackButton">
<summary>
Page change was started using Wizard Back button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eWizardPageChangeSource.NextButton">
<summary>
Page change was started using Wizard Next button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eWizardPageChangeSource.Code">
<summary>
Page change was started from code.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eWizardFormAcceptButton">
<summary>
Specifies wizard button that is clicked when the user presses the ENTER key.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eWizardFormAcceptButton.FinishAndNext">
<summary>
If finish button is enabled and visible it will be clicked otherwise click next button
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eWizardFormAcceptButton.Finish">
<summary>
Click finish button
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eWizardFormAcceptButton.Next">
<summary>
Click next button
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eWizardFormAcceptButton.None">
<summary>
No button will be clicked
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eWizardFormCancelButton">
<summary>
Specifies wizard button that is clicked when the user presses the Escape key.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eWizardFormCancelButton.Cancel">
<summary>
Cancel button will be clicked
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eWizardFormCancelButton.None">
<summary>
No button will be clicked
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eColorItemBorder">
<summary>
Specifies border around ColorItem.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eColorItemBorder.None">
<summary>
No Border.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eColorItemBorder.Left">
<summary>
Border on the Left edge.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eColorItemBorder.Right">
<summary>
Border on the Right edge.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eColorItemBorder.Top">
<summary>
Border on the Top edge.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eColorItemBorder.Bottom">
<summary>
Border on the Bottom edge.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eColorItemBorder.All">
<summary>
Border on all 4 sides.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eContainerVerticalAlignment">
<summary>
Specifies the line alignment of the items inside of the container.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eContainerVerticalAlignment.Top">
<summary>
Items are aligned to the top.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eContainerVerticalAlignment.Middle">
<summary>
Items are aligned to the middle point of the line.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eContainerVerticalAlignment.Bottom">
<summary>
Items are aligned to the bottom.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eHorizontalItemsAlignment">
<summary>
Specifies the alignment of the items inside of the container in horizontal layout.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eHorizontalItemsAlignment.Left">
<summary>
Items are left aligned.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eHorizontalItemsAlignment.Center">
<summary>
Items are centered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eHorizontalItemsAlignment.Right">
<summary>
Items are right aligned.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eVerticalItemsAlignment">
<summary>
Specifies the alignment of the items inside of the container in vertical layout.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eVerticalItemsAlignment.Top">
<summary>
Items are top aligned.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eVerticalItemsAlignment.Middle">
<summary>
Items are in the middle.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eVerticalItemsAlignment.Bottom">
<summary>
Items are Bottom aligned.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eRenderMode">
<summary>
Specifies the rendering mode used by a user interface element.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eRenderMode.Instance">
<summary>
Indicates that rendering on user interface element instance set through Renderer property is used.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eRenderMode.Global">
<summary>
Indicates that global application wide renderer is used as specified by GlobalManager.Renderer property.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eRenderMode.Custom">
<summary>
Indicates that custom rendered will be used for an user interface element. Renderer property must be set when using this value to the renderer
that will be used.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eButtonColor">
<summary>
Specifies the predefined color table for button.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eProgressBarItemColor">
<summary>
Specifies the color table used to render ProgressBarItem in Office 2007 style.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eProgressBarItemColor.Normal">
<summary>
Indicates default Normal color table, usually green.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eProgressBarItemColor.Paused">
<summary>
Indicates Pause state color table, usually yellow.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eProgressBarItemColor.Error">
<summary>
Indicates Error state color table, usually red.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eRibbonTitlePosition">
<summary>
Specifies the position of ribbon title.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eRibbonTitlePosition.Top">
<summary>
Title is positioned on the top of the ribbon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eRibbonTitlePosition.Bottom">
<summary>
Title is positioned on the bottom of the ribbon.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eButtonTextAlignment">
<summary>
Specifies text alignment on the button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eButtonTextAlignment.Left">
<summary>
Specifies the left aligned text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eButtonTextAlignment.Center">
<summary>
Specifies the center aligned text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eButtonTextAlignment.Right">
<summary>
Specifies the right aligned text.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eTabCloseButtonPosition">
<summary>
Specifies the position of the tab close button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTabCloseButtonPosition.Left">
<summary>
Close button is on the left side of the tab.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTabCloseButtonPosition.Right">
<summary>
Close button is on the right side of the tab.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eBarType">
<summary>
Describes the bar type.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarType.Toolbar">
<summary>
Indicates that bar is toolbar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarType.MenuBar">
<summary>
Indicates that bar is menu bar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarType.StatusBar">
<summary>
Indicates that bar is status bar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eBarType.DockWindow">
<summary>
Indicates that bar is dock window.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eCategorizeMode">
<summary>
Describes the categorization mode used to categorize items on the Customize Ribbon dialog.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eCategorizeMode.RibbonBar">
<summary>
Items are automatically categorized by the ribbon bar they appear on.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eCategorizeMode.Categories">
<summary>
Items are categorized by the Category property on each item. Category property should be set on each item.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eCheckBoxStyle">
<summary>
Describes the check-box item appearance style
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eCheckBoxStyle.CheckBox">
<summary>
Standard check-box style.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eCheckBoxStyle.RadioButton">
<summary>
Radio button style. Only one button can be selected/checked in given container.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eCheckBoxPosition">
<summary>
Indicates the position of the check box sign related to the text for CheckBoxItem.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eCheckBoxPosition.Left">
<summary>
Check box sign is positioned on the left side of the text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eCheckBoxPosition.Right">
<summary>
Check box sign is positioned on the right side of the text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eCheckBoxPosition.Top">
<summary>
Check box sign is positioned above the text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eCheckBoxPosition.Bottom">
<summary>
Check box sing is positioned below the text
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eProgressItemType">
<summary>
Indicates the type of the progress bar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eProgressItemType.Standard">
<summary>
Standard step based progress bar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eProgressItemType.Marquee">
<summary>
The automatically moving progress bar.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eCollapseDirection">
<summary>
Defines the direction of collapsing/expanding
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eCollapseDirection.BottomToTop">
<summary>
Control is collapsed from bottom to top.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eCollapseDirection.TopToBottom">
<summary>
Control is collapsed from top to bottom.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eCollapseDirection.RightToLeft">
<summary>
Control is collapsed from right to left.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eCollapseDirection.LeftToRight">
<summary>
Control is collapsed from left to right.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eScrollBarSkin">
<summary>
Describes the scroll bar skinning applied to the controls.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eScrollBarSkin.None">
<summary>
No scrollbar skinning is applied to the control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eScrollBarSkin.Optimized">
<summary>
Optimized scrollbar skinning algorithm is used. Might provide better appearance in certain scenarios.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eScrollBarSkin.Unoptimized">
<summary>
Unoptimized scrollbar skinning algorithm is used. Might provide better appearance in certain scenarios.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eSliderLabelPosition">
<summary>
Indicates the position of the slider label text related to the slider part.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSliderLabelPosition.Left">
<summary>
Label is positioned on the left side of the slider.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSliderLabelPosition.Right">
<summary>
Label is positioned on the right side of the slider.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSliderLabelPosition.Top">
<summary>
Label is positioned above the slider.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSliderLabelPosition.Bottom">
<summary>
Label is positioned below the slider.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eSliderPart">
<summary>
Defines the slider item parts.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSliderPart.None">
<summary>
Indicates no part.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSliderPart.IncreaseButton">
<summary>
Indicates the increase button of slider control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSliderPart.DecreaseButton">
<summary>
Indicates the decrease button of slider control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSliderPart.Label">
<summary>
Indicates the label part of slider control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSliderPart.TrackArea">
<summary>
Indicates the track area part of the control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eTitleImagePosition">
<summary>
Specifies the position of the title image.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTitleImagePosition.Left">
<summary>
Image is positioned on the left side.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTitleImagePosition.Center">
<summary>
Image is centered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTitleImagePosition.Right">
<summary>
Image is positioned on the right side.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eWizardStyle">
<summary>
Specifies the Wizard control Appearance.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eWizardStyle.Default">
<summary>
Indicates default Wizard 97 style.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eWizardStyle.Office2007">
<summary>
Indicates the Office 2007 Style Wizard Appearance.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eWizardTitleImageAlignment">
<summary>
Specifies wizard title image alignment
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eWizardTitleImageAlignment.Left">
<summary>
Image is aligned to left
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eWizardTitleImageAlignment.Right">
<summary>
Image is aligned to right
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eWatermarkBehavior">
<summary>
Specifies the behaviour used to hide watermark.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eWatermarkBehavior.HideOnFocus">
<summary>
Watermark for control is hidden when control receives the input focus.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eWatermarkBehavior.HideNonEmpty">
<summary>
Watermark for control is hidden when control has non-empty input value.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eScrollBarAppearance">
<summary>
Specifies the advanced ScrollBar appearance.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eScrollBarAppearance.Default">
<summary>
Default scroll bar appearance.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eScrollBarAppearance.ApplicationScroll">
<summary>
Office 2007 style Application scroll bar appearance.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eTextPosition">
<summary>
Defines text position in relation to the content of the item..
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTextPosition.Left">
<summary>
Text is positioned to the left of the content.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTextPosition.Right">
<summary>
Text is positioned to the right of the content.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTextPosition.Top">
<summary>
Text is positioned on top of the content.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTextPosition.Bottom">
<summary>
Text is positioned on bottom of the content.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eNotificationMarkPosition">
<summary>
Defines position for the notification mark
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eSymbolSet">
<summary>
Defines available symbol sets.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSymbolSet.Awesome">
<summary>
FontAwesome Symbol Set.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSymbolSet.Material">
<summary>
Android Material Symbol Set.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ColorItemRendererEventArgs.Graphics">
<summary>
Gets or sets Graphics object group is rendered on.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ColorItemRendererEventArgs.ColorItem">
<summary>
Gets the reference to ButtonItem instance being rendered.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorItemRendererEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.ColorItem)">
<summary>
Creates new instance of the object and initializes it with default values
</summary>
<param name="g">Reference to Graphics object.</param>
<param name="item">Reference to ColorItem object.</param>
</member>
<member name="T:DevComponents.DotNetBar.DockTabClosingEventArgs">
<summary>
Represents event arguments for DockTabClosing event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DockTabClosingEventArgs.DockContainerItem">
<summary>
Indicates the DockContainerItem that is about to close.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DockTabClosingEventArgs.Cancel">
<summary>
Provides ability to cancel closing of the DockContainerItem. Default value is false.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DockTabClosingEventArgs.RemoveDockTab">
<summary>
Set to true to automatically remove DockContainerItem from the Bar.Items collection after it is closed. Default value is false
which means that DockContainerItem will be kept in collection but it will be hidden after this event is complete.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.DockTabClosingEventArgs.Source">
<summary>
Returns source of the event: keyboard, mouse or code.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.DockTabClosingEventArgs.#ctor(DevComponents.DotNetBar.DockContainerItem,DevComponents.DotNetBar.eEventSource)">
<summary>
Creates new instance of the class.
</summary>
<param name="item">Reference to DockContainerItem that is about to close</param>
</member>
<member name="T:DevComponents.DotNetBar.DockTabClosingEventHandler">
<summary>
Delegate for DockTabClosing event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SerializeItemEventArgs">
<summary>
Represents arguments for SerializeItem event which allows you to add custom serialization data to definitions saved by control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SerializeItemEventArgs.Item">
<summary>
Gets reference to item being serialized or de-serialized.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SerializeItemEventArgs.ItemXmlElement">
<summary>
Gets reference to instance of XmlElement that item is serialized to or is being de-serialized from. You should not change any data directly on this element.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SerializeItemEventArgs.CustomXmlElement">
<summary>
Gets the reference to XmlElement that you can serialize to or de-serialize any custom data from. You can add child elements or set the attributes on
this XmlElement when handling SerializeItem event. When handling DeserializeItem event you can load same data from this element.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SerializeItemEventHandler">
<summary>
Defines delegate for SerializeItem event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.MarkupLinkClickEventArgs">
<summary>
Provides more information about MarkupLinkClick event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.MarkupLinkClickEventArgs.HRef">
<summary>
Gets the value of href attribute from the markup link that was clicked.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.MarkupLinkClickEventArgs.Name">
<summary>
Gets the value of name attribute from the markup link that was clicked.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MarkupLinkClickEventArgs.#ctor(System.String,System.String)">
<summary>
Creates new instance of the object.
</summary>
<param name="name">Value of name attribute.</param>
<param name="href">Value of href attribute.</param>
</member>
<member name="T:DevComponents.DotNetBar.MarkupLinkClickEventHandler">
<summary>
Defines delegate for MarkupLinkClick event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ExpandablePanel">
<summary>
Panel control with title bar that can be expanded or collapsed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExpandablePanel.OnColorSchemeChanged">
<summary>
Called after either ColorScheme or ColorSchemeStyle has changed. If you override make sure that you call base implementation so default
processing can occur.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExpandablePanel.ShouldSerializeExpandedBounds">
<summary>
Used for design time support.
</summary>
<returns>true if property should be serialized.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ExpandablePanel.ResetTitleStyle">
<summary>
Resets the style to it's default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExpandablePanel.ResetTitleStyleMouseOver">
<summary>
Resets the style to it's default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExpandablePanel.ResetTitleStyleMouseDown">
<summary>
Resets the style to it's default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExpandablePanel.OnAntiAliasChanged">
<summary>
Called when AntiAlias property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExpandablePanel.ExpandedChanging">
<summary>
Occurs before Expanded property is changed. You can cancel change of this property by setting Cancel=true on the event arguments.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExpandablePanel.ExpandedChanged">
<summary>
Occurs after Expanded property has changed. You can handle ExpandedChanging event and have opportunity to cancel the change.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandablePanel.HideControlsWhenCollapsed">
<summary>
Indicates whether panel will hide the controls it contains when its collapsed and show them when its expanded. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandablePanel.ExpandOnTitleClick">
<summary>
Gets or sets whether the panel is collapsed/expanded when title bar is clicked. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandablePanel.CollapseDirection">
<summary>
Gets or sets the collapse/expand direction for the control. Default value causes the control to collapse from bottom to top.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandablePanel.Expanded">
<summary>
Gets or sets whether panel is expanded or not. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandablePanel.AnimationTime">
<summary>
Gets or sets animation time in milliseconds. Default value is 100 miliseconds. You can set this to 0 (zero) to disable animation.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandablePanel.ExpandedBounds">
<summary>
Gets or sets the bounds of panel when expanded. This value is managed automatically by control based on the starting designer size and value
of Expanded property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandablePanel.ExpandButtonVisible">
<summary>
Gets or sets whether expand button is visible or not. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandablePanel.ExpandButtonBounds">
<summary>
Returns bounds of expand button. Bounds are relative to the TitlePanel coordinates.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandablePanel.ButtonImageCollapse">
<summary>
Gets or sets image that is used on title bar button to collapse panel. Default value is null which indicates
that system default image is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandablePanel.ButtonImageExpand">
<summary>
Gets or sets image that is used on title bar button to expand panel. Default value is null which indicates
that system default image is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandablePanel.TitleText">
<summary>
Gets or sets the text for the title of the panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandablePanel.TitleStyle">
<summary>
Gets or sets the title style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandablePanel.TitleStyleMouseOver">
<summary>
Gets or sets the title style when mouse hovers over the title.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandablePanel.TitleStyleMouseDown">
<summary>
Gets or sets the title style when mouse button is pressed on the title.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandablePanel.TitleHeight">
<summary>
Gets or sets the height of the title portion of the panel. Height must be greater than 0. Default is 26.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandablePanel.TitlePanel">
<summary>
Gets reference to Panel control used as title bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandablePanel.ExpandButton">
<summary>
Gets reference to the title bar expand button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandablePanel.ExpandButtonAlignment">
<summary>
Gets or sets alignment of the expand button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandablePanel.VerticalExpandPanel">
<summary>
Gets the reference to the panel used as button when control is collapsed to the left or right.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ExpandableSplitter">
<summary>
Represents multi-functional splitter control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExpandableSplitter.#ctor">
<summary>
Creates new instance of the object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExpandableSplitter.OnPaint(System.Windows.Forms.PaintEventArgs)">
<summary>
This member overrides Control.OnPaint.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.ExpandableSplitter.ResetBackColor">
<summary>
Resets BackgroundColor to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExpandableSplitter.ResetBackColor2">
<summary>
Resets BackgroundColor2 to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExpandableSplitter.ResetExpandFillColor">
<summary>
Resets BackgroundColor2 to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExpandableSplitter.ResetExpandLineColor">
<summary>
Resets BackgroundColor2 to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExpandableSplitter.ResetGripDarkColor">
<summary>
Resets BackgroundColor2 to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExpandableSplitter.ResetGripLightColor">
<summary>
Resets BackgroundColor2 to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExpandableSplitter.ResetHotBackColor">
<summary>
Resets BackgroundColor to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExpandableSplitter.ResetHotBackColor2">
<summary>
Resets BackgroundColor2 to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExpandableSplitter.ResetHotExpandFillColor">
<summary>
Resets BackgroundColor2 to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExpandableSplitter.ResetHotExpandLineColor">
<summary>
Resets BackgroundColor2 to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExpandableSplitter.ResetHotGripDarkColor">
<summary>
Resets BackgroundColor2 to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExpandableSplitter.ResetHotGripLightColor">
<summary>
Resets BackgroundColor2 to it's default value. Used by windows forms designer design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExpandableSplitter.ApplyStyle(DevComponents.DotNetBar.eSplitterStyle)">
<summary>
Apply default splitter style colors.
</summary>
<param name="style">Style colors to apply.</param>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.Expanded">
<summary>
Gets or sets whether expandable control ExpandableControl assigned to this splitter is expaned or not. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.ExpandActionClick">
<summary>
Gets or sets whether Click event is triggering expand/collapse of the splitter. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.ExpandActionDoubleClick">
<summary>
Gets or sets whether DoubleClick event is triggering expand/collapse of the splitter. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.Expandable">
<summary>
Gets or sets whether splitter will act as expandable splitter. Default value is true. When set to true ExpandableControl property should be set to the control that should be expanded/collapsed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.ExpandableControl">
<summary>
Gets or sets the control that will be expanded/collapsed by the splitter. Default value is null. Expandable property should be also set to true (default) to enable expand/collapse functionality.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.Style">
<summary>
Gets or sets visual style of the control. Default value is eSplitterStyle.Office2003.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.AnimationTime">
<summary>
Gets or sets animation time in milliseconds. Default value is 100 miliseconds. You can set this to 0 (zero) to disable animation.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.Shortcut">
<summary>
Gets or sets the shortcut key to expand/collapse splitter.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.BackColor">
<summary>
Gets or sets the background color for UI element. If used in combination with
BackgroundColor2 is specifies starting gradient color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.BackColorSchemePart">
<summary>
Gets or sets the color scheme color that is used as background color. Setting
this property overrides the setting of the corresponding BackColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
eColorSchemePart.None to
specify explicit color to use through BackColor property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.BackColor2">
<summary>
Gets or sets the target gradient background color for UI element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.BackColor2SchemePart">
<summary>
Gets or sets the color scheme color that is used as target gradient background color. Setting
this property overrides the setting of the corresponding BackColor2 property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
eColorSchemePart.None to
specify explicit color to use through BackColor2 property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.BackColorGradientAngle">
<summary>
Gets or sets the background gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.ExpandFillColor">
<summary>
Gets or sets the expand part fill color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.ExpandFillColorSchemePart">
<summary>
Gets or sets the color scheme color that is used expand part fill color. Setting
this property overrides the setting of the corresponding ExpandFillColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
eColorSchemePart.None to
specify explicit color to use through ExpandFillColor property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.ExpandLineColor">
<summary>
Gets or sets the expand part line color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.ExpandLineColorSchemePart">
<summary>
Gets or sets the color scheme color that is used expand part line color. Setting
this property overrides the setting of the corresponding ExpandLineColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
eColorSchemePart.None to
specify explicit color to use through ExpandLineColor property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.GripDarkColor">
<summary>
Gets or sets the grip part dark color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.GripDarkColorSchemePart">
<summary>
Gets or sets the color scheme color that is used grip part dark color. Setting
this property overrides the setting of the corresponding GripDarkColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
eColorSchemePart.None to
specify explicit color to use through GripDarkColor property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.GripLightColor">
<summary>
Gets or sets the expand part line color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.GripLightColorSchemePart">
<summary>
Gets or sets the color scheme color that is used expand part line color. Setting
this property overrides the setting of the corresponding GripLightColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
eColorSchemePart.None to
specify explicit color to use through GripLightColor property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.HotBackColor">
<summary>
Gets or sets the background color for UI element when mouse is over the element. If used in combination with
BackgroundColor2 is specifies starting gradient color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.HotBackColorSchemePart">
<summary>
Gets or sets the color scheme color that is used as background color when mouse is over the element. Setting
this property overrides the setting of the corresponding HotBackColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
eColorSchemePart.None to
specify explicit color to use through HotBackColor property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.HotBackColor2">
<summary>
Gets or sets the target gradient background color for UI element when mouse is over the element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.HotBackColor2SchemePart">
<summary>
Gets or sets the color scheme color that is used as target gradient background color when mouse is over the element. Setting
this property overrides the setting of the corresponding HotBackColor2 property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
eColorSchemePart.None to
specify explicit color to use through HotBackColor2 property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.HotBackColorGradientAngle">
<summary>
Gets or sets the background gradient angle when mouse is over the element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.HotExpandFillColor">
<summary>
Gets or sets the expand part fill color when mouse is over the element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.HotExpandFillColorSchemePart">
<summary>
Gets or sets the color scheme color that is used expand part fill color when mouse is over the element. Setting
this property overrides the setting of the corresponding HotExpandFillColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
eColorSchemePart.None to
specify explicit color to use through HotExpandFillColor property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.HotExpandLineColor">
<summary>
Gets or sets the expand part line color when mouse is over the element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.HotExpandLineColorSchemePart">
<summary>
Gets or sets the color scheme color that is used expand part line color when mouse is over the element. Setting
this property overrides the setting of the corresponding HotExpandLineColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
eColorSchemePart.None to
specify explicit color to use through HotExpandLineColor property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.HotGripDarkColor">
<summary>
Gets or sets the grip part dark color when mouse is over the element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.HotGripDarkColorSchemePart">
<summary>
Gets or sets the color scheme color that is used grip part dark color when mouse is over the element. Setting
this property overrides the setting of the corresponding HotGripDarkColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
eColorSchemePart.None to
specify explicit color to use through HotGripDarkColor property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.HotGripLightColor">
<summary>
Gets or sets the grip part light color when mouse is over the element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExpandableSplitter.HotGripLightColorSchemePart">
<summary>
Gets or sets the color scheme color that is used grip part light color when mouse is over the element. Setting
this property overrides the setting of the corresponding HotGripLightColor property.
Color scheme colors are automatically managed and are based on current system colors.
That means if colors on the system change the color scheme will ensure that it's colors
are changed as well to fit in the color scheme of target system. Set this property to
eColorSchemePart.None to
specify explicit color to use through HotGripLightColor property.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eSplitterStyle">
<summary>
Indicates the style of mutli-functional splitter control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSplitterStyle.Office2003">
<summary>
Specifies Office 2003 like splitter style and color scheme.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSplitterStyle.Mozilla">
<summary>
Specifies Mozilla like splitter style and color scheme.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSplitterStyle.Office2007">
<summary>
Specifies Office 2007 like splitter style and color scheme.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ExpandedChangeEventArgs">
<summary>
Represents event arguments for ExpandedChanging and ExpandedChanged events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ExpandedChangeEventArgs.EventSource">
<summary>
Gets the action that caused the event, event source.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ExpandedChangeEventArgs.Cancel">
<summary>
Gets or sets whether execution Expand event should be canceled. Applies only to ExpandedChanging event. Default is false.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ExpandedChangeEventArgs.NewExpandedValue">
<summary>
Indicates new value for the Expanded property.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ExplorerBar">
<summary>
Represents the Outlook like Explorer-bar Control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBar.#ctor">
<summary>
Creates new instance of side bar control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBar.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBar.ShouldSerializeColorScheme">
<summary>
Returns true if color scheme has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBar.ResetColorScheme">
<summary>
Resets color scheme to it's default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBar.CreateGraphics">
<summary>
Creates the Graphics object for the control.
</summary>
<returns>The Graphics object for the control.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBar.GetRenderer">
<summary>
Returns the renderer control will be rendered with.
</summary>
<returns>The current renderer.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBar.OnItemLayoutUpdated(System.EventArgs)">
<summary>
Raises ItemLayoutUpdated event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBar.RecalcLayout">
<summary>
Applies any layout changes and repaint the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBar.OnItemDoubleClick(DevComponents.DotNetBar.BaseItem,System.Windows.Forms.MouseEventArgs)">
<summary>
Invokes ItemDoubleClick event.
</summary>
<param name="objItem">Reference to item double-clicked</param>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBar.GetItems(System.String)">
<summary>
Returns the collection of items with the specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBar.GetItems(System.String,System.Type)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBar.GetItems(System.String,System.Type,System.Boolean)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBar.GetItem(System.String)">
<summary>
Returns the first item that matches specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBar.EnsureVisible(DevComponents.DotNetBar.BaseItem)">
<summary>
Ensures that item is displayed on the screen. Item needs to have it's Visible property set to true. This method will expand the group if needed or it will scroll control to display an item.
</summary>
<param name="item">Item to display.</param>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBar.HitTest(System.Int32,System.Int32)">
<summary>
Returns the item located at specific client coordinates.
</summary>
<param name="clientX">X Coordinate</param>
<param name="clientY">Y Coordinate</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBar.DevComponents#DotNetBar#IOwner#Customize">
<summary>
Invokes the DotNetBar Customize dialog.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBar.DevComponents#DotNetBar#ICustomSerialization#InvokeSerializeItem(DevComponents.DotNetBar.SerializeItemEventArgs)">
<summary>
Invokes SerializeItem event.
</summary>
<param name="e">Provides data for the event.</param>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBar.DevComponents#DotNetBar#ICustomSerialization#InvokeDeserializeItem(DevComponents.DotNetBar.SerializeItemEventArgs)">
<summary>
Invokes DeserializeItem event.
</summary>
<param name="e">Provides data for the event.</param>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBar.LoadDefinition(System.String)">
<summary>
Loads the Side bar definition from file.
</summary>
<param name="FileName">Definition file name.</param>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBar.SaveDefinition(System.String)">
<summary>
Saves the Side bar definition to file.
</summary>
<param name="FileName">Definition file name.</param>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.ButtonCheckedChanged">
<summary>
Occurs when Checked property of an button has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.ItemClick">
<summary>
Occurs when Item is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.ItemDoubleClick">
<summary>
Occurs when Item is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.PopupContainerLoad">
<summary>
Occurs when popup of type container is loading.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.PopupContainerUnload">
<summary>
Occurs when popup of type container is unloading.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.PopupOpen">
<summary>
Occurs when popup item is about to open.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.PopupClose">
<summary>
Occurs when popup item is closing.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.PopupShowing">
<summary>
Occurs just before popup window is shown.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.ExpandedChange">
<summary>
Occurs when Item Expanded property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.MouseDown">
<summary>
Occurs when mouse button is pressed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.MouseUp">
<summary>
Occurs when mouse button is released.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.MouseEnter">
<summary>
Occurs when mouse enters the item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.MouseLeave">
<summary>
Occurs when mouse leaves the item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.MouseMove">
<summary>
Occurs when mouse moves over the item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.MouseHover">
<summary>
Occurs when mouse remains still inside an item for an amount of time.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.LostFocus">
<summary>
Occurs when item loses input focus.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.GotFocus">
<summary>
Occurs when item receives input focus.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.UserCustomize">
<summary>
Occurs when user changes the item position, removes the item, adds new item or creates new bar.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.ItemRemoved">
<summary>
Occurs after an Item is removed from SubItemsCollection.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.ItemAdded">
<summary>
Occurs after an Item has been added to the SubItemsCollection.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.ContainerLoadControl">
<summary>
Occurs when ControlContainerControl is created and contained control is needed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.ItemTextChanged">
<summary>
Occurs when Text property of an Item has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.ContainerControlSerialize">
<summary>
Use this event if you want to serialize the hosted control state directly into the DotNetBar definition file.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.ContainerControlDeserialize">
<summary>
Use this event if you want to deserialize the hosted control state directly from the DotNetBar definition file.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.DefinitionLoaded">
<summary>
Occurs after DotNetBar definition is loaded.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.OptionGroupChanging">
<summary>
Occurs before an item in option group is checked and provides opportunity to cancel that.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.ToolTipShowing">
<summary>
Occurs before tooltip for an item is shown. Sender could be the BaseItem or derived class for which tooltip is being displayed or it could be a ToolTip object itself it tooltip is not displayed for any item in particular.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.SerializeItem">
<summary>
Occurs after an item has been serialized to XmlElement and provides you with opportunity to add any custom data
to serialized XML. This allows you to serialize any data with the item and load it back up in DeserializeItem event.
</summary>
<remarks>
<para>To serialize custom data to XML definition control creates handle this event and use CustomXmlElement
property on SerializeItemEventArgs to add new nodes or set attributes with custom data you want saved.</para>
</remarks>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.DeserializeItem">
<summary>
Occurs after an item has been de-serialized (load) from XmlElement and provides you with opportunity to load any custom data
you have serialized during SerializeItem event.
</summary>
<remarks>
<para>To de-serialize custom data from XML definition handle this event and use CustomXmlElement
property on SerializeItemEventArgs to retrive any data you saved in SerializeItem event.</para>
</remarks>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.SuspendLayoutDisplay">
<summary>
Suspends the layout and painting of the control. When you want to perform multiple operations on the explorer bar and you want to ensure
that layout of the items on it and painting is not performed for performance and appearance reasons set this property to true. Once you
want to enable layout and painting set the property back to false and call RecalcLayout method. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.ColorScheme">
<summary>
Gets or sets Bar Color Scheme.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.ThemeAware">
<summary>
Specifies whether ExplorerBar is drawn using Themes when running on OS that supports themes like Windows XP.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.BackStyle">
<summary>
Specifies the background style of the Explorer Bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.GroupSpacing">
<summary>
Gets or sets the vertical spacing between the group items.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ExplorerBar.ItemLayoutUpdated">
<summary>
Occurs after internal item layout has been updated and items have valid bounds assigned.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.Groups">
<summary>
Returns the collection of Explorer Bar Groups.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.DevComponents#DotNetBar#IOwner#ParentForm">
<summary>
Gets or sets the form ExplorerBar is attached to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.ContentMargin">
<summary>
Gets or sets the margin in pixels between the explorer bar groups and the edge of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.AllowUserCustomize">
<summary>
Gets or sets whether end-user can rearrange the items inside the panels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.AnimationEnabled">
<summary>
Gets or sets whether animation is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.AnimationTime">
<summary>
Gets or sets maximum animation time in milliseconds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.UseNativeDragDrop">
<summary>
Gets or sets whether native .NET Drag and Drop is used by side-bar to perform drag and drop operations. AllowDrop must be set to true to allow drop of the items on control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.AllowExternalDrop">
<summary>
Gets or sets whether external ButtonItem object is accepted in drag and drop operation. UseNativeDragDrop must be set to true in order for this property to be effective.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.StockStyle">
<summary>
Applies the stock style to the object.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.DisabledImagesGrayScale">
<summary>
Gets or sets whether gray-scale algorithm is used to create automatic gray-scale images. Default is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.GroupButtonExpandNormal">
<summary>
Specifies custom image to be used as button on ExplorerBarGroup item to expand the group. Default value is null
which indicates that default button is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.GroupButtonExpandHot">
<summary>
Specifies custom image to be used as button on ExplorerBarGroup item to expand the group. This image is used when mouse is over the button. Default value is null
which indicates that default button is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.GroupButtonExpandPressed">
<summary>
Specifies custom image to be used as button on ExplorerBarGroup item to expand the group. This image is used when user presses left mouse button while cursor is positioned over the button. Default value is null
which indicates that default button is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.GroupButtonCollapseNormal">
<summary>
Specifies custom image to be used as button on ExplorerBarGroup item to collapse the group. Default value is null
which indicates that default button is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.GroupButtonCollapseHot">
<summary>
Specifies custom image to be used as button on ExplorerBarGroup item to collapse the group.
This Image is used when mouse is over the button. Default value is null
which indicates that default button is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.GroupButtonCollapsePressed">
<summary>
Specifies custom image to be used as button on ExplorerBarGroup item to collapse the group.
This Image is used when left mouse button is pressed while cursor is over the button. Default value is null
which indicates that default button is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.Images">
<summary>
ImageList for images used on Items. Images specified here will always be used on menu-items and are by default used on all Bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.GroupImages">
<summary>
ImageList for images displayed on the Group Item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.DevComponents#DotNetBar#IOwner#ImagesLarge">
<summary>
ImageList for large-sized images used on Items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.ShowToolTips">
<summary>
Indicates whether Tooltips are shown on Bars and menus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.ShowShortcutKeysInToolTips">
<summary>
Indicates whether item shortcut is displayed in Tooltips.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.DevComponents#DotNetBar#IAccessibilitySupport#DoDefaultActionItem">
<summary>
Gets or sets the item default accesibility action will be performed on.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.DevComponents#DotNetBar#IOwner#ShowResetButton">
<summary>
Indicates whether Reset buttons is shown that allows end-user to reset the toolbar state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.ItemsContainer">
<summary>
Returns the reference to the container that containing the sub-items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.DevComponents#DotNetBar#ICustomSerialization#HasSerializeItemHandlers">
<summary>
Gets whether any handlers have been defined for SerializeItem event. If no handles have been defined to optimize performance SerializeItem event will not be attempted to fire.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.DevComponents#DotNetBar#ICustomSerialization#HasDeserializeItemHandlers">
<summary>
Gets whether any handlers have been defined for DeserializeItem event. If no handles have been defined to optimize performance DeserializeItem event will not be attempted to fire.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.Definition">
<summary>
Gets/Sets Bar definition as XML string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBar.DispatchShortcuts">
<summary>
Indicates whether shortucts handled by items are dispatched to the next handler or control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ExplorerBar.ItemRemovedEventHandler">
<summary>
Represents the method that will handle the ItemRemoved event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ExplorerBarContainerItem">
<summary>
Provides layout for Explorer-Bar control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarContainerItem.#ctor">
<summary>
Creates new instance of ExplorerBarContainerItem class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarContainerItem.Copy">
<summary>
Returns copy of ExplorerBarContainerItem item
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarContainerItem.RecalcSize">
<summary>
Recalculates the size of the item
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarContainerItem.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Paints this base container
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarContainerItem.InternalMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Occurs when the mouse pointer is over the item and a mouse button is pressed. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarContainerItem.InternalMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
Occurs when the mouse pointer is over the item and a mouse button is released. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarContainerItem.FocusNextItem">
<summary>
Sets input focus to next visible item in Explorer Bar.
</summary>
<returns>True if focus was set to next visible item otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarContainerItem.FocusPreviousItem">
<summary>
Sets input focus to previous visible item in Explorer Bar.
</summary>
<returns>True if focus was set to previous visible item otherwise false.</returns>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarContainerItem.Expanded">
<summary>
Gets or sets a value indicating whether the item is expanded or not. For Popup items this would indicate whether the item is popped up or not.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ExplorerBarGroupItem">
<summary>
Represents the Explorer-Bar Group item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarGroupItem.#ctor">
<summary>
Creates new instance of ExplorerBarGroupItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarGroupItem.#ctor(System.String)">
<summary>
Creates new instance of ExplorerBarGroupItem and assigns the name to it.
</summary>
<param name="sItemName">Item name.</param>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarGroupItem.#ctor(System.String,System.String)">
<summary>
Creates new instance of ExplorerBarGroupItem and assigns the name and text to it.
</summary>
<param name="sItemName">Item name.</param>
<param name="ItemText">item text.</param>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarGroupItem.Copy">
<summary>
Returns copy of ExplorerBarGroupItem item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarGroupItem.GetFont(System.Boolean@)">
<summary>
Returns the Font object to be used for drawing the item text.
</summary>
<returns>Font object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarGroupItem.InternalMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
Occurs when the mouse pointer is moved over the item. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarGroupItem.InternalMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Occurs when the mouse pointer is over the item and a mouse button is pressed. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarGroupItem.InternalClick(System.Windows.Forms.MouseButtons,System.Drawing.Point)">
<summary>
Occurs when the item is clicked. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarGroupItem.OnVisibleChanged(System.Boolean)">
<summary>
Called when Visibility of the items has changed.
</summary>
<param name="newValue">New Visible state.</param>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarGroupItem.Serialize(DevComponents.DotNetBar.ItemSerializationContext)">
<summary>
Overloaded. Serializes the item and all sub-items into the XmlElement.
</summary>
<param name="ThisItem">XmlElement to serialize the item to.</param>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarGroupItem.Deserialize(DevComponents.DotNetBar.ItemSerializationContext)">
<summary>
Overloaded. Deserializes the Item from the XmlElement.
</summary>
<param name="ItemXmlSource">Source XmlElement.</param>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarGroupItem.ShowToolTip">
<summary>
Shows tooltip for this item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarGroupItem.Refresh">
<summary>
Forces the repaint the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ExplorerBarGroupItem.SetDefaultAppearance">
<summary>
Applies default appearance to ExplorerBarGroupItem.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.ThemeAware">
<summary>
Specifies whether item is drawn using Themes when running on OS that supports themes like Windows XP.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.ExpandButtonVisible">
<summary>
Gets or sets whether expand button is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.Expanded">
<summary>
Gets or sets a value indicating whether the item is expanded or not. For Popup items this would indicate whether the item is popped up or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.DropShadow">
<summary>
Gets or sets whether drop shadow is displayed when non-themed display is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.TitleStyle">
<summary>
Gets the reference to ElementStyle object which describes visual appearance of the explorer group item title.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.TitleHotStyle">
<summary>
Gets the reference to ElementStyle object which describes visual appearance of the explorer group item title while mouse is over the title bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.BackStyle">
<summary>
Gets or sets the item background style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.HeaderExpands">
<summary>
Gets or sets whether clicking the header of the control expands the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.StockStyle">
<summary>
Applies the stock style to the object.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.Style">
<summary>
Applies new visual style to this the item and all of its sub-items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.ExpandBorderColor">
<summary>
Gets or sets expand button border color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.ExpandBackColor">
<summary>
Gets or sets expand button back color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.ExpandForeColor">
<summary>
Gets or sets expand button fore color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.ExpandHotBorderColor">
<summary>
Gets or sets hot expand button border color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.ExpandHotBackColor">
<summary>
Gets or sets hot expand button back color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.ExpandHotForeColor">
<summary>
Gets or sets hot expand button fore color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.Enabled">
<summary>
Gets or sets a value indicating whether the item is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.PanelRect">
<summary>
Gets the rectangle of the panel item Button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.Image">
<summary>
Specifies the image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.XPSpecialGroup">
<summary>
Indicates whether XP themed special group colors are used for drawing.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.SubItemsMargin">
<summary>
Gets or sets the margin in pixels between the edge of the container and the items contained inside of it. Default value is 4.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.WordWrapSubItems">
<summary>
Gets or sets whether text on sub items is wrapped on new line if it cannot fit the space available.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ExplorerBarGroupItem.ImageIndex">
<summary>
Specifies the index of the image if ImageList is used.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.frmCustomize">
<summary>
Summary description for frmCustomize.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.frmCustomize.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.frmCustomize.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.frmCustomize.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.GenericItemContainer">
<summary>
Defines the generic container item that is used by toolbar, menu bar and other control for item layout.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.GenericItemContainer.ItemAdded">
<summary>
Occurs when new item is added to the container.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.GenericItemContainer.Copy">
<summary>
Returns copy of GenericItemContainer item
</summary>
</member>
<member name="M:DevComponents.DotNetBar.GenericItemContainer.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Paints this base container
</summary>
</member>
<member name="M:DevComponents.DotNetBar.GenericItemContainer.RecalcSizeToolbar">
<summary>
Recalculate Size of this item
</summary>
</member>
<member name="M:DevComponents.DotNetBar.GenericItemContainer.SubItemSizeChanged(DevComponents.DotNetBar.BaseItem)">
<summary>
This must be called by child item to let the parent know that its size
has been changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.GenericItemContainer.InternalMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
Occurs when the mouse pointer is over the item and a mouse button is released. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.GenericItemContainer.OnOwnerChanged">
<summary>
Called when item owner has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.GenericItemContainer.ItemAtLocation(System.Int32,System.Int32)">
<summary>
Return Sub Item at specified location
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GenericItemContainer.WrapItems">
<summary>
Set/Get does container wraps item into the new line when they exceed the container size
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GenericItemContainer.MoreItemsOnMenu">
<summary>
Specifies whether to display more items on popup menu or Bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GenericItemContainer.Expanded">
<summary>
Gets or sets a value indicating whether the item is expanded or not. For Popup items this would indicate whether the item is popped up or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GenericItemContainer.SystemContainer">
<summary>
Gets or sets whether container is system container used internally by DotNetBar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GenericItemContainer.SubItemsImageSize">
<summary>
When parent items does recalc size for its sub-items it should query
image size and store biggest image size into this property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GenericItemContainer.FillsContainerControl">
<summary>
Gets or sets whether item container fills the container control completely.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Hook">
<summary>
Summary description for Hook.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.HTMLHelp">
<summary>
Summary description for HTMLHelp.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.IBarItemDesigner">
<summary>
Interface for designer-item integration.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.IContainerWordWrap">
<summary>
Describes container support for setting the word-wrap behavior of it's sub-items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.IContainerWordWrap.WordWrapSubItems">
<summary>
Gets or sets whether sub items text will be word wrapped if it cannot fit the space allocated.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ItemPaintArgs">
<summary>
Summary description for ItemPaintArgs.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Items">
<summary>
Holds reference to all unique items in the DotNetBar.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ItemSerializationContext">
<summary>
Provides context information for serialization.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ItemSerializationContext.ItemXmlElement">
<summary>
Gets or sets reference to context XmlElement an item is being serialized to.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ItemSerializationContext.HasSerializeItemHandlers">
<summary>
Gets or sets whether SerializeItem event handler has been defined and whether event should be fired.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ItemSerializationContext.HasDeserializeItemHandlers">
<summary>
Gets or sets whether DeserializeItem event handler has been defined and whether event should be fired.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ItemSerializationContext.Serializer">
<summary>
Provides access to serializer.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ItemsListBox">
<summary>
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemsListBox.GetRenderer">
<summary>
Returns the renderer control will be rendered with.
</summary>
<returns>The current renderer.</returns>
</member>
<member name="T:DevComponents.DotNetBar.ItemStyle">
<summary>
Represent an style for the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemStyle.#ctor">
<summary>
Default Constructor
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemStyle.Clone">
<summary>
Makes a copy of the ItemStyle object.
</summary>
<returns>New Instance of a ItemStyle object</returns>
</member>
<member name="M:DevComponents.DotNetBar.ItemStyle.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Rectangle,System.Drawing.Font)">
<summary>
Paints the style.
</summary>
<param name="g">Graphics object</param>
<param name="r">Target area</param>
<param name="text">Text</param>
<param name="textRect">Text area</param>
<param name="font">Text Font</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemStyle.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Rectangle,System.Drawing.Font,System.Drawing.Point[])">
<summary>
Paints the style
</summary>
<param name="g">Graphics object</param>
<param name="r">Target Area</param>
<param name="text">Text</param>
<param name="textRect">Text area</param>
<param name="font">Text Font</param>
<param name="borderShape">Border Type</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemStyle.Paint(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints the style
</summary>
<param name="g">Graphics object</param>
<param name="r">Target Area</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemStyle.PaintText(System.Drawing.Graphics,System.String,System.Drawing.Rectangle,System.Drawing.Font)">
<summary>
Paints the style text only.
</summary>
<param name="g">Graphics object</param>
<param name="text">Text</param>
<param name="textRect">Text area</param>
<param name="font">Font</param>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.VerticalText">
<summary>
Gets or sets whether text is drawn vertically by this style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.BackColor1">
<summary>
Gets or sets a background color or starting color for gradient background.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.BackColor2">
<summary>
Gets or sets a background color or ending color for gradient background.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.ForeColor">
<summary>
Gets or sets a text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.GradientAngle">
<summary>
Gets or sets the gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.Font">
<summary>
Gets or sets the style Font
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.WordWrap">
<summary>
Gets or sets a value that determines whether text is displayed in multiple lines or one long line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.Alignment">
<summary>
Specifies alignment of the text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.LineAlignment">
<summary>
Specifies alignment of the text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.TextTrimming">
<summary>
Specifies how to trim characters when text does not fit.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.BackgroundImage">
<summary>
Specifies background image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.BackgroundImagePosition">
<summary>
Specifies background image position when container is larger than image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.BackgroundImageAlpha">
<summary>
Specifies the transparency of background image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.CornerType">
<summary>
Gets or sets the corner type.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.CornerDiameter">
<summary>
Gets or sets the diameter in pixels of the corner type rounded or diagonal.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.Border">
<summary>
Gets or sets the border type.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.BorderDashStyle">
<summary>
Gets or sets dash style for single line border type.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.BorderSide">
<summary>
Gets or sets the border sides that are displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.BorderColor">
<summary>
Gets or sets the border color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.BorderWidth">
<summary>
Gets or sets the line tickness of single line border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.MarginLeft">
<summary>
Gets or sets the left text margin.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.MarginRight">
<summary>
Gets or sets the right text margin.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.MarginTop">
<summary>
Gets or sets the top text margin.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyle.MarginBottom">
<summary>
Gets or sets the bottom text margin.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.ItemStyle.UseMnemonic" -->
<member name="T:DevComponents.DotNetBar.ColorEx">
<summary>
ColorEx object that provides the transparency setting ability.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ColorEx.#ctor(System.Drawing.Color)">
<summary>
Constructor with Color Initialization.
</summary>
<param name="color">Color object</param>
</member>
<member name="M:DevComponents.DotNetBar.ColorEx.#ctor(System.Drawing.Color,System.Byte)">
<summary>
Constructor with Color and Transparency Initialization.
</summary>
<param name="color">Color object</param>
<param name="opacity">Transparency</param>
</member>
<member name="M:DevComponents.DotNetBar.ColorEx.GetCompositeColor">
<summary>
Returns the color object with the transparency set.
</summary>
<returns>Color object</returns>
</member>
<member name="P:DevComponents.DotNetBar.ColorEx.Color">
<summary>
Gets or sets the Color object which does not include transparency.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorEx.Alpha">
<summary>
Indicates the transparency for the color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorEx.ColorSchemePart">
<summary>
Specifies that color derived from system colors which is part of DotNetBar Color Scheme object is used.
Colors derived from system colors are automatically refreshed when
system colors are changed.
</summary>
<remarks>
We recommend using this property to specify color rather than setting color directly.
Using colors that are derived from system colors improves uniform look of your application
and visual integration into user environment.
</remarks>
</member>
<member name="P:DevComponents.DotNetBar.ColorEx.Empty">
<summary>
Returns empty ColorEx object.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorEx.IsEmpty">
<summary>
Indicates whether object contain any color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.BackColor1">
<summary>
Gets or sets a background color or starting color for gradient background.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.BackColor2">
<summary>
Gets or sets a background color or ending color for gradient background.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.ForeColor">
<summary>
Gets or sets a text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.GradientAngle">
<summary>
Gets or sets the gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.Font">
<summary>
Gets or sets the style Font
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.WordWrap">
<summary>
Gets or sets a value that determines whether text is displayed in multiple lines or one long line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.Alignment">
<summary>
Specifies alignment of the text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.LineAlignment">
<summary>
Specifies alignment of the text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.TextTrimming">
<summary>
Specifies how to trim characters when text does not fit.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.BackgroundImage">
<summary>
Specifies background image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.BackgroundImagePosition">
<summary>
Specifies background image position when container is larger than image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.BackgroundImageAlpha">
<summary>
Specifies the transparency of background image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.CornerType">
<summary>
Gets or sets the corner type.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.CornerDiameter">
<summary>
Gets or sets the diameter in pixels of the corner type rounded or diagonal.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.Border">
<summary>
Gets or sets the border type.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.BorderDashStyle">
<summary>
Gets or sets dash style for single line border type.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.BorderSide">
<summary>
Gets or sets the border sides that are displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.BorderColor">
<summary>
Gets or sets the border color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.BorderWidth">
<summary>
Gets or sets the line tickness of single line border.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.MarginLeft">
<summary>
Gets or sets the left text margin.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.MarginRight">
<summary>
Gets or sets the right text margin.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.MarginTop">
<summary>
Gets or sets the top text margin.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemStyleMapper.MarginBottom">
<summary>
Gets or sets the bottom text margin.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ColorExMapper">
<summary>
ColorEx object that provides the transparency setting ability.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorExMapper.Color">
<summary>
Gets or sets the Color object which does not include transparency.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorExMapper.Alpha">
<summary>
Indicates the transparency for the color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ColorExMapper.ColorSchemePart">
<summary>
Specifies that color derived from system colors which is part of DotNetBar Color Scheme object is used.
Colors derived from system colors are automatically refreshed when
system colors are changed.
</summary>
<remarks>
We recommend using this property to specify color rather than setting color directly.
Using colors that are derived from system colors improves uniform look of your application
and visual integration into user environment.
</remarks>
</member>
<member name="T:DevComponents.DotNetBar.LabelItem">
<summary>
Summary description for LabelItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.LabelItem.OnImageTextSpacingChanged(System.Int32,System.Int32)">
<summary>
Called when ImageTextSpacing property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.LabelItem.ShouldSerializeBackColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.LabelItem.ResetForeColor">
<summary>
Reset property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.LabelItem.ShouldSerializeForeColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.LabelItem.ShouldSerializeSingleLineColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.LabelItem.ResetSingleLineColor">
<summary>
Resets the SingleLineColor property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.LabelItem.OnSymbolChanged(System.String,System.String)">
<summary>
Called when Symbol property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.LabelItem.OnSymbolSetChanged(DevComponents.DotNetBar.eSymbolSet,DevComponents.DotNetBar.eSymbolSet)">
<summary>
Called when SymbolSet property value changes.
</summary>
<param name="oldValue">Indciates old value</param>
<param name="newValue">Indicates new value</param>
</member>
<member name="M:DevComponents.DotNetBar.LabelItem.OnSymbolSizeChanged(System.Single,System.Single)">
<summary>
Called when SymbolSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.LabelItem.ShouldSerializeSymbolColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.LabelItem.ResetSymbolColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.LabelItem.MarkupLinkClick">
<summary>
Occurs when text markup link is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.ImageTextSpacing">
<summary>
Specifies spacing between label image and text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.IsMarkupSupported">
<summary>
Gets whether item supports text markup. Default is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.EnableMarkup">
<summary>
Gets or sets whether text-markup support is enabled for items Text property. Default value is true.
Set this property to false to display HTML or other markup in the item instead of it being parsed as text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.BorderType">
<summary>
Gets or sets the type of the border drawn around the label.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.BorderSide">
<summary>
Gets or sets the border sides that are displayed. Default value specifies border on all 4 sides.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.BackColor">
<summary>
Gets or sets the background color of the label.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.ForeColor">
<summary>
Gets or sets the text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.SingleLineColor">
<summary>
Gets or sets the border line color when border is single line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.TextAlignment">
<summary>
Gets or sets the horizontal text alignment.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.TextLineAlignment">
<summary>
Gets or sets the text vertical alignment.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.Font">
<summary>
Gets or sets the label font.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.PaddingLeft">
<summary>
Gets or sets the left padding in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.PaddingRight">
<summary>
Gets or sets the right padding in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.PaddingTop">
<summary>
Gets or sets the top padding in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.PaddingBottom">
<summary>
Gets or sets the bottom padding in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.Width">
<summary>
Gets or sets the width of the label in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.Height">
<summary>
Gets or sets the height of the label.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.DividerStyle">
<summary>
Gets or sets whether the label is drawn as a divider label.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.WordWrap">
<summary>
Gets or sets a value that determines whether text is displayed in multiple lines or one long line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.FontBold">
<summary>
Indicates whether label text is rendered using bold font unless the Font property is specifically set to different font.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.Text">
<summary>
Gets or sets the text associated with this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.Icon">
<summary>
Specifies the label icon. Icons support alpha blending.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.Image">
<summary>
Specifies label image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.ImageIndex">
<summary>
Specifies the index of the image for the label if ImageList is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.ImagePosition">
<summary>
Gets/Sets the image position inside the label.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.TextOrientation">
<summary>
Gets or sets text-orientation. Default is horizontal.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.VerticalTextTopUp">
<summary>
Gets or sets how vertical text is rotated when TextOrientation = Vertical.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.SymbolRealized">
<summary>
Gets the realized symbol string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.Symbol">
<summary>
Indicates the symbol displayed on label instead of the image. Setting the symbol overrides the image setting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.SymbolSet">
<summary>
Gets or sets the symbol set used to represent the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.SymbolSize">
<summary>
Indicates the size of the symbol in points.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.SymbolColor">
<summary>
Gets or sets the color of the symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LabelItem.ContainerNewLineAfter">
<summary>
Gets or sets whether label hosted in multi-line ItemContainer triggers new line switch after label is processed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.LocalizationKeys">
<summary>
Contains static keys that are used to discover localized text for internal controls.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.NavPaneCollapseButtonTooltip">
<summary>
Navigation Pane collapse button tooltip text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.NavPaneExpandButtonTooltip">
<summary>
Navigation Pane expand button tooltip text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.BarAutoHideButtonTooltip">
<summary>
Bar auto-hide button tooltip text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.BarCustomizeButtonTooltip">
<summary>
Bar customize button tooltip text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.BarCloseButtonTooltip">
<summary>
Bar close button tooltip text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.BarMaximizeButtonTooltip">
<summary>
Bar maximize button tooltip text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeItemTooltip">
<summary>
CustomizeItem tooltip text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeItemAddRemove">
<summary>
CustomizeItem Add/Remove text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeItemCustomize">
<summary>
CustomizeItem text for button that opens Customize dialog.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeItemReset">
<summary>
CustomizeItem text for Reset command.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.OverlfowDisplayMoreTooltip">
<summary>
Tooltip text for system button that displays overflow items.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogCaption">
<summary>
Text for Customize Dialog caption.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogTabToolbars">
<summary>
Text for Customize Dialog toolbars tab.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogTabCommands">
<summary>
Text for Customize Dialog commands tab.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogTabOptions">
<summary>
Text for Customize Dialog options tab.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogKeyboardButton">
<summary>
Text for Customize Dialog keyboard button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogCloseButton">
<summary>
Text for Customize Dialog close button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogNewToolbarButton">
<summary>
Text for Customize Dialog new toolbar button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogRenameToolbarButton">
<summary>
Text for Customize Dialog rename toolbar button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogDeleteToolbarButton">
<summary>
Text for Customize Dialog delete toolbar button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogResetToolbarButton">
<summary>
Text for Customize Dialog reset toolbar button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogLabelDragInfo">
<summary>
Text for Customize Dialog label that gives following instructions to user:
To add a command to Bar select the category and drag the command out of this box to a Bar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogLabelCategories">
<summary>
Text for Customize Dialog categories label.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogLabelToolbars">
<summary>
Text for Customize Dialog toolbars label.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogOptionsPersonalized">
<summary>
Text for Customize Dialog options tab Personalized Menus and Toolbars label.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogOptionsFullMenus">
<summary>
Text for Customize Dialog options tab Aways show full menus check box.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogOptionsFullMenusDelay">
<summary>
Text for Customize Dialog options tab Show full menus after a short delay check box.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogOptionsResetUsage">
<summary>
Text for Customize Dialog options tab 'Reset my usage data' command.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogOptionsOther">
<summary>
Text for Customize Dialog options tab 'Other' labe.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogOptionsScreenTips" -->
<!-- Badly formed XML comment ignored for member "F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogOptionsScreenTipsKeys" -->
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogOptionsMenuAnimation">
<summary>
Text for Customize Dialog options tab 'Menu Animation:' label.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogOptionsMenuAnimationNone">
<summary>
Text for Customize Dialog options tab Menu Animation combo box None option.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogOptionsMenuAnimationSys">
<summary>
Text for Customize Dialog options tab Menu Animation combo box System Default option.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogOptionsMenuAnimationRandom">
<summary>
Text for Customize Dialog options tab Menu Animation combo box Random option.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogOptionsMenuAnimationUnfold">
<summary>
Text for Customize Dialog options tab Menu Animation combo box Unfold option.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogOptionsMenuAnimationSlide">
<summary>
Text for Customize Dialog options tab Menu Animation combo box Slide option.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeDialogOptionsConfirmDelete">
<summary>
Text for Customize Dialog Confirm delete of bar message box.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeMenuReset">
<summary>
Text for Reset command on customize item context menu.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeMenuDelete">
<summary>
Text for Delete item command on customize item context menu.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeMenuChangeName">
<summary>
Text for Change Name item command on customize item context menu.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeMenuDefaultStyle">
<summary>
Text for Default Style item command on customize item context menu.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeMenuTextOnly">
<summary>
Text for Text Only item command on customize item context menu.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeMenuImageAndText">
<summary>
Text for Image And Text item command on customize item context menu.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.CustomizeMenuBeginGroup">
<summary>
Text for Begin Group item command on customize item context menu.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MdiSystemItemMinimizeTooltip">
<summary>
Text MdiSystemItem Minimize button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MdiSystemItemRestoreTooltip">
<summary>
Text MdiSystemItem Restore button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MdiSystemItemCloseTooltip">
<summary>
Text MdiSystemItem Close button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MdiSystemItemMenuRestore">
<summary>
Text MdiSystemItem menu Restore command.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MdiSystemItemMenuMove">
<summary>
Text MdiSystemItem menu Move command.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MdiSystemItemMenuSize">
<summary>
Text MdiSystemItem menu Size command.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MdiSystemItemMenuMinimize">
<summary>
Text MdiSystemItem menu Minimize command.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MdiSystemItemMenuMaximize">
<summary>
Text MdiSystemItem menu Maximize command.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MdiSystemItemMenuClose">
<summary>
Text MdiSystemItem menu Close command.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MdiSystemItemMenuNext">
<summary>
Text MdiSystemItem menu Next command.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.NavBarShowMoreButtons">
<summary>
Text Navigation Bar Show More Buttons menu item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.NavBarShowFewerButtons">
<summary>
Text Navigation Bar Show Fewer Buttons menu item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.NavBarOptions">
<summary>
Text Navigation Bar Options menu item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.NavBarDialogMoveUp">
<summary>
Text for Move Up button on Navigation Bar Options dialog box.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.NavBarDialogMoveDown">
<summary>
Text for Move Down button on Navigation Bar Options dialog box.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.NavBarDialogReset">
<summary>
Text for Reset button on Navigation Bar Options dialog box.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.NavBarDialogOK">
<summary>
Text for OK button on Navigation Bar Options dialog box.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.NavBarDialogCancel">
<summary>
Text for Cancel button on Navigation Bar Options dialog box.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.NavBarDialogTitle">
<summary>
Text for Navigation Bar Options dialog box title.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.NavBarDialogListLabel">
<summary>
Text for Navigation Bar Options label which is displayed above the list box which lists all the controls.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.RenameBarDialogCaption">
<summary>
Text for Rename Toolbar dialog caption.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.NewBarDialogCaption">
<summary>
Text for New Toolbar dialog caption.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.BarEditDialogBarNameLabel">
<summary>
Text for Bar Name label on Bar edit dialog (either rename or new).
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.BarEditDialogBarOkButton">
<summary>
Text for OK Button on Bar edit dialog (either rename or new).
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.BarEditDialogBarCancelButton">
<summary>
Text for Cancel Button on Bar edit dialog (either rename or new).
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.BarEditDialogInvalidNameMessage">
<summary>
Text for Invalid Name Message on Bar edit dialog (either rename or new).
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.ColorPickerThemeColorsLabel">
<summary>
Text displayed on Color Picker drop down Theme Colors label.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.ColorPickerStandardColorsLabel">
<summary>
Text displayed on Color Picker drop down Standard Colors label.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.ColorPickerMoreColorsMenuItem">
<summary>
Text displayed on Color Picker drop down more colors menu item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.ColorPickerDialogOKButton">
<summary>
Text for the OK Button on Color Picker dialog.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.ColorPickerDialogCancelButton">
<summary>
Text for the Cancel Button on Color Picker dialog.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.ColorPickerDialogNewColorLabel">
<summary>
Text for the new color label on Color Picker dialog.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.ColorPickerDialogCurrentColorLabel">
<summary>
Text for the current color label on Color Picker dialog.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.ColorPickerDialogStandardColorsLabel">
<summary>
Text for the colors label on the standard colors tab.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.ColorPickerDialogCustomColorsLabel">
<summary>
Text for the colors label on the custom colors tab.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.ColorPickerDialogGreenLabel">
<summary>
Text for the green component label on the custom colors tab.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.ColorPickerDialogBlueLabel">
<summary>
Text for the blue component label on the custom colors tab.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.ColorPickerDialogRedLabel">
<summary>
Text for the red component label on the custom colors tab.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.ColorPickerDialogColorModelLabel">
<summary>
Text for the Color Model label on the custom colors tab.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.ColorPickerDialogRgbLabel">
<summary>
Text for the RGB combo box item choice on the custom colors tab.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.ColorPickerTabStandard">
<summary>
Text for the Standard tab on color picker dialog.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.ColorPickerTabCustom">
<summary>
Text for the Custom tab on color picker dialog.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.ColorPickerCaption">
<summary>
Text for the Custom tab on color picker dialog.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.QatCustomizeTooltip">
<summary>
Text for the Custom tab on color picker dialog.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MonthCalendarTodayButtonText">
<summary>
Indicates the text for Today button displayed on the MonthCalendarItem control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MonthCalendarClearButtonText">
<summary>
Indicates the text for Clear button displayed on the MonthCalendarItem control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MessageBoxAbortButton">
<summary>
Indicates the text for MessageBoxEx Abort button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MessageBoxCancelButton">
<summary>
Indicates the text for MessageBoxEx Cancel button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MessageBoxCloseButton">
<summary>
Indicates the text for MessageBoxEx Close button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MessageBoxContinueButton">
<summary>
Indicates the text for MessageBoxEx Continue button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MessageBoxHelpButton">
<summary>
Indicates the text for MessageBoxEx Help button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MessageBoxIgnoreButton">
<summary>
Indicates the text for MessageBoxEx Ignore button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MessageBoxNoButton">
<summary>
Indicates the text for MessageBoxEx No button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MessageBoxOkButton">
<summary>
Indicates the text for MessageBoxEx OK button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MessageBoxRetryButton">
<summary>
Indicates the text for MessageBoxEx Retry button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MessageBoxTryAgainButton">
<summary>
Indicates the text for MessageBoxEx Try Again button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.MessageBoxYesButton">
<summary>
Indicates the text for MessageBoxEx Yes button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.FormSystemMenuRestore">
<summary>
Identifies Form system menu Restore item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.FormSystemMenuMove">
<summary>
Identifies Form system menu Move item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.FormSystemMenuSize">
<summary>
Identifies Form system menu Size item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.FormSystemMenuMinimize">
<summary>
Identifies Form system menu Minimize item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.FormSystemMenuMaximize">
<summary>
Identifies Form system menu Maximize item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.FormSystemMenuClose">
<summary>
Identifies Form system menu Close item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.TimeSelectorOkButton">
<summary>
Identifies Time Selector OK button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.TimeSelectorClearButton">
<summary>
Identifies Time Selector Clear button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.TimeSelectorHourLabel">
<summary>
Identifies Time Selector Hour Label.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.TimeSelectorMinuteLabel">
<summary>
Identifies Time Selector Minute Label.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterShowAll">
<summary>
Identifies 'Show all' Filter Expression label.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterShowNull">
<summary>
Identifies 'Show null' Filter Expression label.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterShowNotNull">
<summary>
Identifies 'Show not null' Filter Expression label.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterCustom">
<summary>
Identifies 'Custom' Filter Expression label.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterEnterExpr">
<summary>
Identifies 'Enter expression' Filter text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterSampleExpr">
<summary>
Identifies 'Apply' Filter Expression button label.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterCustomHelp">
<summary>
Identifies 'Apply' Filter Expression button label.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterApply">
<summary>
Identifies 'Apply' Filter Expression button label.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterOk">
<summary>
Identifies 'Ok' Filter Expression button label.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterCancel">
<summary>
Identifies 'Cancel' Filter Expression button label.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterClose">
<summary>
Identifies 'Close' Filter Expression button label.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterClear">
<summary>
Identifies 'Clear' Filter Expression button label.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterReset">
<summary>
Identifies 'Clear' Filter Expression button label.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterByRelativeDate">
<summary>
Identifies Filter DateTimePicked dialog 'Filter by relative date' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterBySpecificDate">
<summary>
Identifies Filter DateTimePicker dialog 'Filter by specific date' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterByDateRange">
<summary>
Identifies Filter DateTimePicker dialog 'Filter by date range' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterCurrentMonth">
<summary>
Identifies Filter DateTimePicker dialog, ByRelativeDate combo entry 'Current Month' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterCurrentYear">
<summary>
Identifies Filter DateTimePicker dialog, ByRelativeDate combo entry 'Current Year' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterLastMonthPeriod">
<summary>
Identifies Filter DateTimePicker dialog, ByRelativeDate combo entry 'Last Month Period' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterLast3MonthPeriod">
<summary>
Identifies Filter DateTimePicker dialog, ByRelativeDate combo entry 'Last 3 Month Period' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterLast6MonthPeriod">
<summary>
Identifies Filter DateTimePicker dialog, ByRelativeDate combo entry 'Last 6 Month Period' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterLast9MonthPeriod">
<summary>
Identifies Filter DateTimePicker dialog, ByRelativeDate combo entry 'Last 9 Month Period' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterLastYear">
<summary>
Identifies Filter DateTimePicker dialog, ByRelativeDate combo entry 'Last Year' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterLast5YearPeriod">
<summary>
Identifies Filter DateTimePicker dialog, ByRelativeDate combo entry 'Last 5 Year Period' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterLast10YearPeriod">
<summary>
Identifies Filter DateTimePicker dialog, ByRelativeDate combo entry 'Last 10 Year Period' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterExprError">
<summary>
Identifies Filter expression evaluation error 'Expression error' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterMissingParen">
<summary>
Identifies Filter expression evaluation error 'Missing parenthesis' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterMissingQuote">
<summary>
Identifies Filter expression evaluation error 'Missing quote' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterInvalidArgCount">
<summary>
Identifies Filter expression evaluation error 'Invalid number of arguments' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterInvalidArg">
<summary>
Identifies Filter expression evaluation error 'Invalid argument' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterInvalidEmptyOp">
<summary>
Identifies Filter expression evaluation error 'Invalid 'Empty' operation' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterInvalidDateTimeOp">
<summary>
Identifies Filter expression evaluation error 'Invalid DateTime operation' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterInvalidBoolOp">
<summary>
Identifies Filter expression evaluation error 'Invalid bool operation' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterInvalidStringOp">
<summary>
Identifies Filter expression evaluation error 'Invalid string operation' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterInvalidNumericOp">
<summary>
Identifies Filter expression evaluation error 'Invalid numeric operation' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterInvalidEval">
<summary>
Identifies Filter expression evaluation error 'Invalid logical evaluation' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterUndefinedFunction">
<summary>
Identifies Filter expression evaluation error 'Undefined User function' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterCustomFilter">
<summary>
Identifies custom filter dialog title 'Custom Filter' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridNewFilterExpr">
<summary>
Identifies custom filter dialog 'New Filter' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridNewFilter">
<summary>
Identifies custom filter dialog 'New' button text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridDeleteFilter">
<summary>
Identifies custom filter dialog 'Delete' button text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterName">
<summary>
Identifies custom filter dialog 'Filter Name' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterDescription">
<summary>
Identifies custom filter dialog 'Description' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridShowInFilterPopup">
<summary>
Identifies custom filter dialog 'Show in FilterPopup' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridFilterHelpTitle">
<summary>
Identifies custom filter dialog title 'Custom Filter' text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.LocalizationKeys.SuperGridGroupByWaterMarkText">
<summary>
Identifies the default GroupBy WaterMarkText.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.LocalizationKeys.LocalizeString">
<summary>
Occurs when DotNetBar is looking for translated text for one of the internal text that are
displayed on menus, toolbars and customize forms. You need to set Handled=true if you want
your custom text to be used instead of the built-in system value.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.LogItem">
<summary>
Represents an item that displays log information in list container.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.LogItem.#ctor">
<summary>
Initializes a new instance of the LogItem class.
</summary>
<param name=""></param>
</member>
<member name="M:DevComponents.DotNetBar.LogItem.#ctor(System.String)">
<summary>
Creates new instance of LogItem and assigns the name to it.
</summary>
<param name="sItemName">Item name.</param>
</member>
<member name="M:DevComponents.DotNetBar.LogItem.#ctor(System.String,System.String)">
<summary>
Creates new instance of LogItem and assigns the name and text to it.
</summary>
<param name="sItemName">Item name.</param>
<param name="ItemText">item text.</param>
</member>
<member name="M:DevComponents.DotNetBar.LogItem.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.LogItem.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the ButtonItem specific properties to new instance of the item.
</summary>
<param name="copy">New ButtonItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.LogItem.ShouldSerializeTextColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.LogItem.ResetTextColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.LogItem.ShouldSerializeHeaderTextColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.LogItem.ResetHeaderTextColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.LogItem.MarkupLinkClick">
<summary>
Occurs when text markup link is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LogItem.TextColor">
<summary>
Gets or sets the color of the control text body.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LogItem.HeaderTextColor">
<summary>
Gets or sets the color of the header text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LogItem.Image">
<summary>
Gets or sets the image displayed on the log item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LogItem.ImagePosition">
<summary>
Gets or sets the image position in relation to text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LogItem.BackColor">
<summary>
Gets or sets the background color of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.LogItem.IsMarkupSupported">
<summary>
Gets whether item supports text markup. Default is false.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.MdiWindowListItem">
<summary>
Summary description for MdiWindowListItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MdiWindowListItem.Initialize(System.Windows.Forms.Form)">
<summary>
Initializes the item and connects it to the MDI form so it can process the events. You should not call this method directly since this process is
automatically managed by the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MdiWindowListItem.Initialize">
<summary>
Initializes the item and connects it to the MDI form so it can process the events. You should not call this method directly since this process is
automatically managed by the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MdiWindowListItem.RefreshButtonIcons">
<summary>
Refresh the MDI Child form Icons that are displayed on window list items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MdiWindowListItem.ShowWindowIcons">
<summary>
Gets or sets whether the MDI Child Window Icons are displayed on items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MdiWindowListItem.MaxCaptionLength">
<summary>
Gets or sets maximum form caption length that will be displayed on each item. If caption length exceeds given value ... characters are added.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MdiWindowListItem.IsInitialized">
<summary>
Gets whether item has been connected to the MDI form so it can process its events.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MdiWindowListItem.MdiNoFormActivateFlicker">
<summary>
Gets or sets whether flicker associated with switching maximized Mdi child forms is attempted to eliminate. You should set this property to false if you encounter any painting problems with your Mdi child forms.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MdiWindowListItem.CreateMdiChildAccessKeys">
<summary>
Gets or sets whether numbered access keys are created for MDI Child window menu items for first 9 items. Access keys will start with number 1 and go through 9. Default value is false
which indicates that access keys are not created.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.MenuPanel">
<summary>
Summary description for PopupWindow.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MenuPanel.ItemAtLocation(System.Int32,System.Int32)">
<summary>
Return Sub Item at specified location
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MenuPanel.ShowKeyTips">
<summary>
Gets or sets whether Key Tips (accelerator keys) for items are displayed on top of them.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MenuPanel.KeyTipsFont">
<summary>
Gets or sets the font that is used to display Key Tips (accelerator keys) when they are displayed. Default value is null which means
that control Font is used for Key Tips display.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MenuPanel.DevComponents#DotNetBar#IAccessibilitySupport#DoDefaultActionItem">
<summary>
Gets or sets the item default accessibility action will be performed on.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MenuPanel.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MenuPanel.ShowToolTips">
<summary>
Indicates whether Tooltips are shown on Bars and menus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MenuPanel.SideBar">
<summary>
Sets,Gets the side bar image structure.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MenuPanel.HotSubItem">
<summary>
Gets or sets the HotSubItem on the menu. This method is used internally by DotNetBar and should not be used in your application.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.MessageHandler">
<summary>
Summary description for MessageHandler.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.NativeFunctions">
<summary>
Summary description for NativeFunctions.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.NativeFunctions.WindowFromPointFlags">
<summary>
For use with ChildWindowFromPointEx
</summary>
</member>
<member name="F:DevComponents.DotNetBar.NativeFunctions.WindowFromPointFlags.CWP_ALL">
<summary>
Does not skip any child windows
</summary>
</member>
<member name="F:DevComponents.DotNetBar.NativeFunctions.WindowFromPointFlags.CWP_SKIPINVISIBLE">
<summary>
Skips invisible child windows
</summary>
</member>
<member name="F:DevComponents.DotNetBar.NativeFunctions.WindowFromPointFlags.CWP_SKIPDISABLED">
<summary>
Skips disabled child windows
</summary>
</member>
<member name="F:DevComponents.DotNetBar.NativeFunctions.WindowFromPointFlags.CWP_SKIPTRANSPARENT">
<summary>
Skips transparent child windows
</summary>
</member>
<member name="T:DevComponents.DotNetBar.NavigationBar">
<summary>
Represents Outlook 2003 like Navigation Bar.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationBar.#ctor">
<summary>
Default constructor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationBar.SetDesignTimeDefaults">
<summary>
Applies design-time defaults to control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationBar.ShowMoreButtons">
<summary>
Increases the size of the navigation bar if possible by showing more buttons on the top.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationBar.ShowFewerButtons">
<summary>
Reduces the size of the navigation bar if possible by showing fewer buttons on the top.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationBar.SaveLayout(System.String)">
<summary>
Saves current visual layout of navigation bar control to XML based file.
</summary>
<param name="fileName">File name to save layout to.</param>
</member>
<member name="M:DevComponents.DotNetBar.NavigationBar.SaveLayout(System.Xml.XmlElement)">
<summary>
Saves current visual layout of navigation bar control to XmlElement.
</summary>
<param name="xmlParent">XmlElement object that will act as a parent for the layout definition. Exact same element should be passed into the LoadLayout method to load the layout.</param>
</member>
<member name="M:DevComponents.DotNetBar.NavigationBar.LoadLayout(System.String)">
<summary>
Loads navigation bar layout that was saved using SaveLayout method. Note that this method must be called after all items are created and added to the control.
</summary>
<param name="fileName">File to load layout from.</param>
</member>
<member name="M:DevComponents.DotNetBar.NavigationBar.LoadLayout(System.Xml.XmlElement)">
<summary>
Loads navigation bar layout that was saved using SaveLayout method. Note that this method must be called after all items are created and added to the control.
</summary>
<param name="xmlParent">Parent XML element that is used to load layout from. Note that this must be the same element that was passed into the SaveLayout method.</param>
</member>
<member name="E:DevComponents.DotNetBar.NavigationBar.OptionsDialogClosed">
<summary>
Occurs after Options dialog which is used to customize control's content has closed by user using OK button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBar.Items">
<summary>
Returns collection of items on a bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBar.ConfigureItemVisible">
<summary>
Gets or sets whether Configure Buttons button is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBar.ConfigureShowHideVisible">
<summary>
Gets or sets whether Show More Buttons and Show Fewer Buttons menu items are visible on Configure buttons menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBar.ConfigureNavOptionsVisible">
<summary>
Gets or sets whether Navigation Pane Options menu item is visible on Configure buttons menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBar.ConfigureAddRemoveVisible">
<summary>
Gets or sets whether Navigation Pane Add/Remove Buttons menu item is visible on Configure buttons menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBar.SummaryLineVisible">
<summary>
Gets or sets whether summary line is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBar.ItemPaddingTop">
<summary>
Gets or sets the padding in pixels at the top portion of the item. Height of each item will be increased by padding amount.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBar.ItemPaddingBottom">
<summary>
Gets or sets the padding in pixels for bottom portion of the item. Height of each item will be increased by padding amount.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBar.ItemsContainer">
<summary>
Returns items container.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBar.CheckedButton">
<summary>
Returns reference to currently checked button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBar.AutoSizeButtonImage">
<summary>
Gets or sets whether images are automatically resized to size specified in ImageSizeSummaryLine when button is on the bottom summary line of navigation bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBar.ImageSizeSummaryLine">
<summary>
Gets or sets size of the image that will be use to resize images to when button button is on the bottom summary line of navigation bar and AutoSizeButtonImage=true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBar.LayoutDefinition">
<summary>
Gets or sets the navigation bar definition string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBar.Style">
<summary>
Gets/Sets the visual style for items and color scheme.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBar.SplitterVisible">
<summary>
Indicates whether splitter on top of the navigation bar is visible. When activated splitter will let user change the height of the
control to show fewer or more buttons. It is recommended to have navigation bar docked to bottom (Dock=Bottom) to maintain
proper layout.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.NavigationBarContainer">
<summary>
Container control for Navigation Bar.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationBarContainer.#ctor">
<summary>
Creates new instance of NavigationBarContainer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationBarContainer.#ctor(System.String)">
<summary>
Creates new instance of SideBarPanelItem and assigns the name to it.
</summary>
<param name="sItemName">Item name.</param>
</member>
<member name="M:DevComponents.DotNetBar.NavigationBarContainer.#ctor(System.String,System.String)">
<summary>
Creates new instance of SideBarPanelItem and assigns the name and text to it.
</summary>
<param name="sItemName">Item name.</param>
<param name="ItemText">item text.</param>
</member>
<member name="M:DevComponents.DotNetBar.NavigationBarContainer.Copy">
<summary>
Returns copy of SideBarPanelItem item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationBarContainer.RecalcSize">
<summary>
Recalculates size of this container.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationBarContainer.ShowMoreButtons">
<summary>
Increases the size of the navigation bar if possible by showing more buttons on the top.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationBarContainer.ShowFewerButtons">
<summary>
Reduces the size of the navigation bar if possible by showing fewer buttons on the top.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationBarContainer.OnSubItemImageSizeChanged(DevComponents.DotNetBar.BaseItem)">
<summary>
Must be called by any sub item that implements the image when image has changed
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationBarContainer.OnItemAdded(DevComponents.DotNetBar.BaseItem)">
<summary>
Occurs after an item has been added to the container. This procedure is called on both item being added and the parent of the item. To distinguish between those two states check the item parameter.
</summary>
<param name="item">When occurring on the parent this will hold the reference to the item that has been added. When occurring on the item being added this will be null (Nothing).</param>
</member>
<member name="M:DevComponents.DotNetBar.NavigationBarContainer.OnAfterItemRemoved(DevComponents.DotNetBar.BaseItem,System.Int32)">
<summary>
Occurs after an item has been removed.
</summary>
<param name="item">Item being removed.</param>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBarContainer.SummaryLineStartItemIndex">
<summary>
Returns index of the first item that is displayed in summary line or -1 if there is no item displayed in summary line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBarContainer.Expanded">
<summary>
Gets or sets a value indicating whether the item is expanded or not. For Popup items this would indicate whether the item is popped up or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBarContainer.ConfigureItemVisible">
<summary>
Gets or sets whether Configure Buttons button is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBarContainer.ConfigureShowHideVisible">
<summary>
Gets or sets whether Show More Buttons and Show Fewer Buttons menu items are visible on Configure buttons menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBarContainer.ConfigureNavOptionsVisible">
<summary>
Gets or sets whether Navigation Pane Options menu item is visible on Configure buttons menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBarContainer.ConfigureAddRemoveVisible">
<summary>
Gets or sets whether Navigation Pane Add/Remove Buttons menu item is visible on Configure buttons menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBarContainer.ItemPaddingTop">
<summary>
Gets or sets the padding in pixels at the top portion of the item. Height of each item will be increased by padding amount.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBarContainer.ItemPaddingBottom">
<summary>
Gets or sets the padding in pixels for bottom portion of the item. Height of each item will be increased by padding amount.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBarContainer.AutoSizeButtonImage">
<summary>
Gets or sets whether images are automatically resized to size specified in ImageSizeSummaryLine when button is on the bottom summary line of navigation bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBarContainer.ImageSizeSummaryLine">
<summary>
Gets or sets size of the image that will be use to resize images to when button button is on the bottom summary line of navigation bar and AutoSizeButtonImage=true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationBarContainer.SummaryLineVisible">
<summary>
Gets or sets whether summary line is visible.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PanelChangingEventHandler">
<summary>
Delegate for OptionGroupChanging event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PanelPopupEventHandler">
<summary>
Delegate for PanelPopup events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.NavigationPane">
<summary>
Represents Outlook 2003 style navigation pane control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.NavigationPane.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationPane.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationPane.RecalcLayout">
<summary>
Applies any layout changes and repaint the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationPane.GetPanel(DevComponents.DotNetBar.ButtonItem)">
<summary>
Returns Panel associated with button on navigation bar or null if panel cannot be found.
</summary>
<param name="item">Button on navigation bar.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.NavigationPane.SuspendLayout">
<summary>
Suspends normal layout logic.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationPane.ResumeLayout(System.Boolean)">
<summary>
Resumes normal layout logic. Optionally forces an immediate layout of pending layout requests.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationPane.ShowMoreButtons">
<summary>
Increases the size of the navigation bar if possible by showing more buttons on the top.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationPane.ShowFewerButtons">
<summary>
Reduces the size of the navigation bar if possible by showing fewer buttons on the top.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationPane.SaveLayout(System.String)">
<summary>
Saves current visual layout of navigation bar control to XML based file.
</summary>
<param name="fileName">File name to save layout to.</param>
</member>
<member name="M:DevComponents.DotNetBar.NavigationPane.SaveLayout(System.Xml.XmlElement)">
<summary>
Saves current visual layout of navigation bar control to XmlElement.
</summary>
<param name="xmlParent">XmlElement object that will act as a parent for the layout definition. Exact same element should be passed into the LoadLayout method to load the layout.</param>
</member>
<member name="M:DevComponents.DotNetBar.NavigationPane.PopupSelectedPane">
<summary>
Popup selected pane when control is collapsed. When control is collapsed (Expanded=false) currently selected pane is not visible
calling this method will popup selected pane and allow user access to it. Use PopupPaneVisible property
to check whether currently selected pane is displayed as popup.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationPane.HideSelectedPopupPane">
<summary>
Hides popup selected pane when control is collapsed and selected pane is displayed as popup. When control is collapsed (Expanded=false)
currently selected pane can be displayed as popup. Calling this method will hide the popup pane. Use PopupPaneVisible property
to check whether currently selected pane is displayed as popup.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationPane.OnPanelPopupClosed(System.EventArgs)">
<summary>
Raises the PanelPopupClosed event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.NavigationPane.LoadLayout(System.String)">
<summary>
Loads navigation bar layout that was saved using SaveLayout method. Note that this method must be called after all items are created and added to the control.
</summary>
<param name="fileName">File to load layout from.</param>
</member>
<member name="M:DevComponents.DotNetBar.NavigationPane.LoadLayout(System.Xml.XmlElement)">
<summary>
Loads navigation bar layout that was saved using SaveLayout method. Note that this method must be called after all items are created and added to the control.
</summary>
<param name="xmlParent">Parent XML element that is used to load layout from. Note that this must be the same element that was passed into the SaveLayout method.</param>
</member>
<member name="M:DevComponents.DotNetBar.NavigationPane.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.NavigationPane.ColorSchemeStyleChanged">
<summary>
Updates the color scheme on child panels to reflect the style of the NavigationBar control. Calling this method is necessary only if you manually
change the NavigationBar.ColorScheme property.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavigationPane.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.NavigationPane.ItemClick">
<summary>
Occurs when Item is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.NavigationPane.PanelChanging">
<summary>
Occurs when currently selected panel is about to change.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.NavigationPane.LocalizeString">
<summary>
Occurs when control is looking for translated text for one of the internal text that are
displayed on menus, toolbars and customize forms. You need to set Handled=true if you want
your custom text to be used instead of the built-in system value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.NavigationPane.BeforePanelPopup">
<summary>
Occurs before panel is displayed on popup when control is collapsed. You can use this event to modify default
size of the popup panel or cancel the popup of the panel.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.NavigationPane.AfterPanelPopup">
<summary>
Occurs after panel is displayed on popup.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.NavigationPane.PanelPopupClosed">
<summary>
Occurs after panel displayed on popup is closed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.NavigationPane.ExpandedChanging">
<summary>
Occurs before Expanded property is changed. You can cancel change of this property by setting Cancel=true on the event arguments.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.NavigationPane.ExpandedChanged">
<summary>
Occurs after Expanded property has changed. You can handle ExpandedChanging event and have opportunity to cancel the change.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.NavigationPane.OptionsDialogClosed">
<summary>
Occurs after Options dialog which is used to customize control's content has closed by user using OK button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.ExpandedSize">
<summary>
Returns the width of the expanded control if control is currently collapsed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.Items">
<summary>
Returns collection containing buttons on navigation bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.NavigationBarHeight">
<summary>
Gets or sets the height of the navigation bar part of the navigation pane control.
Navigation Bar height is automatically calculated based on the content.
Setting this property suggests desired height of the navigation bar but the actual height will be
calculated to ensure that complete buttons are visible so suggested and actual height might differ.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.NavigationBar">
<summary>
Returns reference to internal NavigationBar control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.ImageSizeSummaryLine">
<summary>
Gets or sets size of the image that will be use to resize images to when button button is on the bottom summary line of navigation bar and AutoSizeButtonImage=true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.ConfigureItemVisible">
<summary>
Gets or sets whether Configure Buttons button is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.ConfigureShowHideVisible">
<summary>
Gets or sets whether Show More Buttons and Show Fewer Buttons menu items are visible on Configure buttons menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.ConfigureNavOptionsVisible">
<summary>
Gets or sets whether Navigation Pane Options menu item is visible on Configure buttons menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.ConfigureAddRemoveVisible">
<summary>
Gets or sets whether Navigation Pane Add/Remove Buttons menu item is visible on Configure buttons menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.CheckedButton">
<summary>
Returns reference to currently checked button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.SelectedPanel">
<summary>
Returns reference to currently selected panel. Panels are automatically switched when buttons are checked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.Images">
<summary>
ImageList for images used on Items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.TitlePanel">
<summary>
Returns reference to the PanelEx that is used to display title.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.ItemPaddingTop">
<summary>
Gets or sets the padding in pixels at the top portion of the item. Height of each item will be increased by padding amount.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.ItemPaddingBottom">
<summary>
Gets or sets the padding in pixels for bottom portion of the item. Height of each item will be increased by padding amount.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.AutoSizeButtonImage">
<summary>
Gets or sets whether images are automatically resized to size specified in ImageSizeSummaryLine when button is on the bottom summary line of navigation bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.LayoutDefinition">
<summary>
Gets or sets the navigation bar definition string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.AnimationTime">
<summary>
Gets or sets animation time in milliseconds when control is expanded or collapsed. Default value is 100 miliseconds. You can set this to 0 (zero) to disable animation.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.CanCollapse">
<summary>
Gets or sets whether navigation pane can be collapsed. Default value is false. When set to true
expand/collapse button will be displayed in title so control can be reduced in size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.TitleButtonAlignment">
<summary>
Gets or sets alignment of the expand button inside of title bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.Expanded">
<summary>
Gets or sets whether navigation pane is expanded. Default value is true.
When control is collapsed it is reduced in size so it consumes less space.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.CollapsedInnerPanel">
<summary>
Gets the reference to the inner panel displaying Navigation Pane vertical text created when control is collapsed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.PopupSelectedPaneVisible">
<summary>
Gets or sets whether selected pane is displayed as popup when control is collapsed (Expanded=false). Using
navigation pane button that is displayed when control is collapsed user can popup or close currently selected pane without
expanding the control. You can use this property to do same from code as well as check whether selected pane is displayed as
popup. Note that control must be collapsed (Expanded=false) in order for this property to have any effect.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPane.Style">
<summary>
Gets/Sets the visual style for the control. Default style is Office 2003.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PanelChangingEventArgs">
<summary>
Represents event arguments for PanelChanging event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PanelChangingEventArgs.Cancel">
<summary>
Set to true to cancel changing of the panel.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PanelChangingEventArgs.NewPanel">
<summary>
Panel that will be selected if operation is not cancelled.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PanelChangingEventArgs.OldPanel">
<summary>
Panel that is currently selected and which will be de-selected if operation is not cancelled.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelChangingEventArgs.#ctor(DevComponents.DotNetBar.NavigationPanePanel,DevComponents.DotNetBar.NavigationPanePanel)">
<summary>
Default constructor.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PanelPopupEventArgs">
<summary>
Represents event arguments for BeforePanelPopup event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PanelPopupEventArgs.Cancel">
<summary>
Set to true to cancel popup of the panel.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.PanelPopupEventArgs.PopupBounds">
<summary>
Size and position of popup. You can modify this memeber to affect size and position of popup.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelPopupEventArgs.#ctor(System.Drawing.Rectangle)">
<summary>
Default constructor.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.NavigationPanePanel">
<summary>
Represents Panel on Navigation Pane control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.NavigationPanePanel.ParentItem">
<summary>
Gets or sets button associated with the pane on the panel when hosted on NavigationPane control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.NavPaneOptions">
<summary>
Summary description for NavPaneOptions.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.NavPaneOptions.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavPaneOptions.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.NavPaneOptions.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PanelExTitle.UpdateButtonPosition">
<summary>
Updates position of the title bar button to reflect any changes to the button that influence size of the button.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.PanelExTitle.ExpandedClick">
<summary>
Occurs when Expanded/Collapse button is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelExTitle.ExpandButtonVisible">
<summary>
Gets or sets whether expand button is visible or not. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelExTitle.ButtonAlignment">
<summary>
Gets or sets alignment of the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.PanelExTitle.MarkupUsesStyleAlignment">
<summary>
Gets or sets whether text markup if it occupies less space than control provides uses the Style Alignment and LineAlignment properties to align the markup inside of the control. Default value is true.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PopupContainer">
<summary>
Use as a popup container for DotNetBar objects.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PopupContainerControl">
<summary>
Summary description for PopupContainer.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PopupShadow">
<summary>
Summary description for PopupShadow.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ProgressBarItem">
<summary>
Represents a progress bar item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ProgressBarItem.#ctor">
<summary>
Creates new instance of ProgressBarItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ProgressBarItem.#ctor(System.String)">
<summary>
Creates new instance of ProgressBarItem and assigns the name to it.
</summary>
<param name="sItemName">Item name.</param>
</member>
<member name="M:DevComponents.DotNetBar.ProgressBarItem.#ctor(System.String,System.String)">
<summary>
Creates new instance of ProgressBarItem and assigns the name and text to it.
</summary>
<param name="sItemName">Item name.</param>
<param name="ItemText">item text.</param>
</member>
<member name="M:DevComponents.DotNetBar.ProgressBarItem.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ProgressBarItem.InternalCopyToItem(DevComponents.DotNetBar.ProgressBarItem)">
<summary>
Copies the ProgressBarItem specific properties to new instance of the item.
</summary>
<param name="copy">New ProgressBarItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.ProgressBarItem.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the ProgressBarItem specific properties to new instance of the item.
</summary>
<param name="copy">New ProgressBarItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.ProgressBarItem.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Overriden. Draws the item.
</summary>
<param name="g">Target Graphics object.</param>
</member>
<member name="M:DevComponents.DotNetBar.ProgressBarItem.RecalcSize">
<summary>
Overriden. Recalculates the size of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ProgressBarItem.ResetBackgroundStyle">
<summary>
Resets style to default value. Used by windows forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ProgressBarItem.PerformStep">
<summary>
Advances the current position of the progress bar by the amount of the Step property.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ProgressBarItem.Increment(System.Int32)">
<summary>
Advances the current position of the progress bar by the specified amount.
</summary>
<param name="value">The amount by which to increment the progress bar's current position. </param>
</member>
<member name="M:DevComponents.DotNetBar.ProgressBarItem.ShouldSerializeChunkColor">
<summary>
Gets whether ChunkColor property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ProgressBarItem.ResetChunkColor">
<summary>
Resets the ChunkColor property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ProgressBarItem.ShouldSerializeChunkColor2">
<summary>
Gets whether ChunkColor property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ProgressBarItem.ResetChunkColor2">
<summary>
Resets the ChunkColor property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ProgressBarItem.Deserialize(DevComponents.DotNetBar.ItemSerializationContext)">
<summary>
Overloaded. Deserializes the Item from the XmlElement.
</summary>
<param name="ItemXmlSource">Source XmlElement.</param>
</member>
<member name="M:DevComponents.DotNetBar.ProgressBarItem.Serialize(DevComponents.DotNetBar.ItemSerializationContext)">
<summary>
Overloaded. Serializes the item and all sub-items into the XmlElement.
</summary>
<param name="ThisItem">XmlElement to serialize the item to.</param>
</member>
<member name="P:DevComponents.DotNetBar.ProgressBarItem.BackgroundStyle">
<summary>
Gets or sets the item background style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ProgressBarItem.BackStyle">
<summary>
Specifies the background style of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ProgressBarItem.Maximum">
<summary>
Gets or sets the maximum value of the range of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ProgressBarItem.Minimum">
<summary>
Gets or sets the minimum value of the range of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ProgressBarItem.Value">
<summary>
Gets or sets the current position of the progress bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ProgressBarItem.Step">
<summary>
Gets or sets the amount by which a call to the PerformStep method increases the current position of the progress bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ProgressBarItem.TextVisible">
<summary>
Gets or sets whether the text inside the progress bar is displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ProgressBarItem.Width">
<summary>
Gets or sets the width of the item in pixels. 0 value indicates the auto-sizing item based on the text contained in it.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ProgressBarItem.Height">
<summary>
Gets or sets the height of the label. 0 value indicates the auto-sizing item based on the text height.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ProgressBarItem.ChunkColor">
<summary>
Gets or sets the color of the progress chunk.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ProgressBarItem.ChunkColor2">
<summary>
Gets or sets the target gradient color of the progress chunk.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ProgressBarItem.ChunkGradientAngle">
<summary>
Gets or sets the gradient angle of the progress chunk.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ProgressBarItem.MenuVisibility">
<summary>
Indicates item's visiblity when on pop-up menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ProgressBarItem.RecentlyUsed">
<summary>
Indicates whether item was recently used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ProgressBarItem.ProgressType">
<summary>
Gets or sets the type of progress bar used to indicate progress. The Standard style displays the progress based on Minimum, Maximum and current Value.
The Marquee type is automatically moving progress bar that is used to indicate an ongoing operation for which the actual duration cannot be estimated.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ProgressBarItem.MarqueeAnimationSpeed">
<summary>
Gets or sets the marquee animation speed in milliseconds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ProgressBarItem.ColorTable">
<summary>
Gets or sets the predefined color state table for progress bar. Color specified applies to items with Office 2007 style only. It does not have
any effect on other styles. You can use ColorTable to indicate the state of the operation that Progress Bar is tracking. Default value is eProgressBarItemColor.Normal.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RemindForm">
<summary>
Summary description for RemindForm.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RemindForm.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RemindForm.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Office2007BarColorTable">
<summary>
Represents color table for Bar objects in various states.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Office2007BarColorTable.ToolbarTopBackground">
<summary>
Gets or sets the colors for top part of toolbar background.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Office2007BarColorTable.ToolbarBottomBackground">
<summary>
Gets or sets the colors for bottom part of toolbar background.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Office2007BarColorTable.ToolbarBottomBorder">
<summary>
Gets or sets the color of the bottom border.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Office2007BarColorTable.PopupToolbarBackground">
<summary>
Gets or sets the popup toolbar background color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Office2007BarColorTable.PopupToolbarBorder">
<summary>
Gets or sets the color of popup toolbar border.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Office2007BarColorTable.StatusBarTopBorder">
<summary>
Gets or sets the status bar top border color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Office2007BarColorTable.StatusBarTopBorderLight">
<summary>
Gets or sets the status bar top border light color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Office2007BarColorTable.StatusBarAltBackground">
<summary>
Gets or sets the alternative background colors for the status bar.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTable">
<summary>
Represents color table for ButtonItem object.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTable.Name">
<summary>
Gets or sets the name of the color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTable.Default">
<summary>
Gets or sets the color table applied for button in default state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTable.MouseOver">
<summary>
Gets or sets the color table applied when mouse is over the button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTable.MouseOverSplitInactive">
<summary>
Gets or sets the color table applied when mouse is over the buttons inactive split part. Applies to split button appearance only.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTable.Pressed">
<summary>
Gets or sets the color table applied when mouse is pressed over the button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTable.Checked">
<summary>
Gets or sets the color table applied when mouse is pressed over the button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTable.Expanded">
<summary>
Gets or sets the color table applied when button is expanded.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTable.Disabled">
<summary>
Gets or sets the color table applied when cursor is over button on a menu.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTableCollection">
<summary>
Represents typed collection of Office2007ButtonItemColorTable type.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTableCollection.#ctor">
<summary>Creates new instance of the class.</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTableCollection.Add(DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTable)">
<summary>
Adds new object to the collection.
</summary>
<param name="Office2007ButtonItemColorTable">Object to add.</param>
<returns>Index of newly added object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTableCollection.Insert(System.Int32,DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTable)">
<summary>
Inserts new object into the collection.
</summary>
<param name="index">Position of the object.</param>
<param name="value">Object to insert.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTableCollection.IndexOf(DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTable)">
<summary>
Returns index of the object inside of the collection.
</summary>
<param name="value">Reference to the object.</param>
<returns>Index of the object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTableCollection.Contains(DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTable)">
<summary>
Returns whether collection contains specified object.
</summary>
<param name="value">Object to look for.</param>
<returns>true if object is part of the collection, otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTableCollection.Contains(System.String)">
<summary>
Returns whether collection contains object with specified name.
</summary>
<param name="name">Name of the object to look for</param>
<returns>true if object with given name is part of the collection otherwise false</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTableCollection.Remove(DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTable)">
<summary>
Removes specified object from the collection.
</summary>
<param name="value"></param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTableCollection.CopyTo(DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTable[],System.Int32)">
<summary>
Copies collection into the specified array.
</summary>
<param name="array">Array to copy collection to.</param>
<param name="index">Starting index.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTableCollection.CopyTo(DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTable[])">
<summary>
Copies contained items to the Office2007ButtonItemColorTable array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTableCollection.Item(System.Int32)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007ButtonItemColorTableCollection.Item(System.String)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007ButtonItemStateColorTable">
<summary>
Represents a color table for ButtonItem in certain state like but not limited to mouse over, checked or pressed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ButtonItemStateColorTable.OuterBorder">
<summary>
Gets or sets the outer border colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ButtonItemStateColorTable.OuterBorderWidth">
<summary>
Gets or sets the outer border width. Default is 1.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ButtonItemStateColorTable.InnerBorder">
<summary>
Gets or sets the inner border colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ButtonItemStateColorTable.TopBackground">
<summary>
Gets or sets top part background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ButtonItemStateColorTable.TopBackgroundHighlight">
<summary>
Gets or sets highlight colors for the top background part.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ButtonItemStateColorTable.BottomBackground">
<summary>
Gets or sets bottom part background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ButtonItemStateColorTable.BottomBackgroundHighlight">
<summary>
Gets or sets highlight colors for the bottom background part.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ButtonItemStateColorTable.SplitBorder">
<summary>
Gets or sets the split border colors that divides button text and image from expand part of the button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ButtonItemStateColorTable.SplitBorderLight">
<summary>
Gets or sets the split border light colors that divides button text and image from expand part of the button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ButtonItemStateColorTable.Text">
<summary>
Gets or sets the text color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ButtonItemStateColorTable.ExpandBackground">
<summary>
Gets or sets the background color of the expand sign.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ButtonItemStateColorTable.ExpandLight">
<summary>
Gets or sets the outline light color of the expand sign.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ButtonItemStateColorTable.Background">
<summary>
Gets or sets the single gradient background for the button. When specified it is used instead of TopBackground and BottomBackground for rendering.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007CheckBoxColorTable">
<summary>
Represent the color table for the CheckBoxItem.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007CheckBoxColorTable.Default">
<summary>
Gets or sets the colors for the item in default state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007CheckBoxColorTable.MouseOver">
<summary>
Gets or sets the colors for the item when mouse is over the item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007CheckBoxColorTable.Pressed">
<summary>
Gets or sets the colors for the item when mouse is pressed over the item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007CheckBoxColorTable.Disabled">
<summary>
Gets or sets the colors for the item when item is disabled.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007CheckBoxStateColorTable">
<summary>
Defines the colors for the single CheckBoxItem state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007CheckBoxStateColorTable.CheckBackground">
<summary>
Gets or sets the background colors of the check box.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007CheckBoxStateColorTable.CheckBorder">
<summary>
Gets or sets the color of the check border.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007CheckBoxStateColorTable.CheckInnerBorder">
<summary>
Gets or sets the inner color of check box border.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007CheckBoxStateColorTable.CheckInnerBackground">
<summary>
Gets or sets the inner background color of check box.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007CheckBoxStateColorTable.CheckSign">
<summary>
Gets or sets the color of the check sign that is drawn when item is checked.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007CheckBoxStateColorTable.Text">
<summary>
Gets or sets the text color.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007ColorItemColorTable">
<summary>
Defines color table for ColorItem.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorItemColorTable.Border">
<summary>
Gets or sets the border that is drawn around each individual color item or color item group.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorItemColorTable.MouseOverInnerBorder">
<summary>
Gets or sets the inner mouse over color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ColorItemColorTable.MouseOverOuterBorder">
<summary>
Gets or sets the outer mouse over color.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007ColorItemPainter">
<summary>
Represents the painter for ColorItem in Office 2007 style
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007ColorItemPainter.ColorTable">
<summary>
Gets or sets color table used by renderer.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.eOffice2007ColorScheme">
<summary>
Defines the color scheme type for the Office2007ColorTable.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.eOffice2007ColorScheme.Blue">
<summary>
Blue color scheme.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.eOffice2007ColorScheme.Black">
<summary>
Black color scheme.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.eOffice2007ColorScheme.Silver">
<summary>
Silver color scheme.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.eOffice2007ColorScheme.VistaGlass">
<summary>
Windows Vista Glass inspired color scheme.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.GetColorDelegate">
<summary>
Defines the delegate which retrieves the color for specific integer value.
</summary>
<param name="rgb">color represented as integer.</param>
<returns>Reference to Color object.</returns>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.LabelColors">
<summary>
Defines contextual label colors.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.LabelColors.#ctor(System.Drawing.Color,System.Drawing.Color)">
<summary>
Initializes a new instance of the LabelColors structure.
</summary>
<param name="text"></param>
<param name="disabledText"></param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007ColorTableFactory.InitializeBlackLegacyColors(DevComponents.DotNetBar.ColorScheme,DevComponents.DotNetBar.Rendering.ColorFactory)">
<summary>
Initializes ColorScheme object with the black color scheme.
</summary>
<param name="c">ColorScheme object to initialize.</param>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007ComboBoxColorTable">
<summary>
Defines the color table for the combo box.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ComboBoxColorTable.Default">
<summary>
Gets or sets the color for combo box in default state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ComboBoxColorTable.DefaultStandalone">
<summary>
Gets or sets the color for standalone combo box in default state. Standalone combo box is a control not used by ComboBoxItem.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ComboBoxColorTable.MouseOver">
<summary>
Gets or sets the colors when mouse is over the control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ComboBoxColorTable.DroppedDown">
<summary>
Gets or sets the colors when control is dropped down.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007ComboBoxStateColorTable">
<summary>
Defines the combo box colors for a particular state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ComboBoxStateColorTable.Border">
<summary>
Gets or sets the border color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ComboBoxStateColorTable.Background">
<summary>
Gets or sets the background color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ComboBoxStateColorTable.ExpandBorderOuter">
<summary>
Gets or sets the outer expand button border.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ComboBoxStateColorTable.ExpandBorderInner">
<summary>
Gets or sets the inner expand button border.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ComboBoxStateColorTable.ExpandBackground">
<summary>
Gets or sets the background color of the expand button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ComboBoxStateColorTable.ExpandText">
<summary>
Gets or sets the foreground color of the expand button.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable">
<summary>
Defines color table for the Office 2007 style DataGridView control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.BackgroundColor">
<summary>
Gets or sets grid background color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.DefaultCellBackground">
<summary>
Gets or sets default cell color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.DefaultCellText">
<summary>
Gets or sets default cell text color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.ColumnHeaderNormalBackground">
<summary>
Gets or sets the background color for the column headers in normal state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.ColumnHeaderNormalText">
<summary>
Gets or sets the normal column text color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.ColumnHeaderNormalBorder">
<summary>
Gets or sets the column header border color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.ColumnHeaderMouseOverBackground">
<summary>
Gets or sets the background color for the column headers in mouse over state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.ColumnHeaderMouseOverBorder">
<summary>
Gets or sets the column header border color when mouse is over the column.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.ColumnHeaderSelectedText">
<summary>
Gets or sets the selected column header text color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.ColumnHeaderSelectedBackground">
<summary>
Gets or sets the background color for the column headers in selected state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.ColumnHeaderSelectedBorder">
<summary>
Gets or sets the border color for the column headers in selected state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.ColumnHeaderSelectedMouseOverBackground">
<summary>
Gets or sets the background color for the column headers in selected mouse over state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.ColumnHeaderSelectedMouseOverBorder">
<summary>
Gets or sets the border color for the column headers in selected mouse over state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.ColumnHeaderPressedBackground">
<summary>
Gets or sets the background color for the column headers in pressed state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.ColumnHeaderPressedBorder">
<summary>
Gets or sets the border color for the column headers in pressed state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.ColumnHeaderForeground">
<summary>
Gets or sets the column header foreground color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.RowNormalBackground">
<summary>
Gets or sets the background color for row marker background.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.RowNormalBorder">
<summary>
Gets or sets the border color for row marker.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.RowMouseOverBackground">
<summary>
Gets or sets the background color for row marker background.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.RowMouseOverBorder">
<summary>
Gets or sets the border color for row marker.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.RowSelectedMouseOverBackground">
<summary>
Gets or sets the background color for row marker background.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.RowSelectedMouseOverBorder">
<summary>
Gets or sets the border color for row marker.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.RowSelectedBackground">
<summary>
Gets or sets the background color for row marker background.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.RowSelectedBorder">
<summary>
Gets or sets the border color for row marker.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.RowPressedBackground">
<summary>
Gets or sets the background color for row marker background.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.RowPressedBorder">
<summary>
Gets or sets the border color for row marker.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.GridColor">
<summary>
Gets or sets the color of the grid lines.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.SelectorBackground">
<summary>
Gets or sets the background color of selector cell usually located in top-left corner.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.SelectorBorder">
<summary>
Gets or sets the border color of selector cell usually located in top-left corner.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.SelectorBorderLight">
<summary>
Gets or sets the light border color of selector cell usually located in top-left corner.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.SelectorBorderDark">
<summary>
Gets or sets the dark border color of selector cell usually located in top-left corner.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.SelectorSign">
<summary>
Gets or sets the sign color of selector cell usually located in top-left corner.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.SelectorMouseOverBackground">
<summary>
Gets or sets the background color of selector cell usually located in top-left corner.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.SelectorMouseOverBorder">
<summary>
Gets or sets the border color of selector cell usually located in top-left corner.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.SelectorMouseOverBorderLight">
<summary>
Gets or sets the light border color of selector cell usually located in top-left corner.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.SelectorMouseOverBorderDark">
<summary>
Gets or sets the dark border color of selector cell usually located in top-left corner.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DataGridViewColorTable.SelectorMouseOverSign">
<summary>
Gets or sets the sign color of selector cell usually located in top-left corner.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007DialogLauncherColorTable">
<summary>
Defines color table for the Dialog Launcher button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DialogLauncherColorTable.Default">
<summary>
Gets or sets the colors for the default state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DialogLauncherColorTable.MouseOver">
<summary>
Gets or sets the colors for the mouse over state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DialogLauncherColorTable.Pressed">
<summary>
Gets or sets the colors for the pressed state.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007DialogLauncherStateColorTable">
<summary>
Defines the color table for dialog launcher state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DialogLauncherStateColorTable.DialogLauncher">
<summary>
Gets or sets the color of dialog launcher symbol.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DialogLauncherStateColorTable.DialogLauncherShade">
<summary>
Gets or sets the shade color of dialog launcher symbol.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DialogLauncherStateColorTable.TopBackground">
<summary>
Gets or sets the background color for the top part of the element.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DialogLauncherStateColorTable.BottomBackground">
<summary>
Gets or sets the background color for the bottom part of the element.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DialogLauncherStateColorTable.OuterBorder">
<summary>
Gets or sets the outer border colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007DialogLauncherStateColorTable.InnerBorder">
<summary>
Gets or sets the inner border colors.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007FormColorTable">
<summary>
Defines the color table for all states of Office 2007 style form caption.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007FormColorTable.Active">
<summary>
Gets or sets the color table for caption in active state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007FormColorTable.Inactive">
<summary>
Gets or sets the color table for caption in inactive state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007FormColorTable.BackColor">
<summary>
Gets or sets the background color of the form.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007FormColorTable.TextColor">
<summary>
Gets or sets the text color of the form.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007FormColorTable.MdiClientBackgroundImage">
<summary>
Gets or sets the MDI Client Background image.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007FormStateColorTable">
<summary>
Defines color table for the Office 2007 style Form caption color state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007FormStateColorTable.CaptionTopBackground">
<summary>
Gets or sets the colors for the top part of the background.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007FormStateColorTable.CaptionBottomBackground">
<summary>
Gets or sets the colors for the bottom part of the background.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007FormStateColorTable.CaptionBottomBorder">
<summary>
Gets or sets the array of colors used to draw the border that separates the form caption and the form content. Applies only to the Office2007Form rendering.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007FormStateColorTable.CaptionText">
<summary>
Gets or sets the color of caption text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007FormStateColorTable.CaptionTextExtra">
<summary>
Gets or sets the color of caption extra text that is appended to the caption.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007FormStateColorTable.BorderColors">
<summary>
Gets or sets the array of colors that represents the border colors. Outer border is at index 0.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007GalleryColorTable">
<summary>
Represents the color table used by the Gallery container.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007GalleryColorTable.GroupLabelBackground">
<summary>
Gets or sets the background color of the Gallery Group label when gallery is displayed on popup.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007GalleryColorTable.GroupLabelText">
<summary>
Gets or sets the text color of the Gallery Group label when gallery is displayed on popup.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007GalleryColorTable.GroupLabelBorder">
<summary>
Gets or sets the border color of the Gallery Group label when gallery is displayed on popup.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007ItemGroupColorTable">
<summary>
Represents color table for ItemContainer object with BeginGroup set to true.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ItemGroupColorTable.OuterBorder">
<summary>
Gets or sets the outer border colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ItemGroupColorTable.InnerBorder">
<summary>
Gets or sets the inner border colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ItemGroupColorTable.TopBackground">
<summary>
Gets or sets the top background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ItemGroupColorTable.BottomBackground">
<summary>
Gets or sets the bottom background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ItemGroupColorTable.ItemGroupDividerDark">
<summary>
Gets or sets the dark color of item devider for items inside of the ItemContainer.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ItemGroupColorTable.ItemGroupDividerLight">
<summary>
Gets or sets the light color of item devider for items inside of the ItemContainer.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007KeyTipsColorTable">
<summary>
Represents the color table for key tips.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007KeyTipsColorTable.KeyTipText">
<summary>
Gets or sets KeyTip Text color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007KeyTipsColorTable.KeyTipBorder">
<summary>
Gets or sets KeyTip border color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007KeyTipsColorTable.KeyTipBackground">
<summary>
Gets or sets KeyTip Background color.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007ListViewColorTable">
<summary>
Represents color table for ListViewEx control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ListViewColorTable.ColumnBackground">
<summary>
Gets or sets the background color of the columns.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ListViewColorTable.ColumnSeparator">
<summary>
Gets or sets the color of the column separator.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ListViewColorTable.ColumnForeColor">
<summary>
Gets or sets the color of the column text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ListViewColorTable.Border">
<summary>
Gets or sets the color of the control border.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ListViewColorTable.SelectionBackground">
<summary>
Gets or sets the background colors for the selected item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ListViewColorTable.SelectionBorder">
<summary>
Gets or sets the color of the selected item border that is draw on top and bottom of the selection.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ListViewColorTable.SelectionForeColor">
<summary>
Gets or sets the text color for selected item.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007MenuColorTable">
<summary>
Defines the color table for the menus.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007MenuColorTable.Background">
<summary>
Gets or sets the menu background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007MenuColorTable.Side">
<summary>
Gets or sets the menu side background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007MenuColorTable.SideUnused">
<summary>
Gets or sets the menu side background colors for the items that were not recently used.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007MenuColorTable.Border">
<summary>
Gets or sets the menu border background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007MenuColorTable.SideBorder">
<summary>
Gets or sets the menu side border.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007MenuColorTable.SideBorderLight">
<summary>
Gets or sets the light menu side border.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007MenuColorTable.FileBackgroundBlend">
<summary>
Gets or sets the background color blend for the special file menu background.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007MenuColorTable.FileContainerBorder">
<summary>
Gets or sets the two column container border color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007MenuColorTable.FileContainerBorderLight">
<summary>
Gets or sets the two column container light border color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007MenuColorTable.FileColumnOneBackground">
<summary>
Gets or sets the background color of first file column.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007MenuColorTable.FileColumnOneBorder">
<summary>
Gets or sets the border color of first file column.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007MenuColorTable.FileColumnTwoBackground">
<summary>
Gets or sets the background color of first file column.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007MenuColorTable.FileBottomContainerBackgroundBlend">
<summary>
Gets or sets the background color blend for the bottom container on file menu.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007NavigationPaneColorTable">
<summary>
Defines the color table for the NavigationPane control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007NavigationPaneColorTable.ButtonBackground">
<summary>
Gets or sets the background color collection blend for the button background.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007NavigationPanePainter.ColorTable">
<summary>
Gets or sets color table used by renderer.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007ProgressBarColorTable">
<summary>
Defines color table for the Office 2007 style ProgressBarItem.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ProgressBarColorTable.BackgroundColors">
<summary>
Gets or sets the background color collection blend for the item background.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ProgressBarColorTable.OuterBorder">
<summary>
Gets or sets the outer border color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ProgressBarColorTable.InnerBorder">
<summary>
Gets or sets the inner border color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ProgressBarColorTable.Chunk">
<summary>
Gets or sets the color collection blend for the current progress part of the item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ProgressBarColorTable.ChunkOverlay">
<summary>
Gets or sets the color collection blend for overlay for the current progress of the item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ProgressBarColorTable.ChunkShadow">
<summary>
Gets or sets the color collection blend of shadow for the current progress of the item.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.ProgressBarItemPainter">
<summary>
Defines abstract class for the ProgressBarItem painter.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007ProgressBarItemPainter.ColorTable">
<summary>
Gets or sets color table used by renderer.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007QatCustomizeItemPainter">
<summary>
Defines painter for the Office 2007 style QAT Customize Item.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.QatCustomizeItemPainter">
<summary>
Defines base class for QAT customize item painter.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007QatCustomizeItemPainter.ColorTable">
<summary>
Gets or sets color table used by renderer.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007QatOverflowPainter">
<summary>
Defines Office 2007 style QAT painter.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.QatOverflowPainter">
<summary>
Defines base class for QAT overflow item painter.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007QatOverflowPainter.ColorTable">
<summary>
Gets or sets color table used by renderer.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007QuickAccessToolbarColorTable">
<summary>
Defines the color table for the quick access toolbar in all states.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007QuickAccessToolbarColorTable.Active">
<summary>
Gets or sets the colors for the quick access toolbar background when hosted in ribbon control caption and form is active
or the background colors when toolbar is hosted below the ribbon control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007QuickAccessToolbarColorTable.Inactive">
<summary>
Gets or sets the colors for the quick access toolbar background when hosted in ribbon control caption and form is inactive
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007QuickAccessToolbarColorTable.Standalone">
<summary>
Gets or sets the colors for the quick access toolbar background when positioned below the ribbon bar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007QuickAccessToolbarColorTable.QatCustomizeMenuLabelBackground">
<summary>
Gets or sets the background color of Customize Quick Access Toolbar menu label displayed on customize quick access toolbar menu.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007QuickAccessToolbarColorTable.QatCustomizeMenuLabelText">
<summary>
Gets or sets the text color of Customize Quick Access Toolbar menu label displayed on customize quick access toolbar menu.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007QuickAccessToolbarStateColorTable">
<summary>
Defines the color table for the Quick Access toolbar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007QuickAccessToolbarStateColorTable.TopBackground">
<summary>
Gets or sets the colors of the top background.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007QuickAccessToolbarStateColorTable.BottomBackground">
<summary>
Gets or sets the colors of the bottom background.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007QuickAccessToolbarStateColorTable.OutterBorderColor">
<summary>
Gets or sets the outer border color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007QuickAccessToolbarStateColorTable.MiddleBorderColor">
<summary>
Gets or sets the middle border color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007QuickAccessToolbarStateColorTable.InnerBorderColor">
<summary>
Gets or sets the inner border color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007QuickAccessToolbarStateColorTable.GlassBorder">
<summary>
Gets or sets the border when Windows Vista Glass is enabled.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007Renderer">
<summary>
Represents Office 2007 Control renderer.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.BaseRenderer">
<summary>
Represents bases class that defines a renderer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderKeyTips(DevComponents.DotNetBar.KeyTipsRendererEventArgs)">
<summary>
Raises RenderKeyTips event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawKeyTips(DevComponents.DotNetBar.KeyTipsRendererEventArgs)">
<summary>
Draws KeyTip for an object. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderKeyTips method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderRibbonTabGroup(DevComponents.DotNetBar.RibbonTabGroupRendererEventArgs)">
<summary>
Raises RenderRibbonTabGroup event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawRibbonTabGroup(DevComponents.DotNetBar.RibbonTabGroupRendererEventArgs)">
<summary>
Draws ribbon tab group. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderRibbonTabGroup method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderItemContainer(DevComponents.DotNetBar.ItemContainerRendererEventArgs)">
<summary>
Raises RenderItemContainer event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawItemContainerSeparator(DevComponents.DotNetBar.ItemContainerSeparatorRendererEventArgs)">
<summary>
Draws the separator for an item inside of item container. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderItemContainerSeparator method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderItemContainerSeparator(DevComponents.DotNetBar.ItemContainerSeparatorRendererEventArgs)">
<summary>
Raises RenderItemContainer event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawItemContainer(DevComponents.DotNetBar.ItemContainerRendererEventArgs)">
<summary>
Draws item container. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderItemContainer method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderButtonItem(DevComponents.DotNetBar.ButtonItemRendererEventArgs)">
<summary>
Raises RenderButtonItem event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawButtonItem(DevComponents.DotNetBar.ButtonItemRendererEventArgs)">
<summary>
Draws ButtonItem. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderButtonItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderRibbonTabItem(DevComponents.DotNetBar.RibbonTabItemRendererEventArgs)">
<summary>
Raises RenderRibbonTabItem event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawRibbonTabItem(DevComponents.DotNetBar.RibbonTabItemRendererEventArgs)">
<summary>
Draws RibbonTabItem. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderRibbonTabItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderToolbarBackground(DevComponents.DotNetBar.ToolbarRendererEventArgs)">
<summary>
Raises RenderToolbarBackground event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawToolbarBackground(DevComponents.DotNetBar.ToolbarRendererEventArgs)">
<summary>
Draws docked or floating toolbar background. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderToolbarBackground method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderPopupToolbarBackground(DevComponents.DotNetBar.ToolbarRendererEventArgs)">
<summary>
Raises RenderPopupToolbarBackground event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawPopupToolbarBackground(DevComponents.DotNetBar.ToolbarRendererEventArgs)">
<summary>
Draws popup toolbar background. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderPopupToolbarBackground method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderRibbonDialogLauncher(DevComponents.DotNetBar.RibbonBarRendererEventArgs)">
<summary>
Raises RenderRibbonDialogLauncher event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawRibbonDialogLauncher(DevComponents.DotNetBar.RibbonBarRendererEventArgs)">
<summary>
Draws ribbon bar dialog launcher button. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderRibbonDialogLauncher method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderColorItem(DevComponents.DotNetBar.ColorItemRendererEventArgs)">
<summary>
Raises RenderColorItem event event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawColorItem(DevComponents.DotNetBar.ColorItemRendererEventArgs)">
<summary>
Draws ColorItem. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderColorItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderRibbonControlBackground(DevComponents.DotNetBar.RibbonControlRendererEventArgs)">
<summary>
Raises RenderRibbonControlBackground event event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawRibbonControlBackground(DevComponents.DotNetBar.RibbonControlRendererEventArgs)">
<summary>
Draws the background of the Ribbon Control. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderRibbonControlBackground method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderSystemCaptionItem(DevComponents.DotNetBar.SystemCaptionItemRendererEventArgs)">
<summary>
Raises RenderSystemCaptionItem event event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawSystemCaptionItem(DevComponents.DotNetBar.SystemCaptionItemRendererEventArgs)">
<summary>
Draws the SystemCaptionItem. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderSystemCaptionItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderRibbonFormCaptionText(DevComponents.DotNetBar.RibbonControlRendererEventArgs)">
<summary>
Raises RenderRibbonFormCaptionText event event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawRibbonFormCaptionText(DevComponents.DotNetBar.RibbonControlRendererEventArgs)">
<summary>
Draws the form caption text for the Ribbon Control. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderRibbonFormCaptionText method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderQuickAccessToolbarBackground(DevComponents.DotNetBar.RibbonControlRendererEventArgs)">
<summary>
Raises RenderQuickAccessToolbarBackground event event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawQuickAccessToolbarBackground(DevComponents.DotNetBar.RibbonControlRendererEventArgs)">
<summary>
Draws the background of Quick Access Toolbar on Ribbon Control. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderQuickAccessToolbarBackground method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderMdiSystemItem(DevComponents.DotNetBar.MdiSystemItemRendererEventArgs)">
<summary>
Raises RenderMdiSystemItem event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawMdiSystemItem(DevComponents.DotNetBar.MdiSystemItemRendererEventArgs)">
<summary>
Draws the MdiSystemItem. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderMdiSystemItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderFormCaptionBackground(DevComponents.DotNetBar.FormCaptionRendererEventArgs)">
<summary>
Raises RenderFormCaptionBackground event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawFormCaptionBackground(DevComponents.DotNetBar.FormCaptionRendererEventArgs)">
<summary>
Draws the form caption background. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderFormCaptionBackground method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderQatOverflowItem(DevComponents.DotNetBar.QatOverflowItemRendererEventArgs)">
<summary>
Raises RenderQatOverflowItem event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawQatOverflowItem(DevComponents.DotNetBar.QatOverflowItemRendererEventArgs)">
<summary>
Draws the Quick Access Toolbar Overflow item. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderQatOverflowItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderQatCustomizeItem(DevComponents.DotNetBar.QatCustomizeItemRendererEventArgs)">
<summary>
Raises RenderQatCustomizeItem event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawQatCustomizeItem(DevComponents.DotNetBar.QatCustomizeItemRendererEventArgs)">
<summary>
Draws the Quick Access Toolbar Customize Item. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderQatCustomizeItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderCheckBoxItem(DevComponents.DotNetBar.CheckBoxItemRenderEventArgs)">
<summary>
Raises RenderCheckBoxItem event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawCheckBoxItem(DevComponents.DotNetBar.CheckBoxItemRenderEventArgs)">
<summary>
Draws the CheckBoxItem. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderCheckBoxItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderProgressBarItem(DevComponents.DotNetBar.ProgressBarItemRenderEventArgs)">
<summary>
Raises RenderCheckBoxItem event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawProgressBarItem(DevComponents.DotNetBar.ProgressBarItemRenderEventArgs)">
<summary>
Draws the ProgressBarItem. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderProgressBarItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderNavPaneButtonBackground(DevComponents.DotNetBar.NavPaneRenderEventArgs)">
<summary>
Raises RenderNavPaneButtonBackground event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawNavPaneButtonBackground(DevComponents.DotNetBar.NavPaneRenderEventArgs)">
<summary>
Draws the Navigation Pane button background. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderNavPaneButtonBackground method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderSliderItem(DevComponents.DotNetBar.SliderItemRendererEventArgs)">
<summary>
Raises RenderSliderItem event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawSliderItem(DevComponents.DotNetBar.SliderItemRendererEventArgs)">
<summary>
Draws the Slider item. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderSliderItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderSideBar(DevComponents.DotNetBar.SideBarRendererEventArgs)">
<summary>
Raises RenderSideBar event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawSideBar(DevComponents.DotNetBar.SideBarRendererEventArgs)">
<summary>
Draws the SideBar control. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderSideBar method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderSideBarPanelItem(DevComponents.DotNetBar.SideBarPanelItemRendererEventArgs)">
<summary>
Raises RenderSideBarPanelItem event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawSideBarPanelItem(DevComponents.DotNetBar.SideBarPanelItemRendererEventArgs)">
<summary>
Draws the SideBar control. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderSideBarPanelItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderCrumbBarItemView(DevComponents.DotNetBar.ButtonItemRendererEventArgs)">
<summary>
Raises RenderCrumbBarItemView event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawCrumbBarItemView(DevComponents.DotNetBar.ButtonItemRendererEventArgs)">
<summary>
Draws CrumbBarItemView. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderCrumbBarItemView method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderCrumbBarOverflowItem(DevComponents.DotNetBar.ButtonItemRendererEventArgs)">
<summary>
Raises RenderCrumbBarOverflowItem event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawCrumbBarOverflowItem(DevComponents.DotNetBar.ButtonItemRendererEventArgs)">
<summary>
Draws CrumbBarOverflowButton. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderCrumbBarOverflowItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderSwitchButton(DevComponents.DotNetBar.Rendering.SwitchButtonRenderEventArgs)">
<summary>
Raises RenderSwitchButton event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawSwitchButton(DevComponents.DotNetBar.Rendering.SwitchButtonRenderEventArgs)">
<summary>
Draws the Switch Button. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderSwitchButton method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderRangeSliderItem(DevComponents.DotNetBar.RangeSliderItemRendererEventArgs)">
<summary>
Raises RenderRangeSliderItem event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawRangeSliderItem(DevComponents.DotNetBar.RangeSliderItemRendererEventArgs)">
<summary>
Draws the Range Slider item. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderRangeSliderItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderStepItem(DevComponents.DotNetBar.StepItemRendererEventArgs)">
<summary>
Raises RenderStepItem event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawStepItem(DevComponents.DotNetBar.StepItemRendererEventArgs)">
<summary>
Draws the Step item. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderStepItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderListBoxItem(DevComponents.DotNetBar.ListBoxItemRendererEventArgs)">
<summary>
Raises RenderListBoxItem event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawListBoxItem(DevComponents.DotNetBar.ListBoxItemRendererEventArgs)">
<summary>
Draws the ListBoxItem. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderListBoxItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderSideNavItem(DevComponents.DotNetBar.Rendering.SideNavItemRendererEventArgs)">
<summary>
Raises RenderListBoxItem event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawSideNavItem(DevComponents.DotNetBar.Rendering.SideNavItemRendererEventArgs)">
<summary>
Draws the ListBoxItem. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderListBoxItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderTabFormStrip(DevComponents.DotNetBar.Rendering.TabFormStripPainterArgs)">
<summary>
Raises RenderTabFormStrip event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawTabFormStrip(DevComponents.DotNetBar.Rendering.TabFormStripPainterArgs)">
<summary>
Draws the TabStrip. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderTabFormStrip method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderTabFormItem(DevComponents.DotNetBar.ButtonItemRendererEventArgs)">
<summary>
Raises RenderTabFormItem event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawTabFormItem(DevComponents.DotNetBar.ButtonItemRendererEventArgs)">
<summary>
Draws the TabStrip. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderTabFormStrip method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderNewTabFormItem(DevComponents.DotNetBar.ButtonItemRendererEventArgs)">
<summary>
Raises RenderNewTabFormItem event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawNewTabFormItem(DevComponents.DotNetBar.ButtonItemRendererEventArgs)">
<summary>
Draws the NewTabFormItem. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderTabFormStrip method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.OnRenderTabParentForm(DevComponents.DotNetBar.Rendering.TabFormPainterArgs)">
<summary>
Raises RenderTabParentForm event.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.BaseRenderer.DrawTabParentForm(DevComponents.DotNetBar.Rendering.TabFormPainterArgs)">
<summary>
Draws the TabParentForm. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderTabParentForm method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderKeyTips">
<summary>
Occurs when KeyTip is rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderRibbonTabGroup">
<summary>
Occurs when ribbon tab group is rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderItemContainer">
<summary>
Occurs when ItemContainer is rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderItemContainerSeparator">
<summary>
Occurs when separator is drawn for an item inside of ItemContainer.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderButtonItem">
<summary>
Occurs when ButtonItem is rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderRibbonTabItem">
<summary>
Occurs when RibbonTabItem is rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderToolbarBackground">
<summary>
Occurs when docked or floating toolbar is rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderPopupToolbarBackground">
<summary>
Occurs when popup toolbar is rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderRibbonDialogLauncher">
<summary>
Occurs when dialog launcher button on ribbon bar is rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderRibbonControlBackground">
<summary>
Occurs when Ribbon Control background is rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderRibbonFormCaptionText">
<summary>
Occurs when form caption text on ribbon control is rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderQuickAccessToolbarBackground">
<summary>
Occurs when Quick Access Toolbar background is rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderColorItem">
<summary>
Occurs when ColorItem is rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderSystemCaptionItem">
<summary>
Occurs when SystemCaptionItem is rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderMdiSystemItem">
<summary>
Occurs when MdiSystemItem is rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderFormCaptionBackground">
<summary>
Occurs when form caption is background is being rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderQatOverflowItem">
<summary>
Occurs when quick access toolbar overflow item is being rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderQatCustomizeItem">
<summary>
Occurs when quick access toolbar customize item is being rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderCheckBoxItem">
<summary>
Occurs when CheckBoxItem is being rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderProgressBarItem">
<summary>
Occurs when ProgressBarItem is being rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderNavPaneButtonBackground">
<summary>
Occurs when Navigation pane button background is being rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderSliderItem">
<summary>
Occurs when Slider item is being rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderRangeSliderItem">
<summary>
Occurs when Range Slider item is being rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderSideBar">
<summary>
Occurs when SideBar control is being rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderSideBarPanelItem">
<summary>
Occurs when SideBarPanelItem control is being rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderCrumbBarItemView">
<summary>
Occurs when CrumbBarItemView is rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderCrumbBarOverflowItem">
<summary>
Occurs when CrumbBarOverflowButton is rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderSwitchButton">
<summary>
Occurs when Slider item is being rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderStepItem">
<summary>
Occurs when StepItem is being rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderListBoxItem">
<summary>
Occurs when ListBoxItem is being rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderSideNavItem">
<summary>
Occurs when SideNavItem is being rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderTabFormStrip">
<summary>
Occurs when TabStrip is being rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderTabFormItem">
<summary>
Occurs when TabFormItem is rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderNewTabFormItem">
<summary>
Occurs when NewTabFormItem is rendered.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.BaseRenderer.RenderTabParentForm">
<summary>
Occurs when TabParentForm is being rendered.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawKeyTips(DevComponents.DotNetBar.KeyTipsRendererEventArgs)">
<summary>
Draws KeyTip for an object. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderKeyTips method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawRibbonTabGroup(DevComponents.DotNetBar.RibbonTabGroupRendererEventArgs)">
<summary>
Draws ribbon tab group. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderRibbonTabGroup method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawItemContainer(DevComponents.DotNetBar.ItemContainerRendererEventArgs)">
<summary>
Draws item container. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderItemContainer method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawItemContainerSeparator(DevComponents.DotNetBar.ItemContainerSeparatorRendererEventArgs)">
<summary>
Draws the separator for an item inside of item container. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderItemContainerSeparator method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawButtonItem(DevComponents.DotNetBar.ButtonItemRendererEventArgs)">
<summary>
Draws ButtonItem. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderButtonItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawRibbonTabItem(DevComponents.DotNetBar.RibbonTabItemRendererEventArgs)">
<summary>
Draws RibbonTabItem. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderRibbonTabItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawPopupToolbarBackground(DevComponents.DotNetBar.ToolbarRendererEventArgs)">
<summary>
Draws popup toolbar background. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderPopupToolbarBackground method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawToolbarBackground(DevComponents.DotNetBar.ToolbarRendererEventArgs)">
<summary>
Draws docked or floating toolbar background. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderToolbarBackground method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawFloatingToolbarBackground(DevComponents.DotNetBar.ToolbarRendererEventArgs)">
<summary>
Draws floating toolbar background.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawRibbonDialogLauncher(DevComponents.DotNetBar.RibbonBarRendererEventArgs)">
<summary>
Draws ribbon bar dialog launcher button. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderPopupToolbarBackground method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawColorItem(DevComponents.DotNetBar.ColorItemRendererEventArgs)">
<summary>
Draws ColorItem. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderColorItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawRibbonControlBackground(DevComponents.DotNetBar.RibbonControlRendererEventArgs)">
<summary>
Draws the background of the Ribbon Control. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderRibbonControlBackground method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawRibbonFormCaptionText(DevComponents.DotNetBar.RibbonControlRendererEventArgs)">
<summary>
Draws the form caption text for the Ribbon Control. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderRibbonFormCaptionText method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawQuickAccessToolbarBackground(DevComponents.DotNetBar.RibbonControlRendererEventArgs)">
<summary>
Draws the background of Quick Access Toolbar on Ribbon Control. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderQuickAccessToolbarBackground method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawSystemCaptionItem(DevComponents.DotNetBar.SystemCaptionItemRendererEventArgs)">
<summary>
Draws the SystemCaptionItem. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderSystemCaptionItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawMdiSystemItem(DevComponents.DotNetBar.MdiSystemItemRendererEventArgs)">
<summary>
Draws the MdiSystemItem. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderMdiSystemItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawFormCaptionBackground(DevComponents.DotNetBar.FormCaptionRendererEventArgs)">
<summary>
Draws the form caption background. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderFormCaptionBackground method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawQatOverflowItem(DevComponents.DotNetBar.QatOverflowItemRendererEventArgs)">
<summary>
Draws the Quick Access Toolbar Overflow item. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderQatOverflowItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawQatCustomizeItem(DevComponents.DotNetBar.QatCustomizeItemRendererEventArgs)">
<summary>
Draws the Quick Access Toolbar Overflow item. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderQatOverflowItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawProgressBarItem(DevComponents.DotNetBar.ProgressBarItemRenderEventArgs)">
<summary>
Draws the ProgressBarItem. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderProgressBarItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawNavPaneButtonBackground(DevComponents.DotNetBar.NavPaneRenderEventArgs)">
<summary>
Draws the Navigation Pane button background. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderNavPaneButtonBackground method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawSliderItem(DevComponents.DotNetBar.SliderItemRendererEventArgs)">
<summary>
Draws the Slider item. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderSliderItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawSideBar(DevComponents.DotNetBar.SideBarRendererEventArgs)">
<summary>
Draws the SideBar control. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderSideBar method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawSideBarPanelItem(DevComponents.DotNetBar.SideBarPanelItemRendererEventArgs)">
<summary>
Draws the SideBar control. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderSideBarPanelItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawCrumbBarItemView(DevComponents.DotNetBar.ButtonItemRendererEventArgs)">
<summary>
Draws CrumbBarItemView. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderButtonItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawCrumbBarOverflowItem(DevComponents.DotNetBar.ButtonItemRendererEventArgs)">
<summary>
Draws CrumbBarOverflowButton. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderCrumbBarOverflowItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawSwitchButton(DevComponents.DotNetBar.Rendering.SwitchButtonRenderEventArgs)">
<summary>
Draws SwitchButton. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderButtonItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawRangeSliderItem(DevComponents.DotNetBar.RangeSliderItemRendererEventArgs)">
<summary>
Draws the Slider item. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderSliderItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawStepItem(DevComponents.DotNetBar.StepItemRendererEventArgs)">
<summary>
Draws the Step item. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderStepItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawListBoxItem(DevComponents.DotNetBar.ListBoxItemRendererEventArgs)">
<summary>
Draws the ListBoxItem. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderListBoxItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawSideNavItem(DevComponents.DotNetBar.Rendering.SideNavItemRendererEventArgs)">
<summary>
Draws the ListBoxItem. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderListBoxItem method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawTabFormStrip(DevComponents.DotNetBar.Rendering.TabFormStripPainterArgs)">
<summary>
Draws the TabStrip. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderTabFormStrip method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawTabFormItem(DevComponents.DotNetBar.ButtonItemRendererEventArgs)">
<summary>
Draws the TabStrip. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderTabFormStrip method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawNewTabFormItem(DevComponents.DotNetBar.ButtonItemRendererEventArgs)">
<summary>
Draws the TabStrip. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderTabFormStrip method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007Renderer.DrawTabParentForm(DevComponents.DotNetBar.Rendering.TabFormPainterArgs)">
<summary>
Draws the TabParentForm. If you need to provide custom rendering this is the method that you should override in your custom rendered. If you
do not want default rendering to occur do not call the base implementation. You can call OnRenderTabParentForm method so events can occur.
</summary>
<param name="e">Provides context information.</param>
</member>
<member name="E:DevComponents.DotNetBar.Rendering.Office2007Renderer.ColorTableChanged">
<summary>
Occurs when color table is changed by setting the ColorTable property on the renderer.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007Renderer.ColorTable">
<summary>
Gets or sets color table used by renderer.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007RibbonBarColorTable">
<summary>
Defines color table for RibbonBar in various states.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonBarColorTable.Default">
<summary>
Gets or sets the colors for the default RibbonBar state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonBarColorTable.MouseOver">
<summary>
Gets or sets the colors for RibbonBar when mouse is over the control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonBarColorTable.Expanded">
<summary>
Gets or sets the colors for RibbonBar when ribbon bar is in overflow state and expanded to show all the items.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007RibbonBarStateColorTable">
<summary>
Represents the color table of RibbonBar for Office 2007 style. Default values represent blue Luna theme.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonBarStateColorTable.TopBackgroundHeight">
<summary>
Gets or sets the height in pixels of top background part.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonBarStateColorTable.OuterBorder">
<summary>
Gets or sets the outer border colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonBarStateColorTable.InnerBorder">
<summary>
Gets or sets the inner border colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonBarStateColorTable.TopBackground">
<summary>
Gets or sets the top background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonBarStateColorTable.BottomBackground">
<summary>
Gets or sets the bottom background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonBarStateColorTable.TitleBackground">
<summary>
Gets or sets the title background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonBarStateColorTable.TitleText">
<summary>
Gets or sets the color of title text.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007RibbonColorTable">
<summary>
Defines color table for Ribbon Control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonColorTable.OuterBorder">
<summary>
Gets or sets the colors for the outer border.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonColorTable.InnerBorder">
<summary>
Gets or sets the colors for the inner border.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonColorTable.TabsBackground">
<summary>
Gets or sets the colors for the tabs background area.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonColorTable.TabsGlassBackground">
<summary>
Gets or sets the colors for the tabs background area when Windows Glass is enabled.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonColorTable.TabDividerBorder">
<summary>
Gets or sets the color of border which is drawn above the tab.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonColorTable.TabDividerBorderLight">
<summary>
Gets or sets the light color of border which is drawn above the tab.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonColorTable.CornerSize">
<summary>
Gets or sets the round corner size for the ribbon control parts.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonColorTable.PanelTopBackgroundHeight">
<summary>
Gets or sets the height in pixels of top background part.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonColorTable.PanelTopBackground">
<summary>
Gets or sets the top background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonColorTable.PanelBottomBackground">
<summary>
Gets or sets the bottom background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonColorTable.StartButtonDefault">
<summary>
Gets or sets the background image used on Office 2007 style start button displayed in top-left corner of ribbon control.
Note that image assigned to all StartButton properties must be the same size. The size for the button will be determined by image
size set on this property.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonColorTable.StartButtonMouseOver">
<summary>
Gets or sets the background image used on Office 2007 style start button displayed in top-left corner of ribbon control when mouse is over the button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonColorTable.StartButtonPressed">
<summary>
Gets or sets the background image used on Office 2007 style start button displayed in top-left corner of ribbon control when button is pressed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007RibbonOverflowPainter">
<summary>
Represents painter for Office 2007 style ribbon overflow button.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTable">
<summary>
Defines the color table for the Ribbon Tab Group.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTable.Name">
<summary>
Gets or sets the name of the color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTable.Background">
<summary>
Gets or sets the background color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTable.BackgroundHighlight">
<summary>
Gets or sets the background highlight colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTable.Text">
<summary>
Gets or sets the text color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTable.Border">
<summary>
Gets or sets the border color
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTableCollection">
<summary>
Collection for Office2007RibbonTabGroupColorTable type.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTableCollection.#ctor">
<summary>Creates new instance of the class.</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTableCollection.Add(DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTable)">
<summary>
Adds new object to the collection.
</summary>
<param name="Office2007RibbonTabItemColorTable">Object to add.</param>
<returns>Index of newly added object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTableCollection.Insert(System.Int32,DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTable)">
<summary>
Inserts new object into the collection.
</summary>
<param name="index">Position of the object.</param>
<param name="value">Object to insert.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTableCollection.IndexOf(DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTable)">
<summary>
Returns index of the object inside of the collection.
</summary>
<param name="value">Reference to the object.</param>
<returns>Index of the object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTableCollection.Contains(DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTable)">
<summary>
Returns whether collection contains specified object.
</summary>
<param name="value">Object to look for.</param>
<returns>true if object is part of the collection, otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTableCollection.Contains(System.String)">
<summary>
Returns whether collection contains object with specified name.
</summary>
<param name="name">Name of the object to look for</param>
<returns>true if object with given name is part of the collection otherwise false</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTableCollection.Remove(DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTable)">
<summary>
Removes specified object from the collection.
</summary>
<param name="value"></param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTableCollection.CopyTo(DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTable[],System.Int32)">
<summary>
Copies collection into the specified array.
</summary>
<param name="array">Array to copy collection to.</param>
<param name="index">Starting index.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTableCollection.CopyTo(DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTable[])">
<summary>
Copies contained items to the Office2007RibbonTabItemColorTable array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTableCollection.Item(System.Int32)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007RibbonTabGroupColorTableCollection.Item(System.String)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTable">
<summary>
Defines the color table for RibbonTabItem states.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTable.Name">
<summary>
Gets or sets the name of the color table.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTable.Default">
<summary>
Gets or sets the default tab colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTable.Selected">
<summary>
Gets or sets the selected tab colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTable.SelectedMouseOver">
<summary>
Gets or sets the selected tab colors when mouse is over the tab.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTable.MouseOver">
<summary>
Gets or sets the colors when mouse is over the tab but tab is not selected.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTable.CornerSize">
<summary>
Gets or sets the round corner size for the top part of the ribbon tab item.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTableCollection">
<summary>
Defines collection for Office2007RibbonTabItemColorTable items.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTableCollection.#ctor">
<summary>Creates new instance of the class.</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTableCollection.Add(DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTable)">
<summary>
Adds new object to the collection.
</summary>
<param name="Office2007ButtonItemColorTable">Object to add.</param>
<returns>Index of newly added object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTableCollection.Insert(System.Int32,DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTable)">
<summary>
Inserts new object into the collection.
</summary>
<param name="index">Position of the object.</param>
<param name="value">Object to insert.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTableCollection.IndexOf(DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTable)">
<summary>
Returns index of the object inside of the collection.
</summary>
<param name="value">Reference to the object.</param>
<returns>Index of the object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTableCollection.Contains(DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTable)">
<summary>
Returns whether collection contains specified object.
</summary>
<param name="value">Object to look for.</param>
<returns>true if object is part of the collection, otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTableCollection.Contains(System.String)">
<summary>
Returns whether collection contains object with specified name.
</summary>
<param name="name">Name of the object to look for</param>
<returns>true if object with given name is part of the collection otherwise false</returns>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTableCollection.Remove(DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTable)">
<summary>
Removes specified object from the collection.
</summary>
<param name="value"></param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTableCollection.CopyTo(DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTable[],System.Int32)">
<summary>
Copies collection into the specified array.
</summary>
<param name="array">Array to copy collection to.</param>
<param name="index">Starting index.</param>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTableCollection.CopyTo(DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTable[])">
<summary>
Copies contained items to the Office2007ButtonItemColorTable array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTableCollection.Item(System.Int32)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemColorTableCollection.Item(System.String)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemStateColorTable">
<summary>
Defines the colors for the RibbonTabItem state like but not limited to selected, mouse over etc.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemStateColorTable.OuterBorder">
<summary>
Gets or sets the colors for the outer border.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemStateColorTable.InnerBorder">
<summary>
Gets or sets the colors for the inner border.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemStateColorTable.Background">
<summary>
Gets or sets the background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemStateColorTable.BackgroundHighlight">
<summary>
Gets or sets the background highlight colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemStateColorTable.Text">
<summary>
Gets or sets the text color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007RibbonTabItemStateColorTable.GlassText">
<summary>
Gets or sets the text color when rendered on Windows Glass.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007ScrollBarColorTable">
<summary>
Defines the colors for the scroll bar control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ScrollBarColorTable.Default">
<summary>
Gets or sets the colors for the control default state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ScrollBarColorTable.Pressed">
<summary>
Gets or sets the colors for the control when mouse is pressed over the control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ScrollBarColorTable.MouseOverControl">
<summary>
Gets or sets the colors for the control when mouse is over the control but not over an active part of the control like scroll buttons.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ScrollBarColorTable.MouseOver">
<summary>
Gets or sets the colors for the control when mouse is over the active part of the control like scroll buttons.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ScrollBarColorTable.Disabled">
<summary>
Gets or sets the colors for the control when control is disabled.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007ScrollBarStateColorTable">
<summary>
Represents the color table for the Scroll bar in single state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ScrollBarStateColorTable.ThumbOuterBorder">
<summary>
Gets or sets the outer border color for the scroll bar thumb.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ScrollBarStateColorTable.ThumbInnerBorder">
<summary>
Gets or sets the inner border color for the scroll bar thumb.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ScrollBarStateColorTable.ThumbBackground">
<summary>
Gets or sets the thumb background color blend collection.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ScrollBarStateColorTable.ThumbSignBackground">
<summary>
Gets or sets the directional sign background color for the scroll bar thumb.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ScrollBarStateColorTable.TrackOuterBorder">
<summary>
Gets or sets the outer border color for the scroll bar track button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ScrollBarStateColorTable.TrackInnerBorder">
<summary>
Gets or sets the inner border color for the scroll bar track button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ScrollBarStateColorTable.TrackBackground">
<summary>
Gets or sets the track background color blend collection.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ScrollBarStateColorTable.TrackSignBackground">
<summary>
Gets or sets the background color for the track signs.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ScrollBarStateColorTable.Background">
<summary>
Gets or sets the background colors for the entire control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007ScrollBarStateColorTable.Border">
<summary>
Gets or sets the border colors for the entire control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007SideBarColorTable">
<summary>
Represents the color table for Office 2007 Style Side Bar Control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SideBarColorTable.Background">
<summary>
Gets or sets the background color of the control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SideBarColorTable.Border">
<summary>
Gets or sets the control border color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SideBarColorTable.SideBarPanelItemText">
<summary>
Gets or sets the color of SideBarPanelItem text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SideBarColorTable.SideBarPanelItemDefault">
<summary>
Gets or sets the color table for SideBarPanelItem in default state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SideBarColorTable.SideBarPanelItemMouseOver">
<summary>
Gets or sets the color table for SideBarPanelItem in mouse over state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SideBarColorTable.SideBarPanelItemExpanded">
<summary>
Gets or sets the color table for SideBarPanelItem in expanded state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SideBarColorTable.SideBarPanelItemPressed">
<summary>
Gets or sets the color table for SideBarPanelItem when mouse button is pressed on the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007SideBarPainter.ColorTable">
<summary>
Gets or sets color table used by renderer.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007SilverColorTableFactory">
<summary>
Populates Office 2007 Color Table with Silver color scheme
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.Office2007SilverColorTableFactory.InitializeBlackLegacyColors(DevComponents.DotNetBar.ColorScheme,DevComponents.DotNetBar.Rendering.ColorFactory)">
<summary>
Initializes ColorScheme object with the black color scheme.
</summary>
<param name="c">ColorScheme object to initialize.</param>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007SliderColorTable">
<summary>
Defines the color table for the slider item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SliderColorTable.Default">
<summary>
Gets or sets the default state colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SliderColorTable.MouseOver">
<summary>
Gets or sets the mouse over state colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SliderColorTable.Pressed">
<summary>
Gets or sets the mouse pressed colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SliderColorTable.Disabled">
<summary>
Gets or sets the disabled colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SliderColorTable.TrackPart">
<summary>
Gets or sets the optional color table for Thumb part of the slider. When set to null default values from Office2007SliderColorTable are used.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SliderColorTable.IncreaseButtonPart">
<summary>
Gets or sets the optional color table for Increase button part of the slider. When set to null default values from Office2007SliderColorTable are used.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SliderColorTable.DecreaseButtonPart">
<summary>
Gets or sets the optional color table for Decrease button part of the slider. When set to null default values from Office2007SliderColorTable are used.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007SliderPartColorTable">
<summary>
Defines set of color tables for single slider part.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SliderPartColorTable.Default">
<summary>
Gets or sets the default state colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SliderPartColorTable.MouseOver">
<summary>
Gets or sets the mouse over state colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SliderPartColorTable.Pressed">
<summary>
Gets or sets the mouse pressed colors.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.SliderPainter">
<summary>
Renders the Slider items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Rendering.Office2007SliderPainter.ColorTable">
<summary>
Gets or sets color table used by renderer.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007SliderStateColorTable">
<summary>
Defines the color table for the Slider Item in single state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SliderStateColorTable.PartBackground">
<summary>
Gets or sets the part background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SliderStateColorTable.PartBorderColor">
<summary>
Gets or sets the part border color
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SliderStateColorTable.PartBorderLightColor">
<summary>
Gets or sets the part border light color
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SliderStateColorTable.PartForeColor">
<summary>
Gets or sets the part foreground color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SliderStateColorTable.PartForeLightColor">
<summary>
Gets or sets the part foreground light color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SliderStateColorTable.TrackLineColor">
<summary>
Gets or sets the track line color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SliderStateColorTable.TrackLineLightColor">
<summary>
Gets or sets the track line light color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SliderStateColorTable.LabelColor">
<summary>
Gets or sets the track label color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SliderStateColorTable.SliderLabelColor">
<summary>
Gets or sets the track label color when on Slider control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007SuperTooltipColorTable">
<summary>
Defines the color table for the SuperTooltip.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SuperTooltipColorTable.BackgroundColors">
<summary>
Gets or sets the background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SuperTooltipColorTable.TextColor">
<summary>
Gets or sets the text color.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007SystemButtonColorTable">
<summary>
Represents color table for Office 2007 style system button displayed in form caption.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SystemButtonColorTable.Default">
<summary>
Gets or sets the color table of default button state.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SystemButtonColorTable.MouseOver">
<summary>
Gets or sets the color table of button state when mouse is over the button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SystemButtonColorTable.Pressed">
<summary>
Gets or sets the color table of button state when mouse is pressed over the button.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007SystemButtonStateColorTable">
<summary>
Represents color table for single state of Office 2007 style system button displayed in form caption.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SystemButtonStateColorTable.OuterBorder">
<summary>
Gets or sets the outer border colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SystemButtonStateColorTable.InnerBorder">
<summary>
Gets or sets the inner border colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SystemButtonStateColorTable.TopBackground">
<summary>
Gets or sets top part background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SystemButtonStateColorTable.BottomBackground">
<summary>
Gets or sets bottom part background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SystemButtonStateColorTable.TopHighlight">
<summary>
Gets or sets highlight colors for the top background part.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SystemButtonStateColorTable.BottomHighlight">
<summary>
Gets or sets highlight colors for the bottom background part.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SystemButtonStateColorTable.Foreground">
<summary>
Gets or sets the foreground color for the button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SystemButtonStateColorTable.DarkShade">
<summary>
Gets or sets the dark shading color for the foreground.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007SystemButtonStateColorTable.LightShade">
<summary>
Gets or sets the light shading color for the foreground.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007TabColorTable">
<summary>
Represents the color table for the tab control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007TabColorTable.Default">
<summary>
Gets or sets the default tab item colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007TabColorTable.MouseOver">
<summary>
Gets or sets the mouse over tab item colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007TabColorTable.Selected">
<summary>
Gets or sets the selected tab item colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007TabColorTable.TabBackground">
<summary>
Gets or sets the color of the tab background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007TabColorTable.TabBackgroundImage">
<summary>
Gets or sets the tab-strip background image.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007TabColorTable.TabPanelBackground">
<summary>
Gets or sets the color of the tab panel background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007TabColorTable.TabPanelBorder">
<summary>
Gets or sets the color of tab panel border.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.Office2007TabItemStateColorTable">
<summary>
Represents the color table for the tab item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007TabItemStateColorTable.TopBackground">
<summary>
Gets or sets top part background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007TabItemStateColorTable.BottomBackground">
<summary>
Gets or sets the bottom part background colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007TabItemStateColorTable.OuterBorder">
<summary>
Gets or sets the outer border colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007TabItemStateColorTable.InnerBorder">
<summary>
Gets or sets the inner border colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.Office2007TabItemStateColorTable.Text">
<summary>
Gets or sets the text colors.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.BarBackgroundPainter.PaintDockedBackground(DevComponents.DotNetBar.ToolbarRendererEventArgs)">
<summary>
Paints background of docked bar.
</summary>
<param name="e">Context information</param>
</member>
<member name="M:DevComponents.DotNetBar.BarBackgroundPainter.PaintFloatingBackground(DevComponents.DotNetBar.ToolbarRendererEventArgs)">
<summary>
Paints background of floating bar.
</summary>
<param name="e">Context information</param>
</member>
<member name="M:DevComponents.DotNetBar.BarBackgroundPainter.PaintPopupBackground(DevComponents.DotNetBar.ToolbarRendererEventArgs)">
<summary>
Paints background of popup bar.
</summary>
<param name="e">Context information</param>
</member>
<member name="T:DevComponents.DotNetBar.ButtonItemPainterHelper">
<summary>
Summary description for ButtonItemPainterHelper.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ButtonItemRendererEventArgs">
<summary>
Provides data for ButtonItem rendering.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ButtonItemRendererEventArgs.Graphics">
<summary>
Gets or sets Graphics object group is rendered on.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ButtonItemRendererEventArgs.ButtonItem">
<summary>
Gets the reference to ButtonItem instance being rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ButtonItemRendererEventArgs.ItemPaintArgs">
<summary>
Reference to internal data.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ButtonItemRendererEventArgs.Cancel">
<summary>
Indicates whether to cancel system rendering of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItemRendererEventArgs.#ctor">
<summary>
Creates new instance of the object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItemRendererEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.ButtonItem)">
<summary>
Creates new instance of the object and initializes it with default values
</summary>
<param name="g">Reference to Graphics object.</param>
<param name="button">Reference to ButtonItem object.</param>
</member>
<member name="M:DevComponents.DotNetBar.ButtonItemRendererEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.ButtonItem,DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Creates new instance of the object and initializes it with default values
</summary>
<param name="g">Reference to Graphics object.</param>
<param name="button">Reference to ButtonItem object.</param>
</member>
<member name="T:DevComponents.DotNetBar.CaptionItemContainer">
<summary>
Defines container for ribbon caption layout and quick access toolbar customization and overflow.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.DesignTimeProviderContainer">
<summary>
Summary description for DesignTimeProviderContainer.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "M:DevComponents.DotNetBar.DesignTimeProviderContainer.GetInsertPosition(DevComponents.DotNetBar.BaseItem,System.Drawing.Point,DevComponents.DotNetBar.BaseItem)" -->
<!-- Badly formed XML comment ignored for member "M:DevComponents.DotNetBar.DesignTimeProviderContainer.DrawReversibleMarker(DevComponents.DotNetBar.BaseItem,System.Int32,System.Boolean)" -->
<!-- Badly formed XML comment ignored for member "M:DevComponents.DotNetBar.DesignTimeProviderContainer.InsertItemAt(DevComponents.DotNetBar.BaseItem,DevComponents.DotNetBar.BaseItem,System.Int32,System.Boolean)" -->
<member name="M:DevComponents.DotNetBar.DesignTimeProviderContainer.GetAppendPosition(DevComponents.DotNetBar.BaseItem)">
<summary>
Returns insertion index for an item taking in account any system items that are at the end of the collection.
</summary>
<param name="objParent">Parent item</param>
<returns>Returns the index at which an item should be inserted</returns>
</member>
<member name="T:DevComponents.DotNetBar.KeyTipsRendererEventHandler">
<summary>
Defines delegate for RenderKeyTips event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RibbonTabGroupRendererEventHandler">
<summary>
Defines delegate for RenderRibbonTabGroup event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ItemContainerRendererEventHandler">
<summary>
Defines delegate for RenderItemContainer event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ItemContainerSeparatorRendererEventHandler">
<summary>
Defines delegate for RenderItemContainerSeparator event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ButtonItemRendererEventHandler">
<summary>
Defines delegate for ButtonItem rendering events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RibbonTabItemRendererEventHandler">
<summary>
Defines delegate for RibbonTabItem rendering events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ToolbarRendererEventHandler">
<summary>
Defines delegate for toolbar rendering events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RibbonBarRendererEventHandler">
<summary>
Defines delegate for Rendering dialog launcher button rendering events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ColorItemRendererEventHandler">
<summary>
Defines delegate for ColorItem rendering events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RibbonControlRendererEventHandler">
<summary>
Defines delegate for RibbonControl rendering events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SystemCaptionItemRendererEventHandler">
<summary>
Defines delegate for SystemCaptionItem rendering events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.MdiSystemItemRendererEventHandler">
<summary>
Defines delegate for MdiSystemItem rendering events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.FormCaptionRendererEventHandler">
<summary>
Defines delegate for RenderFormCaptionBackground rendering events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.CustomizeMenuPopupEventHandler">
<summary>
Defines delegate for CustomizeMenuPopup events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.QatOverflowItemRendererEventHandler">
<summary>
Defines delegate for the Quick Access Overflow item rendering events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.QatCustomizeItemRendererEventHandler">
<summary>
Defines delegate for the Quick Access Customize item rendering events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.QatCustomizeDialogEventHandler">
<summary>
Defines delegate for the Quick Access Customization dialog events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.CheckBoxItemRendererEventHandler">
<summary>
Defines delegate for the CheckBoxItem rendering events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ProgressBarItemRendererEventHandler">
<summary>
Defines delegate for the ProgressBarItem rendering events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.NavPaneRendererEventHandler">
<summary>
Defines delegate for the Navigation Pane rendering events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RibbonPopupCloseEventHandler">
<summary>
Defines delegate for the BeforeRibbonPanelPopupClose event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SliderItemRendererEventHandler">
<summary>
Defines delegate for the Slider item rendering events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SideBarRendererEventHandler">
<summary>
Defines delegate for the SideBar control rendering event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SideBarPanelItemRendererEventHandler">
<summary>
Defines delegate for the SideBarPanelItem control rendering event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SwitchButtonRendererEventHandler">
<summary>
Defines delegate for the SwitchButtonItem control rendering event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RangeSliderItemRendererEventHandler">
<summary>
Defines delegate for the Slider item rendering events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.StepItemRendererEventHandler">
<summary>
Defines delegate for the StepItem rendering events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ListBoxItemRendererEventHandler">
<summary>
Defines delegate for the ListBoxItem rendering events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SideNavItemRendererEventHandler">
<summary>
Defines delegate for the SideNavItem rendering events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TabFormStripRendererEventHandler">
<summary>
Defines delegate for the TabStrip rendering events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TabFormRendererEventHandler">
<summary>
Defines delegate for the TabParentForm rendering events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.GalleryContainer">
<summary>
Represents the class that provides Office 2007 style Gallery container with drop-down ability.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.GalleryContainer.#ctor">
<summary>
Creates new instance of the class
</summary>
</member>
<member name="M:DevComponents.DotNetBar.GalleryContainer.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.GalleryContainer.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the ButtonItem specific properties to new instance of the item.
</summary>
<param name="c">New ButtonItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.GalleryContainer.GetClientRectangle">
<summary>
Returns the client rectangle which is DisplayRectangle excluding scroll-bar bounds
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.GalleryContainer.OnGalleryPopupOpen(System.Object,DevComponents.DotNetBar.PopupOpenEventArgs)">
<summary>
Invokes GalleryPopupOpen event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.GalleryContainer.OnGalleryPopupShowing(System.Object,System.EventArgs)">
<summary>
Invokes GalleryPopupShowing event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.GalleryContainer.OnGalleryPopupClose(System.Object,System.EventArgs)">
<summary>
Invokes GalleryPopupClose event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.GalleryContainer.OnGalleryPopupFinalized(System.Object,System.EventArgs)">
<summary>
Invokes GalleryPopupFinalized event.
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.GalleryContainer.ShouldSerializeDefaultSize">
<summary>
Gets whether DefaultSize property is serialized by Windows Forms designer based on its current value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.GalleryContainer.ResetDefaultSize">
<summary>
Resets DefaultSize property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.GalleryContainer.ShouldSerializePopupGallerySize">
<summary>
Gets whether PopupGallerySize property is serialized by Windows Forms designer based on its current value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.GalleryContainer.ResetPopupGallerySize">
<summary>
Resets PopupGallerySize property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.GalleryContainer.EnsureVisible(DevComponents.DotNetBar.BaseItem)">
<summary>
Scrolls the gallery if necessary to ensures that item is visible.
</summary>
<param name="item">Reference to the items that is part of the gallery.</param>
</member>
<member name="M:DevComponents.DotNetBar.GalleryContainer.ScrollDown">
<summary>
Scrolls gallery down to show next line of items.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.GalleryContainer.ScrollUp">
<summary>
Scrolls gallery up to show previous line of items.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "M:DevComponents.DotNetBar.GalleryContainer.OnLeftLocationChanged(System.Int32)" -->
<member name="M:DevComponents.DotNetBar.GalleryContainer.PopupGallery">
<summary>
Opens the Gallery popup menu.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.GalleryContainer.ScaleItem(System.Drawing.SizeF)">
<summary>
Called on each item when ScaleControl method of parent control is called and gives opportunity to item to adjust its displayed based on current scaling.
</summary>
<param name="factor">Scale factor.</param>
</member>
<member name="M:DevComponents.DotNetBar.GalleryContainer.CanExtend(System.Object)">
<summary>
Returns whether Gallery can extend the object.
</summary>
<param name="extendee">Object to test extensibility for.</param>
<returns>Returns true if object can be extended otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.GalleryContainer.GetGalleryGroup(DevComponents.DotNetBar.BaseItem)">
<summary>
Gets the GalleryGroup item is assigned to.
</summary>
<param name="item">Reference to item.</param>
<returns>An instance of GalleryGroup object or null if item is not assigned to the group</returns>
</member>
<member name="M:DevComponents.DotNetBar.GalleryContainer.SetGalleryGroup(DevComponents.DotNetBar.BaseItem,DevComponents.DotNetBar.GalleryGroup)">
<summary>
Assigns the item to the gallery group.
</summary>
<param name="item">Item to assign.</param>
<param name="group">Group to assign item to. Can be null to remove item assignment.</param>
</member>
<member name="E:DevComponents.DotNetBar.GalleryContainer.GalleryPopupOpen">
<summary>
Occurs when Gallery popup item is about to open.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.GalleryContainer.GalleryPopupShowing">
<summary>
Occurs just before Gallery popup window is shown.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.GalleryContainer.GalleryPopupClose">
<summary>
Occurs before the Gallery popup item is closed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.GalleryContainer.GalleryPopupFinalized">
<summary>
Occurs after Gallery popup item has been closed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryContainer.LayoutOrientation">
<summary>
Gets or sets orientation inside the container. GalleryContainer automatically manages the layout orientation and this property should not be changed from its default value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryContainer.HorizontalItemAlignment">
<summary>
Gets or sets the item alignment when container is in horizontal layout. Default value is Left.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryContainer.VerticalItemAlignment">
<summary>
Gets or sets the item vertical alignment. Default value is Top.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryContainer.MultiLine">
<summary>
Gets or sets whether items in horizontal layout are wrapped into the new line when they cannot fit allotted container size. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryContainer.ResizeItemsToFit">
<summary>
Gets or sets whether items contained by container are resized to fit the container bounds. When container is in horizontal
layout mode then all items will have the same height. When container is in vertical layout mode then all items
will have the same width. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryContainer.PopupUsesStandardScrollbars">
<summary>
Gets or sets whether Gallery when on popup is using standard scrollbars to scroll the content.
Standard scrollbars are displayed on right hand side of the Gallery. Default value for this property is true.
When set to false the scroll buttons are displayed only when needed and two buttons on top and bottom
of the Gallery are used to indicate the scrolling possibility and enable scrolling. Buttons are only
visible when needed. This scrolling button style can be used for example on Application Menu
to enable scrolling of list of most recently used files.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryContainer.IncrementalSizing">
<summary>
Gets or sets whether gallery is using incremental sizing when stretched. Default
value is true. Incremental sizing will resize the width of the gallery so it fits
completely the items it can contain in available space. That means that gallery will
occupy enough space to display the whole items within available space. When set to
false, it indicates that gallery will resize to fill all available space.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryContainer.StretchGallery">
<summary>
Gets or sets whether Gallery width is determined based on the RibbonBar width. This property is in effect when
Gallery is hosted directly the RibbonBar control. Default value is false.
When set to true the Gallery size is changed as the RibbonBar control is resized. The initial size of the Gallery is
determined by DefaultSize property. The MinimumSize property specifies the minimum size of the Gallery.
Note that only single Gallery can be stretched per RibbonBar control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryContainer.PopupGalleryItems">
<summary>
Gets the collection of the items that are added to the popup gallery. The items displayed on the gallery are combined with the
items from this collection and they are displayed on the gallery popup. This collection can for example have items that are
customizing the choices of the commands in gallery etc.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryContainer.DefaultSize">
<summary>
Gets or sets the default size of the gallery. The gallery height will be always enforced so all scroll buttons can be displayed.
Gallery width should allow display of both scroll buttons and the gallery content.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryContainer.PopupGallerySize">
<summary>
Gets or sets the default size of the gallery when gallery is displayed on the popup menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryContainer.EnableGalleryPopup">
<summary>
Gets or sets whether gallery can be displayed on the popup. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryContainer.Expanded">
<summary>
Gets or sets a value indicating whether the item is expanded or not. For Popup items this would indicate whether the item is popped up or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryContainer.IsGalleryPopupOpen">
<summary>
Gets whether the Gallery popup is open.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryContainer.KeyTips">
<summary>
Gets or sets the Key Tips access key or keys for the item when on Ribbon Control or Ribbon Bar. Use KeyTips property
when you want to assign the one or more letters to be used to access an item. For example assigning the FN to KeyTips property
will require the user to press F then N keys to select an item. Pressing the F letter will show only keytips for the items that start with letter F.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryContainer.ScrollAnimation">
<summary>
Gets or sets whether scroll animation is enabled. Default value is true.
Scroll animation will be disabled if gallery is running under Remote Windows Terminal session or fade animation effect is disabled on the
container control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryContainer.GalleryGroups">
<summary>
Gets the collection of GalleryGroup objects associated with this gallery. Groups are assigned optionally to one or more items
that are part of the GalleryContainer. Groups are used to visually group the items when gallery is displayed on the popup.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.GalleryGroup">
<summary>
Represents the popup gallery group that groups set of items inside of gallery into the group.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.GalleryGroup.#ctor">
<summary>
Creates new instance of the object.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryGroup.Text">
<summary>
Gets or sets title of the group that will be displayed on the group label when on popup gallery.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryGroup.Name">
<summary>
Gets or sets name of the group that can be used to identify item from the code.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryGroup.ParentGallery">
<summary>
Gets the parent gallery for the group.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryGroup.DisplayOrder">
<summary>
Gets or sets the display order for the group when displayed on the popup. Lower values are displayed closer to the top. Default value is 0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryGroup.Items">
<summary>
Gets the collection of the items assigned to this group.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.GalleryGroupCollection">
<summary>
Represents the GalleryGroup typed collection.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.GalleryGroupCollection.Add(DevComponents.DotNetBar.GalleryGroup)">
<summary>
Adds new object to the collection.
</summary>
<param name="tab">Object to add.</param>
<returns>Index of newly added object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.GalleryGroupCollection.AddRange(DevComponents.DotNetBar.GalleryGroup[])">
<summary>
Adds new objects to the collection.
</summary>
<param name="groups">Array of groups to add.</param>
</member>
<member name="M:DevComponents.DotNetBar.GalleryGroupCollection.Insert(System.Int32,DevComponents.DotNetBar.GalleryGroup)">
<summary>
Inserts new object into the collection.
</summary>
<param name="index">Position of the object.</param>
<param name="value">Object to insert.</param>
</member>
<member name="M:DevComponents.DotNetBar.GalleryGroupCollection.IndexOf(DevComponents.DotNetBar.GalleryGroup)">
<summary>
Returns index of the object inside of the collection.
</summary>
<param name="value">Reference to the object.</param>
<returns>Index of the object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.GalleryGroupCollection.Contains(DevComponents.DotNetBar.GalleryGroup)">
<summary>
Returns whether collection contains specified object.
</summary>
<param name="value">Object to look for.</param>
<returns>true if object is part of the collection, otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.GalleryGroupCollection.Remove(DevComponents.DotNetBar.GalleryGroup)">
<summary>
Removes specified object from the collection.
</summary>
<param name="value"></param>
</member>
<member name="M:DevComponents.DotNetBar.GalleryGroupCollection.CopyTo(DevComponents.DotNetBar.GalleryGroup[],System.Int32)">
<summary>
Copies collection into the specified array.
</summary>
<param name="array">Array to copy collection to.</param>
<param name="index">Starting index.</param>
</member>
<member name="M:DevComponents.DotNetBar.GalleryGroupCollection.CopyTo(DevComponents.DotNetBar.GalleryGroup[])">
<summary>
Copies contained items to the GalleryGroup array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="P:DevComponents.DotNetBar.GalleryGroupCollection.Item(System.Int32)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.GalleryGroupCollection.Item(System.String)">
<summary>
Returns reference to the object in collection based on it's name.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ISimpleElement">
<summary>
Summary description for ISimpleElement.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ItemBlockLayoutManager">
<summary>
Represents IBlock layout manager implementation
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemBlockLayoutManager.Layout(DevComponents.UI.ContentManager.IBlock,System.Drawing.Size)">
<summary>
Resizes the content block and sets it's Bounds property to reflect new size.
</summary>
<param name="block">Content block to resize.</param>
</member>
<member name="T:DevComponents.DotNetBar.eTitlePosition">
<summary>
Indicates container title location.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ItemContainerRendererEventArgs">
<summary>
Provides data for rendering ItemContainer.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ItemContainerRendererEventArgs.Graphics">
<summary>
Gets or sets Graphics object group is rendered on.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ItemContainerRendererEventArgs.ItemContainer">
<summary>
Gets the reference to ItemContainer instance being rendered.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainerRendererEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.ItemContainer)">
<summary>
Creates new instance of the object.
</summary>
<param name="g">Reference to graphics object.</param>
<param name="container">Reference to ItemContainer object.</param>
</member>
<member name="T:DevComponents.DotNetBar.ItemContainerSeparatorRendererEventArgs">
<summary>
Provides data for the item separator rendering inside of the ItemContainer.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ItemContainerSeparatorRendererEventArgs.Item">
<summary>
Gets or sets the reference to the item separator is being rendered for.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemContainerSeparatorRendererEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.ItemContainer,DevComponents.DotNetBar.BaseItem)">
<summary>
Creates new instance of the object.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ItemControlAccessibleObject">
<summary>
Represents class for Accessibility support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ItemControlAccessibleObject.#ctor(DevComponents.DotNetBar.ItemControl)">
<summary>
Creates new instance of the object and initializes it with owner control.
</summary>
<param name="owner">Reference to owner control.</param>
</member>
<member name="M:DevComponents.DotNetBar.ItemControlAccessibleObject.GetChildCount">
<summary>
Returns number of child objects.
</summary>
<returns>Total number of child objects.</returns>
</member>
<member name="M:DevComponents.DotNetBar.ItemControlAccessibleObject.GetChild(System.Int32)">
<summary>
Returns reference to child object given the index.
</summary>
<param name="iIndex">0 based index of child object.</param>
<returns>Reference to child object.</returns>
</member>
<member name="P:DevComponents.DotNetBar.ItemControlAccessibleObject.Role">
<summary>
Gets accessible role.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControlAccessibleObject.Parent">
<summary>
Gets parent accessibility object.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControlAccessibleObject.Bounds">
<summary>
Returns bounds of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ItemControlAccessibleObject.State">
<summary>
Returns current accessible state.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ItemDisplay">
<summary>
Represents class for item display.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.KeyTipsCanvasControl">
<summary>
Represents canvas for KeyTips
</summary>
</member>
<member name="T:DevComponents.DotNetBar.KeyTipsRendererEventArgs">
<summary>
Represents data for key tips rendering.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.KeyTipsRendererEventArgs.Graphics">
<summary>
Gets or sets the graphics object used for rendering.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.KeyTipsRendererEventArgs.Bounds">
<summary>
Gets or sets key tip bounds.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.KeyTipsRendererEventArgs.KeyTip">
<summary>
Gets or sets the text of key tip to be rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.KeyTipsRendererEventArgs.Font">
<summary>
Gets or sets the font key tip should be rendered with.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.KeyTipsRendererEventArgs.ReferenceObject">
<summary>
Reference object for which Key Tip is rendered. For example this could be reference to an instance of ButtonItem or BaseItem as well
as reference to System.Windows.Forms.Control object. Always test for type before accessing this reference.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.KeyTipsRendererEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Object)">
<summary>
Creates new instance of the object and initializes it with default values.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.MdiSystemItemPainter">
<summary>
Represents painter for the MdiSystemItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MdiSystemItemPainter.Paint(DevComponents.DotNetBar.MdiSystemItemRendererEventArgs)">
<summary>
Paints MdiSystemItem.
</summary>
<param name="e">Provides arguments for the operation.</param>
</member>
<member name="F:DevComponents.DotNetBar.MessageBoxDialog.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MessageBoxDialog.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
</member>
<member name="M:DevComponents.DotNetBar.MessageBoxDialog.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MessageBoxDialog.TextMarkupEnabled">
<summary>
Gets or sets whether Text supports and renders text markup. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MessageBoxDialog.ButtonsDividerVisible">
<summary>
Gets or sets whether divider panel that divides message box buttons and text content is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MessageBoxDialog.AntiAlias">
<summary>
Gets or sets the anti-alias setting for text-pane.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.MessageBoxDialog.SystemStrings">
<summary>
Enumeration of available common system strings.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.MessageBoxEx">
<summary>
Represents the class that provides MessageBox like functionality with the styled Office 2007 dialog and text markup support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MessageBoxEx.Show(System.String)">
<summary>
Displays a message box with specified text.
</summary>
<param name="text">The text to display in the message box.</param>
<returns>One of the DialogResult values.</returns>
</member>
<member name="M:DevComponents.DotNetBar.MessageBoxEx.Show(System.Windows.Forms.IWin32Window,System.String)">
<summary>
Displays a message box in front of the specified object and with the specified text.
</summary>
<param name="owner">The IWin32Window the message box will display in front of. </param>
<param name="text">The text to display in the message box. </param>
<returns>One of the DialogResult values.</returns>
</member>
<member name="M:DevComponents.DotNetBar.MessageBoxEx.Show(System.String,System.String)">
<summary>
Displays a message box with specified text and caption.
</summary>
<param name="text">The text to display in the message box.</param>
<param name="caption">The text to display in the title bar of the message box.</param>
<returns>One of the DialogResult values.</returns>
</member>
<member name="M:DevComponents.DotNetBar.MessageBoxEx.Show(System.Windows.Forms.IWin32Window,System.String,System.String)">
<summary>
Displays a message box with specified text and caption.
</summary>
<param name="owner">The IWin32Window the message box will display in front of.</param>
<param name="text">The text to display in the message box.</param>
<param name="caption">The text to display in the title bar of the message box.</param>
<returns>One of the DialogResult values.</returns>
</member>
<member name="M:DevComponents.DotNetBar.MessageBoxEx.Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons)">
<summary>
Displays a message box with specified text, caption, and buttons.
</summary>
<param name="text">The text to display in the message box. </param>
<param name="caption">The text to display in the title bar of the message box.</param>
<param name="buttons">One of the MessageBoxButtons values that specifies which buttons to display in the message box. </param>
<returns>One of the DialogResult values.</returns>
</member>
<member name="M:DevComponents.DotNetBar.MessageBoxEx.Show(System.Windows.Forms.IWin32Window,System.String,System.String,System.Windows.Forms.MessageBoxButtons)">
<summary>
Displays a message box with specified text, caption, and buttons.
</summary>
<param name="owner">The IWin32Window the message box will display in front of.</param>
<param name="text">The text to display in the message box. </param>
<param name="caption">The text to display in the title bar of the message box.</param>
<param name="buttons">One of the MessageBoxButtons values that specifies which buttons to display in the message box. </param>
<returns>One of the DialogResult values.</returns>
</member>
<member name="M:DevComponents.DotNetBar.MessageBoxEx.Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon)">
<summary>
Displays a message box with specified text, caption, buttons, and icon.
</summary>
<param name="text">The text to display in the message box. </param>
<param name="caption">The text to display in the title bar of the message box.</param>
<param name="buttons">One of the MessageBoxButtons values that specifies which buttons to display in the message box.</param>
<param name="icon">One of the MessageBoxIcon values that specifies which icon to display in the message box.</param>
<returns>One of the DialogResult values.</returns>
</member>
<member name="M:DevComponents.DotNetBar.MessageBoxEx.Show(System.Windows.Forms.IWin32Window,System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon)">
<summary>
Displays a message box with specified text, caption, buttons, and icon.
</summary>
<param name="owner">The IWin32Window the message box will display in front of.</param>
<param name="text">The text to display in the message box. </param>
<param name="caption">The text to display in the title bar of the message box.</param>
<param name="buttons">One of the MessageBoxButtons values that specifies which buttons to display in the message box.</param>
<param name="icon">One of the MessageBoxIcon values that specifies which icon to display in the message box.</param>
<returns>One of the DialogResult values.</returns>
</member>
<member name="M:DevComponents.DotNetBar.MessageBoxEx.Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton)">
<summary>
Displays a message box with the specified text, caption, buttons, icon, and default button.
</summary>
<param name="text">The text to display in the message box. </param>
<param name="caption">The text to display in the title bar of the message box.</param>
<param name="buttons">One of the MessageBoxButtons values that specifies which buttons to display in the message box.</param>
<param name="icon">One of the MessageBoxIcon values that specifies which icon to display in the message box.</param>
<param name="defaultButton">One of the MessageBoxDefaultButton values that specifies the default button for the message box. </param>
<returns>One of the DialogResult values.</returns>
</member>
<member name="M:DevComponents.DotNetBar.MessageBoxEx.Show(System.Windows.Forms.IWin32Window,System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton)">
<summary>
Displays a message box with the specified text, caption, buttons, icon, and default button.
</summary>
<param name="owner">The IWin32Window the message box will display in front of.</param>
<param name="text">The text to display in the message box. </param>
<param name="caption">The text to display in the title bar of the message box.</param>
<param name="buttons">One of the MessageBoxButtons values that specifies which buttons to display in the message box.</param>
<param name="icon">One of the MessageBoxIcon values that specifies which icon to display in the message box.</param>
<param name="defaultButton">One of the MessageBoxDefaultButton values that specifies the default button for the message box. </param>
<returns>One of the DialogResult values.</returns>
</member>
<member name="M:DevComponents.DotNetBar.MessageBoxEx.Show(System.Windows.Forms.IWin32Window,System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Boolean)">
<summary>
Displays a message box with the specified text, caption, buttons, icon, and default button.
</summary>
<param name="owner">The IWin32Window the message box will display in front of.</param>
<param name="text">The text to display in the message box. </param>
<param name="caption">The text to display in the title bar of the message box.</param>
<param name="buttons">One of the MessageBoxButtons values that specifies which buttons to display in the message box.</param>
<param name="icon">One of the MessageBoxIcon values that specifies which icon to display in the message box.</param>
<param name="defaultButton">One of the MessageBoxDefaultButton values that specifies the default button for the message box. </param>
<param name="topMost">Indicates value for Message Box dialog TopMost property. </param>
<returns>One of the DialogResult values.</returns>
</member>
<member name="E:DevComponents.DotNetBar.MessageBoxEx.MarkupLinkClick">
<summary>
Occurs when text markup link on Message Box is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MessageBoxEx.UseSystemLocalizedString">
<summary>
Gets or sets whether MessageBoxEx is using Windows System API function to retrieve the localized strings used by MessageBoxEx. Set this to false
if you experience issues when using MessageBoxEx under certain conditions.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MessageBoxEx.EnableGlass">
<summary>
Gets or sets whether MessageBoxEx form has Windows Vista Glass enabled if running on
Windows Vista with Glass enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MessageBoxEx.AntiAlias">
<summary>
Gets or sets the anti-alias setting for message box text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MessageBoxEx.MessageBoxTextColor">
<summary>
Gets or sets the text color for the message box text. Default value is Color.Empty which indicates that system colors are used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MessageBoxEx.ButtonsDividerVisible">
<summary>
Gets or sets whether divider panel that divides message box buttons and text content is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MessageBoxEx.DefaultStartPosition">
<summary>
Gets or sets the message box start position when Owner is not specified. Default value is CenterScreen.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MessageBoxEx.OwnerStartPosition">
<summary>
Gets or sets the message box start position when Owner is specified. Default value is CenterParent.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.MessageBoxEx.TextMarkupEnabled">
<summary>
Gets or sets whether message box text renders text markup. Default value is true.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Office2003RibbonTabItemPainter">
<summary>
Summary description for Office2003RibbonTabItemPainter.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Office2003RibbonTabItemPainter.PaintButtonMouseOver(DevComponents.DotNetBar.ButtonItem,DevComponents.DotNetBar.ItemPaintArgs,DevComponents.DotNetBar.CompositeImage,System.Drawing.Rectangle)">
<summary>
Paints state of the button, either hot, pressed or checked
</summary>
<param name="button"></param>
<param name="pa"></param>
<param name="image"></param>
</member>
<member name="M:DevComponents.DotNetBar.Office2007BarBackgroundPainter.PaintDockedBackground(DevComponents.DotNetBar.ToolbarRendererEventArgs)">
<summary>
Paints background of docked bar.
</summary>
<param name="e">Context information</param>
</member>
<member name="M:DevComponents.DotNetBar.Office2007BarBackgroundPainter.PaintFloatingBackground(DevComponents.DotNetBar.ToolbarRendererEventArgs)">
<summary>
Paints background of floating bar.
</summary>
<param name="e">Context information</param>
</member>
<member name="M:DevComponents.DotNetBar.Office2007BarBackgroundPainter.PaintPopupBackground(DevComponents.DotNetBar.ToolbarRendererEventArgs)">
<summary>
Paints background of popup bar.
</summary>
<param name="e">Context information</param>
</member>
<member name="P:DevComponents.DotNetBar.Office2007BarBackgroundPainter.ColorTable">
<summary>
Gets or sets color table used by renderer.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Office2007ItemContainerPainter.ColorTable">
<summary>
Gets or sets color table used by renderer.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Office2007DialogLauncherPainter.ColorTable">
<summary>
Gets or sets color table used by renderer.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Office2007MdiSystemItemPainter">
<summary>
Represents Office 2007 style MdiSystemItem painter
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Office2007MdiSystemItemPainter.ColorTable">
<summary>
Gets or sets color table used by renderer.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RibbonControlPainter">
<summary>
Represents base class for Ribbon Control painting.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControlPainter.PaintBackground(DevComponents.DotNetBar.RibbonControlRendererEventArgs)">
<summary>
Paints controls background
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControlPainter.PaintCaptionBackground(DevComponents.DotNetBar.RibbonControlRendererEventArgs,System.Drawing.Rectangle)">
<summary>
Paints form caption background
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControlPainter.PaintCaptionText(DevComponents.DotNetBar.RibbonControlRendererEventArgs)">
<summary>
Paints form caption text when ribbon control is displaying form caption
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControlPainter.PaintQuickAccessToolbarBackground(DevComponents.DotNetBar.RibbonControlRendererEventArgs)">
<summary>
Paints the background of quick access toolbar.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Office2007RibbonControlPainter.PaintBackground(DevComponents.DotNetBar.RibbonControlRendererEventArgs)">
<summary>
Paints controls background
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Office2007RibbonControlPainter.PaintCaptionBackground(DevComponents.DotNetBar.RibbonControlRendererEventArgs,System.Drawing.Rectangle)">
<summary>
Paints form caption background
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Office2007RibbonControlPainter.PaintQuickAccessToolbarBackground(DevComponents.DotNetBar.RibbonControlRendererEventArgs)">
<summary>
Paints the background of quick access toolbar.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Office2007RibbonTabItemPainter">
<summary>
RibbonTabItem painter for Office 2007 style
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ApplicationButton">
<summary>
Represents the Office Application Button displayed in the top-left corner of the Ribbon Control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ApplicationButton.ProcessEscapeKey(System.Windows.Forms.Keys)">
<summary>
Processes the Escape key when Application Button is hosting the backstage tab and uses it to close the tab if open.
This method is called from ProcessDialogKey method of Office2007RibbonForm.
</summary>
<param name="keyData">Key data</param>
<returns>true if key was used to close backstage tab</returns>
</member>
<member name="P:DevComponents.DotNetBar.ApplicationButton.Expanded">
<summary>
Gets or sets a value indicating whether the item is expanded or not. For Popup items this would indicate whether the item is popped up or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ApplicationButton.BackstageTabEnabled">
<summary>
Gets or sets whether control set on BackstageTab property is used on application menu popup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ApplicationButton.BackstageTab">
<summary>
Gets or sets the backstage tab that is displayed instead of popup menu.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.PainterFactory">
<summary>
Summary description for PainterFactory.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.PainterFactory.InitFactory">
<summary>
Forces the creation of the objects inside of factory.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Ribbon.QatCustomizeDialog.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Ribbon.QatCustomizeDialog.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
</member>
<member name="M:DevComponents.DotNetBar.Ribbon.QatCustomizeDialog.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Ribbon.QatCustomizeDialog.LoadItems(DevComponents.DotNetBar.RibbonControl)">
<summary>
Loads the items for the customization into the ribbon control. All Ribbon Bars on the ribbon are enumerated and items
are added if they have CanCustomize=true.
</summary>
<param name="rc">Ribbon control to enumerate.</param>
</member>
<member name="M:DevComponents.DotNetBar.Ribbon.QatCustomizeDialog.LoadItems(DevComponents.DotNetBar.Metro.MetroShell)">
<summary>
Loads the items for the customization from MetroTab control. Registered MetroToolbar controls are enumerated and items
are added if they have CanCustomize=true.
</summary>
<param name="tab">MetroTab control that holds references to known MetroToolbars.</param>
</member>
<member name="P:DevComponents.DotNetBar.Ribbon.QatCustomizeDialog.QatCustomizePanel">
<summary>
Gets reference to the internal Quick Access Toolbar Customization panel.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.QatCustomizeItem">
<summary>
Represents the item that provides Quick Access Toolbar customization.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.QatCustomizeItem.#ctor">
<summary>
Creates new instance of CustomizeItem object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.QatCustomizeItem.Copy">
<summary>
Returns copy of CustomizeItem item
</summary>
</member>
<member name="M:DevComponents.DotNetBar.QatCustomizeItem.RecalcSize">
<summary>
Overridden. Recalculates the size of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.QatCustomizeItem.GetTooltipText">
<summary>
Gets localized tooltip text for this instance of the item.
</summary>
<returns>Tooltip text.</returns>
</member>
<member name="M:DevComponents.DotNetBar.QatCustomizeItem.MouseHoverCustomize">
<summary>
Called when mouse hovers over the customize item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.QatCustomizeItem.CustomizeItemVisible">
<summary>
Gets or sets whether Customize menu item is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.QatCustomizeItem.Tooltip">
<summary>
Gets/Sets informational text (tooltip) for the item.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Ribbon.QatCustomizePanel">
<summary>
Represents the Quick Access Toolbar customization panel which can be used on the custom QAT customization dialogs
so customization of Quick Access Toolbar can be reused.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Ribbon.QatCustomizePanel.itemPanelCommands">
<summary>
Gets reference to the internal ItemPanel control that displays the commands for selected category.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Ribbon.QatCustomizePanel.itemPanelQat">
<summary>
Gets reference to the ItemPanel control that displays the Quick Access Toolbar Items.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Ribbon.QatCustomizePanel.buttonAddToQat">
<summary>
Gets reference to the button that perform addition of commands to the Quick Access Toolbar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Ribbon.QatCustomizePanel.buttonRemoveFromQat">
<summary>
Gets reference to the button that perform removal of commands from the Quick Access Toolbar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Ribbon.QatCustomizePanel.comboCategories">
<summary>
Gets reference to the combo box control that holds all categories.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Ribbon.QatCustomizePanel.labelCategories">
<summary>
Gets reference to the combo box categories label control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Ribbon.QatCustomizePanel.checkQatBelowRibbon">
<summary>
Gets reference to the check box that changes the placement of the Quick Access Toolbar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Ribbon.QatCustomizePanel.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Ribbon.QatCustomizePanel.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Ribbon.QatCustomizePanel.LoadItems(DevComponents.DotNetBar.RibbonControl)">
<summary>
Loads the items for the customization into the ribbon control. All Ribbon Bars on the ribbon are enumerated and items
are added if they have CanCustomize=true.
</summary>
<param name="rc">Ribbon control to enumerate.</param>
</member>
<member name="M:DevComponents.DotNetBar.Ribbon.QatCustomizePanel.LoadItems(DevComponents.DotNetBar.Metro.MetroShell)">
<summary>
Loads the items for the customization from MetroTab registered toolbars. All registered Toolbars are enumerated and items
are added if they have CanCustomize=true.
</summary>
<param name="tab">MetroTab control to enumerate.</param>
</member>
<member name="P:DevComponents.DotNetBar.Ribbon.QatCustomizePanel.DataChanged">
<summary>
Gets or sets the value of data changed flag.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Ribbon.QatToolbar">
<summary>
Represents the stand-alone Quick Access Toolbar control
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Ribbon.QatToolbar.GetItems(System.String)">
<summary>
Returns the collection of items with the specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Ribbon.QatToolbar.GetItems(System.String,System.Type)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Ribbon.QatToolbar.GetItems(System.String,System.Type,System.Boolean)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<param name="useGlobalName">Indicates whether GlobalName property is used for searching.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Ribbon.QatToolbar.GetItem(System.String)">
<summary>
Returns the first item that matches specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="P:DevComponents.DotNetBar.Ribbon.QatToolbar.Style">
<summary>
Gets/Sets the visual style for items and color scheme.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Ribbon.QatToolbar.Items">
<summary>
Returns collection of items on a bar.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RibbonBar">
<summary>
Represents a single ribbon container control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBar.CreateAccessibilityInstance">
<summary>
Creates new accessibility instance.
</summary>
<returns>Reference to AccessibleObject.</returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBar.CloseOverflowPopup">
<summary>
Closes the RibbonBar overflow popup if control is in overflow mode and displays the overflow popup that shows complete content of the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBar.ResetBackgroundMouseOverStyle">
<summary>
Resets style to default value. Used by windows forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBar.DoLaunchDialog">
<summary>
Invokes the LaunchDialog event to execute default launch dialog action.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBar.OnPopupItemRightClick(DevComponents.DotNetBar.BaseItem)">
<summary>
Called when item on popup container is right-clicked.
</summary>
<param name="item">Instance of the item that is right-clicked.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBar.OnDialogLauncherMouseEnter(System.EventArgs)">
<summary>
Invokes DialogLauncherMouseEnter event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBar.OnDialogLauncherMouseLeave(System.EventArgs)">
<summary>
Invokes DialogLauncherMouseLeave event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBar.OnDialogLauncherMouseHover(System.EventArgs)">
<summary>
Invokes DialogLauncherMouseHover event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBar.GetItems(System.String)">
<summary>
Returns the collection of items with the specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBar.GetItems(System.String,System.Type)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBar.GetItem(System.String)">
<summary>
Returns the first item that matches specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBar.GetItems(System.String,System.Type,System.Boolean)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<param name="useGlobalName">Indicates whether GlobalName property is used for searching.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBar.ResetCachedContentSize">
<summary>
Resets cached content size. Content size is cached to improve performance of the control when control is
switched into overflow mode displaying a single button. If you change content of Rendering, hide/show items or
add new items you will need to call this method to erase cached value and allow the full Rendering size to be calculated.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBar.GetContentBasedSize">
<summary>
Returns size of the control based on current content size.
</summary>
<returns>Size based on content.</returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBar.AutoSyncSize">
<summary>
Sets the height of the control to the automatically calculated height based on content.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBar.GetAutoSizeHeight">
<summary>
Returns automatically calculated height of the control given current content.
</summary>
<returns>Height in pixels.</returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBar.GetAutoSizeWidth">
<summary>
Returns automatically calculated width of the control given current content.
</summary>
<returns>Width in pixels.</returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBar.GetTitleRectangle">
<summary>
Gets the bounds of the title.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBar.ResetTitleStyle">
<summary>
Resets TitleStyle property to its default value. Used by Windows Forms designer for design-time support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBar.ResetTitleStyleMouseOver">
<summary>
Resets TitleStyle property to its default value. Used by Windows Forms designer for design-time support.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonBar.LaunchDialog">
<summary>
Occurs when dialog launcher button in title bar is clicked. Use DialogLauncherVisible property to show the button in title bar.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonBar.OverflowButtonSetup">
<summary>
Occurs when overflow button for control is created because control size is below the minimum size required to display complete content of the control.
This event allows you to get access to the internal overflow button that is created and change it's properties if required.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonBar.OverflowButtonSetupComplete">
<summary>
Occurs after overflow button setup is complete and all items contained by this control are moved to it.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonBar.OverflowButtonDestroy">
<summary>
Occurs before overflow button is destroyed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonBar.DialogLauncherMouseEnter">
<summary>
Occurs when mouse enters dialog launcher button.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonBar.DialogLauncherMouseLeave">
<summary>
Occurs when mouse leaves dialog launcher button.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonBar.DialogLauncherMouseHover">
<summary>
Occurs when mouse hovers over the dialog launcher button.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonBar.DialogLauncherMouseDown">
<summary>
Occurs when mouse is pressed over the dialog launcher button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.QatButtonParent">
<summary>
Gets or sets parent button when on QAT.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.IsOnQat">
<summary>
Gets or sets whether this RibbonBar is on QAT.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.UseSpecKeyTipsPositioning">
<summary>
Gets or sets whether Office 2007 Design Guidelines specification for positioning KeyTips is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.DialogLauncherAccessibleName">
<summary>
Gets or sets the Accessible name for the Dialog Launcher button
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.BackgroundMouseOverStyle">
<summary>
Specifies the background style of the control when mouse is over the control. Style specified here will be applied to the
BackgroundStyle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.DialogLauncherButton">
<summary>
Gets or sets image that is used as dialog luncher button in ribbon title bar. Default value is null which indicates that
default appearance for the button is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.DialogLauncherMouseOverButton">
<summary>
Gets or sets image that is used as dialog luncher button when mouse is over the button.
Note that if this property is set you also must set the DialogLauncherButton property. Images set to both
properties must have same size. Default value is null which indicates that
default appearance for the button is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.MaximumOverflowTextLength">
<summary>
Gets or sets maximum text length for automatic overflow button text. When overflow button is created due to the
reduced size of the control text for the button can be specified using OverflowButtonText property. If
text is not specified RibbonBar.Text property is used as overflow button text. In that case
this property specifies maximum length of the text to display on the button. Default value is 25. You can set
this property to 0 to use complete text regardless of length.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.ResizeOrderIndex">
<summary>
Gets or sets resize order index of the control. When control is parented to RibbonPanel control (which is the case when control is
used as part of RibbonControl) index specified here indicates the order in which controls that are part of the same panel
are resized. Lower index value indicates that control should be resized later when size needs to be reduced or earlier when size needs
to be increased. Default value is 0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.AutoOverflowEnabled">
<summary>
Gets or sets whether automatic overflow handling is enabled. When overflow is enabled if control is resized below the
size that is needed to display its complete content overflow button is created and all content is moved to the overflow button
popup. Control will only display overflow button when in this state and user can click overflow button to display the actual
content of the control.
Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.OverflowButtonText">
<summary>
Gets or sets the text for overflow button that is created when ribbon bar size is reduced so it cannot display all its content.
When control is resized so it cannot display its content overflow button is created which is displayed on face of the control.
Complete content of the control is then displayed on popup toolbar when user clicks overflow button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.OverflowButtonImage">
<summary>
Gets or sets the Image for overflow button that is created when ribbon bar size is reduced so it cannot display all its content.
When control is resized so it cannot display its content overflow button is created which is displayed on face of the control.
Complete content of the control is then displayed on popup toolbar when user clicks overflow button. This Image is also used when
RibbonBar is added to the Quick Access Toolbar to identify the RibbonBar button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.DialogLauncherVisible">
<summary>
Gets or sets whether dialog launcher button is visible in title of the ribbon. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.LayoutOrientation">
<summary>
Gets or sets default layout orientation inside the control. You can have multiple layouts inside of the control by adding
one or more instances of the ItemContainer object and changing it's LayoutOrientation property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.ItemSpacing">
<summary>
Gets or sets spacing in pixels between items. Default value is 1.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.ResizeItemsToFit">
<summary>
Gets or sets whether items contained by container are resized to fit the container bounds. When container is in horizontal
layout mode then all items will have the same height. When container is in vertical layout mode then all items
will have the same width. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.HorizontalItemAlignment">
<summary>
Gets or sets the item alignment when container is in horizontal layout. Default value is Left.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.VerticalItemAlignment">
<summary>
Gets or sets the item vertical alignment. Default value is Top.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.Items">
<summary>
Returns collection of items on a bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.CanCustomize">
<summary>
Gets or sets whether ribbon bar can be customized by end user i.e. added to Quick Access Toolbar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.OverflowRibbonBar">
<summary>
Returns reference to the overflow button that is used by control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.OverflowState">
<summary>
Gets whether control is in overflow state or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.AutoSizeItems">
<summary>
Gets or sets whether ButtonItem objects hosted on control are resized to reduce the space consumed by ribbon bar when required.
Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.AutoSizeIncludesTitle">
<summary>
Indicates whether auto-sizing for RibbonBar includes ribbon bar title width so in case when ribbon bar title width is wider than ribbon bar width the
width of the ribbon bar will always be at least the title bar width so complete title text can be displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.Style">
<summary>
Gets/Sets the visual style for items and color scheme.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.DialogLauncherKeyTip">
<summary>
Gets or sets the KeyTip for the dialog launcher button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.TitleVisible">
<summary>
Gets or sets whether ribbon bar title is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.TitleStyle">
<summary>
Specifies the style of the title of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.TitleStyleMouseOver">
<summary>
Specifies the style of the title of the control when mouse is over the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.TitleRectangle">
<summary>
Gets the title bounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.BackgroundHoverEnabled">
<summary>
Gets or sets whether control changes its background when mouse is over the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.AllowExternalDrop">
<summary>
Gets or sets whether external ButtonItem object is accepted in drag and drop operation. UseNativeDragDrop must be set to true in order for this property to be effective.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBar.UseNativeDragDrop">
<summary>
Gets or sets whether native .NET Drag and Drop is used by control to perform drag and drop operations. AllowDrop must be set to true to allow drop of the items on control.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.RibbonBar.EnableDragDrop" -->
<member name="T:DevComponents.DotNetBar.OverflowButtonEventHandler">
<summary>
Defines event handler for overflow button events.
</summary>
<param name="sender">Control that is hosting the overflow button.</param>
<param name="e">Event arguments</param>
</member>
<member name="T:DevComponents.DotNetBar.OverflowButtonEventArgs">
<summary>
Represents event arguments for overflow button events.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.OverflowButtonEventArgs.#ctor(DevComponents.DotNetBar.ButtonItem)">
<summary>
Creates new instance of the class and initializes it.
</summary>
<param name="ob">Reference to overflow button.</param>
</member>
<member name="P:DevComponents.DotNetBar.OverflowButtonEventArgs.OverflowButton">
<summary>
Returns reference to the overflow button that is used by control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RibbonBarAccessibleObject">
<summary>
Represents class for RibbonBar Accessibility support.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBarAccessibleObject.#ctor(DevComponents.DotNetBar.ItemControl)">
<summary>
Creates new instance of the object and initializes it with owner control.
</summary>
<param name="owner">Reference to owner control.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBarAccessibleObject.GetChildCount">
<summary>
Returns number of child objects.
</summary>
<returns>Total number of child objects.</returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBarAccessibleObject.GetChild(System.Int32)">
<summary>
Returns reference to child object given the index.
</summary>
<param name="iIndex">0 based index of child object.</param>
<returns>Reference to child object.</returns>
</member>
<member name="T:DevComponents.DotNetBar.RibbonBarMergeContainer">
<summary>
Represents the container for RibbonBar objects that will be merged into the MDI parent ribbon control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RibbonPanel">
<summary>
Represents panel used by RibbonTabItem as a container panel for the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPanel.#ctor">
<summary>
Creates new instance of the panel.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPanel.ScrollRight">
<summary>
Scrolls the RibbonBar controls to the right one step if there is more of the controls on the panel that can fit into the available space.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPanel.ScrollLeft">
<summary>
Scrolls the RibbonBar controls one step to the left.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPanel.ResetScrollPosition">
<summary>
Resets the panel scroll position.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonPanel.DefaultLayout">
<summary>
Gets or sets whether default control layout is used instead of Rendering layout for RibbonBar controls positioning. By default
internal layout logic is used so proper resizing of Ribbons can be performed. You can disable internal layout by setting this property
to true.
Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonPanel.UseCustomStyle">
<summary>
Indicates whether style of the panel is managed by tab control automatically.
Set this to true if you would like to control style of the panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonPanel.RibbonTabItem">
<summary>
Gets or sets TabItem that this panel is attached to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonPanel.StretchLastRibbonBar">
<summary>
Gets or sets whether last RibbonBar is stretched to fill available space inside of the panel. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonPanel.Dock">
<summary>
Gets or sets which edge of the parent container a control is docked to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonPanel.Size">
<summary>
Gets or sets the size of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonPanel.Location">
<summary>
Gets or sets the coordinates of the upper-left corner of the control relative to the upper-left corner of its container.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonPanel.Visible">
<summary>
Gets or sets a value indicating whether the control is displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonPanel.Anchor">
<summary>
Gets or sets which edges of the control are anchored to the edges of its container.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBarMergeContainer.RemoveMergedRibbonBars(DevComponents.DotNetBar.RibbonControl)">
<summary>
Removes any RibbonBar objects that were merged into the Ribbon control.
</summary>
<param name="ribbon">Reference to ribbon control to remove RibbonBar objects from.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBarMergeContainer.MergeRibbonBars(DevComponents.DotNetBar.RibbonControl)">
<summary>
Merges RibbonBar objects from this container into the Ribbon control.
</summary>
<param name="ribbon">Reference to ribbon control to remove RibbonBar objects from.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBarMergeContainer.OnBeforeRibbonMerge(System.EventArgs)">
<summary>
Raises the BeforeRibbonMerge event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBarMergeContainer.OnAfterRibbonMerge(System.EventArgs)">
<summary>
Raises the AfterRibbonMerge event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBarMergeContainer.OnBeforeRibbonUnmerge(System.EventArgs)">
<summary>
Raises the BeforeRibbonUnmerge event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBarMergeContainer.OnAfterRibbonUnmerge(System.EventArgs)">
<summary>
Raises the AfterRibbonUnmerge event.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonBarMergeContainer.BeforeRibbonMerge">
<summary>
Occurs before the RibbonBar objects from container are merged into the Ribbon control.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonBarMergeContainer.AfterRibbonMerge">
<summary>
Occurs after the RibbonBar objects are merged into the Ribbon control.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonBarMergeContainer.BeforeRibbonUnmerge">
<summary>
Occurs after the RibbonBar objects are removed from the Ribbon control.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "E:DevComponents.DotNetBar.RibbonBarMergeContainer.AfterRibbonUnmerge" -->
<member name="P:DevComponents.DotNetBar.RibbonBarMergeContainer.IsMerged">
<summary>
Gets whether RibbonBar controls are merged into the RibbonControl.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBarMergeContainer.AutoActivateTab">
<summary>
Gets or sets whether RibbonTab item the RibbonBar controls are added to when merged is automatically activated (selected) after
controls are merged. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBarMergeContainer.AllowMerge">
<summary>
Gets or sets whether merge functionality is enabled for the container. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBarMergeContainer.RibbonTabText">
<summary>
Gets or sets the Ribbon Tab text for the tab that will be created when ribbon bar objects from this container are merged into the ribbon.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBarMergeContainer.RibbonTabKeyTips">
<summary>
Gets or sets the Key Tips access key or keys for the Ribbon Tab. Use KeyTips property
when you want to assign the one or more letters to be used to access an item. For example assigning the FN to KeyTips property
will require the user to press F then N keys to select an item. Pressing the F letter will show only keytips for the items that start with letter F.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBarMergeContainer.RibbonTabColorTable">
<summary>
Gets or sets the predefined color for the ribbon tab that is created when ribbon bar controls are merged into the ribbon.
Default value is eRibbonTabColor.Default
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBarMergeContainer.MergeIntoRibbonTabItemName">
<summary>
Gets or sets the name of RibbonTabItem object that already exists on Ribbon control into which the RibbonBar controls are merged.
If name is not specified new RibbonTabItem is created and RibbonBar controls are added to it.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBarMergeContainer.MergeRibbonGroupName">
<summary>
Gets or sets the name of the RibbonTabItemGroup the new Ribbon Tab Item that is created will be added to. The RibbonTabItemGroup
must be created and added to RibbonControl.TabGroups collection.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonBarMergeContainer.MergeRibbonTabItemIndex">
<summary>
Gets or sets the insertion index for the ribbon tab item that is created when ribbon bars are merged into the ribbon control.
Default value is -1 which means that ribbon tab item is appended to the existing ribbon tab items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Ribbon.RibbonClientPanel.IsShadowEnabled">
<summary>
Gets or sets whether panel automatically provides shadows for child controls.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RibbonControl">
<summary>
Represents Rendering control composed of two parts, RibbonStrip and multiple RibbonBar controls per strip.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonControl.SysQatCustomizeItemName">
<summary>
Gets the name of the QAT Customize Item which is used to display the QAT Customize Dialog box.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonControl.SysQatAddToItemName">
<summary>
Gets the name of the Add to Quick Access Toolbar context menu item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonControl.SysQatRemoveFromItemName">
<summary>
Gets the name of the Remove from Quick Access Toolbar context menu item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonControl.SysQatPlaceItemName">
<summary>
Gets the name of the QAT placement change context menu item.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonControl.SysMinimizeRibbon">
<summary>
Gets the name of the Minimize Ribbon Item which is used to minimize the ribbon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonControl.SysMaximizeRibbon">
<summary>
Gets the name of the Maximize Ribbon Item which is used to maximize the ribbon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonControl.SysQatCustomizeLabelName">
<summary>
Gets the name of the label displayed on Quick Access Toolbar customize popup menu.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonControl.SysFrequentlyQatNamePart">
<summary>
Gets the string that is used as starting name for the frequently used QAT menu items created when QAT Customize menu is displayed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.AutoSyncSize">
<summary>
Sets the height of the control to the automatically calcualted height based on content.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.AutoSyncSize(System.Boolean)">
<summary>
Sets the height of the control to the automatically calcualted height based on content.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.SetRibbonPanelStyle(DevComponents.DotNetBar.RibbonPanel)">
<summary>
Performs the setup of the RibbonPanel with the current style of the Ribbon Control.
</summary>
<param name="panel">Panel to apply style changes to.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.CreateRibbonTab(System.String,System.String,System.Int32)">
<summary>
Creates new Rendering Tab at specified position, creates new associated panel and adds them to the control.
</summary>
<param name="text">Specifies the text displayed on the tab.</param>
<param name="name">Specifies the name of the tab</param>
<param name="insertPosition">Specifies the position of the new tab inside of Items collection.</param>
<returns>New instance of the RibbonTabItem that was created.</returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.CreateRibbonTab(System.String,System.String)">
<summary>
Creates new Rendering Tab and associated panel and adds them to the control.
</summary>
<param name="text">Specifies the text displayed on the tab.</param>
<param name="name">Specifies the name of the tab</param>
<returns>New instance of the RibbonTabItem that was created.</returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.RecalcLayout">
<summary>
Recalculates layout of the control and applies any changes made to the size or position of the items contained.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.GetControlRegion">
<summary>
Returns Control region if any when control is hosted by Office2007RibbonForm
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.RibbonStripTitleTextMarkupLinkClick(System.Object,DevComponents.DotNetBar.MarkupLinkClickEventArgs)">
<summary>
Occurs when text markup link is clicked.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.ResetDefaultGroupFont">
<summary>
Resets DefaultGroupFont property to default value null.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.OnBeforeRibbonPanelPopupClose(DevComponents.DotNetBar.RibbonPopupCloseEventArgs)">
<summary>
Raises the BeforeRibbonPanelPopupClose event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.OnAfterRibbonPanelPopupClose(System.EventArgs)">
<summary>
Raises the AfterRibbonPanelPopupClose event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.OnBeforeRibbonPanelPopup(System.ComponentModel.CancelEventArgs)">
<summary>
Raises the BeforeRibbonPanelPopup event.
</summary>
<param name="ce"></param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.OnAfterRibbonPanelPopup(System.EventArgs)">
<summary>
Raises the BeforeRibbonPanelPopup event.
</summary>
<param name="ce"></param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.SetupActiveWindowTimer">
<summary>
Sets up timer that watches when active window changes.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.OnActiveWindowChanged">
<summary>
Called after change of active window has been detected. SetupActiveWindowTimer must be called to enable detection.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.ReleaseActiveWindowTimer">
<summary>
Releases and disposes the active window watcher timer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.PopupRibbon(System.Object,DevComponents.DotNetBar.eEventSource)">
<summary>
Displays the active ribbon panel on the popup if ribbon control is collapsed.
</summary>
<param name="source">Reference to the object that was cause of the event. This is provided to the BeforeRibbonPanelPopupClose event if an menu needs to be closed.</param>
<param name="eventSource">Indicates the event source. This is provided to the BeforeRibbonPanelPopupClose event if an menu needs to be closed.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.CloseRibbonMenu">
<summary>
Closes the Ribbon tab menu with source set to null and event source set to Code.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.CloseRibbonMenu(System.Object,DevComponents.DotNetBar.eEventSource)">
<summary>
Closes the Ribbon Menu if one is currently displayed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.SuspendLayout">
<summary>
Suspends the form layout.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.ResumeLayout">
<summary>
Suspends the form layout.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.ResumeLayout(System.Boolean)">
<summary>
Suspends the form layout.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.SelectFirstVisibleRibbonTab">
<summary>
Selects first visible RibbonTab.
</summary>
<returns>Returns true if selection is performed otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.OnRibbonBarRightClick(DevComponents.DotNetBar.RibbonBar,System.Int32,System.Int32)">
<summary>
Called when right-mouse button is pressed over RibbonBar
</summary>
<param name="ribbonBar">Reference to RibbonBar object.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.OnRibbonStripRightClick(DevComponents.DotNetBar.RibbonStrip,System.Int32,System.Int32)">
<summary>
Called when right-mouse button is pressed over RibbonStrip
</summary>
<param name="ribbonStrip">Reference to RibbonStrip object.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.ShowCustomizeContextMenu(System.Object,System.Boolean)">
<summary>
Displays popup customize context menu for given customization object.
</summary>
<param name="o">Object that should be customized, usually an instance of BaseItem.</param>
<param name="ribbonStrip">Indicates whether customize menu is displayed over ribbon strip</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.OnQatPlacementChanged(System.EventArgs)">
<summary>
Raises the QatPlacementChanged event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.RemoveItemFromQuickAccessToolbar(DevComponents.DotNetBar.BaseItem)">
<summary>
Removes an item from the Quick Access Toolbar.
</summary>
<param name="item">Reference to the item that is already part of Quick Access Toolbar.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.AddItemToQuickAccessToolbar(System.Object)">
<summary>
Adds an instance of base type BaseItem or RibbonBar to the Quick Access Toolbar. Note that this method creates
new instance of the item or an representation of the item being added and adds that to the Quick Access Toolbar.
</summary>
<param name="originalItem">Reference to the item to add, must be an BaseItem type or RibbonBar type.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.OnBeforeCustomizeMenuPopup(DevComponents.DotNetBar.RibbonCustomizeEventArgs)">
<summary>
Raises the BeforeCustomizeMenuPopup event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.OnBeforeAddItemToQuickAccessToolbar(DevComponents.DotNetBar.RibbonCustomizeEventArgs)">
<summary>
Raises the BeforeAddItemToQuickAccessToolbar event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.ShowQatCustomizeDialog">
<summary>
Shows the quick access toolbar customize dialog.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.ApplyQatCustomizePanelChanges(DevComponents.DotNetBar.Ribbon.QatCustomizePanel)">
<summary>
Applies the Quick Access Toolbar customization changes made on QatCustomizePanel to the Ribbon Control Quick Access Toolbar. Note that QatCustomizePanel.DataChanged property indicates whether user made any changes to the data on the panel.
</summary>
<param name="customizePanel">Reference to the QatCustomizePanel</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.OnAfterQatDialogChangesApplied">
<summary>
Raises the AfterQatDialogChangesApplied event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonControl.GetApplicationButton">
<summary>
Returns the ribbon Application Button.
</summary>
<returns>reference to Application Button or null if button is not found.</returns>
</member>
<member name="E:DevComponents.DotNetBar.RibbonControl.QatPlacementChanged">
<summary>
Occurs when Quick Access Toolbar placement is changed, i.e. below or above the Ribbon.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonControl.BeforeCustomizeMenuPopup">
<summary>
Occurs just before the customize popup menu is displayed and provides the ability to cancel the menu display as well
as to add/remove the menu items from the customize popup menu.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonControl.BeforeAddItemToQuickAccessToolbar">
<summary>
Occurs before an item is added to the quick access toolbar as result of user action. This event provides ability to
cancel the addition of the item by setting the Cancel=true of event arguments.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonControl.BeforeRemoveItemFromQuickAccessToolbar">
<summary>
Occurs before an item is removed from the quick access toolbar as result of user action. This event provides ability to
cancel the addition of the item by setting the Cancel=true of event arguments.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonControl.LocalizeString">
<summary>
Occurs when DotNetBar is looking for translated text for one of the internal text that are
displayed on menus, toolbars and customize forms. You need to set Handled=true if you want
your custom text to be used instead of the built-in system value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonControl.ItemClick">
<summary>
Occurs when Item on ribbon tab strip or quick access toolbar is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonControl.BeforeQatCustomizeDialog">
<summary>
Occurs before Quick Access Toolbar dialog is displayed. This event provides the opportunity to cancel the showing of
built-in dialog and display custom customization dialog. You can also set the Dialog property of the event arguments to
the custom dialog you want used instead of the DotNetBar system customization dialog.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonControl.AfterQatCustomizeDialog">
<summary>
Occurs after the Quick Access Toolbar dialog is closed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonControl.AfterQatDialogChangesApplied">
<summary>
Occurs after any changes done on the Quick Access Toolbar dialog are applied to the actual Quick Access Toolbar.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonControl.SelectedRibbonTabChanged">
<summary>
Occurs after selected Ribbon tab has changed. You can use
<see cref="P:DevComponents.DotNetBar.RibbonControl.SelectedRibbonTabItem">RibbonControl.SelectedRibbonTabItem</see>
property to get reference to newly selected tab.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonControl.BeforeRibbonPanelPopup">
<summary>
Occurs before selected RibbonPanel is displayed on popup while ribbon is collapsed. This event gives you the opportunity to cancel the popup of the ribbon panel.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonControl.AfterRibbonPanelPopup">
<summary>
Occurs after selected RibbonPanel is displayed on popup while ribbon is collapsed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonControl.BeforeRibbonPanelPopupClose">
<summary>
Occurs before RibbonPanel popup is closed and provides opportunity to cancel the closing. Note that if you cancel closing of ribbon popup you are
responsible for closing the popup.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonControl.AfterRibbonPanelPopupClose">
<summary>
Occurs after RibbonPanel popup is closed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonControl.TitleTextMarkupLinkClick">
<summary>
Occurs when text markup link from TitleText markup is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<member name="E:DevComponents.DotNetBar.RibbonControl.ExpandedChanged">
<summary>
Occurs after Expanded property has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.QatFrequentCommands">
<summary>
Gets the collection of the Quick Access Toolbar Frequently used commands. You should add existing buttons to this collection that
you already have on the RibbonBar controls or on the application menu. The list will be used to construct the frequently used
menu that is displayed when Customize Quick Access Toolbar menu is displayed and it allows end-user to remove and add these
frequently used commands to the QAT directly from this menu.
Note that items you add here should not be items that are already on Quick Access Toolbar, i.e. in RibbonControl.QuickToolbarItems collection.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.KeyTipsEnabled">
<summary>
Gets or sets whether KeyTips functionality is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.AllowMerge">
<summary>
Gets or sets whether merge functionality is enabled for the control. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.AutoSize">
<summary>
Gets or sets whether control height is set automatically based on the content. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting. Default value is false.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.RibbonControl.TitleText" -->
<member name="P:DevComponents.DotNetBar.RibbonControl.GlobalContextMenuBar">
<summary>
Gets or sets the Context menu bar associated with the this control which is used as part of Global Items feature. The context menu
bar assigned here will be used to search for the items with the same Name or GlobalName property so global properties can be propagated when changed.
You should assign this property to enable the Global Items feature to reach your ContextMenuBar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.CaptionVisible">
<summary>
Gets or sets whether custom caption and quick access toolbar provided by the control is visible. Default value is false.
This property should be set to true when control is used on Office2007RibbonForm.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.CaptionFont">
<summary>
Gets or sets the font for the form caption text when CaptionVisible=true. Default value is NULL which means that system font is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.CaptionHeight">
<summary>
Gets or sets the explicit height of the caption provided by control. Caption height when set is composed of the TabGroupHeight and
the value specified here. Default value is 0 which means that system default caption size is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.RibbonStripIndent">
<summary>
Gets or sets the indent of the ribbon strip. The indent setting is useful when control is used with caption visible and the Office 2007
style start button. The indent specified here will move the ribbon strip so the start button does not overlap the tabs.
Value of this property is used only when CaptionVisible = true.
Default value is 46.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.RibbonStripFont">
<summary>
Gets or sets the font used by the ribbon strip.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.FadeEffect">
<summary>
Gets or sets whether mouse over fade effect is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.KeyTipsFont">
<summary>
Gets or sets the font that is used to display Key Tips (accelerator keys) when they are displayed. Default value is null which means
that control Font is used for Key Tips display.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.TabGroups">
<summary>
Collection of RibbonTabItemGroup items. Groups are assigned optionally to one or more RibbonTabItem object through the RibbonTabItem.Group
property to visually group tabs that belong to same functions. These tabs should be positioned next to each other.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.TabGroupHeight">
<summary>
Gets or sets the height in pixels of tab group line that is displayed above the RibbonTabItem objects that have group assigned.
Default value is 10 pixels. To show tab groups you need to assign the RibbonTabItem.Group property and set TabGroupsVisible=true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.TabGroupsVisible">
<summary>
Gets or sets whether tab group line that is displayed above the RibbonTabItem objects that have group assigned is visible.
Default value is false. To show tab groups you need to assign the RibbonTabItem.Group property and set TabGroupsVisible=true. Use TabGroupHeight
property to control height of the group line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.DefaultGroupFont">
<summary>
Gets or sets default font for tab groups. This font will be used if font is not specified by group style element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.BackgroundStyle">
<summary>
Specifies the background style of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.SelectedRibbonTabItem">
<summary>
Gets or sets the currently selected RibbonTabItem. RibbonTabItems are selected using the Checked property. Only a single
RibbonTabItem can be selected (Checked) at any given time.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.RibbonStrip">
<summary>
Returns reference to internal ribbon strip control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.Items">
<summary>
Returns collection of items on a bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.QuickToolbarItems">
<summary>
Returns collection of quick toolbar access and caption items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.Style">
<summary>
Gets/Sets the visual style of the control. If you are changing style to Office 2007 or Office 2010 use RibbonPredefinedColorSchemes.ChangeStyle method instead to ensure
all controls are switched properly.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.AutoUpdatePadding">
<summary>
Indicates whether control automatically updates Padding property for the ribbon and RibbonPanel based on style. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.Office2007ColorTable">
<summary>
Gets or sets the Office 2007 Renderer global Color Table. Setting this property will affect all controls on the form that are using Office 2007 global renderer.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.IsPopupMode">
<summary>
Gets whether collapsed ribbon is displaying the selected ribbon panel as popup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.MouseWheelTabScrollEnabled">
<summary>
Gets or sets whether mouse wheel scrolls through the ribbon tabs. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.Expanded">
<summary>
Gets or sets whether control is expanded or not. When control is expanded both the tabs and the tab ribbons are visible. When collapsed
only tabs are visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.AutoExpand">
<summary>
Gets or sets whether control is collapsed when RibbonTabItem is double clicked and expanded when RibbonTabItem is clicked.
Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.AutoKeyboardExpand">
<summary>
Gets or sets whether control is collapsed/expanded when Ctrl+F1 key is clicked.
Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.Images">
<summary>
ImageList for images used on Items. Images specified here will always be used on menu-items and are by default used on all Bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.ImagesMedium">
<summary>
ImageList for medium-sized images used on Items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.ImagesLarge">
<summary>
ImageList for large-sized images used on Items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.TabStop">
<summary>
Gets or sets a value indicating whether the user can give the focus to this control using the TAB key. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.BackgroundImagePosition">
<summary>
Indicates the position of the BackgroundImage
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.MdiSystemItemVisible">
<summary>
Specifies whether the MDI system buttons are displayed in ribbon strip when MDI Child window is maximized.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.CanSupportGlass">
<summary>
Gets or sets whether Ribbon control employs the Windows Vista Glass support when available. This is managed automatically by Ribbon Control and
no setting is necessary on your part.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.QuickAccessToolbarBelowRibbonHeight">
<summary>
Indicates Quick Access Toolbar height when positioned below the Ribbon. Default value of 0 indicates auto-height.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.CanCustomize">
<summary>
Gets or sets whether control can be customized and items added by end-user using context menu to the quick access toolbar.
Caption of the control must be visible for customization to be enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.UseExternalCustomization">
<summary>
Gets or sets whether external implementation for ribbon bar and menu item customization will be used for customizing the ribbon control. When set to true
it enables the displaying of RibbonBar and menu item context menus which allow customization. You are responsible for
adding the menu items to context menu to handle all aspects of item customization. See "Ribbon Control Quick Access Toolbar Customization" topic in help file under How To.
Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.EnableQatPlacement">
<summary>
Gets or sets whether end-user customization of the placement of the Quick Access Toolbar is enabled. User
can change the position of the Quick Access Toolbar using the customize menu. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.UseCustomizeDialog">
<summary>
Gets or sets whether customize dialog is used to customize the quick access toolbar. You can handle the EnterCustomize event
to display your custom dialog instead of built-in dialog for customization. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.CategorizeMode">
<summary>
Gets or sets the categorization mode for the items on Quick Access Toolbar customize dialog box. Default value categorizes
items by the ribbon bar they appear on.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.QatPositionedBelowRibbon">
<summary>
Gets or sets whether Quick Access toolbar is positioned below the ribbon.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.QatLayout">
<summary>
Gets or sets the Quick Access Toolbar layout description. You can use the value obtained from this property to save
the customized Quick Access Toolbar into registry or into any other storage object. You can also set the saved layout description back
to restore user customize layout.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.QatLayoutChanged">
<summary>
Gets or sets whether Quick Access Toolbar has been customized by end-user. You can use value of this property to determine
whether Quick Access Toolbar layout that can be accessed using QatLayout property should be saved.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonControl.SystemText">
<summary>
Gets the reference to the ribbon localization object which holds all system text used by the component.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RibbonBarRendererEventArgs">
<summary>
Provides data for RibbonBar rendering events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonBarRendererEventArgs.Graphics">
<summary>
Gets or sets the reference to Graphics object.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonBarRendererEventArgs.Bounds">
<summary>
Gets or sets the part bounds.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonBarRendererEventArgs.RibbonBar">
<summary>
Gets or sets the reference to RibbonBar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonBarRendererEventArgs.MouseOver">
<summary>
Gets or sets whether mouse over state should be painted for the ribbon bar part.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonBarRendererEventArgs.Pressed">
<summary>
Gets or sets whether mouse is pressed over the ribbon part.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonBarRendererEventArgs.ContentClip">
<summary>
Gets or sets the region that defines the content bounds. When background is rendered the renderer should set this property
to define the content clip.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonBarRendererEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle,DevComponents.DotNetBar.RibbonBar)">
<summary>
Creates new instance of the object and initializes it with default values.
</summary>
<param name="g">Reference to Graphics object.</param>
<param name="bounds">Bounds of the part to be rendered.</param>
<param name="ribbon">Reference to ribbon bar.</param>
</member>
<member name="T:DevComponents.DotNetBar.RibbonLocalization">
<summary>
Represents the class that stores text used by ribbon control only for localization purposes.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonLocalization.QatDialogCaption">
<summary>
Gets or sets the title text of the Quick Access Toolbar Customize dialog form.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonLocalization.QatDialogPlacementCheckbox">
<summary>
Gets or sets the text of the "Place Quick Access Toolbar below the Ribbon" check-box on the Quick Access Toolbar Customize dialog form.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonLocalization.QatDialogCategoriesLabel">
<summary>
Gets or sets the text of the Choose commands from label on the Quick Access Toolbar Customize dialog form.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonLocalization.QatDialogRemoveButton">
<summary>
Gets or sets the text of the Remove button on the Quick Access Toolbar Customize dialog form.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonLocalization.QatDialogAddButton">
<summary>
Gets or sets the text of the Add button on the Quick Access Toolbar Customize dialog form.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonLocalization.QatDialogOkButton">
<summary>
Gets or sets the text of the OK button on the Quick Access Toolbar Customize dialog form.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonLocalization.QatDialogCancelButton">
<summary>
Gets or sets the text of the Cancel button on the Quick Access Toolbar Customize dialog form.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonLocalization.QatRemoveItemText">
<summary>
Gets or sets the text that is used on context menu used to customize Quick Access Toolbar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonLocalization.QatAddItemText">
<summary>
Gets or sets the text that is used on context menu used to customize Quick Access Toolbar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonLocalization.QatCustomizeText">
<summary>
Gets or sets the text that is used on context menu used to customize Quick Access Toolbar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonLocalization.QatCustomizeMenuLabel">
<summary>
Gets or sets the text that is used on Quick Access Toolbar customize menu label.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonLocalization.QatPlaceBelowRibbonText">
<summary>
Gets or sets the text that is used on context menu used to change placement of the Quick Access Toolbar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonLocalization.QatPlaceAboveRibbonText">
<summary>
Gets or sets the text that is used on context menu used to change placement of the Quick Access Toolbar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonLocalization.MinimizeRibbonText">
<summary>
Gets or sets the text that is used on context menu item used to minimize the Ribbon.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonLocalization.MaximizeRibbonText">
<summary>
Gets or sets the text that is used on context menu item used to maximize the Ribbon.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RibbonOverflowButtonItem">
<summary>
Represents ribbon overflow button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonOverflowButtonItem.RibbonBar">
<summary>
Gets or sets the ribbon bar control overflow button is displayed on.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RibbonPredefinedColorSchemes">
<summary>
Represents predefined color schemes for ribbon controls.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ApplyGrayColorScheme(DevComponents.DotNetBar.RibbonBar)">
<summary>
Applies default gray color scheme to background and title.
</summary>
<param name="b">Reference to object.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ApplyOrangeColorScheme(DevComponents.DotNetBar.RibbonBar)">
<summary>
Applies orange color scheme to background and title.
</summary>
<param name="b">Reference to object</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ApplyOffice2003ColorScheme(DevComponents.DotNetBar.RibbonBar)">
<summary>
Apply Office 2003 color scheme to background and title.
</summary>
<param name="b">Reference to object</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ApplyOffice2003ColorScheme(DevComponents.DotNetBar.RibbonControl)">
<summary>
Applies Office 2003 color scheme to ribbon control background.
</summary>
<param name="b">Reference to object.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ApplyGrayColorScheme(DevComponents.DotNetBar.RibbonControl)">
<summary>
Applies Gray color scheme to ribbon control background.
</summary>
<param name="b">Reference to object.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ApplyOffice2007ColorScheme(DevComponents.DotNetBar.RibbonControl)">
<summary>
Applies Office 2007 color table to ribbon control background.
</summary>
<param name="b">Reference to object.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ApplyOffice2007ColorScheme(DevComponents.DotNetBar.RibbonBar)">
<summary>
Applies Office 2007 Luna blue color scheme to the Ribbon Bar.
</summary>
<param name="b">Reference to object.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.SetRibbonControlStyle(DevComponents.DotNetBar.RibbonControl,DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Applies specified style to Ribbon control and all other controls that are managed by the ribbon control.
This method is useful for example when switching the color tables for Office 2007 renderer. Once
the GlobalManager.Renderer color table is changed you can call this method to apply color table
changes to the Ribbon Control and other controls managed by it.
</summary>
<param name="r">RibbonControl to set the style on.</param>
<param name="style">Visual style to apply.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.SetRibbonBarStyle(DevComponents.DotNetBar.RibbonBar,DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Applies specified visual style to the RibbonBar control.
</summary>
<param name="bar">RibbonBar control to set the style on.</param>
<param name="style">Visual style to apply.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.SetupFileMenuContainer(DevComponents.DotNetBar.ItemContainer)">
<summary>
Applies current color scheme and layout settings to the container which acts as top-level file menu container.
Applies to Office 2007 style only.
</summary>
<param name="container">Container to apply style to.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.SetupTwoColumnMenuContainer(DevComponents.DotNetBar.ItemContainer)">
<summary>
Applies current color scheme and layout properties to the two column menu container used by the top-level file menu.
Applies to Office 2007 style only.
</summary>
<param name="twoColumn">Container to apply style to.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.SetupMenuColumnOneContainer(DevComponents.DotNetBar.ItemContainer)">
<summary>
Applies current color scheme and layout properties to the first column menu container used by the top-level file menu.
This column usually contains menu items.
Applies to Office 2007 style only.
</summary>
<param name="menuColumn">Container to apply style to.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.SetupMenuColumnTwoContainer(DevComponents.DotNetBar.ItemContainer)">
<summary>
Applies current color scheme and layout properties to the first column menu container used by the top-level file menu.
This column usually contains most recently used list of files or documents.
Applies to Office 2007 style only.
</summary>
<param name="menuColumn">Container to apply style to.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.SetupMenuBottomContainer(DevComponents.DotNetBar.ItemContainer)">
<summary>
Applies current color scheme and layout properties to the bottom menu container used by the top-level file menu.
This container usually contains Options and Exit buttons.
Applies to Office 2007 style only.
</summary>
<param name="menuColumn">Container to apply style to.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ChangeOffice2007ColorTable(DevComponents.DotNetBar.Rendering.eOffice2007ColorScheme)">
<summary>
Changes the Office 2007 color table for all DotNetBar controls on the open forms that are tracked by Application.OpenForms collection. You can use this function for example to
apply Black color scheme to all DotNetBar control on all open forms. The color table will be changed only for controls that
have Office 2007 style. Any other style will be unchanged.
</summary>
<param name="colorTable">Color table to select and apply.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ApplyOffice2007ColorTable">
<summary>
Applies current Office 2007 style color table set on GlobalManager.Renderer to all DotNetBar controls with Office 2007 style on all open forms.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ChangeOffice2007ColorTable(System.Windows.Forms.Control,DevComponents.DotNetBar.Rendering.eOffice2007ColorScheme)">
<summary>
Changes the Office 2007 color table for all DotNetBar controls on the form. You can use this function for example to
apply Black color scheme to all DotNetBar control on given form. The color table will be changed only for controls that
have Office 2007 style. Any other style will be unchanged.
</summary>
<param name="form">Form to apply color table to.</param>
<param name="colorTable">Color table to select and apply.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ChangeOffice2007ColorTable(System.Windows.Forms.Control,DevComponents.DotNetBar.Rendering.eOffice2007ColorScheme,System.Drawing.Color)">
<summary>
Generates and Changes the Office 2007 color table for all DotNetBar controls on the form. You can use this function for example to
create custom color scheme based on the base color and apply it to all DotNetBar control on given form. The new color table will be applied only to controls that
have Office 2007 style. Any other style will be unchanged.
</summary>
<param name="form">Form to apply color table to.</param>
<param name="colorTable">Base color table to use for creation of custom color table that will be applied.</param>
<param name="baseSchemeColor">Base color used to create custom color table.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ChangeOffice2007ColorTable(DevComponents.DotNetBar.Rendering.eOffice2007ColorScheme,System.Drawing.Color)">
<summary>
Generates and Changes the Office 2007 color table for all DotNetBar controls on all open forms. You can use this function for example to
create custom color scheme based on the base color and apply it to all DotNetBar control on given form. The new color table will be applied only to controls that
have Office 2007 style. Any other style will be unchanged.
</summary>
<param name="colorTable">Base color table to use for creation of custom color table that will be applied.</param>
<param name="baseSchemeColor">Base color used to create custom color table.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ApplyOffice2007ColorTable(System.Windows.Forms.Control)">
<summary>
Applies current Office 2007 style color table to all DotNetBar controls on the form.
</summary>
<param name="form">Reference to the form or parent control that contains DotNetBar controls you would like to apply color table to.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ChangeStyle(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Changes style for all controls on Application.OpenForms to specified style. Use this method to change the style for all controls to Office 2007 or Office 2010 styles only.
</summary>
<param name="newStyle">New style to assign to controls on forms.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ChangeStyle(DevComponents.DotNetBar.eDotNetBarStyle,System.Drawing.Color)">
<summary>
Changes style for all controls on Application.OpenForms to specified style. Use this method to change the style for all controls to Office 2007 or Office 2010 styles only.
</summary>
<param name="newStyle">New style to assign to controls on forms.</param>
<param name="blendColor">Color used to blend with the base color scheme.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ChangeStyle(DevComponents.DotNetBar.eDotNetBarStyle,System.Windows.Forms.Control)">
<summary>
Changes style for all controls on a form to specified style. Use this method to change the style for all controls to Office 2007 or Office 2010 styles only.
</summary>
<param name="newStyle">New style to assign to controls.</param>
<param name="parentForm">Form or Control to process.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ChangeStyle(DevComponents.DotNetBar.eDotNetBarStyle,System.Windows.Forms.Control,System.Drawing.Color)">
<summary>
Changes style for all controls on a form to specified style. Use this method to change the style for all controls to Office 2007 or Office 2010 styles only.
</summary>
<param name="newStyle">New style to assign to controls.</param>
<param name="parentForm">Form or Control to process.</param>
<param name="blendColor">Color used to blend with the base color scheme.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ChangeOffice2010ColorTable(System.Windows.Forms.Control,DevComponents.DotNetBar.Rendering.eOffice2010ColorScheme)">
<summary>
Changes the Office 2010 color table for all DotNetBar controls on the form. You can use this function for example to
apply Black color scheme to all DotNetBar control on given form. The color table will be changed only for controls that
have Office 2007 and 2010 style. Any other style will be unchanged.
</summary>
<param name="form">Form to apply color table to.</param>
<param name="colorTable">Color table to select and apply.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ChangeOffice2010ColorTable(System.Windows.Forms.Control,DevComponents.DotNetBar.Rendering.eOffice2010ColorScheme,System.Drawing.Color)">
<summary>
Generates and Changes the Office 2010 color table for all DotNetBar controls on the form. You can use this function for example to
create custom color scheme based on the base color and apply it to all DotNetBar control on given form. The new color table will be applied only to controls that
have Office 2007 and 2010 style. Any other style will be unchanged.
</summary>
<param name="form">Form to apply color table to.</param>
<param name="colorTable">Base color table to use for creation of custom color table that will be applied.</param>
<param name="baseSchemeColor">Base color used to create custom color table.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ChangeOffice2010ColorTable(DevComponents.DotNetBar.Rendering.eOffice2010ColorScheme,System.Drawing.Color)">
<summary>
Generates and Changes the Office 2010 color table for all DotNetBar controls on all open forms. You can use this function for example to
create custom color scheme based on the base color and apply it to all DotNetBar control on given form. The new color table will be applied only to controls that
have Office 2007 and 2010 style. Any other style will be unchanged.
</summary>
<param name="colorTable">Base color table to use for creation of custom color table that will be applied.</param>
<param name="baseSchemeColor">Base color used to create custom color table.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ChangeWindows7ColorTable(System.Windows.Forms.Control,DevComponents.DotNetBar.Rendering.eWindows7ColorScheme)">
<summary>
Changes the Windows 7 color table for all DotNetBar controls on the form. You can use this function for example to
apply Black color scheme to all DotNetBar control on given form. The color table will be changed only for controls that
have Windows 7, Office 2007, 2010 style. Any other style will be unchanged.
</summary>
<param name="form">Form to apply color table to.</param>
<param name="colorTable">Color table to select and apply.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ChangeWindows7ColorTable(System.Windows.Forms.Control,DevComponents.DotNetBar.Rendering.eWindows7ColorScheme,System.Drawing.Color)">
<summary>
Generates and Changes the Windows 7 color table for all DotNetBar controls on the form. You can use this function for example to
create custom color scheme based on the base color and apply it to all DotNetBar control on given form. The new color table will be applied only to controls that
have Windows 7, Office 2007 and 2010 style. Any other style will be unchanged.
</summary>
<param name="form">Form to apply color table to.</param>
<param name="colorTable">Base color table to use for creation of custom color table that will be applied.</param>
<param name="baseSchemeColor">Base color used to create custom color table.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonPredefinedColorSchemes.ChangeWindows7ColorTable(DevComponents.DotNetBar.Rendering.eWindows7ColorScheme,System.Drawing.Color)">
<summary>
Generates and Changes the Windows 7 color table for all DotNetBar controls on all open forms. You can use this function for example to
create custom color scheme based on the base color and apply it to all DotNetBar control on given form. The new color table will be applied only to controls that
have Windows 7, Office 2007 and 2010 style. Any other style will be unchanged.
</summary>
<param name="colorTable">Base color table to use for creation of custom color table that will be applied.</param>
<param name="baseSchemeColor">Base color used to create custom color table.</param>
</member>
<member name="T:DevComponents.DotNetBar.QatOverflowItem">
<summary>
Defines the Ribbon Quick Access Overflow system item. Used internally by Ribbon control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.QatOverflowItem.Copy">
<summary>
Returns copy of DisplayMoreItem item
</summary>
</member>
<member name="M:DevComponents.DotNetBar.QatOverflowItem.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Overriden. Draws the item.
</summary>
<param name="g">Target Graphics object.</param>
</member>
<member name="M:DevComponents.DotNetBar.QatOverflowItem.GetReInsertIndex">
<summary>
Returns the insertion index for the items removed from overflow popup. Assumes that right-most items are removed first by the layout manager.
</summary>
<returns></returns>
</member>
<member name="T:DevComponents.DotNetBar.RibbonStrip">
<summary>
Represents RibbonStrip control internally used by RibbonControl.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonStrip.InternalTitleTextMarkupLinkClick(System.Object,System.EventArgs)">
<summary>
Occurs when text markup link is clicked.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonStrip.ResetDefaultGroupFont">
<summary>
Resets DefaultGroupFont property to default value null.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonStrip.GetAutoSizeHeight">
<summary>
Returns automatically calculated height of the control given current content.
</summary>
<returns>Height in pixels.</returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonStrip.GetItems(System.String)">
<summary>
Returns the collection of items with the specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonStrip.GetItems(System.String,System.Type)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonStrip.GetItems(System.String,System.Type,System.Boolean)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<param name="useGlobalName">Indicates whether GlobalName property is used for searching.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonStrip.GetItem(System.String)">
<summary>
Returns the first item that matches specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonStrip.OnRibbonBarShowKeyTips(DevComponents.DotNetBar.RibbonBar)">
<summary>
Called when ShowKeyTips on RibbonBar contained by this Ribbon is set to true
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonStrip.ExitKeyTipsMode">
<summary>
Forces the control to exit Ribbon Key-Tips mode.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonStrip.OnPopupItemRightClick(DevComponents.DotNetBar.BaseItem)">
<summary>
Called when item on popup container is right-clicked.
</summary>
<param name="item">Instance of the item that is right-clicked.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonStrip.HitTestCaption(System.Drawing.Point)">
<summary>
Returns true if point is inside the caption area.
</summary>
<param name="p">Client point coordinates.</param>
<returns>True if point is inside of caption area otherwise false.</returns>
</member>
<member name="E:DevComponents.DotNetBar.RibbonStrip.TitleTextMarkupLinkClick">
<summary>
Occurs when text markup link from TitleText markup is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.CanSupportGlass">
<summary>
Gets or sets whether RibbonStrip control employs the Windows Vista Glass support when available. This is managed automatically by Ribbon Control and
no setting is necessary on your part.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.RibbonStrip.TitleText" -->
<member name="P:DevComponents.DotNetBar.RibbonStrip.TitleTextMarkupBody">
<summary>
Gets reference to parsed markup body element if text was markup otherwise returns null.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.KeyTipsEnabled">
<summary>
Gets or sets whether KeyTips functionality is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.CanCustomize">
<summary>
Gets or sets whether control can be customized and items added by end-user using context menu to the quick access toolbar.
Caption of the control must be visible for customization to be enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.CaptionHeight">
<summary>
Gets or sets the explicit height of the caption provided by control. Caption height when set is composed of the TabGroupHeight and
the value specified here. Default value is 0 which means that system default caption size is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.CaptionVisible">
<summary>
Gets or sets whether custom caption line provided by the control is visible. Default value is false.
This property should be set to true when control is used on Office2007RibbonForm.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.CaptionFont">
<summary>
Gets or sets the font for the form caption text when CaptionVisible=true. Default value is NULL which means that system font is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.RibbonStripIndent">
<summary>
Gets or sets the indent of the ribbon strip. The indent setting is useful when control is used with caption visible and the Office 2007
style start button. The indent specified here will move the ribbon strip so the start button does not overlap the tabs.
Value of this property is used only when CaptionVisible = true.
Default value is 46.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.TabGroupHeight">
<summary>
Gets or sets the height in pixels of tab group line that is displayed above the RibbonTabItem objects that have group assigned.
Default value is 14 pixels. To show tab groups you need to assign the RibbonTabItem.Group property and set TabGroupsVisible=true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.TabGroupsVisible">
<summary>
Gets or sets whether tab group line that is displayed above the RibbonTabItem objects that have group assigned is visible.
Default value is false. To show tab groups you need to assign the RibbonTabItem.Group property and set TabGroupsVisible=true. Use TabGroupHeight
property to control height of the group line.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.TabGroups">
<summary>
Collection of RibbonTabItemGroup items. Groups are assigned optionally to one or more RibbonTabItem object through the RibbonTabItem.Group
property to visually group tabs that belong to same functions. These tabs should be positioned next to each other.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.Style">
<summary>
Gets/Sets the visual style of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.Items">
<summary>
Returns collection of items on a bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.SelectedRibbonTabItem">
<summary>
Returns currently selected RibbonTabItem. RibbonTabItems are selected using the Checked property. Only a single
RibbonTabItem can be Checked at any given time.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.TabGroupPaintSuspended">
<summary>
Gets or set whether TabGroup painting is suspended.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.DefaultGroupFont">
<summary>
Gets or sets default font for tab groups. This font will be used if font is not specified by group style element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.AutoExpand">
<summary>
Gets or sets whether control is collapsed when RibbonTabItem is double clicked and expanded when RibbonTabItem is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.AutoKeyboardExpand">
<summary>
Gets or sets whether control is collapsed when RibbonTabItem is double clicked and expanded when RibbonTabItem is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.IgnoreF10Key">
<summary>
Gets or sets whether F10 key is ignored as way to set KeyTips focus to Ribbon.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.IsInKeyTipsMode">
<summary>
Gets whether Ribbon is in key-tips mode including its child controls.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.QuickToolbarItems">
<summary>
Returns collection of items on a bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.CaptionContainerItem">
<summary>
Gets the reference to the internal container item for the items displayed in control caption.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStrip.StripContainerItem">
<summary>
Gets the reference to the internal container for the ribbon tabs and other items.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RibbonStripContainerItem">
<summary>
Defines the internal container item for the ribbon strip control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonStripContainerItem.#ctor(DevComponents.DotNetBar.RibbonStrip)">
<summary>
Creates new instance of the class and initializes it with the parent RibbonStrip control.
</summary>
<param name="parent">Reference to parent RibbonStrip control</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonStripContainerItem.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Paints this base container
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonStripContainerItem.Copy">
<summary>
Returns copy of GenericItemContainer item
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonStripContainerItem.ItemAtLocation(System.Int32,System.Int32)">
<summary>
Return Sub Item at specified location
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStripContainerItem.MetroBackstageOpen">
<summary>
Gets whether Metro Backstage application menu is open.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStripContainerItem.RibbonStripContainer">
<summary>
Gets reference to internal ribbon strip container that contains tabs and/or other items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStripContainerItem.CaptionContainer">
<summary>
Gets reference to internal caption container item that contains the quick toolbar, start button and system caption item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStripContainerItem.Expanded">
<summary>
Gets or sets a value indicating whether the item is expanded or not. For Popup items this would indicate whether the item is popped up or not.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonStripContainerItem.SubItemsImageSize">
<summary>
When parent items does recalc size for its sub-items it should query
image size and store biggest image size into this property.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RibbonTabGroupRendererEventArgs">
<summary>
Provides data for RenderRibbonTabGroup event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonTabGroupRendererEventArgs.Graphics">
<summary>
Gets or sets Graphics object group is rendered on.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonTabGroupRendererEventArgs.RibbonTabItemGroup">
<summary>
Gets or sets RibbonTabItemGroup being rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonTabGroupRendererEventArgs.Bounds">
<summary>
Gets or sets the bounds of the tab group. Bounds specified here are bounds of the tab group title. GroupBounds contains the bounds
that include all tabs that belong to the tab group.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonTabGroupRendererEventArgs.GroupFont">
<summary>
Gets or sets the font that should be used to render group text.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonTabGroupRendererEventArgs.GroupBounds">
<summary>
Gets or sets group bounds including the tabs that belong to the group.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonTabGroupRendererEventArgs.EffectiveStyle">
<summary>
Gets or sets the effective style for the group.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonTabGroupRendererEventArgs.ItemPaintArgs">
<summary>
Gets whether Windows Vista glass is enabled.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RibbonTabItem">
<summary>
Represents Rendering Tab used on RibbonControl.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonTabItem.Select">
<summary>
Selects the tab.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonTabItem.ResetGroup">
<summary>
Resets Group property to default value null.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonTabItem.OnCheckedChanged">
<summary>
Called after Checked property has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonTabItem.OnClick">
<summary>
Occurs just before Click event is fired.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonTabItem.InvokeDoubleClick">
<summary>
Occurs when the item is clicked. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonTabItem.OnVisibleChanged(System.Boolean)">
<summary>
Called when Visibility of the items has changed.
</summary>
<param name="bVisible">New Visible state.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonTabItem.OnStyleChanged">
<summary>
Occurs after item visual style has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.RenderTabState">
<summary>
Gets or sets whether tab renders its state. Used internally by DotNetBar. Do not set.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.PaddingHorizontal">
<summary>
Gets or sets the additional padding added around the tab item in pixels. Default value is 0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.ReducedSize">
<summary>
Gets or sets whether size of the tab has been reduced below the default calculated size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.ColorTable">
<summary>
Gets or sets the predefined color of item. Color specified here applies to items with Office 2007 style only. It does not have
any effect on other styles. Default value is eRibbonTabColor.Default
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.Group">
<summary>
Gets or sets the group this tab belongs to. Groups are optional classification that is used to
visually group tabs that belong to same functions. These tabs should be positioned next to each other.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.Panel">
<summary>
Gets or sets the panel assigned to this ribbon tab item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.OptionGroup">
<summary>
Gets or set the Group item belongs to. The groups allows a user to choose from mutually exclusive options within the group. The choice is reflected by Checked property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.SubItems">
<summary>
Returns the collection of sub items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.AutoCollapseOnClick">
<summary>
Indicates whether the item will auto-collapse (fold) when clicked.
When item is on popup menu and this property is set to false, menu will not
close when item is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.AutoExpandOnClick">
<summary>
Indicates whether the item will auto-expand when clicked.
When item is on top level bar and not on menu and contains sub-items, sub-items will be shown only if user
click the expand part of the button. Setting this propert to true will expand the button and show sub-items when user
clicks anywhere inside of the button. Default value is false which indicates that button is expanded only
if its expand part is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.CanCustomize">
<summary>
Gets or sets whether item can be customized by end user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.Checked">
<summary>
Gets or set a value indicating whether the button is in the checked state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.ClickAutoRepeat">
<summary>
Gets or sets whether Click event will be auto repeated when mouse button is kept pressed over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.ClickRepeatInterval">
<summary>
Gets or sets the auto-repeat interval for the click event when mouse button is kept pressed over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.Enabled">
<summary>
Gets or sets a value indicating whether the item is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.MenuVisibility">
<summary>
Indicates item's visiblity when on pop-up menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.PersonalizedMenus">
<summary>
Indicates when menu items are displayed when MenuVisiblity is set to VisibleIfRecentlyUsed and RecentlyUsed is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.PopupAnimation">
<summary>
Indicates Animation type for Popups.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.PopupFont">
<summary>
Indicates the font that will be used on the popup window.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.PopupType">
<summary>
Indicates whether sub-items are shown on popup Bar or popup menu.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.PopupWidth">
<summary>
Specifies the inital width for the Bar that hosts pop-up items. Applies to PopupType.Toolbar only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.ShowSubItems">
<summary>
Gets or sets whether item will display sub items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.Stretch">
<summary>
Gets or sets whether the item expands automatically to fill out the remaining space inside the container. Applies to Items on stretchable, no-wrap Bars only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.SubItemsExpandWidth">
<summary>
Gets or sets the width of the expand part of the button item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.AlternateShortCutText">
<summary>
Gets or set the alternative shortcut text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.BeginGroup">
<summary>
Gets or sets whether item separator is shown before this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.Category">
<summary>
Returns category for this item. If item cannot be customzied using the
customize dialog category is empty string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.HotForeColor">
<summary>
Gets or sets the text color of the button when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.HotTrackingStyle">
<summary>
Indicates the way item is painting the picture when mouse is over it. Setting the value to Color will render the image in gray-scale when mouse is not over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItem.ForeColor">
<summary>
Gets or sets the text color of the button.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RibbonTabItemGroup">
<summary>
Represents a group RibbonTabItem objects are assigned to.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonTabItemGroup.SelectFirstTab">
<summary>
Selected first tab that is part of this group.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItemGroup.Color">
<summary>
Gets or sets the predefined color of the group. Color specified here applies to groups with Office 12 style only. It does not have
any effect on other styles. Default value is eRibbonTabGroupColor.Default
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItemGroup.CustomColorName">
<summary>
Gets or sets the custom color name. Name specified here must be represented by the coresponding object with the same name that is part
of the Office2007ColorTable.RibbonTabGroupColors collection. See documentation for Office2007ColorTable.RibbonTabGroupColors for more information.
If color table with specified name cannot be found default color will be used. Valid settings for this property override any
setting to the Color property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItemGroup.Style">
<summary>
Gets the style for tab group.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItemGroup.GroupTitle">
<summary>
Gets or sets title of the group that will be displayed when group is visually represented.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItemGroup.ParentRibbonStrip">
<summary>
Gets or sets parent ribbon strip for this group.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItemGroup.Visible">
<summary>
Gets or sets whether RibbonTabItem objects that belong to this group are visible. Setting this property will
show/hide all RibbonTabItem objects that are assigned to this group through RibbonTabItem.Group property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItemGroup.IsTabFromGroupSelected">
<summary>
Gets whether any tab from this tab group is selected.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItemGroup.Name">
<summary>
Gets or sets name of the group that can be used to identify item from the code.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItemGroup.TitleBounds">
<summary>
Gets an array of Rectangle objects that describe the visual position on the ribbon control of the group titles displayed.
If tabs that belong to a tab group are not next to each other then there will be multiple rectangle returned as part of the array
for each tab group that is apart.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RibbonTabItemGroupCollection">
<summary>
Collection of RibbonTabItemGroup objects.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonTabItemGroupCollection.Add(DevComponents.DotNetBar.RibbonTabItemGroup)">
<summary>
Adds new object to the collection.
</summary>
<param name="tab">Object to add.</param>
<returns>Index of newly added object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonTabItemGroupCollection.AddRange(DevComponents.DotNetBar.RibbonTabItemGroup[])">
<summary>
Adds new objects to the collection.
</summary>
<param name="groups">Array of groups to add.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonTabItemGroupCollection.Insert(System.Int32,DevComponents.DotNetBar.RibbonTabItemGroup)">
<summary>
Inserts new object into the collection.
</summary>
<param name="index">Position of the object.</param>
<param name="value">Object to insert.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonTabItemGroupCollection.IndexOf(DevComponents.DotNetBar.RibbonTabItemGroup)">
<summary>
Returns index of the object inside of the collection.
</summary>
<param name="value">Reference to the object.</param>
<returns>Index of the object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonTabItemGroupCollection.Contains(DevComponents.DotNetBar.RibbonTabItemGroup)">
<summary>
Returns whether collection contains specified object.
</summary>
<param name="value">Object to look for.</param>
<returns>true if object is part of the collection, otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.RibbonTabItemGroupCollection.Remove(DevComponents.DotNetBar.RibbonTabItemGroup)">
<summary>
Removes specified object from the collection.
</summary>
<param name="value"></param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonTabItemGroupCollection.CopyTo(DevComponents.DotNetBar.RibbonTabItemGroup[],System.Int32)">
<summary>
Copies collection into the specified array.
</summary>
<param name="array">Array to copy collection to.</param>
<param name="index">Starting index.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonTabItemGroupCollection.CopyTo(DevComponents.DotNetBar.RibbonTabItemGroup[])">
<summary>
Copies contained items to the RibbonTabItemGroup array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItemGroupCollection.Item(System.Int32)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RibbonTabItemGroupCollection.Item(System.String)">
<summary>
Returns reference to the object in collection based on it's name.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RibbonTabItemRendererEventArgs">
<summary>
Provides data for ButtonItem rendering.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonTabItemRendererEventArgs.Graphics">
<summary>
Gets or sets Graphics object group is rendered on.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonTabItemRendererEventArgs.RibbonTabItem">
<summary>
Gets the reference to ButtonItem instance being rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RibbonTabItemRendererEventArgs.ItemPaintArgs">
<summary>
Reference to internal data.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonTabItemRendererEventArgs.#ctor">
<summary>
Creates new instance of the object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RibbonTabItemRendererEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.RibbonTabItem)">
<summary>
Creates new instance of the object and initializes it with default values
</summary>
<param name="g">Reference to Graphics object.</param>
<param name="button">Reference to ButtonItem object.</param>
</member>
<member name="M:DevComponents.DotNetBar.RibbonTabItemRendererEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.RibbonTabItem,DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Creates new instance of the object and initializes it with default values
</summary>
<param name="g">Reference to Graphics object.</param>
<param name="button">Reference to ButtonItem object.</param>
</member>
<member name="T:DevComponents.DotNetBar.SimpleElement">
<summary>
Summary description for SimpleElement.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SimpleElementLayout">
<summary>
Summary description for SimpleElementLayout.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SimpleElementLayout.eVerticalAlign">
<summary>
Indicates absolute vertical alignment of the content.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SimpleElementLayout.eVerticalAlign.Top">
<summary>
Content is aligned to the top
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SimpleElementLayout.eVerticalAlign.Middle">
<summary>
Content is aligned in the middle
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SimpleElementLayout.eVerticalAlign.Bottom">
<summary>
Content is aligned at the bottom
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SimpleElementLayout.eHorizontalAlign">
<summary>
Indicates absolute horizontal alignment
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SimpleElementLayout.eHorizontalAlign.Left">
<summary>
Content is left aligned
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SimpleElementLayout.eHorizontalAlign.Center">
<summary>
Content is centered
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SimpleElementLayout.eHorizontalAlign.Right">
<summary>
Content is right aligned
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eSimplePartAlignment">
<summary>Indicates alignment of a part of the cell like image or check box in relation to the text.</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSimplePartAlignment.NearCenter">
<summary>
Part is aligned to the left center of the text assuming left-to-right
orientation.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSimplePartAlignment.FarCenter">
<summary>
Part is aligned to the right center of the text assuming left-to-right
orientation.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSimplePartAlignment.NearTop">
<summary>
Part is aligned to the top left of the text assuming left-to-right
orientation.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSimplePartAlignment.CenterTop">
<summary>Part is aligned above the text and centered.</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSimplePartAlignment.FarTop">
<summary>
Part is aligned to the top right of the text assuming left-to-right
orientation.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSimplePartAlignment.NearBottom">
<summary>
Part is aligned to the bottom left of the text assuming left-to-right
orientation.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSimplePartAlignment.CenterBottom">
<summary>Part is aligned below the text and centered.</summary>
</member>
<member name="F:DevComponents.DotNetBar.eSimplePartAlignment.FarBottom">
<summary>
Part is aligned to the bottom right of the text assuming left-to-right
orientation.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SimpleNodeDisplay">
<summary>
Summary description for SimpleNodeDisplay.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SimpleNodeDisplayInfo">
<summary>
Represents information neccessary to paint the cell on canvas.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SliderItem">
<summary>
Represents the slider item which allows you to select a value from predefined range.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SliderItem.#ctor">
<summary>
Creates new instance of SliderItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SliderItem.#ctor(System.String)">
<summary>
Creates new instance of SliderItem and assigns the name to it.
</summary>
<param name="sItemName">Item name.</param>
</member>
<member name="M:DevComponents.DotNetBar.SliderItem.#ctor(System.String,System.String)">
<summary>
Creates new instance of SliderItem and assigns the name and text to it.
</summary>
<param name="sItemName">Item name.</param>
<param name="ItemText">item text.</param>
</member>
<member name="M:DevComponents.DotNetBar.SliderItem.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SliderItem.InternalCopyToItem(DevComponents.DotNetBar.SliderItem)">
<summary>
Copies the SliderItem specific properties to new instance of the item.
</summary>
<param name="copy">New SliderItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.SliderItem.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the SliderItem specific properties to new instance of the item.
</summary>
<param name="copy">New SliderItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.SliderItem.OnIncreaseButtonClick(System.EventArgs)">
<summary>
Raises the IncreaseButtonClick event.
</summary>
<param name="e">Provides event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.SliderItem.OnDecreaseButtonClick(System.EventArgs)">
<summary>
Raises the DecreaseButtonClick event.
</summary>
<param name="e">Provides event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.SliderItem.GetFont(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Returns the Font object to be used for drawing the item text.
</summary>
<returns>Font object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.SliderItem.PerformStep">
<summary>
Advances the current position of the slider by the amount of the Step property.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SliderItem.PerformStep(DevComponents.DotNetBar.eEventSource)">
<summary>
Advances the current position of the slider by the amount of the Step property.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SliderItem.Increment(System.Int32)">
<summary>
Advances the current position of the slider by the specified amount.
</summary>
<param name="value">The amount by which to increment the sliders current position. </param>
</member>
<member name="M:DevComponents.DotNetBar.SliderItem.Increment(System.Int32,DevComponents.DotNetBar.eEventSource)">
<summary>
Advances the current position of the slider by the specified amount.
</summary>
<param name="value">The amount by which to increment the sliders current position. </param>
</member>
<member name="M:DevComponents.DotNetBar.SliderItem.OnValueChanged">
<summary>
Raises the ValueChanged event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SliderItem.OnValueChanged(System.EventArgs)">
<summary>
Raises the ValueChanged event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SliderItem.OnValueChanging(DevComponents.DotNetBar.CancelIntValueEventArgs)">
<summary>
Raises the ValueChanging event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SliderItem.ShouldSerializeTextColor">
<summary>
Returns whether property should be serialized. Used by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SliderItem.ResetTextColor">
<summary>
Resets the property to default value. Used by Windows Forms designer.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SliderItem.ValueChanged">
<summary>
Occurs after Value property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SliderItem.ValueChanging">
<summary>
Occurs before Value property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SliderItem.IncreaseButtonClick">
<summary>
Occurs when Increase button is clicked using mouse.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SliderItem.DecreaseButtonClick">
<summary>
Occurs when Decrease button is clicked using mouse.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.MouseOverPart">
<summary>
Gets or sets the slider mouse over part.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.MouseDownPart">
<summary>
Gets or sets the slider part that mouse is pressed over. This property should not be modified and it is for internal usage only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.LabelBounds">
<summary>
Returns the label bounds inside of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.Text">
<summary>
Gets or sets the text associated with this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.IsMarkupSupported">
<summary>
Gets whether item supports text markup. Default is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.EnableMarkup">
<summary>
Gets or sets whether text-markup support is enabled for items Text property. Default value is true.
Set this property to false to display HTML or other markup in the item instead of it being parsed as text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.Maximum">
<summary>
Gets or sets the maximum value of the range of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.Minimum">
<summary>
Gets or sets the minimum value of the range of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.Value">
<summary>
Gets or sets the current position of the slider.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.Step">
<summary>
Gets or sets the amount by which a call to the PerformStep method increases the current position of the slider. Value must be greater than 0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.LabelVisible">
<summary>
Gets or sets whether the text label next to the slider is displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.Width">
<summary>
Gets or sets the width of the slider part of the item in pixels. Value must be greater than 0. Default value is 136.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.LabelWidth">
<summary>
Gets or sets the width of the label part of the item in pixels. Value must be greater than 0. Default value is 38.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.LabelPosition">
<summary>
Gets or sets the text label position in relationship to the slider. Default value is Left.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.ClickAutoRepeat">
<summary>
Gets or sets whether Click event will be auto repeated when mouse button is kept pressed over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.ClickRepeatInterval">
<summary>
Gets or sets the auto-repeat interval for the click event when mouse button is kept pressed over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.TrackMarker">
<summary>
Gets or sets whether vertical line track marker is displayed on the slide line. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.TextColor">
<summary>
Gets or sets the color of the label text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.KeyTips">
<summary>
Gets or sets the Key Tips access key or keys for the item when on Ribbon Control or Ribbon Bar. Use KeyTips property
when you want to assign the one or more letters to be used to access an item. For example assigning the FN to KeyTips property
will require the user to press F then N keys to select an item. Pressing the F letter will show only keytips for the items that start with letter F.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.Shortcuts">
<summary>
Gets or sets the collection of shortcut keys associated with the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.ShowSubItems">
<summary>
Gets or sets whether item will display sub items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.ThemeAware">
<summary>
Specifies whether item is drawn using Themes when running on OS that supports themes like Windows XP.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.Stretch">
<summary>
Gets or sets whether the item expands automatically to fill out the remaining space inside the container. Applies to Items on stretchable, no-wrap Bars only.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.IncreaseTooltip">
<summary>
Gets or sets the tooltip for the Increase button of the slider.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.DecreaseTooltip">
<summary>
Gets or sets the tooltip for the Decrease button of the slider.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.SliderOrientation">
<summary>
Gets or sets the slider orientation. Default value is horizontal.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SliderItem.ColorTable">
<summary>
Gets or sets the custom color table for the item. Color table here will override all system color table settings.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Spacing">
<summary>
Indicates spacing for an user interface element either padding or margins.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Spacing.Left">
<summary>
Gets or sets the amount of the space on the left side.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Spacing.Right">
<summary>
Gets or sets the amount of the space on the right side.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Spacing.Top">
<summary>
Gets or sets the amount of the space on the top.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Spacing.Bottom">
<summary>
Gets or sets the amount of the space on the bottom.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Spacing.Horizontal">
<summary>
Gets total horizontal spacing.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Spacing.Vertical">
<summary>
Gets total vertical spacing.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Spacing.IsEmpty">
<summary>
Gets whether all memebers of class are set to 0.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SubItemsCollection">
<summary>
Summary description for SubItemsCollection.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SubItemsCollection.Sort">
<summary>
Sorts the items in the collection using the built in IComparable on each item which sorts items by the Text property.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SubItemsCollection.Sort(System.Collections.IComparer)">
<summary>
Sorts the items in the collection using specified comparer.
</summary>
<param name="comparer">Comparer to use for item sorting.</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTooltip.ShouldSerializeMinimumTooltipSize">
<summary>
Gets whether MinimumTooltipSize property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTooltip.GetSuperTooltip(System.ComponentModel.IComponent)">
<summary>
Retrieves SuperTooltipInfo for given component or return null if component does not have tooltip associated with it.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTooltip.SetSuperTooltip(System.ComponentModel.IComponent,DevComponents.DotNetBar.SuperTooltipInfo)">
<summary>
Associates SuperTooltipInfo with given component.
</summary>
<param name="c">Reference to supported component.</param>
<param name="info">Instance of SuperTooltipInfo class. If null is passed the SuperTooltip is detached from the given component.</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTooltip.OnMarkupLinkClick(DevComponents.DotNetBar.MarkupLinkClickEventArgs)">
<summary>
Raises the MarkupLinkClick event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTooltip.ShowTooltip(System.Object,System.Drawing.Point)">
<summary>
Shows SuperTooltip for given object that has been registered using SetSuperTooltip method at specific location on the screen.
</summary>
<param name="sender">Object to show tooltip for. Object must be registered using SetSuperTooltip method before tooltip is shown for it.</param>
<param name="screenPosition">Specifies the explicit position of the SuperTooltip in screen coordinates.</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTooltip.ShowTooltip(System.Object)">
<summary>
Shows SuperTooltip for given object that has been registered using SetSuperTooltip method.
</summary>
<param name="sender">Object to show tooltip for. Object must be registered using SetSuperTooltip method before tooltip is shown for it.</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTooltip.ShowTooltip(System.Object,System.Drawing.Point,System.Boolean)">
<summary>
Shows SuperTooltip for given object that has been registered using SetSuperTooltip method.
</summary>
<param name="sender">Object to show tooltip for. Object must be registered using SetSuperTooltip method before tooltip is shown for it.</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTooltip.OnTooltipClosed(System.EventArgs)">
<summary>
Raises the TooltipClosed event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTooltip.HideTooltip">
<summary>
Hides tooltip if it is visible.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTooltip.ResetHover(System.Windows.Forms.Control)">
<summary>
Resets Hoover timer.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTooltip.BeforeTooltipDisplay">
<summary>
Occurs just before tooltip is displayed and gives you opportunity to cancel showing of tooltip.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTooltip.TooltipClosed">
<summary>
Occurs after tooltip has been closed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTooltip.MarkupLinkClick">
<summary>
Occurs when text markup link is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltip.MaximumWidth">
<summary>
Gets or sets the maximum width of the super tooltip. Default value is 0 which indicates that maximum width is not used. The maximum width property
will not be used if custom size is specified.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltip.IgnoreFormActiveState">
<summary>
Gets or sets whether form active state is ignored when control is deciding whether to show tooltip. By default this property is set to false
which indicates that tooltip will be shown only if parent form is active. When set to true the form active state is ignored when
deciding whether to show tooltip.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltip.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltip.Enabled">
<summary>
Gets or sets whether SuperTooltip will be shown for the controls assigned to it. Default value is true. You can set
this property to false to disable SuperTooltip for all controls assigned to it.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltip.ShowTooltipImmediately">
<summary>
Gets or sets whether tooltip is shown immediately after the mouse enters the control. The default value is false which indicates
that tooltip is shown after system hover timeout has expired which provides slight delay before tooltip is shown.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltip.MinimumTooltipSize">
<summary>
Gets or sets the minimum tooltip size. Default value is 150 width and 24 height.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltip.TooltipDuration">
<summary>
Gets or sets the duration in seconds that tooltip is kept on screen after it is displayed. Default value is 20 seconds.
You can set this value to 0 to keep tooltip displayed until user moves mouse out of control or application loses focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltip.DelayTooltipHideDuration">
<summary>
Gets or sets the delay time for hiding the tooltip in milliseconds after
mouse has left the control. Default value is 0 which means that tooltip will be
hidden as soon as mouse leaves the control tooltip was displayed for. You can use
this property to provide the user with enough time to move the mouse cursor to the
tooltip so user can act on the content of the tooltip, like hyper links.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltip.CheckOnScreenPosition">
<summary>
Gets or sets whether tooltip position is checked before tooltip is displayed and adjusted to tooltip always
falls into screen bounds. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltip.CheckTooltipPosition">
<summary>
Gets or sets whether tooltip position is checked before tooltip is displayed and adjusted so tooltip does not overlaps the
control it is displayed for. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltip.PositionBelowControl">
<summary>
Gets or sets the tooltip position in relationship to the control tooltip is providing information for.
Set this property to false if you want tooltip to be displayed below the mouse cursor. Default value is
true which indicates that tooltip is displayed below mouse cursor but it is positioned below the control
that it provides the information for so it is not covering its content.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltip.DefaultTooltipSettings">
<summary>
Gets or sets default setting for new Tooltips you create in design time. If all your tooltips have common elements
you can change this property to reflect these default setting before you start writing tooltips for all controls on the form.
As you start creating new tooltips for controls on the form default values specified here will be used as starting values
for new tooltip you are creating.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltip.DefaultSuperTooltipInfo">
<summary>
Returns instance of default tooltip information used in design-time.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltip.SuperTooltipInfoTable">
<summary>
Gets the reference to internal Hashtable that contains reference to all controls and assigned SuperTooltips. This
collection must not be modified directly and it is automatically managed by the SuperTooltip component. You can use it
for example to change the color for all SuperTooltips managed by the component but you should not add or remove items to it.
Instead use SetSuperTooltip methods to add or remove the tooltip for a component.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltip.HoverDelayMultiplier">
<summary>
Gets or sets the hover delay multiplier which controls how fast tooltip appears. The value set here indicates
how many hover events are needed to occur before the tooltip is displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltip.IsTooltipVisible">
<summary>
Returns whether tooltip is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltip.SuperTooltipControl">
<summary>
Gets reference to instance of tooltip control if any has been created at the time call is made.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltip.DefaultFont">
<summary>
Gets or sets default tooltip font. Default value is null which means that default system font is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltip.ShowTooltipDescription">
<summary>
Gets or sets whether complete tooltip is shown including header, body and footer. Default value is true. When set to false only tooltip header will be shown.
Providing this option to your end users as part of your application setting allows them to customize the level of information displayed and reduce it after they are familiar with your product.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltip.ShowTooltipForFocusedControl">
<summary>
Gets or sets whether tooltip is shown when control that tooltip is assigned to is focused. You can set this value to false to disable Tooltip display when control receives input focus. Default value is true.
</summary>
<remarks>This property is effective only when Super Tooltip is assigned to the controls that inherit from System.Windows.Forms.Control class and it relies on Focused property of respective control for proper function.</remarks>
</member>
<member name="T:DevComponents.DotNetBar.SuperTooltipInfo">
<summary>
Provides information about SuperTooltip attached to a component.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTooltipInfo.#ctor">
<summary>
Creates new instance of the class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTooltipInfo.#ctor(System.String,System.String,System.String,System.Drawing.Image,System.Drawing.Image,DevComponents.DotNetBar.eTooltipColor,System.Boolean,System.Boolean,System.Drawing.Size)">
<summary>
Creates new instance of the class with specified parameters.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTooltipInfo.#ctor(System.String,System.String,System.String,System.Drawing.Image,System.Drawing.Image,DevComponents.DotNetBar.eTooltipColor)">
<summary>
Creates new instance of the class with specified parameters.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTooltipInfo.ShouldSerializeCustomSize">
<summary>
Returns whether property should be serialized.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltipInfo.HeaderVisible">
<summary>
Gets or sets whether tooltip header text is visible or not. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltipInfo.FooterVisible">
<summary>
Gets or sets whether tooltip footer text is visible or not. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltipInfo.HeaderText">
<summary>
Gets or sets the header text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltipInfo.FooterText">
<summary>
Gets or sets the footer text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltipInfo.BodyText">
<summary>
Gets or sets body text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltipInfo.BodyImage">
<summary>
Gets or sets body image displayed to the left of body text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltipInfo.FooterImage">
<summary>
Gets or sets footer image displayed to the left of footer text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltipInfo.CustomSize">
<summary>
Gets or sets the custom size for tooltip. Default value is 0,0 which indicates that tooltip is automatically
resized based on the content.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltipInfo.Color">
<summary>
Gets or sets predefined tooltip color.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ISuperTooltipInfoProvider">
<summary>
Extensibility interface that custom components may implement
so SuperTooltip can be provided for them.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ISuperTooltipInfoProvider.DisplayTooltip">
<summary>
This event should be triggered by the component when it wants to display SuperTooltip. Normally
this event would be equivalent of MouseHover event but you can trigger it in response to anything else.
Sender for this event must be object that implements ISuperTooltipInfoProvider interface.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ISuperTooltipInfoProvider.HideTooltip">
<summary>
This event should be triggered by component when it wants to hide SuperTooltip. For example this event
might be triggered when mouse leaves your component. Sender of this event must be object that implements ISuperTooltipInfoProvider interface.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ISuperTooltipInfoProvider.ComponentRectangle">
<summary>
Returns rectangle of the visible area of the component in screen coordinates. This rectangle is used
to position SuperTooltip on the screen.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SuperTooltipEventHandler">
<summary>
Delegate for SuperTooltip events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SuperTooltipEventArgs">
<summary>
Represents event arguments for PanelChanging event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SuperTooltipEventArgs.Cancel">
<summary>
Set to true to cancel display of tooltip.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SuperTooltipEventArgs.Source">
<summary>
Object that has triggered displaying of tooltip
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SuperTooltipEventArgs.TooltipInfo">
<summary>
Information that will be used to populate tooltip.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SuperTooltipEventArgs.Location">
<summary>
Location where tooltip will be displayed. You can change the location here to display tooltip at different position.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SuperTooltipEventArgs.TooltipSize">
<summary>
Indicates the tooltip size, read-only and valid only if tooltip position is checked on screen.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTooltipEventArgs.#ctor(System.Object,DevComponents.DotNetBar.SuperTooltipInfo,System.Drawing.Point)">
<summary>
Default constructor.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SuperTooltipControl">
<summary>
Represents SuperTooltipControl.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTooltipControl.#ctor">
<summary>
Default constructor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTooltipControl.PaintInnerContent(System.Windows.Forms.PaintEventArgs,DevComponents.DotNetBar.ElementStyle,System.Boolean)">
<summary>
Paints insides of the control.
</summary>
<param name="e">Paint event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTooltipControl.RecalcSize">
<summary>
Recalculates and set size of the control based on the content that is made available to it.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTooltipControl.GetFixedWidthSize(System.Int32)">
<summary>
Calculates the tooltip height based on the specified width.
</summary>
<param name="width">Tooltip width</param>
<returns>Size of the tooltip based on specified width.</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTooltipControl.ShowTooltip(DevComponents.DotNetBar.SuperTooltipInfo,System.Int32,System.Int32,System.Boolean)">
<summary>
Shows tooltip at specified screen coordinates.
</summary>
<param name="x">X coordinate</param>
<param name="y">Y coordinate</param>
<param name="enforceScreenPosition">Indicates whether to enforce the screen position of tooltip if tooltip falls out of screen bounds.</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTooltipControl.UpdateShadow">
<summary>
Updates the popup shadow size and position if shadow is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltipControl.ShowTooltipDescription">
<summary>
Gets or sets whether complete tooltip is shown including header, body and footer. Default value is true. When set to false only tooltip header will be shown.
Providing this option to your end users as part of your application setting allows them to customize the level of information displayed and reduce it after they are familiar with your product.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltipControl.MaximumWidth">
<summary>
Gets or sets the maximum width of the super tooltip. Default value is 0 which indicates that maximum width is not used. The maximum width property
will not be used if custom size is specified.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltipControl.MinimumTooltipSize">
<summary>
Gets or sets the minimum tooltip size. Default value is 150, 50
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltipControl.BodyImage">
<summary>
Gets or sets image used next to body text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltipControl.FooterImage">
<summary>
Gets or sets image used next to footer text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltipControl.HeaderText">
<summary>
Gets or sets text displayed in header of tooltip
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltipControl.HeaderVisible">
<summary>
Gets or sets whether header in tooltip is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltipControl.FooterText">
<summary>
Gets or sets text displayed in footer of the tooltip
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltipControl.FooterVisible">
<summary>
Gets or sets whether footer in tooltip is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltipControl.FooterSeparator">
<summary>
Gets or sets whether line above footer text is drawn to separate footer from body text. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltipControl.MouseActivateEnabled">
<summary>
Gets or sets whether mouse click on super tooltip will activate it, make it active window. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTooltipControl.StandardControl">
<summary>
Gets or sets whether tooltip control is popup tooltip or standard control. Default is false which means tooltip is popup style.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Padding">
<summary>
Represents class that holds padding information for user interface elements.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Padding._Left">
<summary>
Gets or sets padding on left side. Default value is 0
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Padding._Right">
<summary>
Gets or sets padding on right side. Default value is 0
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Padding._Top">
<summary>
Gets or sets padding on top side. Default value is 0
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Padding._Bottom">
<summary>
Gets or sets padding on bottom side. Default value is 0
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Padding.#ctor(System.Int32)">
<summary>
Creates new instance of the class and initializes it.
</summary>
<param name="all">Padding for all sides</param>
</member>
<member name="M:DevComponents.DotNetBar.Padding.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates new instance of the class and initializes it.
</summary>
<param name="left">Left padding</param>
<param name="right">Right padding</param>
<param name="top">Top padding</param>
<param name="bottom">Bottom padding</param>
</member>
<member name="M:DevComponents.DotNetBar.Padding.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Raises the PropertyChanged event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="P:DevComponents.DotNetBar.Padding.Top">
<summary>
Gets amount of Top padding
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Padding.Left">
<summary>
Gets amount of Left padding
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Padding.Bottom">
<summary>
Gets amount of Bottom padding
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Padding.Right">
<summary>
Gets amount of Right padding
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Padding.Horizontal">
<summary>
Gets amount of horizontal padding (Left+Right)
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Padding.Vertical">
<summary>
Gets amount of vertical padding (Top+Bottom)
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Padding.IsEmpty">
<summary>
Gets whether Padding is empty.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Padding.All">
<summary>
Gets or sets the padding for all sides.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Padding.PropertyChanged">
<summary>
Occurs when property value has changed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ThemedButtonItemPainter">
<summary>
Summary description for ThemedButtonItemPainter.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ToolbarRendererEventArgs">
<summary>
Provides data for toolbar rendering.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ToolbarRendererEventArgs.Bar">
<summary>
Gets or sets the reference to Bar object being rendered
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ToolbarRendererEventArgs.Graphics">
<summary>
Gets or sets Graphics object bar is rendered on.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ToolbarRendererEventArgs.Bounds">
<summary>
Gets the bounds of the region that should be rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ToolbarRendererEventArgs.ItemPaintArgs">
<summary>
Reference to internal data.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ToolbarRendererEventArgs.#ctor(DevComponents.DotNetBar.Bar,System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Creates new instance of the object and initializes it with default data.
</summary>
<param name="bar">Reference to bar object.</param>
<param name="g">Reference to Graphics object.</param>
</member>
<member name="T:DevComponents.DotNetBar.RoundRectangleShapeDescriptor">
<summary>
Describes the round rectangle shape.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RoundRectangleShapeDescriptor.#ctor">
<summary>
Initializes a new instance of the RoundCornerDescriptor class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RoundRectangleShapeDescriptor.#ctor(System.Int32)">
<summary>
Initializes a new instance of the RoundCornerDescriptor class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RoundRectangleShapeDescriptor.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the RoundCornerDescriptor class.
</summary>
<param name="topLeft"></param>
<param name="topRight"></param>
<param name="bottomLeft"></param>
<param name="bottomRight"></param>
</member>
<member name="P:DevComponents.DotNetBar.RoundRectangleShapeDescriptor.TopLeft">
<summary>
Gets or sets the top-left round corner size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RoundRectangleShapeDescriptor.TopRight">
<summary>
Gets or sets the top-right round corner size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RoundRectangleShapeDescriptor.BottomLeft">
<summary>
Gets or sets the bottom-left round corner size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RoundRectangleShapeDescriptor.BottomRight">
<summary>
Gets or sets the bottom-right round corner size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RoundRectangleShapeDescriptor.IsEmpty">
<summary>
Gets whether all corner size values are set to zero which results in no rounded corners.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.RoundRectangleShapeDescriptor.IsUniform">
<summary>
Gets whether all corner size values are set to same value.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RoundRectangleShapeDescriptorConverter">
<summary>
Represents DocumentDockContainer object converter.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ScrollBarAdv.#ctor">
<summary>
Initializes a new instance of the ScrollBarAdv class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ScrollBarAdv.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.ScrollBarAdv.IsVertical">
<summary>
Gets whether scrollbar is vertical.
</summary>
<returns>true if scrollbar is vertical otherwise false for horizontal scrollbar</returns>
</member>
<member name="M:DevComponents.DotNetBar.ScrollBarAdv.OnScroll(System.Windows.Forms.ScrollEventArgs)">
<summary>
Raises the Scroll event.
</summary>
<param name="e">Provides Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.ScrollBarAdv.OnValueChanged(System.EventArgs)">
<summary>
Raises the ValueChanged event.
</summary>
<param name="e">Provides Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.ScrollBarAdv.OnCommandChanged">
<summary>
Called when Command property value changes.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ScrollBarAdv.ValueChanged">
<summary>
Occurs when the Value property is changed, either by a Scroll event or programmatically.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.ScrollBarAdv.Scroll">
<summary>
Occurs when the scroll box has been moved by either a mouse or keyboard action.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ScrollBarAdv.LargeChange">
<summary>
Gets or sets a value to be added to or subtracted from the <paramref name="Value">Value</paramref> property when the scroll box is moved a large distance.
<value>A numeric value. The default value is 10.</value>
<remarks>ArgumentOutOfRangeException is raised if assigned value is less than 0. </remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ScrollBarAdv.Maximum">
<summary>
Gets or sets the upper limit of values of the scrollable range.
<value>A numeric value. The default value is 100.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ScrollBarAdv.Minimum">
<summary>
Gets or sets the lower limit of values of the scrollable range.
<value>A numeric value. The default value is 0.</value>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ScrollBarAdv.SmallChange">
<summary>
Gets or sets the value to be added to or subtracted from the <paramref name="Value">Value</paramref> property when the scroll box is moved a small distance.
<value>A numeric value. The default value is 1.</value>
<remarks>ArgumentOutOfRangeException is raised if assigned value is less than 0. </remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ScrollBarAdv.Value">
<summary>
Gets or sets a numeric value that represents the current position of the scroll box on the scroll bar control.
<value>A numeric value that is within the Minimum and Maximum range. The default value is 0.</value>
<remarks>ArgumentOutOfRangeException is raised if assigned value is less than the Minimum property value or assigned value is greater than the Maximum property value.</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ScrollBarAdv.Appearance">
<summary>
Gets or sets the scroll bar appearance style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ScrollBarAdv.Command">
<summary>
Gets or sets the command assigned to the item. Default value is null.
<remarks>Note that if this property is set to null Enabled property will be set to false automatically to disable the item.</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ScrollBarAdv.CommandParameter">
<summary>
Gets or sets user defined data value that can be passed to the command when it is executed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ScrollButton">
<summary>
Summary description for ScrollButton.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ScrollButton.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ShadowPainter">
<summary>
Represents class that provides shadows to elements.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ShadowPainter.#ctor">
<summary>
Creates new instance of shadow painter.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ShadowPaintInfo">
<summary>
Represents class that provides display context for shadow painter.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ShortcutsCollection">
<summary>
Summary description for ShortcutList.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SideBar">
<summary>
Represents the Outlook like Side-bar Control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SideBar.#ctor">
<summary>
Creates new instance of side bar control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SideBar.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SideBar.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.SideBar.GetRenderer">
<summary>
Returns the renderer control will be rendered with.
</summary>
<returns>The current renderer.</returns>
</member>
<member name="M:DevComponents.DotNetBar.SideBar.OnItemLayoutUpdated(System.EventArgs)">
<summary>
Raises ItemLayoutUpdated event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.SideBar.OnItemDoubleClick(DevComponents.DotNetBar.BaseItem,System.Windows.Forms.MouseEventArgs)">
<summary>
Invokes ItemDoubleClick event.
</summary>
<param name="objItem">Reference to item double-clicked</param>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.SideBar.GetItems(System.String)">
<summary>
Returns the collection of items with the specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SideBar.GetItems(System.String,System.Type)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SideBar.GetItems(System.String,System.Type,System.Boolean)">
<summary>
Returns the collection of items with the specified name and type.
</summary>
<param name="ItemName">Item name to look for.</param>
<param name="itemType">Item type to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SideBar.GetItem(System.String)">
<summary>
Returns the first item that matches specified name.
</summary>
<param name="ItemName">Item name to look for.</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SideBar.DevComponents#DotNetBar#IOwner#Customize">
<summary>
Invokes the DotNetBar Customize dialog.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SideBar.DevComponents#DotNetBar#ICustomSerialization#InvokeSerializeItem(DevComponents.DotNetBar.SerializeItemEventArgs)">
<summary>
Invokes SerializeItem event.
</summary>
<param name="e">Provides data for the event.</param>
</member>
<member name="M:DevComponents.DotNetBar.SideBar.DevComponents#DotNetBar#ICustomSerialization#InvokeDeserializeItem(DevComponents.DotNetBar.SerializeItemEventArgs)">
<summary>
Invokes DeserializeItem event.
</summary>
<param name="e">Provides data for the event.</param>
</member>
<member name="M:DevComponents.DotNetBar.SideBar.LoadDefinition(System.String)">
<summary>
Loads the Side bar definition from file.
</summary>
<param name="FileName">Definition file name.</param>
</member>
<member name="M:DevComponents.DotNetBar.SideBar.SaveDefinition(System.String)">
<summary>
Saves the Side bar definition to file.
</summary>
<param name="FileName">Definition file name.</param>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.ButtonCheckedChanged">
<summary>
Occurs when Checked property of an button has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.ItemClick">
<summary>
Occurs when Item is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.ItemDoubleClick">
<summary>
Occurs when Item is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.PopupContainerLoad">
<summary>
Occurs when popup of type container is loading.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.PopupContainerUnload">
<summary>
Occurs when popup of type container is unloading.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.PopupOpen">
<summary>
Occurs when popup item is about to open.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.PopupClose">
<summary>
Occurs when popup item is closing.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.PopupShowing">
<summary>
Occurs just before popup window is shown.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.ExpandedChange">
<summary>
Occurs when Item Expanded property has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.MouseDown">
<summary>
Occurs when mouse button is pressed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.MouseUp">
<summary>
Occurs when mouse button is released.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.MouseEnter">
<summary>
Occurs when mouse enters the item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.MouseLeave">
<summary>
Occurs when mouse leaves the item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.MouseMove">
<summary>
Occurs when mouse moves over the item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.MouseHover">
<summary>
Occurs when mouse remains still inside an item for an amount of time.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.LostFocus">
<summary>
Occurs when item loses input focus.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.GotFocus">
<summary>
Occurs when item receives input focus.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.UserCustomize">
<summary>
Occurs when user changes the item position, removes the item, adds new item or creates new bar.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.ItemRemoved">
<summary>
Occurs after an Item is removed from SubItemsCollection.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.ItemAdded">
<summary>
Occurs after an Item has been added to the SubItemsCollection.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.ContainerLoadControl">
<summary>
Occurs when ControlContainerControl is created and contained control is needed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.ItemTextChanged">
<summary>
Occurs when Text property of an Item has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.ContainerControlSerialize">
<summary>
Use this event if you want to serialize the hosted control state directly into the DotNetBar definition file.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.ContainerControlDeserialize">
<summary>
Use this event if you want to deserialize the hosted control state directly from the DotNetBar definition file.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.DefinitionLoaded">
<summary>
Occurs after DotNetBar definition is loaded.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.OptionGroupChanging">
<summary>
Occurs before an item in option group is checked and provides opportunity to cancel that.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.ToolTipShowing">
<summary>
Occurs before tooltip for an item is shown. Sender could be the BaseItem or derived class for which tooltip is being displayed or it could be a ToolTip object itself it tooltip is not displayed for any item in particular.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.SerializeItem">
<summary>
Occurs after an item has been serialized to XmlElement and provides you with opportunity to add any custom data
to serialized XML. This allows you to serialize any data with the item and load it back up in DeserializeItem event.
</summary>
<remarks>
<para>To serialize custom data to XML definition control creates handle this event and use CustomXmlElement
property on SerializeItemEventArgs to add new nodes or set attributes with custom data you want saved.</para>
</remarks>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.DeserializeItem">
<summary>
Occurs after an item has been de-serialized (load) from XmlElement and provides you with opportunity to load any custom data
you have serialized during SerializeItem event.
</summary>
<remarks>
<para>To de-serialize custom data from XML definition handle this event and use CustomXmlElement
property on SerializeItemEventArgs to retrive any data you saved in SerializeItem event.</para>
</remarks>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.RenderMode">
<summary>
Gets or sets the redering mode used by control. Default value is eRenderMode.Global which means that static GlobalManager.Renderer is used. If set to Custom then Renderer property must
also be set to the custom renderer that will be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.Renderer">
<summary>
Gets or sets the custom renderer used by the items on this control. RenderMode property must also be set to eRenderMode.Custom in order renderer
specified here to be used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.Appearance">
<summary>
Gets or sets visual appearance for the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.UsingSystemColors">
<summary>
Gets or sets whether flat side bar is using system colors.
</summary>
<remarks>
This property is used internally by side bar to determine whether to reset color scheme based on system colors.
If you want side bar to use system colors you need to set PredefinedColorScheme property.
</remarks>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.ColorScheme">
<summary>
Gets or sets Bar Color Scheme.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.Style">
<summary>
Gets/Sets the visual style of the SideBar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.ThemeAware">
<summary>
Specifies whether SideBar is drawn using Themes when running on OS that supports themes like Windows XP.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SideBar.ItemLayoutUpdated">
<summary>
Occurs after internal item layout has been updated and items have valid bounds assigned.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.Panels">
<summary>
Returns the collection of side-bar Panels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.ExpandedPanel">
<summary>
Gets or sets the expanded panel. Only one panel can be expanded at a time.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.DevComponents#DotNetBar#IOwner#ParentForm">
<summary>
Gets or sets the form SideBar is attached to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.AllowUserCustomize">
<summary>
Gets or sets whether end-user can rearrange the items inside the panels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.UseNativeDragDrop">
<summary>
Gets or sets whether native .NET Drag and Drop is used by side-bar to perform drag and drop operations. AllowDrop must be set to true to allow drop of the items on control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.AllowExternalDrop">
<summary>
Gets or sets whether external ButtonItem object is accepted in drag and drop operation. UseNativeDragDrop must be set to true in order for this property to be effective.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.DisabledImagesGrayScale">
<summary>
Gets or sets whether gray-scale algorithm is used to create automatic gray-scale images. Default is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.Images">
<summary>
ImageList for images used on Items. Images specified here will always be used on menu-items and are by default used on all Bars.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.ImagesMedium">
<summary>
ImageList for medium-sized images used on Items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.ImagesLarge">
<summary>
ImageList for large-sized images used on Items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.ShowToolTips">
<summary>
Indicates whether Tooltips are shown on Bars and menus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.ShowShortcutKeysInToolTips">
<summary>
Indicates whether item shortcut is displayed in Tooltips.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.DevComponents#DotNetBar#IOwner#ShowResetButton">
<summary>
Indicates whether Reset buttons is shown that allows end-user to reset the toolbar state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.ItemsContainer">
<summary>
Returns the reference to the container that containing the sub-items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.BorderStyle">
<summary>
Gets/Sets control border style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.DevComponents#DotNetBar#ICustomSerialization#HasSerializeItemHandlers">
<summary>
Gets whether any handlers have been defined for SerializeItem event. If no handles have been defined to optimize performance SerializeItem event will not be attempted to fire.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.DevComponents#DotNetBar#ICustomSerialization#HasDeserializeItemHandlers">
<summary>
Gets whether any handlers have been defined for DeserializeItem event. If no handles have been defined to optimize performance DeserializeItem event will not be attempted to fire.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.Definition">
<summary>
Gets/Sets Bar definition as XML string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBar.DispatchShortcuts">
<summary>
Indicates whether shortucts handled by items are dispatched to the next handler or control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SideBar.ItemRemovedEventHandler">
<summary>
Represents the method that will handle the ItemRemoved event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SideBarContainerItem">
<summary>
Provides layout for Side-Bar control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SideBarContainerItem.#ctor">
<summary>
Creates new instance of SideBarContainerItem class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SideBarContainerItem.Copy">
<summary>
Returns copy of SideBarContainerItem item
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SideBarContainerItem.RecalcSize">
<summary>
Recalculates the size of the item
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SideBarContainerItem.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Paints this base container
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SideBarContainerItem.OnSubItemExpandChange(DevComponents.DotNetBar.BaseItem)">
<summary>
Occurs when sub item expanded state has changed.
</summary>
<param name="item">Sub item affected.</param>
</member>
<member name="M:DevComponents.DotNetBar.SideBarContainerItem.InternalMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Occurs when the mouse pointer is over the item and a mouse button is pressed. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SideBarContainerItem.FocusNextItem">
<summary>
Sets input focus to next visible item in Explorer Bar.
</summary>
<returns>True if focus was set to next visible item otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.SideBarContainerItem.FocusPreviousItem">
<summary>
Sets input focus to previous visible item in Explorer Bar.
</summary>
<returns>True if focus was set to previous visible item otherwise false.</returns>
</member>
<member name="P:DevComponents.DotNetBar.SideBarContainerItem.Expanded">
<summary>
Gets or sets a value indicating whether the item is expanded or not. For Popup items this would indicate whether the item is popped up or not.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SideBarPanelControlHost">
<summary>
Summary description for SideBarPanelControl.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SideBarPanelItem">
<summary>
Represents the Side-Bar Panel item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SideBarPanelItem.#ctor">
<summary>
Creates new instance of SideBarPanelItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SideBarPanelItem.#ctor(System.String)">
<summary>
Creates new instance of SideBarPanelItem and assigns the name to it.
</summary>
<param name="sItemName">Item name.</param>
</member>
<member name="M:DevComponents.DotNetBar.SideBarPanelItem.#ctor(System.String,System.String)">
<summary>
Creates new instance of SideBarPanelItem and assigns the name and text to it.
</summary>
<param name="sItemName">Item name.</param>
<param name="ItemText">item text.</param>
</member>
<member name="M:DevComponents.DotNetBar.SideBarPanelItem.Copy">
<summary>
Returns copy of SideBarPanelItem item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SideBarPanelItem.GetFont">
<summary>
Returns the Font object to be used for drawing the item text.
</summary>
<returns>Font object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.SideBarPanelItem.InternalMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
Occurs when the mouse pointer is moved over the item. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SideBarPanelItem.InternalMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Occurs when the mouse pointer is over the item and a mouse button is pressed. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SideBarPanelItem.InternalClick(System.Windows.Forms.MouseButtons,System.Drawing.Point)">
<summary>
Occurs when the item is clicked. This is used by internal implementation only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SideBarPanelItem.Serialize(DevComponents.DotNetBar.ItemSerializationContext)">
<summary>
Overloaded. Serializes the item and all sub-items into the XmlElement.
</summary>
<param name="ThisItem">XmlElement to serialize the item to.</param>
</member>
<member name="M:DevComponents.DotNetBar.SideBarPanelItem.Deserialize(DevComponents.DotNetBar.ItemSerializationContext)">
<summary>
Overloaded. Deserializes the Item from the XmlElement.
</summary>
<param name="ItemXmlSource">Source XmlElement.</param>
</member>
<member name="M:DevComponents.DotNetBar.SideBarPanelItem.ShowToolTip">
<summary>
Shows tooltip for this item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SideBarPanelItem.Refresh">
<summary>
Forces the repaint the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SideBarPanelItem.DevComponents#DotNetBar#IDesignTimeProvider#GetInsertPosition(System.Drawing.Point,DevComponents.DotNetBar.BaseItem)">
<summary>
Must be called by any sub item that implements the image when image has changed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.IsMouseOver">
<summary>
Gets whether mouse is over the panel header.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.IsMouseDown">
<summary>
Gets whether mouse is pressed over the panel header.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.TextAlignment">
<summary>
Specifies panel title text alignment. Default value is Center.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.LayoutType">
<summary>
Gets or sets the layout type for the items. Default layout orders items in a single column. Multi-column layout will order
items in multiple colums based on the width of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.Text">
<summary>
Gets or sets the text associated with this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.BackgroundStyle">
<summary>
Gets or sets the item background style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.HeaderStyle">
<summary>
Gets or sets the item header style. Applies only when SideBar.Appearance is set to Flat.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.HeaderHotStyle">
<summary>
Gets or sets the item header style when mouse is over the header. Applies only when SideBar.Appearance is set to Flat.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.HeaderMouseDownStyle">
<summary>
Gets or sets the item header style when left mouse button is pressed on header. Applies only when SideBar.Appearance is set to Flat.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.HeaderSideStyle">
<summary>
Gets or sets the item header side style. Applies only when SideBar.Appearance is set to Flat.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.HeaderSideHotStyle">
<summary>
Gets or sets the item header side style when mouse is over the header. Applies only when SideBar.Appearance is set to Flat.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.HeaderSideMouseDownStyle">
<summary>
Gets or sets the item header side style when left mouse button is pressed on header. Applies only when SideBar.Appearance is set to Flat.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.FontBold">
<summary>
Gets or sets whether the font used to draw the item text is bold.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.HotFontBold">
<summary>
Gets or sets whether the font used to draw the item text is bold when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.HotFontUnderline">
<summary>
Gets or sets whether the font used to draw the item text is underlined when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.HotForeColor">
<summary>
Gets or sets the text color of the button when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.ForeColor">
<summary>
Gets or sets the text color of the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.ItemImageSize">
<summary>
Gets/Sets the Image size for all sub-items on the Bar.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.PanelRect">
<summary>
Gets the rectangle of the panel item Button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.TopItemIndex">
<summary>
Gets or sets the index of the first visible item on the panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.WordWrap">
<summary>
Gets or sets a value that determines whether text is displayed in multiple lines or one long line.
This setting applies to the buttons inside Panel as well.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.EnableScrollButtons">
<summary>
Gets or sets whether scroll buttons are displayed when content of the panel exceeds it's height.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.Icon">
<summary>
Specifies the Button icon. Icons support multiple image sizes and alpha blending.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.Image">
<summary>
Specifies the Button image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.ImageIndex">
<summary>
Specifies the index of the image for the button if ImageList is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.HoverImage">
<summary>
Specifies the image for the button when mouse is over the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.HoverImageIndex">
<summary>
Specifies the index of the image for the button when mouse is over the item when ImageList is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.PressedImage">
<summary>
Specifies the image for the button when mouse left button is pressed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SideBarPanelItem.PressedImageIndex">
<summary>
Specifies the index of the image for the button when mouse left button is pressed and ImageList is used.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SimpleTabDisplay">
<summary>
Represents class that provide display support for simple tabs.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SimpleTabDisplay.#ctor">
<summary>
Default constructor.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SimpleTabLayoutManager">
<summary>
Provides layout management for ISimpleTab tab implementations.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SimpleTabLayoutManager.Layout(DevComponents.UI.ContentManager.IBlock,System.Drawing.Size)">
<summary>
Resizes the content block and sets it's Bounds property to reflect new size.
</summary>
<param name="block">Content block to resize.</param>
</member>
<member name="T:DevComponents.DotNetBar.SplitterMozillaPainter">
<summary>
Represents painter for Mozilla style splitter.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SplitterPainter">
<summary>
Base class for painting expandable splitter control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SplitterPainter.#ctor">
<summary>
Default constructor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SplitterPainter.Paint(DevComponents.DotNetBar.SplitterPaintInfo)">
<summary>
Paints splitter.
</summary>
<param name="info">Paint information.</param>
</member>
<member name="M:DevComponents.DotNetBar.SplitterMozillaPainter.#ctor">
<summary>
Creates new instance of splitter painter.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SplitterMozillaPainter.Paint(DevComponents.DotNetBar.SplitterPaintInfo)">
<summary>
Paints splitter.
</summary>
<param name="info">Paint information.</param>
</member>
<member name="T:DevComponents.DotNetBar.SplitterOffice2003Painter">
<summary>
Represents painter for Office 2003 style splitter.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SplitterOffice2003Painter.#ctor">
<summary>
Creates new instance of splitter painter.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SplitterOffice2003Painter.Paint(DevComponents.DotNetBar.SplitterPaintInfo)">
<summary>
Paints splitter.
</summary>
<param name="info">Paint information.</param>
</member>
<member name="T:DevComponents.DotNetBar.SplitterPaintInfo">
<summary>
Represents class that holds information neccessary to paint the expandable splitter.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SplitterPaintInfo.Graphics">
<summary>
Specifies reference to graphics canvas.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SplitterPaintInfo.DisplayRectangle">
<summary>
Specifies splitter display rectangle.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SplitterPaintInfo.Colors">
<summary>
Holds color settings for painting.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SplitterPaintInfo.Expandable">
<summary>
Specifies whether splitter is expandable or not.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SplitterPaintInfo.Expanded">
<summary>
Specifies whether splitter is expanded or not.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SplitterPaintInfo.Dock">
<summary>
Specifies the splitter dock.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SplitterColors">
<summary>
Represents class that holds colors for the splitter display.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SplitterColors.BackColor">
<summary>
Specifies back color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SplitterColors.BackColor2">
<summary>
Specifies target gradient background color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SplitterColors.BackColorGradientAngle">
<summary>
Specifies background gradient angle.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SplitterColors.GripDarkColor">
<summary>
Specifies grip part dark color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SplitterColors.GripLightColor">
<summary>
Specifies grip part light color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SplitterColors.ExpandLineColor">
<summary>
Specifies expand part line color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SplitterColors.ExpandFillColor">
<summary>
Specifies expand part fill color.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.StyleManager.#ctor">
<summary>
Initializes a new instance of the StyleManager class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.StyleManager.#ctor(System.ComponentModel.IContainer)">
<summary>
Initializes a new instance of the StyleManager class with the specified container.
</summary>
<param name="container">An IContainer that represents the container for the command.</param>
</member>
<member name="M:DevComponents.DotNetBar.StyleManager.UpdateMetroAmbientColors(System.Windows.Forms.Control)">
<summary>
Updates Ambient colors for control and its child controls.
</summary>
<param name="control"></param>
</member>
<member name="M:DevComponents.DotNetBar.StyleManager.UpdateAmbientColors(System.Windows.Forms.Control)">
<summary>
Updates ambient colors for the control and its children.
</summary>
<param name="c"></param>
</member>
<member name="M:DevComponents.DotNetBar.StyleManager.ShouldSerializeManagerColorTint">
<summary>
Gets whether property should be serialized by WinForms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.StyleManager.ResetManagerColorTint">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.StyleManager.ChangeStyle(DevComponents.DotNetBar.eStyle,System.Drawing.Color)">
<summary>
Changes the StyleManager style and color tint in one step. Use this method if you need to change style and color tint simultaneously in single step for better performance.
</summary>
<param name="newStyle">New style.</param>
<param name="colorTint">Color tint for the style.</param>
</member>
<member name="M:DevComponents.DotNetBar.StyleManager.Register(System.Windows.Forms.Control)">
<summary>
Registers control with the StyleManager so control can be notified of global style changes.
</summary>
<param name="control">Control to register with the StyleManager.</param>
</member>
<member name="M:DevComponents.DotNetBar.StyleManager.Unregister(System.Windows.Forms.Control)">
<summary>
Unregister the control from StyleManager notifications.
</summary>
<param name="control">Control that was registered through Register method.</param>
</member>
<member name="M:DevComponents.DotNetBar.StyleManager.IsMetro(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Returns whether style is a Metro type style.
</summary>
<param name="style">style to test.</param>
<returns>true if Metro type style otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.StyleManager.IsMetro(DevComponents.DotNetBar.eStyle)">
<summary>
Returns whether style is a Metro type style.
</summary>
<param name="style">style to test.</param>
<returns>true if Metro type style otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.StyleManager.IsVisualStudio2012(DevComponents.DotNetBar.eStyle)">
<summary>
Returns whether style is a Metro type style.
</summary>
<param name="style">style to test.</param>
<returns>true if Metro type style otherwise false.</returns>
</member>
<member name="P:DevComponents.DotNetBar.StyleManager.ManagerStyle">
<summary>
Gets or sets the global style for the controls that have Style=ManagerControlled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StyleManager.ManagerColorTint">
<summary>
Gets or sets the color current style is tinted with.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StyleManager.PreviousStyle">
<summary>
Gets previous effective style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StyleManager.MetroColorParameters">
<summary>
Gets or sets color generation parameters for Metro color generator.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StyleManager.MetroColorGeneratorParameters">
<summary>
Gets or sets color generation parameters for Metro color generator.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StyleManager.Style">
<summary>
Gets or sets the current visual style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.StyleManager.ColorTint">
<summary>
Gets or sets the color tint that is applied to current Office 2007, Office 2010 or Windows 7 color table.
Default value is Color.Empty which indicates that no color blending is performed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eStyle">
<summary>
Defines the StyleManager styles.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.StyleManagerAmbient">
<summary>
Manages whether ambient property settings (BackColor, ForeColor etc.) are applied to child controls of the form when StyleManager component changes style.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.StyleManagerAmbient.#ctor">
<summary>
Initializes a new instance of the StyleManagerAmbient class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.StyleManagerAmbient.#ctor(System.ComponentModel.IContainer)">
<summary>
Initializes a new instance of the StyleManagerAmbient class with the specified container.
</summary>
<param name="container">An IContainer that represents the container for the command.</param>
</member>
<member name="M:DevComponents.DotNetBar.StyleManagerAmbient.GetEnableAmbientSettings(System.Windows.Forms.Control)">
<summary>
Gets ambient settings StyleManager is allowed to change on the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.StyleManagerAmbient.SetEnableAmbientSettings(System.Windows.Forms.Control,DevComponents.DotNetBar.eAmbientSettings)">
<summary>
Sets the ambient settings StyleManager is allowed to change on component.
</summary>
<param name="c">Reference to supported component.</param>
<param name="ambientSettings">Ambient settings that StyleManager may change.</param>
</member>
<member name="T:DevComponents.DotNetBar.eAmbientSettings">
<summary>
Specifies ambient settings enabled on the control for StyleManager.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eAmbientSettings.All">
<summary>
All ambient settings are allowed to change.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eAmbientSettings.None">
<summary>
StyleManager cannot change ambient settings.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eAmbientSettings.ChildControls">
<summary>
StyleManager should process child controls.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eAmbientSettings.BackColor">
<summary>
StyleManager should change BackColor.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eAmbientSettings.ForeColor">
<summary>
StyleManager should change ForeColor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.#ctor(DevComponents.DotNetBar.SuperTabItem)">
<summary>
Constructor
</summary>
<param name="tabItem">Associated SuperTabItem</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Paint processing
</summary>
<param name="p"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.ContentRectangle">
<summary>
Gets the default tab ContentRectangle
</summary>
<returns>Rectangle</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.GetContentRectangle">
<summary>
Gets the tab ContentRectangle
</summary>
<returns>Rectangle</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.TabItemPath">
<summary>
Gets the tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.SetDefaultColorTable">
<summary>
Sets the default color tables
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.GetTabColorTable">
<summary>
Gets the tab ColorTable
</summary>
<returns>ColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.GetTabState">
<summary>
Gets the tab state
</summary>
<returns>eTabState</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.GetPanelColorTable">
<summary>
Gets the tab panel Color Table
</summary>
<returns>Color Table</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.DrawTabItemBackground(System.Drawing.Graphics,System.Drawing.Drawing2D.GraphicsPath,DevComponents.DotNetBar.Rendering.SuperTabItemStateColorTable)">
<summary>
Draws the tab background
</summary>
<param name="g">Graphics</param>
<param name="path">Tab path</param>
<param name="tabColors">StateColorTable</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.DrawTabBorder(System.Drawing.Graphics,System.Drawing.Drawing2D.GraphicsPath,DevComponents.DotNetBar.Rendering.SuperTabItemStateColorTable)">
<summary>
Draws the tab border
</summary>
<param name="g">Graphics</param>
<param name="path">Tab path</param>
<param name="ct">Color table</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.DrawTabContent(System.Drawing.Graphics,DevComponents.DotNetBar.Rendering.SuperTabItemStateColorTable)">
<summary>
Draws the tab contents
</summary>
<param name="g">Graphics</param>
<param name="colors">State color table</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.DrawTabImage(System.Drawing.Graphics)">
<summary>
Draws the tab image
</summary>
<param name="g">Graphics</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.DrawTabText(System.Drawing.Graphics,DevComponents.DotNetBar.Rendering.SuperTabItemStateColorTable)">
<summary>
Draws the tab text
</summary>
<param name="g"></param>
<param name="colors"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.DrawCloseButton(System.Drawing.Graphics,DevComponents.DotNetBar.Rendering.SuperTabItemStateColorTable)">
<summary>
Draws the tab close button
</summary>
<param name="g">Graphics</param>
<param name="colors">State color table</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.SetTransform(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Sets the GraphicsTransform for the given alignment
and Horizontal text setting
</summary>
<param name="g">Graphics</param>
<param name="r">Rectangle to transform</param>
<returns>Transformed rectangle</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.ResetTransform(System.Drawing.Graphics)">
<summary>
Resets out transform
</summary>
<param name="g">Graphics</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.GetFocusRectangle(System.Drawing.Rectangle)">
<summary>
Gets the focus rectangle
</summary>
<param name="rText"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.GetCloseButtonBitmap(System.Drawing.Graphics,DevComponents.DotNetBar.Rendering.SuperTabItemStateColorTable)">
<summary>
Gets the tab close button bitmap
</summary>
<param name="g">Graphics</param>
<param name="colors">State color table</param>
<returns>Button bitmap</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.CreateCloseButtonBitmap(System.Drawing.Graphics,DevComponents.DotNetBar.Rendering.SuperTabItemStateColorTable)">
<summary>
Creates the close button bitmap
</summary>
<param name="g">Graphics</param>
<param name="colors">State color table</param>
<returns>Close bitmap</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.GetCloseButtonHotBitmap(System.Drawing.Graphics)">
<summary>
Gets the hot close button bitmap
</summary>
<param name="g">Graphics</param>
<returns>Close bitmap</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.CreateCloseButtonHotBitmap(System.Drawing.Graphics)">
<summary>
Creates the hot button bitmap
</summary>
<param name="g">Graphics</param>
<returns>Close bitmap</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.GetCloseButtonPressedBitmap(System.Drawing.Graphics)">
<summary>
Gets the pressed close button bitmap
</summary>
<param name="g">Graphics</param>
<returns>Close bitmap</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.CreateCloseButtonPressedBitmap(System.Drawing.Graphics)">
<summary>
Creates the pressed button bitmap
</summary>
<param name="g">Graphics</param>
<returns>Close bitmap</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemBaseDisplay.GetClosePath(System.Drawing.Rectangle,System.Int32)">
<summary>
Gets the close button path
</summary>
<param name="r">Close rectangle</param>
<param name="rad">Corner radius</param>
<returns></returns>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItemBaseDisplay.DefaultItemColorTable">
<summary>
Gets or sets the default item ColorTable
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Office2007SuperTabItem.#ctor(DevComponents.DotNetBar.SuperTabItem)">
<summary>
Constructor for Office2007 style SuperTabItem base display
</summary>
<param name="tabItem">Associated SuperTabItem</param>
</member>
<member name="M:DevComponents.DotNetBar.Office2007SuperTabItem.TabItemPath">
<summary>
Creates the tab item GraphicsPath
</summary>
<returns>Tab path</returns>
</member>
<member name="M:DevComponents.DotNetBar.Office2007SuperTabItem.TopTabPath">
<summary>
Create the Top tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.Office2007SuperTabItem.BottomTabPath">
<summary>
Creates the Bottom tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.Office2007SuperTabItem.LeftTabPath">
<summary>
Creates the Left tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.Office2007SuperTabItem.RightTabPath">
<summary>
Create the Right tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.#ctor(DevComponents.DotNetBar.SuperTabStripItem)">
<summary>
Constructor
</summary>
<param name="tabStripItem">Associated SuperTabStripItem</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.ContentManagerNextPosition(System.Object,DevComponents.UI.ContentManager.LayoutManagerPositionEventArgs)">
<summary>
Handles ContentManager NextPosition events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.RecalcSize(System.Drawing.Graphics)">
<summary>
Handles RecalcSize requests
</summary>
<param name="g"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.RecLayoutContent">
<summary>
Handles RecLayoutContent requests
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.RecalcLayoutInit(System.Drawing.Graphics)">
<summary>
Initializes the layout engine
</summary>
<param name="g"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.RecalcLayout(System.Drawing.Rectangle)">
<summary>
Performs the Recalc Layout
</summary>
<param name="r"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.RecalcSizeTabControlBox(System.Drawing.Rectangle,System.Drawing.Rectangle)">
<summary>
Recalculates the bounds for the TabControlBox
</summary>
<param name="dispRect"></param>
<param name="tabsBounds"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.GetTabClientArea">
<summary>
Gets the tab client area
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.GetTabClientArea(System.Boolean)">
<summary>
Gets the tab client area
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.GetTabHeight">
<summary>
Gets the tab height
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.NextBlockPosition(DevComponents.UI.ContentManager.LayoutManagerPositionEventArgs)">
<summary>
Layout manager NextBlockPosition
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.NextBlockPosition(DevComponents.DotNetBar.BaseItem,DevComponents.DotNetBar.BaseItem)">
<summary>
PromoteTab NextBlockPosition
</summary>
<param name="item"></param>
<param name="vItem"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.AllItemsVisible">
<summary>
Determines if all tabs are visible
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Paint processing
</summary>
<param name="p"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.DrawBackground(DevComponents.DotNetBar.ItemPaintArgs,DevComponents.DotNetBar.Rendering.SuperTabColorTable)">
<summary>
Draws the background
</summary>
<param name="p"></param>
<param name="ct"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.DrawTabs(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Draws the tabs
</summary>
<param name="p"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.DrawTabInsertMarker(DevComponents.DotNetBar.ItemPaintArgs,DevComponents.DotNetBar.Rendering.SuperTabColorTable)">
<summary>
Draws the Drag and Drop insert marker
</summary>
<param name="p">ItemPaintArgs</param>
<param name="ct">Color table</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.DrawTopInsertMarker(System.Drawing.Graphics)">
<summary>
Draws the top insert marker
</summary>
<param name="g"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.DrawLeftInsertMarker(System.Drawing.Graphics)">
<summary>
Draws the left insert marker
</summary>
<param name="g"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.IsSameLine(DevComponents.DotNetBar.BaseItem,DevComponents.DotNetBar.BaseItem)">
<summary>
Determines if the given items are on the same line
</summary>
<param name="item1"></param>
<param name="item2"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.DrawStripBorder(DevComponents.DotNetBar.ItemPaintArgs,DevComponents.DotNetBar.Rendering.SuperTabColorTable)">
<summary>
Draws the TabStrip border
</summary>
<param name="p"></param>
<param name="ct"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.GetBorderLines(System.Int32@,System.Int32@)">
<summary>
Gets the inner and outer border lines
</summary>
<param name="inner"></param>
<param name="outer"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.SetDefaultColorTable">
<summary>
Sets the default color table
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.GetColorTable">
<summary>
Gets the tab color table
</summary>
<returns>Tab color table</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.GetCloseButton(System.Drawing.Graphics,System.Drawing.Color)">
<summary>
Gets the tab close button bitmap
</summary>
<param name="g"></param>
<param name="color"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.CreateCloseButton(System.Drawing.Graphics)">
<summary>
Creates the tab close button bitmap
</summary>
<param name="g"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.GetMenuButton1(System.Drawing.Graphics,System.Drawing.Color)">
<summary>
Gets the Menu button bitmap
</summary>
<param name="g"></param>
<param name="color"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.CreateMenuButton1(System.Drawing.Graphics)">
<summary>
Create the Menu button bitmap
</summary>
<param name="g"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.GetMenuButtonPath1">
<summary>
Gets the Menu button path
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.GetMenuButton2(System.Drawing.Graphics,System.Drawing.Color)">
<summary>
Gets the Menu button bitmap
</summary>
<param name="g"></param>
<param name="color"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.CreateMenuButton2(System.Drawing.Graphics)">
<summary>
Create the Menu button bitmap
</summary>
<param name="g"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripBaseDisplay.GetMenuButtonPath2">
<summary>
Gets the Menu button path
</summary>
<returns></returns>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.Alignment">
<summary>
Gets the TabAlignment
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.DefaultColorTable">
<summary>
gets or sets the default color table
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.IsRightToLeft">
<summary>
Gets if display is RightToLeft
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.IsVertical">
<summary>
Gets tab vertical orientation
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.MinTabStripHeight">
<summary>
Gets the minimum TabStrip height
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.ShowFocusRectangle">
<summary>
Gets whether we are to show the Focus rectangle
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.CloseButtonOnTabs">
<summary>
Gets CloseButtonOnTabsVisible
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.FixedTabSize">
<summary>
Gets FixedTabSize
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.MinTabSize">
<summary>
Gets the minimum tab size
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.SelectedTab">
<summary>
Gets the selected tab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.SelectedTabFont">
<summary>
Gets the selected font
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.TabControlBox">
<summary>
Gets the tab ControlBox
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.TabHeight">
<summary>
Gets the tab height
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.TabItemsBounds">
<summary>
Gets the tab bounds
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.Tabs">
<summary>
Gets the Tabs collection
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.TabStrip">
<summary>
Gets the TabStrip
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.TabStripItem">
<summary>
Gets the TabStripItem
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.PreDrawStripBorder">
<summary>
Gets the PreDrawStripBorder state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.SelectedPaddingWidth">
<summary>
Gets the SelectedPaddingWidth
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.TabOverlap">
<summary>
Gets the TabOverlap
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.TabSpacing">
<summary>
Gets the TabSpacing
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.TabOverlapLeft">
<summary>
Gets the TabOverlapLeft
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripBaseDisplay.TabLayoutOffset">
<summary>
Gets the TabLayoutOffset
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Office2007SuperTabStrip.#ctor(DevComponents.DotNetBar.SuperTabStripItem)">
<summary>
Office2007 TabStrip base display constructor
</summary>
<param name="tabStripItem">Associated TabStrip</param>
</member>
<member name="P:DevComponents.DotNetBar.Office2007SuperTabStrip.TabLayoutOffset">
<summary>
Tab layout offsets
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Office2010BackstageSuperTabItem.#ctor(DevComponents.DotNetBar.SuperTabItem)">
<summary>
Office 2010 Backstage SuperTabItem display constructor
</summary>
<param name="tabItem">Associated SuperTabItem</param>
</member>
<member name="M:DevComponents.DotNetBar.Office2010BackstageSuperTabItem.DrawTabBorder(System.Drawing.Graphics,System.Drawing.Drawing2D.GraphicsPath,DevComponents.DotNetBar.Rendering.SuperTabItemStateColorTable)">
<summary>
Draws the tab border
</summary>
<param name="g"></param>
<param name="path"></param>
<param name="ct"></param>
</member>
<member name="M:DevComponents.DotNetBar.Office2010BackstageSuperTabItem.DrawSelMarker(System.Drawing.Graphics,DevComponents.DotNetBar.Rendering.SuperTabItemStateColorTable)">
<summary>
Draws the Backstage SelectedItem marker
</summary>
<param name="g"></param>
<param name="ct"></param>
</member>
<member name="M:DevComponents.DotNetBar.Office2010BackstageSuperTabItem.DrawTabItemBackground(System.Drawing.Graphics,System.Drawing.Drawing2D.GraphicsPath,DevComponents.DotNetBar.Rendering.SuperTabItemStateColorTable)">
<summary>
DrawTabItemBackground
</summary>
<param name="g"></param>
<param name="path"></param>
<param name="tabColors"></param>
</member>
<member name="M:DevComponents.DotNetBar.Office2010BackstageSuperTabItem.DrawTabItemHighLight(System.Drawing.Graphics,System.Drawing.Drawing2D.GraphicsPath,DevComponents.DotNetBar.Rendering.SuperTabItemStateColorTable,System.Drawing.Rectangle)">
<summary>
DrawTabItemHighLight
</summary>
<param name="g"></param>
<param name="path"></param>
<param name="tabColors"></param>
<param name="r"></param>
</member>
<member name="M:DevComponents.DotNetBar.Office2010BackstageSuperTabItem.TabItemPath">
<summary>
Creates the tab item GraphicsPath
</summary>
<returns>Tab path</returns>
</member>
<member name="M:DevComponents.DotNetBar.Office2010BackstageSuperTabItem.TopTabPath">
<summary>
Create the Top tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.Office2010BackstageSuperTabItem.BottomTabPath">
<summary>
Creates the Bottom tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.Office2010BackstageSuperTabItem.LeftTabPath">
<summary>
Creates the Left tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.Office2010BackstageSuperTabItem.RightTabPath">
<summary>
Create the Right tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.Office2010BackstageSuperTabStrip.NextBlockPosition(DevComponents.UI.ContentManager.LayoutManagerPositionEventArgs)">
<summary>
Gets the Layout manager NextBlockPosition
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.Office2010BackstageSuperTabStrip.NextBlockPosition(DevComponents.DotNetBar.BaseItem,DevComponents.DotNetBar.BaseItem)">
<summary>
Gets the "PromoteSelTab" NextBlockPosition
</summary>
<param name="item"></param>
<param name="vItem"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Office2010BackstageSuperTabStrip.DrawBackground(DevComponents.DotNetBar.ItemPaintArgs,DevComponents.DotNetBar.Rendering.SuperTabColorTable)">
<summary>
Draws the background
</summary>
<param name="p"></param>
<param name="ct"></param>
</member>
<member name="P:DevComponents.DotNetBar.Office2010BackstageSuperTabStrip.PreDrawStripBorder">
<summary>
PreDrawStripBorder
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Office2010BackstageSuperTabStrip.SelectedPaddingWidth">
<summary>
SelectedPaddingWidth
</summary>
</member>
<member name="M:DevComponents.DotNetBar.OfficeMobile2014SuperTabItem.#ctor(DevComponents.DotNetBar.SuperTabItem)">
<summary>
Constructor for OfficeMobile2014 style SuperTabItem base display
</summary>
<param name="tabItem">Associated SuperTabItem</param>
</member>
<member name="M:DevComponents.DotNetBar.OfficeMobile2014SuperTabItem.ContentRectangle">
<summary>
Calculates the Content Rectangle for the tab
</summary>
<returns>Content Rectangle</returns>
</member>
<member name="M:DevComponents.DotNetBar.OfficeMobile2014SuperTabItem.TabItemPath">
<summary>
Creates the tab item GraphicsPath
</summary>
<returns>Tab path</returns>
</member>
<member name="M:DevComponents.DotNetBar.OfficeMobile2014SuperTabItem.TopTabPath">
<summary>
Create the Top tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.OfficeMobile2014SuperTabItem.BottomTabPath">
<summary>
Creates the Bottom tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.OfficeMobile2014SuperTabItem.LeftTabPath">
<summary>
Creates the Left tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.OfficeMobile2014SuperTabItem.RightTabPath">
<summary>
Create the Right tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.OfficeMobile2014SuperTabStrip.#ctor(DevComponents.DotNetBar.SuperTabStripItem)">
<summary>
OfficeMobile2014 SuperTabStripBaseDisplay
</summary>
<param name="tabStripItem">Associated TabStripItem</param>
</member>
<member name="M:DevComponents.DotNetBar.OfficeMobile2014SuperTabStrip.NextBlockPosition(DevComponents.UI.ContentManager.LayoutManagerPositionEventArgs)">
<summary>
Gets the next layout block position
</summary>
<param name="e">LayoutManagerPositionEventArgs</param>
</member>
<member name="M:DevComponents.DotNetBar.OfficeMobile2014SuperTabStrip.NextBlockPosition(DevComponents.DotNetBar.BaseItem,DevComponents.DotNetBar.BaseItem)">
<summary>
Gets the next block position when attempting
to make a specific tab visible
</summary>
<param name="item">Potential item to replace</param>
<param name="vItem">View item being placed</param>
<returns>Block Rectangle</returns>
</member>
<member name="P:DevComponents.DotNetBar.OfficeMobile2014SuperTabStrip.MinTabSize">
<summary>
Returns the Minimum tab size for this style
</summary>
</member>
<member name="P:DevComponents.DotNetBar.OfficeMobile2014SuperTabStrip.TabLayoutOffset">
<summary>
Tab layout offsets
</summary>
</member>
<member name="P:DevComponents.DotNetBar.OfficeMobile2014SuperTabStrip.TabOverlap">
<summary>
Tab Overlap
</summary>
</member>
<member name="P:DevComponents.DotNetBar.OfficeMobile2014SuperTabStrip.TabSpacing">
<summary>
Tab Spacing
</summary>
</member>
<member name="M:DevComponents.DotNetBar.OneNote2007SuperTabItem.#ctor(DevComponents.DotNetBar.SuperTabItem)">
<summary>
Constructor for OneNote2007 style SuperTabItem base display
</summary>
<param name="tabItem">Associated SuperTabItem</param>
</member>
<member name="M:DevComponents.DotNetBar.OneNote2007SuperTabItem.ContentRectangle">
<summary>
Calculates the Content Rectangle for the tab
</summary>
<returns>Content Rectangle</returns>
</member>
<member name="M:DevComponents.DotNetBar.OneNote2007SuperTabItem.TabItemPath">
<summary>
Creates the tab item GraphicsPath
</summary>
<returns>Tab path</returns>
</member>
<member name="M:DevComponents.DotNetBar.OneNote2007SuperTabItem.TopTabPath">
<summary>
Create the Top tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.OneNote2007SuperTabItem.BottomTabPath">
<summary>
Creates the Bottom tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.OneNote2007SuperTabItem.LeftTabPath">
<summary>
Creates the Left tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.OneNote2007SuperTabItem.RightTabPath">
<summary>
Create the Right tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.OneNote2007SuperTabStrip.#ctor(DevComponents.DotNetBar.SuperTabStripItem)">
<summary>
OneNote2007 SuperTabStripBaseDisplay
</summary>
<param name="tabStripItem">Associated TabStripItem</param>
</member>
<member name="M:DevComponents.DotNetBar.OneNote2007SuperTabStrip.NextBlockPosition(DevComponents.UI.ContentManager.LayoutManagerPositionEventArgs)">
<summary>
Gets the next layout block position
</summary>
<param name="e">LayoutManagerPositionEventArgs</param>
</member>
<member name="M:DevComponents.DotNetBar.OneNote2007SuperTabStrip.NextBlockPosition(DevComponents.DotNetBar.BaseItem,DevComponents.DotNetBar.BaseItem)">
<summary>
Gets the next block position when attempting
to make a specific tab visible
</summary>
<param name="item">Potential item to replace</param>
<param name="vItem">View item being placed</param>
<returns>Block Rectangle</returns>
</member>
<member name="P:DevComponents.DotNetBar.OneNote2007SuperTabStrip.MinTabSize">
<summary>
Returns the Minimum tab size for this style
</summary>
</member>
<member name="P:DevComponents.DotNetBar.OneNote2007SuperTabStrip.TabOverlap">
<summary>
Tab Overlap
</summary>
</member>
<member name="P:DevComponents.DotNetBar.OneNote2007SuperTabStrip.TabSpacing">
<summary>
Tab Spacing
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabCloseBox.#ctor(DevComponents.DotNetBar.SuperTabControlBox)">
<summary>
Constructor
</summary>
<param name="controlBox">Associated SuperTabControlBox</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabCloseBox.RecalcSize">
<summary>
Performs RecalcSize processing
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabCloseBox.MyRefresh">
<summary>
Refreshes the CloseBox
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabCloseBox.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Performs control Paint processing
</summary>
<param name="p"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabCloseBox.InternalMouseEnter">
<summary>
InternalMouseEnter
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabCloseBox.InternalMouseLeave">
<summary>
InternalMouseLeave
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabCloseBox.InternalMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
InternalMouseDown
</summary>
<param name="objArg"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabCloseBox.InternalMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
InternalMouseUp
</summary>
<param name="objArg"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabCloseBox.Copy">
<summary>
Returns copy of the item
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabCloseBox.Visible">
<summary>
Gets or sets the CloseBox Visible state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabCloseBox.IsMouseDown">
<summary>
Gets whether the mouse is down
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabCloseBox.IsMouseOver">
<summary>
Gets whether the mouse is over the CloseBox
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControlBox.#ctor(DevComponents.DotNetBar.SuperTabStripItem)">
<summary>
Constructor
</summary>
<param name="tabStripItem">Associated SuperTabStripItem</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControlBox.RecalcSize">
<summary>
Performs RecalcSize processing
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControlBox.RecalcLayout">
<summary>
Performs RecalcLayout processing
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControlBox.LayoutItem(DevComponents.DotNetBar.BaseItem,System.Drawing.Size,System.Boolean)">
<summary>
Performs individual running layout processing for the given BaseItem
</summary>
<param name="item">Item to Layout</param>
<param name="size">Running Layout Size</param>
<param name="recalc">Whether a recalcSize is needed</param>
<returns>New running Size</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControlBox.MyRefresh">
<summary>
Refresh code
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControlBox.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Paint processing
</summary>
<param name="p"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControlBox.InternalMouseEnter">
<summary>
InternalMouseEnter
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControlBox.InternalMouseLeave">
<summary>
InternalMouseLeave
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControlBox.InternalMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
InternalMouseMove
</summary>
<param name="objArg"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControlBox.InternalMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
InternalMouseDown
</summary>
<param name="objArg"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControlBox.InternalMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
InternalMouseUp
</summary>
<param name="objArg"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControlBox.GetBoxItemFromPoint(System.Drawing.Point)">
<summary>
Gets the ControlBoxItem from the given Point
</summary>
<param name="pt"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControlBox.OnItemAdded(DevComponents.DotNetBar.BaseItem)">
<summary>
OnItemAdded
</summary>
<param name="item"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControlBox.OnAfterItemRemoved(DevComponents.DotNetBar.BaseItem,System.Int32)">
<summary>
OnAfterItemRemoved
</summary>
<param name="item"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControlBox.RemoveUserItems">
<summary>
Removes all user added items from the ControlBox
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControlBox.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControlBox.Bounds">
<summary>
Gets or sets the ControlBox Bounds
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControlBox.CloseBox">
<summary>
Gets the CloseBox
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControlBox.MenuBox">
<summary>
Gets the MenuBox
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControlBox.Visible">
<summary>
Gets or sets the ControlBox Visible state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControlBox.IsMouseDown">
<summary>
Gets the MouseDown state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControlBox.IsMouseOver">
<summary>
Gets the MouseOver state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControlBox.TabDisplay">
<summary>
Gets the TabStrip TabDisplay
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabMenuBox.#ctor(DevComponents.DotNetBar.SuperTabControlBox)">
<summary>
Constructor
</summary>
<param name="controlBox">Associated SuperTabControlBox</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabMenuBox.RecalcSize">
<summary>
RecalcSize
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabMenuBox.MyRefresh">
<summary>
Refreshes the display
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabMenuBox.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Paint processing
</summary>
<param name="p"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabMenuBox.AllItemsVisible">
<summary>
Determines if all the items are visible
</summary>
<returns>true if all visible</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabMenuBox.GetMenuButton1(System.Drawing.Graphics,System.Drawing.Color)">
<summary>
Gets MenuButton1
</summary>
<param name="g"></param>
<param name="color"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabMenuBox.GetMenuButton2(System.Drawing.Graphics,System.Drawing.Color)">
<summary>
Gets MenuButton2
</summary>
<param name="g"></param>
<param name="color"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabMenuBox.InternalMouseEnter">
<summary>
InternalMouseEnter
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabMenuBox.InternalMouseLeave">
<summary>
InternalMouseLeave
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabMenuBox.InternalMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
InternalMouseDown
</summary>
<param name="objArg"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabMenuBox.GetPopupPosition">
<summary>
Gets the popup menu position
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabMenuBox.LoadTabMenu">
<summary>
Loads the TabMenu
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabMenuBox.LoadTabsMenu(DevComponents.DotNetBar.SubItemsCollection)">
<summary>
Loads Tabs only into the TabMenu
</summary>
<param name="tabs"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabMenuBox.LoadItemsMenu(DevComponents.DotNetBar.SubItemsCollection)">
<summary>
Loads all items into the TabMenu
</summary>
<param name="tabs"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabMenuBox.SetMenuImage(DevComponents.DotNetBar.ButtonItem,DevComponents.DotNetBar.SuperTabItem)">
<summary>
Sets the TabMenu entry image
</summary>
<param name="bi"></param>
<param name="image"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabMenuBox.SuperTabMenuBoxClick(System.Object,System.EventArgs)">
<summary>
Handles SuperTabMenuBox_Click event
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabMenuBox.InternalMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
InternalMouseUp
</summary>
<param name="objArg"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabMenuBox.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabMenuBox.AutoHide">
<summary>
Gets or sets whether the MenuBox is automatically hidden when the tab items size does not exceed the size of the control
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabMenuBox.RaiseClickOnSelection">
<summary>
Gets or sets whether the MenuBox raises a ClickEvent when selected
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabMenuBox.ShowTabsOnly">
<summary>
Gets or sets whether MenuBox shows only Tabs entries
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabMenuBox.ShowImages">
<summary>
Gets or sets whether the MenuBox displays each menu entry with its associated Image/Icon
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabMenuBox.Visible">
<summary>
Gets or sets MenuBox Visible state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabMenuBox.IsMouseDown">
<summary>
Gets the MouseDown state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabMenuBox.IsMouseOver">
<summary>
Gets the MouseOver state
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.SetTabDocking(DevComponents.DotNetBar.eTabStripAlignment)">
<summary>
Sets the tab docking based upon the given alignment
</summary>
<param name="value"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.HookEvents(System.Boolean)">
<summary>
Hooks (or unhooks) underlying TabStrip events
</summary>
<param name="hook">true to hook, false to unhook</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStripTabItemOpen(System.Object,DevComponents.DotNetBar.SuperTabStripTabItemOpenEventArgs)">
<summary>
Handles TabItemOpen events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStripTabItemClose(System.Object,DevComponents.DotNetBar.SuperTabStripTabItemCloseEventArgs)">
<summary>
Handles TabItemClose events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStripTabMoving(System.Object,DevComponents.DotNetBar.SuperTabStripTabMovingEventArgs)">
<summary>
Handles TabMoving events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStripTabMoved(System.Object,DevComponents.DotNetBar.SuperTabStripTabMovedEventArgs)">
<summary>
Handles TabMoved events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStripTabRemoved(System.Object,DevComponents.DotNetBar.SuperTabStripTabRemovedEventArgs)">
<summary>
Handles TabRemoved events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStripSelectedTabChanging(System.Object,DevComponents.DotNetBar.SuperTabStripSelectedTabChangingEventArgs)">
<summary>
Handles SelectedTabChanging events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStripSelectedTabChanged(System.Object,DevComponents.DotNetBar.SuperTabStripSelectedTabChangedEventArgs)">
<summary>
Handles SelectedTabChanged events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStripItemGetTabItemPath(System.Object,DevComponents.DotNetBar.SuperTabGetTabItemPathEventArgs)">
<summary>
Handles GetTabItemPath events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStripItemGetTabItemContentRectangle(System.Object,DevComponents.DotNetBar.SuperTabGetTabItemContentRectangleEventArgs)">
<summary>
Handles GetTabItemContentRectangle events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStripBeforeTabDisplay(System.Object,DevComponents.DotNetBar.SuperTabStripBeforeTabDisplayEventArgs)">
<summary>
Handles BeforeTabDisplay events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStripMeasureTabItem(System.Object,DevComponents.DotNetBar.SuperTabMeasureTabItemEventArgs)">
<summary>
Handles MeasureTabItem events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStripPreRenderTabItem(System.Object,DevComponents.DotNetBar.SuperTabPreRenderTabItemEventArgs)">
<summary>
Handles PreRenderTabItem events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStripPostRenderTabItem(System.Object,DevComponents.DotNetBar.SuperTabPostRenderTabItemEventArgs)">
<summary>
Handles PostRenderTabItem events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStripGetTabCloseBounds(System.Object,DevComponents.DotNetBar.SuperTabGetTabCloseBoundsEventArgs)">
<summary>
Handles GetTabCloseBounds events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStripGetTabImageBounds(System.Object,DevComponents.DotNetBar.SuperTabGetTabImageBoundsEventArgs)">
<summary>
Handles GetTabImageBounds events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStripGetTabTextBounds(System.Object,DevComponents.DotNetBar.SuperTabGetTabTextBoundsEventArgs)">
<summary>
Handles GetTabTextBounds events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStripTabStripPaintBackground(System.Object,DevComponents.DotNetBar.SuperTabStripPaintBackgroundEventArgs)">
<summary>
Handles TabStripPaintBackground events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Handles StyleManagerStyleChanged events
</summary>
<param name="newStyle"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStripTabColorChanged(System.Object,DevComponents.DotNetBar.SuperTabStripTabColorChangedEventArgs)">
<summary>
Handles TabStripTabColorChanged events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStrip_MouseUp(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Handles TabStrip_MouseUp events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStrip_MouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Handles TabStrip_MouseDown events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStrip_MouseMove(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Handles TabStrip_MouseMove events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStrip_MouseClick(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Handles TabStrip_MouseClick events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStrip_MouseDoubleClick(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Handles TabStrip_MouseDoubleClick events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStrip_MouseEnter(System.Object,System.EventArgs)">
<summary>
Handles TabStrip_MouseEnter events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStrip_MouseHover(System.Object,System.EventArgs)">
<summary>
Handles TabStrip_MouseHover events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.TabStrip_MouseLeave(System.Object,System.EventArgs)">
<summary>
Handles TabStrip_MouseLeave events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.CreateTab(System.String)">
<summary>
Creates a TabControl tab
</summary>
<param name="tabText"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.CreateTab(System.String,System.Int32)">
<summary>
Creates a TabControl tab
</summary>
<param name="tabText"></param>
<param name="insertAt"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.CreateTab(DevComponents.DotNetBar.SuperTabItem,DevComponents.DotNetBar.SuperTabControlPanel,System.Int32)">
<summary>
Creates a TabControl tab
</summary>
<param name="tab"></param>
<param name="panel"></param>
<param name="insertAt"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.SelectPreviousTab">
<summary>
Selects the previous tab
</summary>
<returns>true if tab selected</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.SelectNextTab">
<summary>
Selects the next tab
</summary>
<returns>true if tab selected</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.GetTabFromPoint(System.Drawing.Point)">
<summary>
Gets the SuperTabItem tab containing the given Point
</summary>
<param name="pt">Point to test</param>
<returns>Associated tab, or null</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.GetItemFromPoint(System.Drawing.Point)">
<summary>
Gets the item (SuperTabItem or BaseView) associated
with the given Point
</summary>
<param name="pt">Point to test</param>
<returns>BaseItem or null</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.CloseTab(DevComponents.DotNetBar.SuperTabItem)">
<summary>
Closes the given tab
</summary>
<param name="tab"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.RecalcLayout">
<summary>
Causes a Layout Recalculation of the SuperTabControl
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.RefreshPanelsStyle">
<summary>
Refreshes all panel styles
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.ApplyPanelStyle(DevComponents.DotNetBar.SuperTabControlPanel)">
<summary>
Applies color and border settings to the given panel
</summary>
<param name="panel"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.ApplyPanelColor(DevComponents.DotNetBar.SuperTabControlPanel,DevComponents.DotNetBar.ElementStyle)">
<summary>
Applies color settings to the given panel
</summary>
<param name="panel"></param>
<param name="style"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.ApplyPanelBorder(DevComponents.DotNetBar.ElementStyle)">
<summary>
Applies border settings for the given panel
</summary>
<param name="style"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.OnSystemColorsChanged(System.EventArgs)">
<summary>
Performs OnSystemColorsChanged processing
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.OnHandleCreated(System.EventArgs)">
<summary>
Performs OnResize processing
</summary>
<param name="e"></param>
NOT NEEDED. Let WinForms layout do the work!
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.OnControlAdded(System.Windows.Forms.ControlEventArgs)">
<summary>
OnControlAdded
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.OnControlRemoved(System.Windows.Forms.ControlEventArgs)">
<summary>
OnControlRemoved
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.System#ComponentModel#ISupportInitialize#BeginInit">
<summary>
BeginInit
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControl.System#ComponentModel#ISupportInitialize#EndInit">
<summary>
EndInit
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.TabItemOpen">
<summary>
Occurs when a tab is added to the Tabs collection
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.TabItemClose">
<summary>
Occurs when a tab is about to Close
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.TabRemoved">
<summary>
Occurs when a tab is removed from the Tabs collection
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.BeforeTabDisplay">
<summary>
Occurs when a tab is about to be displayed
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.TabMoving">
<summary>
Occurs when a tab is being moved or dragged by the user
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.TabMoved">
<summary>
Occurs when a tab has been moved or dragged by the user
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.SelectedTabChanging">
<summary>
Occurs when the Selected tab is changing
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.SelectedTabChanged">
<summary>
Occurs when the Selected tab has changed
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.GetTabItemPath">
<summary>
Occurs when the control needs a tab's bordering path
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.GetTabItemContentRectangle">
<summary>
Occurs when the control needs a tab's Content Rectangle
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.MeasureTabItem">
<summary>
Occurs when the control needs to measure a tab
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.PreRenderTabItem">
<summary>
Occurs before any tab rendering is done
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.PostRenderTabItem">
<summary>
Occurs After all tab rendering is complete
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.GetTabTextBounds">
<summary>
Occurs when the control needs to get the tab's Text Bounds
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.GetTabImageBounds">
<summary>
Occurs when the control needs to get the tab's Image Bounds
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.GetTabCloseBounds">
<summary>
Occurs when the control needs to get the tab's Close Button Bounds
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.TabStripPaintBackground">
<summary>
Occurs when the TabStrip background needs painted
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.TabStripMouseUp">
<summary>
Occurs when a TabStrip MouseUp event is raised
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.TabStripMouseDown">
<summary>
Occurs when a TabStrip MouseDown event is raised
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.TabStripMouseMove">
<summary>
Occurs when a TabStrip MouseMove event is raised
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.TabStripMouseClick">
<summary>
Occurs when a TabStrip MouseClick event is raised
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.TabStripMouseDoubleClick">
<summary>
Occurs when a TabStrip MouseDoubleClick event is raised
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.TabStripMouseEnter">
<summary>
Occurs when a TabStrip MouseEnter event is raised
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.TabStripMouseHover">
<summary>
Occurs when a TabStrip MouseHover event is raised
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControl.TabStripMouseLeave">
<summary>
Occurs when a TabStrip MouseLeave event is raised
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.TabStripTabStop">
<summary>
Gets or sets whether TabStrip will get focus when Tab key is used. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.AutoCloseTabs">
<summary>
Gets or sets whether tabs are automatically closed when a close button is clicked
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.CloseButtonOnTabsAlwaysDisplayed">
<summary>
Gets or sets whether the tab's visible close button is displayed for every tab state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.CloseButtonOnTabsVisible">
<summary>
Gets or sets whether close button is visible on each tab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.CloseButtonPosition">
<summary>
Gets or sets the position of the tab close button
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.TabCloseButtonNormal">
<summary>
Gets or sets the custom tab Close button image
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.TabCloseButtonHot">
<summary>
Gets or sets the custom Close button image that is used on tabs when the mouse is over the close button
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.TabCloseButtonPressed">
<summary>
Gets or sets the custom Close button image that is used on tabs when the button has been pressed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.ControlBox">
<summary>
Gets the TabStrip ControlBox
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.DisplaySelectedTextOnly">
<summary>
Gets or sets whether the only Text displayed is for the SelectedTab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.HorizontalText">
<summary>
Gets or sets whether text is drawn horizontally regardless of tab orientation
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.ImageAlignment">
<summary>
Gets or sets the default alignment of the Image within the tab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.ImageList">
<summary>
Gets or sets the ImageList used by the TabStrip and its tab items
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.ItemPadding">
<summary>
Gets or sets BaseItem tab padding in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.RotateVerticalText">
<summary>
Gets or sets whether vertical tab text is rotated 180 degrees
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.SelectedPanel">
<summary>
Gets or sets the SelectedTab based upon the given panel
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.ShowFocusRectangle">
<summary>
Gets or sets whether a focus rectangle is displayed when tab has input focus
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.FixedTabSize">
<summary>
Gets or sets the fixed tab size in pixels. Either Height, Width, or both can be set
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.IsTabDragging">
<summary>
Gets or sets whether a tab is currently in a drag operation
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.ReorderTabsEnabled">
<summary>
Gets or sets whether tabs can be reordered through the user interface
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.SelectedTab">
<summary>
Gets or sets the selected tab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.SelectedTabFont">
<summary>
Gets or sets the selected tab Font
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.SelectedTabIndex">
<summary>
Gets or sets the index of the selected tab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.TabAlignment">
<summary>
Gets or sets the tab alignment within the Tab-Strip control
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.TabFont">
<summary>
Gets or sets the tab Font
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.TabHorizontalSpacing">
<summary>
Gets or sets the Horizontal spacing around tab elements
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.TabLayoutType">
<summary>
Gets or sets the type of the tab layout
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.Tabs">
<summary>
Gets the collection of Tabs
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.TabStrip">
<summary>
Gets the control TabStrip
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.TabStripColor">
<summary>
Gets or sets the Color of the TabStrip
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.TabStyle">
<summary>
Gets or sets the tab style
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.TabVerticalSpacing">
<summary>
Gets or sets the Vertical spacing around tab elements
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.TabsVisible">
<summary>
Gets or sets whether tabs are visible
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.TextAlignment">
<summary>
Gets or sets tab text alignment
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.DefaultSize">
<summary>
Gets the DefaultSize
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControl.ValidateFormOnTabSelection">
<summary>
Indicates whether Form.Validate is called and checked before selected tab is changed. Default value is true.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SuperTabControlPanel">
<summary>
Represents Panel for the SuperTabControl
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControlPanel.PanelColor_ColorTableChanged(System.Object,System.EventArgs)">
<summary>
_PanelColor_ColorTableChanged
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControlPanel.OnPanelColorChanged">
<summary>
Processes ColorTable changes
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControlPanel.GetStyle">
<summary>
GetStyle
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabControlPanel.OnPaint(System.Windows.Forms.PaintEventArgs)">
<summary>
Provides OnPaint support
</summary>
<param name="e"></param>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabControlPanel.PanelColorChanged">
<summary>
Occurs when the tab colors have changed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControlPanel.Dock">
<summary>
Gets or sets which edge of the parent container a control is docked to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControlPanel.PanelColor">
<summary>
Gets or sets user specified tab panel display colors
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControlPanel.PanelStyle">
<summary>
Gets or sets the Panel ElementStyle
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControlPanel.TabItem">
<summary>
Gets or sets TabItem that this panel is attached to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabControlPanel.BackgroundImagePosition">
<summary>
Specifies background image position when container is larger than image.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.ShouldSerializeImagePadding">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.ResetImagePadding">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.OnSymbolChanged(System.String,System.String)">
<summary>
Called when Symbol property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.OnSymbolSetChanged(DevComponents.DotNetBar.eSymbolSet,DevComponents.DotNetBar.eSymbolSet)">
<summary>
Called when SymbolSet property value changes.
</summary>
<param name="oldValue">Indciates old value</param>
<param name="newValue">Indicates new value</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.ShouldSerializeSymbolColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.ResetSymbolColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.OnSymbolSizeChanged(System.Single,System.Single)">
<summary>
Called when SymbolSize property has changed.
</summary>
<param name="oldValue">Old property value</param>
<param name="newValue">New property value</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.HookEvents(System.Boolean)">
<summary>
Hooks or unhooks control events
</summary>
<param name="hook">true to hook</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.SuperTabItemTextChanged(System.Object,System.EventArgs)">
<summary>
SuperTabItem_TextChanged processing
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.TextMarkupLinkClick(System.Object,System.EventArgs)">
<summary>
TextMarkupLinkClick
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.OnMarkupLinkClick(DevComponents.DotNetBar.MarkupLinkClickEventArgs)">
<summary>
OnMarkupLinkClick
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.ColorTableColorTableChanged(System.Object,System.EventArgs)">
<summary>
ColorTable_ColorTableChanged
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.OnTabColorChanged">
<summary>
Processes ColorTable changes
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.Close">
<summary>
Closes the tab
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.GetTabFont">
<summary>
Gets the operational tab font
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.GetTabColorTable">
<summary>
Gets the tab ColorTable
</summary>
<returns>SuperTabItemStateColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.GetTabColorTable(DevComponents.DotNetBar.eTabState)">
<summary>
Gets the tab ColorStateTable for the given state
</summary>
<param name="tabState">eTabState</param>
<returns>SuperTabItemStateColorTable</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.GetPanelColorTable">
<summary>
Gets the tab Panel ColorTable
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.GetTabAreaFromPoint(System.Drawing.Point)">
<summary>
Gets the area of the tab that contains the given Point
</summary>
<param name="pt"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.PointInTab(System.Drawing.Point)">
<summary>
Determines if the given Point is in the tab
</summary>
<param name="pt">Point to test</param>
<returns>true if Point is in tab</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.GetTabItemPath">
<summary>
Gets the tab bordering GraphicsPath
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.GetCloseButtonBounds">
<summary>
Gets the Close Button bounding Rectangle
</summary>
<returns>Bounding Rectangle</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.GetImageBounds">
<summary>
Gets the Image bounding Rectangle
</summary>
<returns>Bounding Rectangle</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.GetTextBounds">
<summary>
Gets the Text bounding Rectangle
</summary>
<returns>Bounding Rectangle</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.ProcessCloseBounds(System.Drawing.Rectangle)">
<summary>
Calculates Close button bounds
</summary>
<param name="r">Running rectangle</param>
<returns>Running rectangle</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.ProcessImageBounds(System.Drawing.Rectangle)">
<summary>
Calculates Image bounds
</summary>
<param name="r">Running rectangle</param>
<returns>Running rectangle</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.RefreshOwner">
<summary>
Refreshes the tab owner
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.Refresh">
<summary>
Refreshes the tab display
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Paint processing
</summary>
<param name="p"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.InternalMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
InternalMouseMove
</summary>
<param name="objArg"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.InternalMouseEnter">
<summary>
InternalMouseEnter
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.InternalMouseLeave">
<summary>
InternalMouseLeave
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.InternalMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
InternalMouseDown
</summary>
<param name="objArg"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.InternalMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
InternalMouseUp
</summary>
<param name="objArg"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.ToString">
<summary>
ToString
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.Dispose(System.Boolean)">
<summary>
Dispose
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItem.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies specific properties to new instance of the item.
</summary>
<param name="copy">New SuperTabItem instance</param>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabItem.MarkupLinkClick">
<summary>
Occurs when text markup link is clicked
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabItem.TabColorChanged">
<summary>
Occurs when the tab colors have changed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.IsMarkupSupported">
<summary>
IsMarkupSupported
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.DefaultSelectedTabFont">
<summary>
Gets or sets the default SelectedTabFont
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.CloseButtonBounds">
<summary>
Gets the tab CloseButton Bounds
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.CloseButtonMouseOver">
<summary>
Gets or sets the CloseButtonMouseOver state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.CloseButtonPressed">
<summary>
Gets or sets the CloseButtonPressed state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.EffectiveImageAlignment">
<summary>
Gets the effective image alignment
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.ImageBounds">
<summary>
Gets the tab Image Bounds
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.IsVertical">
<summary>
Gets the tabs vertical orientation
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.TabItemDisplay">
<summary>
Gets the TabItemDisplay
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.TabStrip">
<summary>
Gets the tabs TabStrip
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.TextBounds">
<summary>
Gets the tabs Text Bounds
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.EnableImageAnimation">
<summary>
Gets or sets whether image animation is enabled
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.TabColor">
<summary>
Gets or sets user specified tab display colors
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.CloseButtonVisible">
<summary>
Gets or sets whether Close button on the tab is visible when SuperTabStrip.CloseButtonOnTabsVisible property is set to true
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.Enabled">
<summary>
Enabled
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.EnableMarkup">
<summary>
Gets or sets whether text-markup support is enabled for the control's Text property
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.FixedTabSize">
<summary>
Gets or sets the FixedTabSize
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.Icon">
<summary>
Gets or sets the tab icon. Icon has same functionality as Image except that it supports Alpha blending
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.Image">
<summary>
Gets or sets the tab image
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.ImageIndex">
<summary>
Gets or sets the tab image index
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.ImageAlignment">
<summary>
Gets or sets the alignment of the Image within the tab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.ImagePadding">
<summary>
Gets or sets the spacing between content and edges of the Image
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.PredefinedColor">
<summary>
Gets or sets the predefined color for the tab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.SelectedTabFont">
<summary>
Gets or sets the selected tab Font
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.StartsNewTabLine">
<summary>
StartsNewTabLine
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.SymbolRealized">
<summary>
Gets the realized symbol string.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.Symbol">
<summary>
Indicates the symbol displayed on face of the button instead of
the image. Setting the symbol overrides the image setting.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.SymbolSet">
<summary>
Gets or sets the symbol set used to represent the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.SymbolColor">
<summary>
Gets or sets the color of the Symbol.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.SymbolSize">
<summary>
Indicates the size of the symbol in points.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.TextAlignment">
<summary>
Gets or sets the text alignment
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.TabFont">
<summary>
Gets or sets the tab Font
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.Text">
<summary>
Gets or sets the tab text
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.AttachedControl">
<summary>
Gets or sets the control that is attached to this tab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.Bounds">
<summary>
Gets or sets the tab Bounds
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.IsMouseOver">
<summary>
Gets the MouseOver state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.IsSelected">
<summary>
Gets the tab selected state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.TabAlignment">
<summary>
Gets the tab alignment
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.ContentRectangle">
<summary>
Gets the tab Content Rectangle
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.TabStripItem">
<summary>
Gets or sets the tab TabStripItem
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.TabStyle">
<summary>
Gets or sets the tabs TabStyle
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItem.Visible">
<summary>
Visible
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ImageAlignment">
<summary>
Alignment
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ImageAlignment.NotSet">
<summary>
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ImageAlignment.TopLeft">
<summary>
TopLeft
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ImageAlignment.TopCenter">
<summary>
TopCenter
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ImageAlignment.TopRight">
<summary>
TopRight
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ImageAlignment.MiddleLeft">
<summary>
MiddleLeft
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ImageAlignment.MiddleCenter">
<summary>
MiddleCenter
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ImageAlignment.MiddleRight">
<summary>
MiddleRight
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ImageAlignment.BottomLeft">
<summary>
BottomLeft
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ImageAlignment.BottomCenter">
<summary>
BottomCenter
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ImageAlignment.BottomRight">
<summary>
BottomRight
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eSuperTabArea">
<summary>
Tab area parts
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eTabState">
<summary>
Tab states
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabDragWindow.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="F:DevComponents.DotNetBar.SuperTabDragWindow.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabDragWindow.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabDragWindow.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabDragWindow.ShowWithoutActivation">
<summary>
ShowWithoutActivation
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.HookEvents(System.Boolean)">
<summary>
Hooks or unhooks TabStripItem events
</summary>
<param name="hook">true to hook</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.TabStripItemTabItemOpen(System.Object,DevComponents.DotNetBar.SuperTabStripTabItemOpenEventArgs)">
<summary>
TabStripItem_TabItemOpen
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.TabStripItem_TabItemClose(System.Object,DevComponents.DotNetBar.SuperTabStripTabItemCloseEventArgs)">
<summary>
TabStripItem_TabItemClose
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.TabStripItem_TabRemoved(System.Object,DevComponents.DotNetBar.SuperTabStripTabRemovedEventArgs)">
<summary>
TabStripItem_TabRemoved
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.TabStripItem_TabMoving(System.Object,DevComponents.DotNetBar.SuperTabStripTabMovingEventArgs)">
<summary>
TabStripItem_TabMoving
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.TabStripItem_TabMoved(System.Object,DevComponents.DotNetBar.SuperTabStripTabMovedEventArgs)">
<summary>
TabStripItem_TabMoved
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.TabStripItem_GetTabItemPath(System.Object,DevComponents.DotNetBar.SuperTabGetTabItemPathEventArgs)">
<summary>
TabStripItem_GetTabItemPath
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.TabStripItem_GetTabItemContentRectangle(System.Object,DevComponents.DotNetBar.SuperTabGetTabItemContentRectangleEventArgs)">
<summary>
TabStripItem_GetTabItemContentRectangle
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.TabStripItem_BeforeTabDisplay(System.Object,DevComponents.DotNetBar.SuperTabStripBeforeTabDisplayEventArgs)">
<summary>
TabStripItem_BeforeTabDisplay
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.TabStripItem_MeasureTabItem(System.Object,DevComponents.DotNetBar.SuperTabMeasureTabItemEventArgs)">
<summary>
TabStripItem_MeasureTabItem
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.TabStripItem_PreRenderTabItem(System.Object,DevComponents.DotNetBar.SuperTabPreRenderTabItemEventArgs)">
<summary>
TabStripItem_PreRenderTabItem
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.TabStripItem_PostRenderTabItem(System.Object,DevComponents.DotNetBar.SuperTabPostRenderTabItemEventArgs)">
<summary>
TabStripItem_PostRenderTabItem
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.TabStripItem_GetTabCloseBounds(System.Object,DevComponents.DotNetBar.SuperTabGetTabCloseBoundsEventArgs)">
<summary>
TabStripItem_GetTabCloseBounds
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.TabStripItem_GetTabImageBounds(System.Object,DevComponents.DotNetBar.SuperTabGetTabImageBoundsEventArgs)">
<summary>
TabStripItem_GetTabImageBounds
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.TabStripItem_GetTabTextBounds(System.Object,DevComponents.DotNetBar.SuperTabGetTabTextBoundsEventArgs)">
<summary>
TabStripItem_GetTabTextBounds
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.TabStripItem_TabStripPaintBackground(System.Object,DevComponents.DotNetBar.SuperTabStripPaintBackgroundEventArgs)">
<summary>
TabStripItem_TabStripPaintBackground
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.TabStripItem_SelectedTabChanging(System.Object,DevComponents.DotNetBar.SuperTabStripSelectedTabChangingEventArgs)">
<summary>
TabStripItem_SelectedTabChanging
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.TabStripItem_SelectedTabChanged(System.Object,DevComponents.DotNetBar.SuperTabStripSelectedTabChangedEventArgs)">
<summary>
TabStripItem_SelectedTabChanged
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.TabStripItem_TabStripTabColorChanged(System.Object,DevComponents.DotNetBar.SuperTabStripTabColorChangedEventArgs)">
<summary>
TabStripItem_TabStripTabColorChanged
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.RecalcLayout">
<summary>
Performs layout recalculation
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.EnsureVisible(DevComponents.DotNetBar.SuperTabItem)">
<summary>
Ensures that the given tab is visible on the TabStrip
</summary>
<param name="tab"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.GetTabFromPoint(System.Drawing.Point)">
<summary>
Gets the SuperTabItem from the given Point
</summary>
<param name="pt"></param>
<returns>SuperTabItem or null</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.GetItemFromPoint(System.Drawing.Point)">
<summary>
Gets the BaseItem from the given Point
</summary>
<param name="pt"></param>
<returns>BaseItem or null</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.CloseTab(DevComponents.DotNetBar.SuperTabItem)">
<summary>
Closes the given tab
</summary>
<param name="tab"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.SelectPreviousTab">
<summary>
Selects the previous tab
</summary>
<returns>true if successful</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.SelectNextTab">
<summary>
Selects the next tab
</summary>
<returns>true if successful</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.OnResize(System.EventArgs)">
<summary>
OnResize processing
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.System#ComponentModel#ISupportInitialize#BeginInit">
<summary>
BeginInit
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStrip.System#ComponentModel#ISupportInitialize#EndInit">
<summary>
EndInit
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStrip.TabItemOpen">
<summary>
Occurs when a tab is added to the Tabs collection
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStrip.TabItemClose">
<summary>
Occurs when a tab is about to Close
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStrip.TabRemoved">
<summary>
Occurs when a tab is removed from the Tabs collection
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStrip.BeforeTabDisplay">
<summary>
Occurs when a tab is about to be displayed
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStrip.TabMoving">
<summary>
Occurs when a tab is being moved or dragged by the user
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStrip.TabMoved">
<summary>
Occurs when a tab has been moved or dragged by the user
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStrip.SelectedTabChanging">
<summary>
Occurs when the Selected tab is changing
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStrip.SelectedTabChanged">
<summary>
Occurs when the Selected tab has changed
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStrip.GetTabItemPath">
<summary>
Occurs when the control needs a tab's bordering path
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStrip.GetTabItemContentRectangle">
<summary>
Occurs when the control needs a tab's Content Rectangle
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStrip.MeasureTabItem">
<summary>
Occurs when the control needs to measure a tab
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStrip.PreRenderTabItem">
<summary>
Occurs before any tab rendering is done
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStrip.PostRenderTabItem">
<summary>
Occurs After all tab rendering is complete
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStrip.GetTabTextBounds">
<summary>
Occurs when the control needs to get the tab's Text Bounds
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStrip.GetTabImageBounds">
<summary>
Occurs when the control needs to get the tab's Image Bounds
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStrip.GetTabCloseBounds">
<summary>
Occurs when the control needs to get the tab's Close Button Bounds
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStrip.TabStripPaintBackground">
<summary>
Occurs when the TabStrip background needs painted
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStrip.TabStripTabColorChanged">
<summary>
Occurs when the TabStrip TabColor has changed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.AutoSelectAttachedControl">
<summary>
Gets or sets whether the control attached to the TabItem.AttachedControl property
is automatically selected when TabItem becomes the selected tab. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.AutoCloseTabs">
<summary>
Gets or sets whether tabs are automatically closed when a close button is clicked
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.CloseButtonOnTabsAlwaysDisplayed">
<summary>
Gets or sets whether the tab's visible close button is displayed for every tab state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.CloseButtonOnTabsVisible">
<summary>
Gets or sets whether close button is visible on each tab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.CloseButtonPosition">
<summary>
Gets or sets the position of the tab close button
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.TabCloseButtonNormal">
<summary>
Gets or sets the custom tab Close button image
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.TabCloseButtonHot">
<summary>
Gets or sets the custom Close button image that is used on tabs when the mouse is over the close button
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.TabCloseButtonPressed">
<summary>
Gets or sets the custom Close button image that is used on tabs when the button has been pressed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.ControlBox">
<summary>
Gets the TabStrip ControlBox
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.DisplaySelectedTextOnly">
<summary>
Gets or sets whether the only Text displayed is for the SelectedTab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.ImageAlignment">
<summary>
Gets or sets the default alignment of the Image within the tab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.ItemPadding">
<summary>
Gets or sets BaseItem tab padding in pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.RotateVerticalText">
<summary>
Gets or sets whether vertical tab text is rotated 180 degrees
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.FixedTabSize">
<summary>
Gets or sets the fixed tab size in pixels. Either Height, Width, or both can be set
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.IsTabDragging">
<summary>
Gets or sets whether a tab is currently in a drag operation
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.ReorderTabsEnabled">
<summary>
Gets or sets whether tabs can be reordered through the user interface
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.SelectedTab">
<summary>
Gets or sets the selected tab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.SelectedTabFont">
<summary>
Gets or sets the selected tab Font
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.SelectedTabIndex">
<summary>
Gets or sets the index of the selected tab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.TabAlignment">
<summary>
Gets or sets the tab alignment within the Tab-Strip control
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.TabFont">
<summary>
Gets or sets the tab Font
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.TabHorizontalSpacing">
<summary>
Gets or sets the Horizontal spacing around tab elements
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.TabLayoutType">
<summary>
Gets or sets the type of the tab layout
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.Tabs">
<summary>
Gets the collection of Tabs
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.TabStripColor">
<summary>
Gets or sets the Color of the TabStrip
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.TabStyle">
<summary>
Gets or sets the tab style
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.TabVerticalSpacing">
<summary>
Gets or sets the Vertical spacing around tab elements
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.TabStripItem">
<summary>
Gets the TabStrip associated TabStripItem
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.TextAlignment">
<summary>
Gets or sets tab text alignment
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.Available">
<summary>
Gets whether the tabStrip is visually available
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.IsDesignMode">
<summary>
Gets the Design state for the control
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.IsInitializing">
<summary>
Gets the ISupportInitialize state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.TabDisplay">
<summary>
Gets the TabDisplay
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.ApplicationButton">
<summary>
Gets or sets the reference to ribbon application button when tab control is used as backstage ribbon control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStrip.DefaultSize">
<summary>
Gets the DefaultSize
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.#ctor(DevComponents.DotNetBar.SuperTabStrip)">
<summary>
Constructor
</summary>
<param name="tabStrip">Associated SuperTabStrip</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.SyncOrientation">
<summary>
Syncs the Orientation of each SubItem to
the current TabAlignment Orientation
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.GetTabAlignmentBasedOrientation">
<summary>
Gets the Orientation based upon the current
TabAlignment
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.OnItemAdded(DevComponents.DotNetBar.BaseItem)">
<summary>
Makes sure all newly added items
are set to the design orientation and style
</summary>
<param name="item"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.ApplyTabStyle">
<summary>
Applies the current TabStyle to each tab and
sets the item style to the DotNetBarStyle from the TabStyle
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.GetStyleFromTabStyle">
<summary>
Gets the DotNetBarStyle from the SuperTabStyle
</summary>
<returns>eDotNetBarStyle</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.HookEvents(System.Boolean)">
<summary>
Hooks or unhooks our events
</summary>
<param name="hook"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.SuperTabStripItemSubItemsChanged(System.Object,System.ComponentModel.CollectionChangeEventArgs)">
<summary>
Handles SubItemsChanged events
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.TabItemAdded(DevComponents.DotNetBar.BaseItem)">
<summary>
Handles newly added items
</summary>
<param name="item"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.TabItemRemoved(DevComponents.DotNetBar.BaseItem)">
<summary>
Handles newly removed items
</summary>
<param name="item"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.TabTabColorChanged(System.Object,System.EventArgs)">
<summary>
Handles tab color changes
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.ColorTableColorTableChanged(System.Object,System.EventArgs)">
<summary>
Handles color table changes
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.MyRefresh">
<summary>
Performs NeedRecalcSize and refresh
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.RecalcSize">
<summary>
Recalculates the size of the tabs.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.EnsureVisible(DevComponents.DotNetBar.BaseItem)">
<summary>
Ensures that the given item is visible on the TabStrip
</summary>
<param name="item"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.SelectTab(DevComponents.DotNetBar.SuperTabItem,DevComponents.DotNetBar.eEventSource)">
<summary>
Selects the given tab
</summary>
<param name="tab"></param>
<param name="eventSource"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.SelectPreviousTab">
<summary>
Selects the previous tab
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.SelectPreviousTab(DevComponents.DotNetBar.eEventSource)">
<summary>
Selects the previous tab
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.SelectNextTab">
<summary>
Selects the next tab
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.SelectNextTab(DevComponents.DotNetBar.eEventSource)">
<summary>
Selects the next tab
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.UpdateSelectedTab">
<summary>
UpdateSelectedTab
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.OnTabStyleChanged">
<summary>
OnTabStyleChanged
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.OnMeasureTabItem(DevComponents.DotNetBar.SuperTabItem,System.Drawing.Size,System.Drawing.Graphics)">
<summary>
OnMeasureTabItem
</summary>
<param name="tab"></param>
<param name="size"></param>
<param name="g"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.OnPreRenderTabItem(DevComponents.DotNetBar.SuperTabItem,System.Drawing.Graphics)">
<summary>
OnPreRenderTabItem
</summary>
<param name="tab"></param>
<param name="g"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.OnPostRenderTabItem(DevComponents.DotNetBar.SuperTabItem,System.Drawing.Graphics)">
<summary>
OnPostRenderTabItem
</summary>
<param name="tab"></param>
<param name="g"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.OnGetTabItemContentRectangle(DevComponents.DotNetBar.SuperTabItem)">
<summary>
OnGetTabItemContentRectangle
</summary>
<param name="tab"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.OnGetTabItemPath(DevComponents.DotNetBar.SuperTabItem)">
<summary>
OnGetTabItemPath
</summary>
<param name="tab"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.OnSelectedTabRemoved(System.Int32,DevComponents.DotNetBar.SuperTabItem)">
<summary>
OnSelectedTabRemoved
</summary>
<param name="index"></param>
<param name="item"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.OnSelectedTabChanging(DevComponents.DotNetBar.SuperTabItem,DevComponents.DotNetBar.eEventSource)">
<summary>
OnSelectedTabChanging
</summary>
<param name="value"></param>
<param name="eventSource"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.OnSelectedTabChanged(DevComponents.DotNetBar.SuperTabItem,DevComponents.DotNetBar.SuperTabItem,DevComponents.DotNetBar.eEventSource)">
<summary>
OnSelectedTabChanged
</summary>
<param name="oldTab"></param>
<param name="newTab"></param>
<param name="eventSource"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.OnBeforeTabDisplay(DevComponents.DotNetBar.SuperTabItem)">
<summary>
OnBeforeTabDisplay
</summary>
<param name="item"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.OnTabItemClose(DevComponents.DotNetBar.SuperTabItem)">
<summary>
OnTabItemClose
</summary>
<param name="tab"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.OnTabStripColorChanged">
<summary>
OnTabStripColorChanged
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.OnPaintBackground(System.Drawing.Graphics,DevComponents.DotNetBar.Rendering.SuperTabColorTable)">
<summary>
OnPaintBackground
</summary>
<param name="g"></param>
<param name="ct"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.OnGetTextBounds(DevComponents.DotNetBar.SuperTabItem,System.Drawing.Rectangle)">
<summary>
OnGetTextBounds
</summary>
<param name="tab"></param>
<param name="bounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.OnGetImageBounds(DevComponents.DotNetBar.SuperTabItem,System.Drawing.Rectangle)">
<summary>
OnGetImageBounds
</summary>
<param name="tab"></param>
<param name="bounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.OnGetCloseBounds(DevComponents.DotNetBar.SuperTabItem,System.Drawing.Rectangle)">
<summary>
OnGetCloseBounds
</summary>
<param name="tab"></param>
<param name="bounds"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.OnTabMoving(DevComponents.DotNetBar.BaseItem,DevComponents.DotNetBar.BaseItem,System.Boolean)">
<summary>
OnTabMoving
</summary>
<param name="moveTab"></param>
<param name="insertTab"></param>
<param name="insertBefore"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.OnTabMoved(DevComponents.DotNetBar.SuperTabItem,System.Collections.Generic.List{DevComponents.DotNetBar.BaseItem},System.Collections.Generic.List{DevComponents.DotNetBar.BaseItem}@)">
<summary>
OnTabMoved
</summary>
<param name="tab">Tab that was moved</param>
<param name="oldOrder">Old tab order</param>
<param name="newOrder">New tab order</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.ItemAtLocation(System.Int32,System.Int32)">
<summary>
ItemAtLocation
</summary>
<param name="x"></param>
<param name="y"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.InternalClick(System.Windows.Forms.MouseButtons,System.Drawing.Point)">
<summary>
InternalClick
</summary>
<param name="mb"></param>
<param name="pt"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.InternalMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
InternalMouseDown
</summary>
<param name="objArg"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.InternalMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
InternalMouseUp
</summary>
<param name="objArg"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.InternalMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
InternalMouseMove
</summary>
<param name="objArg"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.InternalOnMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
InternalOnMouseMove
</summary>
<param name="objArg"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.ProcessMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
ProcessMouseMove
</summary>
<param name="objArg"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.HotTabMouseMove(System.Windows.Forms.MouseEventArgs,DevComponents.DotNetBar.SuperTabItem)">
<summary>
HotTabMouseMove
</summary>
<param name="objArg"></param>
<param name="tab"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.ControlBoxMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
ControlBoxMouseMove
</summary>
<param name="objArg"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.ProcessTabMove(System.Windows.Forms.MouseEventArgs)">
<summary>
ProcessTabMove
</summary>
<param name="objArg"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.StartTabMove(System.Windows.Forms.MouseEventArgs)">
<summary>
StartTabMove
</summary>
<param name="objArg"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.SetDragWindowRegion">
<summary>
SetDragWindowRegion
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.TabDragWindowPaint(System.Object,System.Windows.Forms.PaintEventArgs)">
<summary>
TabDragWindow_Paint
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.InternalMouseLeave">
<summary>
InternalMouseLeave
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.InternalOnMouseLeave">
<summary>
InternalOnMouseLeave
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.GetTabFromPoint(System.Drawing.Point)">
<summary>
Get the tab at the given Point
</summary>
<param name="pt"></param>
<returns>SuperTabItem or null</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.GetItemFromPoint(System.Drawing.Point)">
<summary>
Gets the item at the given point
</summary>
<param name="pt"></param>
<returns>BaseItem or null</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.GetNextVisibleTab(System.Int32)">
<summary>
Gets the next visible Tab
</summary>
<param name="index"></param>
<returns>SuperTabItem</returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.CloseTab(DevComponents.DotNetBar.SuperTabItem)">
<summary>
Closes the given tab
</summary>
<param name="tab"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.Paint(DevComponents.DotNetBar.ItemPaintArgs)">
<summary>
Paint processing
</summary>
<param name="p"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.SubItemSizeChanged(DevComponents.DotNetBar.BaseItem)">
<summary>
SubItemSizeChanged
</summary>
<param name="objChildItem"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabStripItem.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies specific properties to new instance of the item.
</summary>
<param name="copy">New SuperTabStripItem instance</param>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStripItem.TabItemOpen">
<summary>
Occurs when a tab is added to the Tabs collection
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStripItem.TabItemClose">
<summary>
Occurs when a tab is about to Close
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStripItem.TabRemoved">
<summary>
Occurs when a tab is removed from the Tabs collection
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStripItem.BeforeTabDisplay">
<summary>
Occurs when a tab is about to be displayed
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStripItem.TabMoving">
<summary>
Occurs when a tab is being moved or dragged by the user
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStripItem.TabMoved">
<summary>
Occurs when a tab has been moved or dragged by the user
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStripItem.SelectedTabChanging">
<summary>
Occurs when the Selected tab is changing
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStripItem.SelectedTabChanged">
<summary>
Occurs when the Selected tab has changed
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStripItem.GetTabItemPath">
<summary>
Occurs when the control needs a tab's bordering path
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStripItem.GetTabItemContentRectangle">
<summary>
Occurs when the control needs a tab's Content Rectangle
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStripItem.MeasureTabItem">
<summary>
Occurs when the control needs to measure a tab
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStripItem.PreRenderTabItem">
<summary>
Occurs before any tab rendering is done
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStripItem.PostRenderTabItem">
<summary>
Occurs After all tab rendering is complete
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStripItem.GetTabTextBounds">
<summary>
Occurs when the control needs to get the tab's Text Bounds
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStripItem.GetTabImageBounds">
<summary>
Occurs when the control needs to get the tab's Image Bounds
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStripItem.GetTabCloseBounds">
<summary>
Occurs when the control needs to get the tab's Close Button Bounds
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStripItem.TabStripPaintBackground">
<summary>
Occurs when the TabStrip background needs painted
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStripItem.TabStripTabColorChanged">
<summary>
Occurs when the TabStrip TabColor has changed
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SuperTabStripItem.TabStripColorChanged">
<summary>
Occurs when the TabStrip Color has changed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.AutoCloseTabs">
<summary>
Gets or sets AutoCloseTabs
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.AutoSelectAttachedControl">
<summary>
Gets or sets whether the control attached to the TabItem.AttachedControl property
is automatically selected when TabItem becomes the selected tab. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.TabCloseButtonNormal">
<summary>
Gets or sets TabCloseButtonNormal
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.TabCloseButtonHot">
<summary>
Gets or sets TabCloseButtonHot
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.TabCloseButtonPressed">
<summary>
Gets or sets TabCloseButtonPressed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.TabHorizontalSpacing">
<summary>
Gets or sets TabHorizontalSpacing
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.TabVerticalSpacing">
<summary>
Gets or sets TabVerticalSpacing
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.CloseButtonOnTabsVisible">
<summary>
Gets or sets CloseButtonOnTabsVisible
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.CloseButtonOnTabsAlwaysDisplayed">
<summary>
Gets or sets CloseButtonOnTabsAlwaysDisplayed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.CloseButtonPosition">
<summary>
Gets or sets CloseButtonPosition
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.ControlBox">
<summary>
Gets the ControlBox
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.DisplaySelectedTextOnly">
<summary>
Gets or sets DisplaySelectedTextOnly
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.Expanded">
<summary>
Gets or set the Expanded state
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.TabFont">
<summary>
Gets or sets the tab font
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.SelectedTabFont">
<summary>
Gets or sets the selected tab font
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.HorizontalText">
<summary>
Gets or sets the HorizontalText
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.ImageAlignment">
<summary>
Gets or sets the default alignment of the Image within the tab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.ItemPadding">
<summary>
Gets or sets the BaseItem tab padding.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.RotateVerticalText">
<summary>
Gets or sets RotateVerticalText
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.ShowFocusRectangle">
<summary>
Gets or sets ShowFocusRectangle
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.FixedTabSize">
<summary>
Gets or sets the FixedTabSize
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.IsTabDragging">
<summary>
Gets or sets
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.MinTabStripHeight">
<summary>
Gets the MinTabStripHeight
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.ReorderTabsEnabled">
<summary>
Gets or sets ReorderTabsEnabled
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.SelectedTab">
<summary>
Gets or sets the selected tab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.SelectedTabIndex">
<summary>
Gets or sets the selected tab index
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.TabAlignment">
<summary>
Gets or sets the tab alignment
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.TabLayoutType">
<summary>
Gets or sets the TabLayoutType
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.TabStripColor">
<summary>
Gets or sets the TabStripColor
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.TabStyle">
<summary>
Gets or sets the TabStyle
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.TextAlignment">
<summary>
Gets or sets the TextAlignment
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.FirstVisibleTab">
<summary>
Gets the First Visible Tab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.HotTab">
<summary>
Gets the HotTab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.InsertTab">
<summary>
Gets the InsertTab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.InsertBefore">
<summary>
Gets whether to insert before or after
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.MouseOverTab">
<summary>
Gets the MouseOver tab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.IsVertical">
<summary>
Gets TabStrip vertical orientation
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.LastVisibleTab">
<summary>
Gets the Last Visible Tab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.TabCloseButtonSize">
<summary>
Gets the tab close button size
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.TabDisplay">
<summary>
Gets the TabDisplay
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.TabItemsBounds">
<summary>
Gets or sets the TabItemsBounds
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.TabLines">
<summary>
Gets or sets the number of TabLines
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.TabStrip">
<summary>
Gets the TabStrip
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.VisibleTabCount">
<summary>
Gets the visible tab count
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripItem.VisibleTab">
<summary>
Gets or sets the promoted visible tab
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ValueChangingEventArgs`2">
<summary>
Generic ValueChangingEventArgs
</summary>
<typeparam name="T1">oldValue type</typeparam>
<typeparam name="T2">newValue type</typeparam>
</member>
<member name="P:DevComponents.DotNetBar.ValueChangingEventArgs`2.OldValue">
<summary>
Gets the old value
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ValueChangingEventArgs`2.NewValue">
<summary>
Gets the new value
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ValueChangingSourceEventArgs`3">
<summary>
Generic ValueChangingSourceEventArgs
</summary>
<typeparam name="T1">oldValue type</typeparam>
<typeparam name="T2">newValue type</typeparam>
<typeparam name="T3">EventSource</typeparam>
</member>
<member name="P:DevComponents.DotNetBar.ValueChangingSourceEventArgs`3.OldValue">
<summary>
Gets the old value
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ValueChangingSourceEventArgs`3.NewValue">
<summary>
Gets the new value
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ValueChangingSourceEventArgs`3.EventSource">
<summary>
Gets the eventSource
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ValueChangedEventArgs`2">
<summary>
Generic ValueChangedEventArgs
</summary>
<typeparam name="T1">oldValue type</typeparam>
<typeparam name="T2">newValue type</typeparam>
</member>
<member name="P:DevComponents.DotNetBar.ValueChangedEventArgs`2.OldValue">
<summary>
Gets the old value
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ValueChangedEventArgs`2.NewValue">
<summary>
Gets the new value
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ValueChangedEventArgs`3">
<summary>
Generic ValueChangedSourceEventArgs
</summary>
<typeparam name="T1">oldValue type</typeparam>
<typeparam name="T2">newValue type</typeparam>
<typeparam name="T3">EventSource</typeparam>
</member>
<member name="P:DevComponents.DotNetBar.ValueChangedEventArgs`3.OldValue">
<summary>
Gets the old value
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ValueChangedEventArgs`3.NewValue">
<summary>
Gets the new value
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ValueChangedEventArgs`3.EventSource">
<summary>
Gets the eventSource
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabActionEventArgs.Tab">
<summary>
Gets the tab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripTabActionCancelEventArgs.Tab">
<summary>
Gets the tab
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripTabMovedEventArgs.OldOrder">
<summary>
Gets the old order of the tabs
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabStripTabMovedEventArgs.NewOrder">
<summary>
Gets or sets the new order of the tabs
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SuperTabStripTabColorChangedEventArgs">
<summary>
TabStripTabColorChangedEventArgs
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemLayoutManager.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemLayoutManager.#ctor(DevComponents.DotNetBar.SuperTabStripItem)">
<summary>
Constructor
</summary>
<param name="tabStripItem">Associated SuperTabStripItem</param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemLayoutManager.Layout(DevComponents.UI.ContentManager.IBlock,System.Drawing.Size)">
<summary>
Resizes the content block and sets it's Bounds property to reflect new size.
</summary>
<param name="block">Content block to resize.</param>
<param name="availableSize"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemLayoutManager.MeasureTab(DevComponents.DotNetBar.SuperTabItem)">
<summary>
Measures the given tab
</summary>
<param name="tab"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemLayoutManager.MeasureMarkup(DevComponents.DotNetBar.SuperTabItem,System.Drawing.Graphics,System.Drawing.Font)">
<summary>
Measures the markup text
</summary>
<param name="tab"></param>
<param name="g"></param>
<param name="font"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemLayoutManager.MeasureText(DevComponents.DotNetBar.SuperTabItem,System.Drawing.Graphics,System.Drawing.Font)">
<summary>
Measures the given text
</summary>
<param name="tab"></param>
<param name="g"></param>
<param name="font"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemLayoutManager.FinalizeLayout(System.Drawing.Rectangle,System.Drawing.Rectangle,System.Collections.ArrayList)">
<summary>
Finalizes the layout
</summary>
<param name="containerBounds"></param>
<param name="blocksBounds"></param>
<param name="lines"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemLayoutManager.ReorderLines(System.Collections.ArrayList,System.Int32)">
<summary>
Reorders the lines to keep the selected tab as line 0.
</summary>
<param name="lines"></param>
<param name="line"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemLayoutManager.AdjustLines(System.Collections.ArrayList,System.Int32)">
<summary>
Adjusts the line layout
</summary>
<param name="lines"></param>
<param name="n"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemLayoutManager.GetLineSizes(System.Collections.ArrayList)">
<summary>
Gets the array od line sizes
</summary>
<param name="lines"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemLayoutManager.AdjustBlocks(DevComponents.UI.ContentManager.SerialContentLayoutManager.BlockLineInfo,System.Drawing.Point)">
<summary>
Adjusts the individual blocks within a given line
</summary>
<param name="info"></param>
<param name="pt"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemLayoutManager.SetBlockDisplay(System.Drawing.Rectangle,System.Collections.ArrayList)">
<summary>
Sets the Displayed status for the line blocks
</summary>
<param name="containerBounds"></param>
<param name="lines"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemLayoutManager.GetBreakCount(DevComponents.UI.ContentManager.SerialContentLayoutManager.BlockLineInfo,System.Drawing.Size@)">
<summary>
Gets the count of BeginBreak groups
</summary>
<param name="info"></param>
<param name="size"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemLayoutManager.ProcessBreaks(DevComponents.UI.ContentManager.SerialContentLayoutManager.BlockLineInfo,System.Int32,System.Int32,System.Boolean)">
<summary>
Process item BeginBreaks
</summary>
<param name="info"></param>
<param name="count"></param>
<param name="span"></param>
<param name="vertical"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemLayoutManager.PromoteSelectedTab(System.Drawing.Rectangle,System.Collections.ArrayList)">
<summary>
Makes sure the "VisibleTab" is in fact visible.
</summary>
<param name="containerBounds"></param>
<param name="lines"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemLayoutManager.FindSelectedLine(System.Collections.ArrayList)">
<summary>
Determines what line th selected tab lies within
</summary>
<param name="lines"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemLayoutManager.FindSelectedBlock(System.Collections.ArrayList)">
<summary>
Finds the SelectedTab block
</summary>
<param name="blocks"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemLayoutManager.ResizeSingleLine(System.Collections.ArrayList)">
<summary>
Resizes single line layouts
</summary>
<param name="lines"></param>
</member>
<member name="M:DevComponents.DotNetBar.SuperTabItemLayoutManager.ResizeMultiLine(System.Collections.ArrayList)">
<summary>
Resizes multiline layouts
</summary>
<param name="lines"></param>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItemLayoutManager.FixedTabSize">
<summary>
gets or sets the FixedTabSize
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItemLayoutManager.TabLayoutOffset">
<summary>
Gets or sets the TabLayoutOffset
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SuperTabItemLayoutManager.TabDisplay">
<summary>
Gets the TabDisplay
</summary>
</member>
<member name="M:DevComponents.DotNetBar.VS2008DockSuperTabItem.TabItemPath">
<summary>
Creates the tab item GraphicsPath
</summary>
<returns>Tab path</returns>
</member>
<member name="M:DevComponents.DotNetBar.VS2008DockSuperTabItem.TopTabPath">
<summary>
Create the Top tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.VS2008DockSuperTabItem.BottomTabPath">
<summary>
Creates the Bottom tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.VS2008DockSuperTabItem.LeftTabPath">
<summary>
Creates the Left tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.VS2008DockSuperTabItem.RightTabPath">
<summary>
Create the Right tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.VS2008DockSuperTabItem.ApplyPredefinedColor(DevComponents.DotNetBar.eTabState,DevComponents.DotNetBar.Rendering.SuperTabItemStateColorTable)">
<summary>
Applies the predefined tab color to the color table
</summary>
<param name="tabState"></param>
<param name="sct"></param>
</member>
<member name="M:DevComponents.DotNetBar.VS2008DockSuperTabItem.ApplyPredefinedColor(DevComponents.DotNetBar.Rendering.SuperTabPanelItemColorTable)">
<summary>
Applies the predefined color to the panel color table
</summary>
<param name="pct"></param>
</member>
<member name="M:DevComponents.DotNetBar.VS2008DockSuperTabStrip.#ctor(DevComponents.DotNetBar.SuperTabStripItem)">
<summary>
Constructor
</summary>
<param name="tabStripItem">Associated SuperTabStripItem</param>
</member>
<member name="P:DevComponents.DotNetBar.VS2008DockSuperTabStrip.TabLayoutOffset">
<summary>
Gets the TabLayoutOffset
</summary>
</member>
<member name="M:DevComponents.DotNetBar.VS2008DocumentSuperTabItem.#ctor(DevComponents.DotNetBar.SuperTabItem)">
<summary>
Constructor
</summary>
<param name="tabItem">Associated SuperTabItem</param>
</member>
<member name="M:DevComponents.DotNetBar.VS2008DocumentSuperTabItem.ContentRectangle">
<summary>
Returns the tab ContentRectangle
</summary>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.VS2008DocumentSuperTabItem.TabItemPath">
<summary>
Creates the tab item GraphicsPath
</summary>
<returns>Tab path</returns>
</member>
<member name="M:DevComponents.DotNetBar.VS2008DocumentSuperTabItem.TopTabPath">
<summary>
Create the Top tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.VS2008DocumentSuperTabItem.BottomTabPath">
<summary>
Creates the Bottom tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.VS2008DocumentSuperTabItem.LeftTabPath">
<summary>
Creates the Left tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.VS2008DocumentSuperTabItem.RightTabPath">
<summary>
Create the Right tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.VS2008DocumentSuperTabStrip.#ctor(DevComponents.DotNetBar.SuperTabStripItem)">
<summary>
Constructor
</summary>
<param name="tabStripItem">Associated SuperTabStripItem</param>
</member>
<member name="M:DevComponents.DotNetBar.VS2008DocumentSuperTabStrip.NextBlockPosition(DevComponents.UI.ContentManager.LayoutManagerPositionEventArgs)">
<summary>
Gets the LayoutManager NextBlockPosition
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.VS2008DocumentSuperTabStrip.NextBlockPosition(DevComponents.DotNetBar.BaseItem,DevComponents.DotNetBar.BaseItem)">
<summary>
Gets the PromoteSelectedTab NextBlockPosition
</summary>
<param name="item"></param>
<param name="vItem"></param>
<returns></returns>
</member>
<member name="P:DevComponents.DotNetBar.VS2008DocumentSuperTabStrip.TabOverlap">
<summary>
Gets the TabOverlap
</summary>
</member>
<member name="P:DevComponents.DotNetBar.VS2008DocumentSuperTabStrip.TabSpacing">
<summary>
Gets the TabSpacing
</summary>
</member>
<member name="P:DevComponents.DotNetBar.VS2008DocumentSuperTabStrip.TabOverlapLeft">
<summary>
Gets the TabOverlapLeft
</summary>
</member>
<member name="P:DevComponents.DotNetBar.VS2008DocumentSuperTabStrip.TabLayoutOffset">
<summary>
Gets the TabLayoutOffset
</summary>
</member>
<member name="P:DevComponents.DotNetBar.VS2008DocumentSuperTabStrip.MinTabSize">
<summary>
Gets the MinTabSize
</summary>
</member>
<member name="M:DevComponents.DotNetBar.WinMediaPlayer12SuperTabItem.#ctor(DevComponents.DotNetBar.SuperTabItem)">
<summary>
Constructor
</summary>
<param name="tabItem">Associated SuperTabItem</param>
</member>
<member name="M:DevComponents.DotNetBar.WinMediaPlayer12SuperTabItem.TabItemPath">
<summary>
Creates the tab item GraphicsPath
</summary>
<returns>Tab path</returns>
</member>
<member name="M:DevComponents.DotNetBar.WinMediaPlayer12SuperTabItem.TopTabPath">
<summary>
Create the Top tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.WinMediaPlayer12SuperTabItem.BottomTabPath">
<summary>
Creates the Bottom tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.WinMediaPlayer12SuperTabItem.LeftTabPath">
<summary>
Creates the Left tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.WinMediaPlayer12SuperTabItem.RightTabPath">
<summary>
Create the Right tab path
</summary>
<returns>GraphicsPath</returns>
</member>
<member name="M:DevComponents.DotNetBar.WinMediaPlayer12SuperTabStrip.#ctor(DevComponents.DotNetBar.SuperTabStripItem)">
<summary>
Constructor
</summary>
<param name="tabStripItem">Associated SuperTabStripItem</param>
</member>
<member name="M:DevComponents.DotNetBar.WinMediaPlayer12SuperTabStrip.NextBlockPosition(DevComponents.UI.ContentManager.LayoutManagerPositionEventArgs)">
<summary>
Gets the Layout manager NextBlockPosition
</summary>
<param name="e"></param>
</member>
<member name="M:DevComponents.DotNetBar.WinMediaPlayer12SuperTabStrip.NextBlockPosition(DevComponents.DotNetBar.BaseItem,DevComponents.DotNetBar.BaseItem)">
<summary>
Gets the "PromoteSelTab" NextBlockPosition
</summary>
<param name="item"></param>
<param name="vItem"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.OnValueChanging(System.EventArgs)">
<summary>
Raises ValueChanging event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.OnValueChanged(System.EventArgs)">
<summary>
Raises ValueChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.RecalcLayout">
<summary>
Forces the button to perform internal layout.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.ShouldSerializeBorderColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.ResetBorderColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.CancelAnimation">
<summary>
Cancels animation if in progress.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.ShouldSerializeOffBackColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.ResetOffBackColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.ShouldSerializeOnBackColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.ResetOnBackColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.ShouldSerializeOnTextColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.ResetOnTextColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.ShouldSerializeOffTextColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.ResetOffTextColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.ShouldSerializeSwitchBorderColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.ResetSwitchBorderColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.ShouldSerializeSwitchBackColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.ResetSwitchBackColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.ShouldSerializeTextColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.ResetTextColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.SetValueAndAnimate(System.Boolean,DevComponents.DotNetBar.eEventSource)">
<summary>
Sets the value of the control with state transition animation (if enabled) and specifies the source of the action.
</summary>
<param name="newValue">New value for Value property.</param>
<param name="source">Source of the action.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.SetValue(System.Boolean,DevComponents.DotNetBar.eEventSource)">
<summary>
Sets the value of the control and specifies the source of the action.
</summary>
<param name="newValue">New value for Value property.</param>
<param name="source">Source of the action.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.ShouldSerializeReadOnlyMarkerColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.ResetReadOnlyMarkerColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.OnValueObjectChanged(System.EventArgs)">
<summary>
Raises ValueObjectChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Controls.SwitchButton.OnCommandChanged">
<summary>
Called when Command property value changes.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.SwitchButton.ValueChanging">
<summary>
Occurs before Value property has changed and it allows you to cancel the change.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.SwitchButton.ValueChanged">
<summary>
Occurs after Value property has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.Value">
<summary>
Gets or sets the switch value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.BorderColor">
<summary>
Gets or sets the item border color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.AnimationEnabled">
<summary>
Gets or sets whether state transition animation is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.OffBackColor">
<summary>
Gets or sets the color of the OFF state background.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.OnBackColor">
<summary>
Gets or sets the color of the ON state background.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.OnTextColor">
<summary>
Gets or sets the color of the ON state text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.OffTextColor">
<summary>
Gets or sets the color of the OFF state text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.SwitchBorderColor">
<summary>
Gets or sets the border color of the button switch.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.SwitchBackColor">
<summary>
Gets or sets the background color of the switch button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.TextColor">
<summary>
Gets or sets the text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.SwitchFont">
<summary>
Gets or sets the font that is used to draw ON/OFF text on the switch button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.OnText">
<summary>
Gets or sets the text that is displayed on switch when Value property is set to true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.OffText">
<summary>
Gets or sets the text that is displayed on switch when Value property is set to false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.SwitchWidth">
<summary>
Gets or sets the width in pixels of the switch part of the button. Minimum value is 6.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.SwitchBounds">
<summary>
Gets the switch bounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.OnPartBounds">
<summary>
Gets the On part of the switch button bounds excluding the SwitchBounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.OffPartBounds">
<summary>
Gets the Off part of the switch button bounds excluding the SwitchBounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.IsReadOnly">
<summary>
Gets or sets whether button is in read-only state meaning that it appears as enabled but user cannot change its state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.ShowReadOnlyMarker">
<summary>
Gets or sets whether lock marker is visible on face of the control when IsReadOnly is set to true.
Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.ReadOnlyMarkerColor">
<summary>
Gets or sets the color of the read-only marker.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.SwitchClickTogglesValue">
<summary>
Indicates whether clicking left mouse button on the switch part of the item will toggle the switch Value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Controls.SwitchButton.ValueObjectChanged">
<summary>
Occurs after ValueObject property changes.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.ValueObject">
<summary>
Gets or sets the object that represents the Value state of control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.ValueTrue">
<summary>
Gets or sets the value that represents the True state of control when ValueObject property is set to that value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.ValueFalse">
<summary>
Gets or sets the value that represents the False state of control when ValueObject property is set to that value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.Command">
<summary>
Gets or sets the command assigned to the item. Default value is null.
<remarks>Note that if this property is set to null Enabled property will be set to false automatically to disable the item.</remarks>
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Controls.SwitchButton.CommandParameter">
<summary>
Gets or sets user defined data value that can be passed to the command when it is executed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.SwitchButtonItem">
<summary>
Represents the switch button UI element.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.OnValueChanging(DevComponents.DotNetBar.Events.CancelableEventSourceArgs)">
<summary>
Raises ValueChanging event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.OnValueChanged(DevComponents.DotNetBar.Events.EventSourceArgs)">
<summary>
Raises ValueChanged event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.#ctor">
<summary>
Creates new instance of SwitchButtonItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.#ctor(System.String)">
<summary>
Creates new instance of SwitchButtonItem and assigns the name to it.
</summary>
<param name="sItemName">Item name.</param>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.#ctor(System.String,System.String)">
<summary>
Creates new instance of SwitchButtonItem and assigns the name and text to it.
</summary>
<param name="sItemName">Item name.</param>
<param name="itemText">item text.</param>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.Copy">
<summary>
Returns copy of the item.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.InternalCopyToItem(DevComponents.DotNetBar.SwitchButtonItem)">
<summary>
Copies the SwitchButtonItem specific properties to new instance of the item.
</summary>
<param name="copy">New SwitchButtonItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.CopyToItem(DevComponents.DotNetBar.BaseItem)">
<summary>
Copies the SwitchButtonItem specific properties to new instance of the item.
</summary>
<param name="copy">New SwitchButtonItem instance.</param>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.SetValue(System.Boolean,DevComponents.DotNetBar.eEventSource)">
<summary>
Sets the value of the control and specifies the source of the action.
</summary>
<param name="newValue">New value for Value property.</param>
<param name="source">Source of the action.</param>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.SetValueAndAnimate(System.Boolean,DevComponents.DotNetBar.eEventSource)">
<summary>
Sets the value of the control with state transition animation (if enabled) and specifies the source of the action.
</summary>
<param name="value">New value for Value property.</param>
<param name="source">Source of the action.</param>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.CancelAnimation">
<summary>
Cancels any current inprogress animation.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.ShouldSerializeOffBackColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.ResetOffBackColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.ShouldSerializeOnBackColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.ResetOnBackColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.ShouldSerializeOnTextColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.ResetOnTextColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.ShouldSerializeOffTextColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.ResetOffTextColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.ShouldSerializeBorderColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.ResetBorderColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.ShouldSerializeSwitchBorderColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.ResetSwitchBorderColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.ShouldSerializeSwitchBackColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.ResetSwitchBackColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.ShouldSerializeTextColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.ResetTextColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.ShouldSerializeReadOnlyMarkerColor">
<summary>
Gets whether property should be serialized.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.SwitchButtonItem.ResetReadOnlyMarkerColor">
<summary>
Resets property to its default value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SwitchButtonItem.ValueChanging">
<summary>
Occurs before Value property has changed and it allows you to cancel the change.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.SwitchButtonItem.ValueChanged">
<summary>
Occurs after Value property has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.IsMarkupSupported">
<summary>
Gets whether item supports text markup. Default is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.EnableMarkup">
<summary>
Gets or sets whether text-markup support is enabled for items Text property. Default value is true.
Set this property to false to display HTML or other markup in the item instead of it being parsed as text-markup.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.Text">
<summary>
Gets or sets the text associated with this item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.Value">
<summary>
Gets or sets the switch value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.SwitchClickTogglesValue">
<summary>
Indicates whether clicking left mouse button on the switch part of the item will toggle the switch Value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.SwitchBounds">
<summary>
Gets the switch bounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.ButtonBounds">
<summary>
Gets the button bounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.OnPartBounds">
<summary>
Gets the On part of the switch button bounds excluding the SwitchBounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.OffPartBounds">
<summary>
Gets the Off part of the switch button bounds excluding the SwitchBounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.SwitchOffset">
<summary>
Gets or sets the switch offset from its initial position. Used for animation and dragging of the switch.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.SwitchPressed">
<summary>
Gets whether switch part of the button is pressed using mouse left button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.SwitchWidth">
<summary>
Gets or sets the width in pixels of the switch part of the button. Minimum value is 6.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.OnText">
<summary>
Gets or sets the text that is displayed on switch when Value property is set to true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.OffText">
<summary>
Gets or sets the text that is displayed on switch when Value property is set to false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.IsAnimationEnabled">
<summary>
Gets whether fade effect is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.AnimationEnabled">
<summary>
Gets or sets whether state transition animation is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.ButtonWidth">
<summary>
Gets or sets the width of the switch button. Must be greater than SwitchWidth.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.ButtonHeight">
<summary>
Gets or sets the height of the switch button. Must be greater than 5.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.TextPadding">
<summary>
Gets or sets text padding.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.Margin">
<summary>
Gets or sets switch margin.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.OffBackColor">
<summary>
Gets or sets the color of the OFF state background.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.OnBackColor">
<summary>
Gets or sets the color of the ON state background.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.OnTextColor">
<summary>
Gets or sets the color of the ON state text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.OffTextColor">
<summary>
Gets or sets the color of the OFF state text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.BorderColor">
<summary>
Gets or sets the item border color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.SwitchBorderColor">
<summary>
Gets or sets the border color of the button switch.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.SwitchBackColor">
<summary>
Gets or sets the background color of the switch button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.TextVisible">
<summary>
Gets or sets whether caption/label set using Text property is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.TextColor">
<summary>
Gets or sets the text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.SwitchFont">
<summary>
Gets or sets the font that is used to draw ON/OFF text on the switch button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.IsReadOnly">
<summary>
Gets or sets whether button is in read-only state meaning that it appears as enabled but user cannot change its state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.ShowReadOnlyMarker">
<summary>
Gets or sets whether lock marker is visible on face of the control when IsReadOnly is set to true.
Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.SwitchButtonItem.ReadOnlyMarkerColor">
<summary>
Gets or sets the color of the read-only marker.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Rendering.SwitchButtonRenderEventArgs">
<summary>
Provides data for SwitchButton rendering.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SwitchButtonRenderEventArgs.Graphics">
<summary>
Gets or sets Graphics object group is rendered on.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SwitchButtonRenderEventArgs.SwitchButtonItem">
<summary>
Gets or sets the reference to SwitchButtonItem being rendered.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SwitchButtonRenderEventArgs.ColorScheme">
<summary>
ColorScheme object that is used to provide colors for rendering check box item in legacy styles like Office 2003. Office 2007 style
uses color tables provided by renderer.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SwitchButtonRenderEventArgs.RightToLeft">
<summary>
Indicates whether item is in Right-To-Left environment.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SwitchButtonRenderEventArgs.Font">
<summary>
Gets or sets the text font.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Rendering.SwitchButtonRenderEventArgs.ItemPaintArgs">
<summary>
Gets or sets the ItemPaintArgs reference.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Rendering.SwitchButtonRenderEventArgs.#ctor(System.Drawing.Graphics,DevComponents.DotNetBar.SwitchButtonItem,DevComponents.DotNetBar.ColorScheme,System.Drawing.Font,System.Boolean)">
<summary>
Creates new instance of the object and provides default values.
</summary>
<param name="g">Reference to Graphics object</param>
<param name="item">Reference to SwitchButtonItem</param>
<param name="cs">Reference to legacy ColorScheme</param>
<param name="f">Indicates the font for the text.</param>
<param name="rtl">Indicates whether item is in Right-To-Left environment.</param>
</member>
<member name="M:DevComponents.DotNetBar.Symbols.GetFont(System.Single,DevComponents.DotNetBar.eSymbolSet)">
<summary>
Returns specific font set at specified size/
</summary>
<param name="fontSize">Font size</param>
<param name="symbolSet">Symbol set to return</param>
<returns>Font</returns>
</member>
<member name="M:DevComponents.DotNetBar.Symbols.GetFontAwesome(System.Single)">
<summary>
Returns FontAwesome at specific size.
</summary>
<param name="fontSize">Font size in points</param>
<returns>Font in desired size.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Symbols.GetFontMaterial(System.Single)">
<summary>
Returns FontAwesome at specific size.
</summary>
<param name="fontSize">Font size in points</param>
<returns>Font in desired size.</returns>
</member>
<member name="P:DevComponents.DotNetBar.Symbols.FontAwesome">
<summary>
Gets FontAwesome at default size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Symbols.FontAwesomeFamily">
<summary>
Returns FontAwesome Family.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Symbols.FontMaterial">
<summary>
Gets Material Font at default size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Symbols.FontMaterialFamily">
<summary>
Returns Material Font Family.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Symbols.FontMaterialDefaultSize">
<summary>
Gets the default size for the Material font size in points.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Symbols.FontAwesomeDefaultSize">
<summary>
Gets the default size for the FontAwesome font size in points.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TabColors">
<summary>
Represents colors for the active tab.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabColors.#ctor">
<summary>
Creates new instance of the object.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabColors.ShouldSerializeBackColor">
<summary>
Returns whether property should be serialized.
</summary>
<returns>true if property should be serialized otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.TabColors.ResetBackColor">
<summary>
Resets property to the default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabColors.ShouldSerializeBackColor2">
<summary>
Returns whether property should be serialized.
</summary>
<returns>true if property should be serialized otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.TabColors.ResetBackColor2">
<summary>
Resets property to the default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabColors.ShouldSerializeLightBorderColor">
<summary>
Returns whether property should be serialized.
</summary>
<returns>true if property should be serialized otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.TabColors.ResetLightBorderColor">
<summary>
Resets property to the default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabColors.ShouldSerializeDarkBorderColor">
<summary>
Returns whether property should be serialized.
</summary>
<returns>true if property should be serialized otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.TabColors.ResetDarkBorderColor">
<summary>
Resets property to the default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabColors.ShouldSerializeBorderColor">
<summary>
Returns whether property should be serialized.
</summary>
<returns>true if property should be serialized otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.TabColors.ResetBorderColor">
<summary>
Resets property to the default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabColors.ShouldSerializeTextColor">
<summary>
Returns whether property should be serialized.
</summary>
<returns>true if property should be serialized otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.TabColors.ResetTextColor">
<summary>
Resets property to the default value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabColors.ColorChanged">
<summary>
Occurs after color property has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColors.BackColor">
<summary>
Gets or sets the background color of the tab when inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColors.BackColor2">
<summary>
Gets or sets the target gradient background color of the tab when inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColors.BackColorGradientAngle">
<summary>
Gets or sets the gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColors.BackgroundColorBlend">
<summary>
Gets the collection that defines the multi-color gradient background for tab item..
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColors.LightBorderColor">
<summary>
Gets or sets the light border color when tab is inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColors.DarkBorderColor">
<summary>
Gets or sets the dark border color when tab is inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColors.BorderColor">
<summary>
Gets or sets the border color when tab is inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColors.TextColor">
<summary>
Gets or sets the text color when tab is inactive.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TabColorScheme">
<summary>
Represents the class that defines colors for a tab control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabColorScheme.#ctor">
<summary>
Default constructor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabColorScheme.#ctor(DevComponents.DotNetBar.eTabStripStyle)">
<summary>
Default contructor that accepts style.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabColorScheme.Refresh">
<summary>
Refreshes colors stored in the color scheme. This method is used for example to refresh the color after system display colors have changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabColorScheme.GenerateFlatColorScheme">
<summary>
Generates color scheme for flat style.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabColorScheme.GenerateOffice2003ColorScheme">
<summary>
Generates color scheme for Office 2003 style.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabColorScheme.GenerateVS2005DocumentColorScheme">
<summary>
Generates the VS2005 document tab like color scheme.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabColorScheme.GenerateThemedColorScheme">
<summary>
Generates Windows XP Themed color scheme.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabColorScheme.GenerateOneNoteColorScheme">
<summary>
Generates OneNote style color scheme.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabColorScheme.GenerateVS2005ColorScheme(System.Boolean)">
<summary>
Generates VS2005 style color scheme.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabColorScheme.GenerateRoundHeaderColorScheme">
<summary>
Generates OneNote style color scheme.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabColorScheme.GenerateOffice2007DocumentColorScheme">
<summary>
Generates OneNote style color scheme.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabColorScheme.ResetChangedFlag">
<summary>
Resets changed flag for all color properties. When changed flag is set for a color property color is not automatically generated for that property.
Reseting the flag will ensure that all colors are automatically generated.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabColorScheme.ApplyPredefinedColor(DevComponents.DotNetBar.TabItem,DevComponents.DotNetBar.eTabItemColor)">
<summary>
Applies predefinied tab item color scheme to the tab.
</summary>
<param name="item">Tab item to apply color to.</param>
<param name="c">Predefined color to apply</param>
</member>
<member name="M:DevComponents.DotNetBar.TabColorScheme.ApplyPredefinedColor(DevComponents.DotNetBar.ISimpleTab,DevComponents.DotNetBar.eTabItemColor)">
<summary>
Applies predefinied tab item color scheme to the tab.
</summary>
<param name="item">Tab item to apply color to.</param>
<param name="c">Predefined color to apply</param>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.Style">
<summary>
Gets or sets the style that color scheme represents.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.Themed">
<summary>
Gets or sets whether themed color scheme is generated.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.SchemeChanged">
<summary>
Indicates whether any of the colors has changed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabBackgroundImage">
<summary>
Gets or sets the tab-strip background image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabBackground">
<summary>
Specifies the background color of the tab control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabBackground2">
<summary>
Specifies the target gradient background color of the tab control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabBackgroundGradientAngle">
<summary>
Specifies the gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabBorder">
<summary>
Specifies the border color of the tab control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabPanelBackground">
<summary>
Specifies the background color of the tab panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabPanelBackground2">
<summary>
Specifies the target gradient background color of the tab panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabPanelBackgroundGradientAngle">
<summary>
Specifies the gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabPanelBorder">
<summary>
Specifies the border color of the tab panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemBorder">
<summary>
Specifies the border color of the tab item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemBorderLight">
<summary>
Specifies the light border color of the tab item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemBorderDark">
<summary>
Specifies the dark border color of the tab item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemBackground">
<summary>
Specifies the background color of the tab item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemBackground2">
<summary>
Specifies the target gradient background color of the tab item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemBackgroundGradientAngle">
<summary>
Specifies the gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemBackgroundColorBlend">
<summary>
Gets the collection that defines the multi-color gradient background for tab item..
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemText">
<summary>
Specifies the text of the tab item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemHotBorder">
<summary>
Specifies the border color of the tab item when mouse is over it.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemHotBorderLight">
<summary>
Specifies the light border color of the tab item when mouse is over it.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemHotBorderDark">
<summary>
Specifies the dark border color of the tab item when mouse is over it.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemHotBackground">
<summary>
Specifies the background color of the tab item when mouse is over it.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemHotBackground2">
<summary>
Specifies the target gradient background color of the tab item when mouse is over it.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemHotBackgroundGradientAngle">
<summary>
Specifies the gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemHotBackgroundColorBlend">
<summary>
Gets the collection that defines the multi-color gradient background for tab item..
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemHotText">
<summary>
Specifies the text color of the tab item when mouse is over it.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemSelectedBorder">
<summary>
Specifies the border color of the tab item when selected.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemSelectedBorderLight">
<summary>
Specifies the light border color of the tab item when selected.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemSelectedBorderDark">
<summary>
Specifies the dark border color of the tab item when selected.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemSelectedBackground">
<summary>
Specifies the background color of the tab item when selected.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemSelectedBackground2">
<summary>
Specifies the target gradient background color of the tab item when selected.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemSelectedBackgroundGradientAngle">
<summary>
Specifies the gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemSelectedBackgroundColorBlend">
<summary>
Gets the collection that defines the multi-color gradient background for tab item..
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemSelectedText">
<summary>
Specifies the text color of the tab item when selected.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemSeparator">
<summary>
Specifies the tab item separator color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.TabItemSeparatorShade">
<summary>
Specifies the tab item separator shadow color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabColorScheme.NavigationBoxForeColor">
<summary>
Specifies the text of the tab item.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TabControl">
<summary>
Summary description for TabControl.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.TabControl.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabControl.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabControl.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabControl.ShouldSerializeBackColor">
<summary>
Gets whether property should be serialized. Used by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabControl.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.TabControl.ApplyDefaultPanelStyle(DevComponents.DotNetBar.TabControlPanel)">
<summary>
Applies default tab colors to the panel
</summary>
<param name="panel">Panel to apply colors to.</param>
</member>
<member name="M:DevComponents.DotNetBar.TabControl.ResumeLayout(System.Boolean)">
<summary>
Resumes normal layout logic. Optionally forces an immediate layout of pending layout requests.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabControl.SyncTabStripSize">
<summary>
Resizes the portion of the control that holds the tabs.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabControl.CreateTab(System.String)">
<summary>
Creates new tab and tab panel and adds it to the Tabs collection.
</summary>
<param name="tabText">Tab text.</param>
<returns>Reference to newly created TabItem.</returns>
</member>
<member name="M:DevComponents.DotNetBar.TabControl.CreateTab(System.String,System.Int32)">
<summary>
Creates new tab and tab panel and inserts it at specified position inside of Tabs collection.
</summary>
<param name="tabText">Tab text.</param>
<param name="insertAt">Index to insert newly created tab at. -1 will append tab to the end of Tabs collection.</param>
<returns>Reference to newly created TabItem.</returns>
</member>
<member name="M:DevComponents.DotNetBar.TabControl.SelectPreviousTab">
<summary>
Selects previous visible tab. Returns true if previous tab was found for selection.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabControl.SelectNextTab">
<summary>
Selects next visible tab. Returns true if next tab was found for selection.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabControl.ResetColorScheme">
<summary>
Resets color scheme to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabControl.ShouldSerializeFixedTabSize">
<summary>
Memeber used by Windows Forms designer.
</summary>
<returns>true if property should be serialized.</returns>
</member>
<member name="M:DevComponents.DotNetBar.TabControl.ResetFixedTabSize">
<summary>
Memeber used by Windows Forms designer to reset property to default value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabControl.SelectedTabChanged">
<summary>
Occurs when selected tab changes.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabControl.SelectedTabChanging">
<summary>
Occurs before selected tab changes and gives you opportunity to cancel the change.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabControl.TabMoved">
<summary>
Occurs when tab is dragged by user.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabControl.NavigateBack">
<summary>
Occurs when the user navigates back using the back arrow.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabControl.NavigateForward">
<summary>
Occurs when the user navigates forward using the forward arrow.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabControl.TabItemClose">
<summary>
Occurs when tab item is closing.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabControl.TabItemOpen">
<summary>
Occurs when tab item is added to the tabs collection.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabControl.BeforeTabDisplay">
<summary>
Occurs before control or item attached to the tab is displayed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabControl.TabRemoved">
<summary>
Occurs after tab item has been removed from tabs collection.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.BackColor">
<summary>
Gets or sets the background color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.Tabs">
<summary>
Gets the collection of all tabs.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.TabsVisible">
<summary>
Gets or sets whether tabs are visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.TabStrip">
<summary>
Returns reference to internal tab strip control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.TabStripTabStop">
<summary>
Gets or sets whether TabStrip will get focus when Tab key is used. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.BackgroundImage">
<summary>
Use TabControlPanel.Style property to set the background image for each tab panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.ControlTabNavigationEnabled">
<summary>
Gets or sets whether pressing Ctrl+Tab keys will cycle through the selected tabs. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.AntiAlias">
<summary>
Gets or sets whether tabs use anti-alias smoothing when painted. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.Animate">
<summary>
Gets or sets whether the tab scrolling is animated.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.AutoHideSystemBox">
<summary>
Gets or sets whether system box that enables scrolling and closing of the tabs is automatically hidden when tab items size does not exceed the size of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.CanReorderTabs">
<summary>
Specifes whether end-user can reorder the tabs.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.AutoCloseTabs">
<summary>
Gets or sets whether tab is automatically closed when close button is clicked. Closing the tab will remove tab being closed from Tabs collection
and it will remove the panel as well. Default value is false which means that tab will not be closed and you should handle TabClose event to
perform desired action as result of user closing the tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.CloseButtonVisible">
<summary>
Gets or sets whether the Close button that closes the active tab is visible on system box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.CloseButtonOnTabsVisible">
<summary>
Gets or sets whether close button is visible on each tab instead of in system box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.CloseButtonOnTabsAlwaysDisplayed">
<summary>
Gets or sets whether close button on tabs when visible is displayed for every tab state. Default value is true. When set to false
the close button will be displayed only for selected and tab that mouse is currently over.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.CloseButtonPosition">
<summary>
Gets or sets the position of the close button displayed on each tab. Default value is Left.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.TabCloseButtonNormal">
<summary>
Gets or sets custom image that is used on tabs as Close button that allows user to close the tab.
Use TabCloseButtonHot property to specify image that is used when mouse is over the close button. Note that image size must
be same for both images.
Default value is null
which means that internal representation of close button is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.TabCloseButtonHot">
<summary>
Gets or sets custom image that is used on tabs as Close button whem mouse is over the close button.
To use this property you must set TabCloseButtonNormal as well. Note that image size for both images must be same.
Default value is null which means that internal representation of close button is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.DisplaySelectedTextOnly">
<summary>
Gets or sets whether only selected tab is displaying it's text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.ImageList">
<summary>
Gets or sets the image list used by tab items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.ScrollOffset">
<summary>
Gets or sets scrolling offset of the first tab. You can use this property to programmatically scroll the tab strip.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.Style">
<summary>
Gets or sets Tab Control style. Theme style is supported only on themed OS and only for bottom or top aligned tabs.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.ThemeAware">
<summary>
Specifies whether tab is drawn using Themes when running on OS that supports themes like Windows XP.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.TabScrollAutoRepeat">
<summary>
Gets or sets whether tabs are scrolled continuously while mouse is pressed over the scroll tab button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.TabScrollRepeatInterval">
<summary>
Gets or sets the auto-repeat interval for the tab scrolling while mouse button is kept pressed over the scroll tab button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.ColorScheme">
<summary>
Gets or sets Tab Color Scheme.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.TabAlignment">
<summary>
Gets or sets the tab alignment within the Tab-Strip control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.SelectedTab">
<summary>
Gets or sets the selected tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.SelectedTabFont">
<summary>
Gets or sets the selected tab Font
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.ShowFocusRectangle">
<summary>
Gets or sets whether focus rectangle is displayed on the tab when tab has input focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.KeyboardNavigationEnabled">
<summary>
Gets or sets whether keyboard navigation using Left and Right arrow keys to select tabs is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.SelectedTabIndex">
<summary>
Gets or sets the index of the selected tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.SelectedPanel">
<summary>
Gets or sets selected tab panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.TabLayoutType">
<summary>
Gets or sets the type of the tab layout.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.MultiLinePanelAlignSelectedTab">
<summary>
Indicates whether selected tab is aligned with the panel in multiple lines use case.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControl.FixedTabSize">
<summary>
Gets or sets the fixed tab size in pixels. Either Height or Width can be set or both.
Value of 0 indicates that size is automatically calculated which is
default behavior.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TabControlPanel">
<summary>
Represents Panel for the Tab Control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabControlPanel.#ctor">
<summary>
Default constructor.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControlPanel.TabItem">
<summary>
Gets or sets TabItem that this panel is attached to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControlPanel.UseCustomStyle">
<summary>
Indicates whether style of the panel is managed by tab control automatically.
Set this to true if you would like to control style of the panel.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabControlPanel.Dock">
<summary>
Gets or sets which edge of the parent container a control is docked to.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TabItem">
<summary>
Represents the Tab on the Tab-Strip control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabItem.#ctor(System.ComponentModel.IContainer)">
<summary>
Default constructor.
</summary>
<param name="container">Container object.</param>
</member>
<member name="M:DevComponents.DotNetBar.TabItem.#ctor">
<summary>
Default constructor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabItem.GetTabFont">
<summary>
Returns the font for the tab text.
</summary>
<returns>Reference to the font object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.TabItem.PerformClick">
<summary>
Raises the Click event.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabItem.MouseDown">
<summary>
Occurs when mouse is pressed over the tab item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabItem.MouseUp">
<summary>
Occurs when mouse button is released over the tab item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabItem.MouseHover">
<summary>
Occurs when mouse hovers over the tab item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabItem.MouseEnter">
<summary>
Occurs when mouse enters the tab item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabItem.MouseLeave">
<summary>
Occurs when mouse leaves the tab item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabItem.MouseMove">
<summary>
Occurs when mouse moves over the tab item.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabItem.Click">
<summary>
Occurs when mouse click is performed on the tab item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.AccessibleObject">
<summary>
Gets the AccessibleObject assigned to the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.ImageIndex">
<summary>
Gets or sets the tab Image index.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.Image">
<summary>
Gets or sets the tab image.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.Icon">
<summary>
Gets or sets the tab icon. Icon has same functionality as Image except that it support Alpha blending.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.Text">
<summary>
Gets or sets the text displayed on the tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.Visible">
<summary>
Gets or sets whether tab is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.DisplayRectangle">
<summary>
Gets the display bounds of the tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.CloseButtonBounds">
<summary>
Gets or sets the bounds of the close button rectangle if displayed on the tab. You should not set value of this property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.AttachedControl">
<summary>
Gets or sets the control that is attached to this tab. When tab is selected the control Visible property is set to true and when tab is unselected the control Visible property is set to false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.BackColor">
<summary>
Gets or sets the background color of the tab when inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.BackColor2">
<summary>
Gets or sets the target gradient background color of the tab when inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.BackColorGradientAngle">
<summary>
Gets or sets the gradient angle.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.LightBorderColor">
<summary>
Gets or sets the light border color when tab is inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.DarkBorderColor">
<summary>
Gets or sets the dark border color when tab is inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.BorderColor">
<summary>
Gets or sets the border color when tab is inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.TextColor">
<summary>
Gets or sets the text color when tab is inactive.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.Name">
<summary>
Gets or sets name of the tab item that can be used to identify item from the code.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.PredefinedColor">
<summary>
Gets or sets the predefined tab color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.Tag">
<summary>
Gets or sets an object that contains data to associate with the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.Tooltip">
<summary>
Gets/Sets informational text (tooltip) for the tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.IsSelected">
<summary>
Returns true if tab is selected tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.TabAlignment">
<summary>
Gets the tab alignment.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.IsMouseOver">
<summary>
Returns true if mouse is over the tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.CloseButtonVisible">
<summary>
Gets or sets whether Close button on the tab is visible when TabStrip.CloseButtonOnTabsVisible property is set to true. Default value is true. You can use this property
to selectively hide Close button on tabs.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.DevComponents#UI#ContentManager#IBlock#Bounds">
<summary>
Gets or sets the bounds of the content block.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItem.DevComponents#UI#ContentManager#IBlock#Margin">
<summary>
Gets or sets item margin only used by certain items in certain containers. Provided only for internal DotNetBar use.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TabItemLayoutManager">
<summary>
Summary description for TabItemLayoutManager.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabItemLayoutManager.Layout(DevComponents.UI.ContentManager.IBlock,System.Drawing.Size)">
<summary>
Resizes the content block and sets it's Bounds property to reflect new size.
</summary>
<param name="block">Content block to resize.</param>
</member>
<member name="P:DevComponents.DotNetBar.TabItemLayoutManager.TextPadding">
<summary>
Gets or sets the padding in pixels for the measured text. Default is 4.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItemLayoutManager.ImagePadding">
<summary>
Gets or sets the padding in pixels for the measured image size. Default is 4.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItemLayoutManager.PaddingHeight">
<summary>
Gets or sets the padding in pixels that is added to the measured height of the tab. Default is 4.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItemLayoutManager.PaddingWidth">
<summary>
Gets or sets the padding in pixels that is added to the measured width of the tab. Default is 0.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItemLayoutManager.HorizontalText">
<summary>
Gets or sets whether text is always layed out horizontaly even if tabs are vertically aligned.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItemLayoutManager.SelectedPaddingWidth">
<summary>
Gets or sets the additional padding for the selected item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabItemLayoutManager.FixedTabSize">
<summary>
Gets or sets the fixed tab size in pixels. Either member can be set. Value of 0 indicates that size is automatically calculated which is
default behavior.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TabsCollection">
<summary>
Summary description for TabsCollection.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabsCollection.Item(System.String)">
<summary>
Get the TabItem with given name. Name comparison is case insensitive.
</summary>
<param name="name"></param>
<returns></returns>
</member>
<member name="T:DevComponents.DotNetBar.TabStrip">
<summary>
Represents Tab-Strip control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.OnTabMouseEnter(DevComponents.DotNetBar.TabItem,System.EventArgs)">
<summary>
Raises TabMouseEnter event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.OnTabMouseLeave(DevComponents.DotNetBar.TabItem,System.EventArgs)">
<summary>
Raises TabMouseLeave event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.OnTabMouseMove(DevComponents.DotNetBar.TabItem,System.Windows.Forms.MouseEventArgs)">
<summary>
Raises TabMouseMove event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.OnTabMouseClick(DevComponents.DotNetBar.TabItem,System.Windows.Forms.MouseEventArgs)">
<summary>
Raises TabMouseClick event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.OnTabMouseHover(DevComponents.DotNetBar.TabItem,System.EventArgs)">
<summary>
Raises TabMouseHover event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.#ctor">
<summary>
Default constructor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.GetSystemBoxRectangle">
<summary>
Returns the bounds of the tab system box if one is available in current tab style.
</summary>
<returns>Rectangle describing the system box bounds.</returns>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.RecalcSize">
<summary>
Recalculates the size of the tabs.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.SelectPreviousTab">
<summary>
Selectes previous visible tab. Returns true if previous tab was found for selection.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.SelectNextTab">
<summary>
Selectes next visible tab. Returns true if next tab was found for selection.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.OnTabsCleared(System.EventArgs)">
<summary>
Invokes the TabCleared event.
</summary>
<param name="e">Provides events arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.EnsureVisible(DevComponents.DotNetBar.TabItem)">
<summary>
Ensures that the tab is visible, scrolling the tab-strip view as necessary.
</summary>
<param name="tab">Tab to make visible.</param>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.StyleManagerStyleChanged(DevComponents.DotNetBar.eDotNetBarStyle)">
<summary>
Called by StyleManager to notify control that style on manager has changed and that control should refresh its appearance if
its style is controlled by StyleManager.
</summary>
<param name="newStyle">New active style.</param>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.RefreshColorScheme">
<summary>
Refreshes the color scheme with the colors from system color table.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.ResetColorScheme">
<summary>
Resets color scheme to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.ShouldSerializeFixedTabSize">
<summary>
Memeber used by Windows Forms designer.
</summary>
<returns>true if property should be serialized.</returns>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.ResetFixedTabSize">
<summary>
Memeber used by Windows Forms designer to reset property to default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.HitTest(System.Int32,System.Int32)">
<summary>
Returns tab item that contains specified coordinates.
</summary>
<param name="x">X - coordinate to hit test</param>
<param name="y">Y - coordinate to hit test</param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.HideToolTip">
<summary>
Hides tooltip for a tab is one is displayed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.ShowToolTip(DevComponents.DotNetBar.TabItem)">
<summary>
Shows tooltip for given tab.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabStrip.ResetHover">
<summary>
Resets Hoover timer.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabStrip.SelectedTabChanged">
<summary>
Occurs after selected tab has changed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabStrip.SelectedTabChanging">
<summary>
Occurs before selected tab changes and gives you opportunity to cancel the change.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabStrip.TabMoved">
<summary>
Occurs when tab is dragged by user.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabStrip.NavigateBack">
<summary>
Occurs when the user navigates back using the back arrow.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabStrip.NavigateForward">
<summary>
Occurs when the user navigates forward using the forward arrow.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabStrip.TabItemClose">
<summary>
Occurs when tab item is closing.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabStrip.TabItemOpen">
<summary>
Occurs when tab item is added to the tabs collection.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabStrip.BeforeTabDisplay">
<summary>
Occurs before control or item attached to the tab is displayed.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabStrip.TabRemoved">
<summary>
Occurs after tab item has been removed from tabs collection.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabStrip.TabsCleared">
<summary>
Occurs after Tabs collection has been cleared.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabStrip.MeasureTabItem">
<summary>
Occurs after the tab item size has been determined and allows you to apply your custom size to the TabItem.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabStrip.PreRenderTabItem">
<summary>
Occurs before tab is rendered and allows you to cancel default tab rendering performed by the control.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabStrip.PostRenderTabItem">
<summary>
Occurs after tab is rendered and allows you to render on top of the default rendering performed by the control.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabStrip.TabMouseEnter">
<summary>
Occurs when mouse enters a tab.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabStrip.TabMouseLeave">
<summary>
Occurs when mouse leaves a tab.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabStrip.TabMouseMove">
<summary>
Occurs when mouse moves over the tab.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabStrip.TabMouseClick">
<summary>
Occurs when mouse clicks the tab.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TabStrip.TabMouseHover">
<summary>
Occurs when mouse hovers over the tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.AntiAlias">
<summary>
Gets or sets whether anti-alias smoothing is used while painting. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.MinTabStripHeight">
<summary>
Returns minimum tab strip height given the style and the tabs it contains.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.TabItemsBounds">
<summary>
Returns the rectangle that contains all the tabs.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.SelectedTabIndex">
<summary>
Gets or sets the index of currently selected tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.SelectedTab">
<summary>
Gets or sets the selected tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.TabScrollAutoRepeat">
<summary>
Gets or sets whether tabs are scrolled continuously while mouse is pressed over the scroll tab button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.TabScrollRepeatInterval">
<summary>
Gets or sets the auto-repeat interval for the tab scrolling while mouse button is kept pressed over the scroll tab button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.CloseButtonVisible">
<summary>
Gets or sets whether the Close button that closes the active tab is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.CloseButtonOnTabsVisible">
<summary>
Gets or sets whether close button is visible on each tab instead of in system box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.CloseButtonOnTabsAlwaysDisplayed">
<summary>
Gets or sets whether close button on tabs when visible is displayed for every tab state. Default value is true. When set to false
the close button will be displayed only for selected and tab that mouse is currently over.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.CloseButtonPosition">
<summary>
Gets or sets the position of the close button displayed on each tab. Default value is Left.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.TabCloseButtonNormal">
<summary>
Gets or sets custom image that is used on tabs as Close button that allows user to close the tab.
Use TabCloseButtonHot property to specify image that is used when mouse is over the close button. Note that image size must
be same for both images.
Default value is null
which means that internal representation of close button is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.TabCloseButtonHot">
<summary>
Gets or sets custom image that is used on tabs as Close button whem mouse is over the close button.
To use this property you must set TabCloseButtonNormal as well. Note that image size for both images must be same.
Default value is null which means that internal representation of close button is used.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.Tabs">
<summary>
Gets the collection of all tabs.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.AutoSelectAttachedControl">
<summary>
Gets or sets whether control attached to the TabItem.AttachedControl property is automatically selected when TabItem becomes selected tab. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.ImageList">
<summary>
Gets or sets the image list used by tab items.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.MultiLinePanelAlignSelectedTab">
<summary>
Indicates whether selected tab is aligned with the panel in multiple lines use case.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.TabLayoutType">
<summary>
Gets or sets the type of the tab layout.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.VariableTabWidth">
<summary>
Gets or sets whether tab size is adjusted to fit the available control size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.ScrollOffset">
<summary>
Gets or sets scrolling offset of the first tab. You can use this property to programmatically scroll the tab strip.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.KeyboardNavigationEnabled">
<summary>
Gets or sets whether keyboard navigation using Left and Right arrow keys to select tabs is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.TabDragCursor">
<summary>
Gets or sets the mouse cursor that is displayed when tab is dragged.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.MouseOverTab">
<summary>
Returns tab mouse is over or null if mouse is not over the tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.SelectedTabFont">
<summary>
Gets or sets the selected tab Font
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.TabAlignment">
<summary>
Gets or sets the tab alignment within the Tab-Strip control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.CanReorderTabs">
<summary>
Specifes whether end-user can reorder the tabs.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.AutoHideSystemBox">
<summary>
Gets or sets whether system box that enables scrolling and closing of the tabs is automatically hidden when tab items size does not exceed the size of the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.BackColor">
<summary>
Gets or sets the background color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.DisplaySelectedTextOnly">
<summary>
Gets or sets whether only selected tab is displaying it's text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.Style">
<summary>
Gets or sets TabStrip style. Theme style is supported only on themed OS and only for bottom or top aligned tabs.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.ThemeAware">
<summary>
Specifies whether tab is drawn using Themes when running on OS that supports themes like Windows XP.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.IsThemed">
<summary>
Gets whether control should be represented in themed style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.ColorScheme">
<summary>
Gets or sets Tab Color Scheme.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.Animate">
<summary>
Gets or sets whether the tab scrolling is animanted.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.FixedTabSize">
<summary>
Gets or sets the fixed tab size in pixels. Either Height or Width can be set or both.
Value of 0 indicates that size is automatically calculated which is
default behavior.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.ShowFocusRectangle">
<summary>
Gets or sets whether focus rectangle is displayed when tab has input focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.MdiTabbedDocuments">
<summary>
Gets or sets whether Tab-Strip control provides Tabbed MDI Child form support. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.MaxMdiCaptionLength">
<summary>
Gets or sets the maximum number of characters that will be used as Tab text from Mdi Child caption.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.ShowMdiChildIcon">
<summary>
Gets or sets whether the Mdi Child Icon is displayed on Tab.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.MdiAutoHide">
<summary>
Gets or sets whether the Tab-strip is automatically hidden when there are not Mdi Child forms open.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.MdiNoFormActivateFlicker">
<summary>
Gets or sets whether flicker associated with switching maximized Mdi child forms is attempted to eliminate. You should set this property to false if you encounter any painting problems with your Mdi child forms.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStrip.MdiForm">
<summary>
Gets or sets Mdi Container form for which Tab-Strip is providing Tabbed MDI Child support.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TabStrip.SelectedTabChangedEventHandler">
<summary>
Event delegate for SelectedTabChanged event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TabStrip.SelectedTabChangingEventHandler">
<summary>
Event delegate for SelectedTabChanging event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TabStrip.TabMovedEventHandler">
<summary>
Event delegate for TabMoved event
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TabStrip.UserActionEventHandler">
<summary>
Event delegate for NavigateBack, NavigateForward and TabItemClose events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TabStripTabChangedEventArgs">
<summary>
Represents the event arguments for tab selection events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.TabStripTabChangedEventArgs.OldTab">
<summary>
Currently selected tab.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.TabStripTabChangedEventArgs.NewTab">
<summary>
Tab being selected.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.TabStripTabChangedEventArgs.EventSource">
<summary>
Specifies the action that caused the event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabStripTabChangedEventArgs.#ctor(DevComponents.DotNetBar.TabItem,DevComponents.DotNetBar.TabItem,DevComponents.DotNetBar.eEventSource)">
<summary>
Default constructor.
</summary>
<param name="oldtab">Currently selected tab.</param>
<param name="newtab">New selection.</param>
</member>
<member name="T:DevComponents.DotNetBar.TabStripTabChangingEventArgs">
<summary>
Represents the event arguments for tab selection events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.TabStripTabChangingEventArgs.OldTab">
<summary>
Currently selected tab.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.TabStripTabChangingEventArgs.NewTab">
<summary>
Tab being selected.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.TabStripTabChangingEventArgs.Cancel">
<summary>
Cancels the selection operation.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.TabStripTabChangingEventArgs.EventSource">
<summary>
Specifies the action that caused the event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabStripTabChangingEventArgs.#ctor(DevComponents.DotNetBar.TabItem,DevComponents.DotNetBar.TabItem,DevComponents.DotNetBar.eEventSource)">
<summary>
Default constructor.
</summary>
<param name="oldtab">Currently selected tab.</param>
<param name="newtab">New selection.</param>
</member>
<member name="T:DevComponents.DotNetBar.TabStripTabMovedEventArgs">
<summary>
Represents the event arguments for tab moving events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.TabStripTabMovedEventArgs.Tab">
<summary>
Tab being moved.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.TabStripTabMovedEventArgs.OldIndex">
<summary>
Moved from index.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.TabStripTabMovedEventArgs.NewIndex">
<summary>
Moving to index.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.TabStripTabMovedEventArgs.Cancel">
<summary>
Cancels the operation.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabStripTabMovedEventArgs.#ctor(DevComponents.DotNetBar.TabItem,System.Int32,System.Int32)">
<summary>
Default Constructor
</summary>
<param name="tab">Tab</param>
<param name="oldindex">Old Index</param>
<param name="newindex">New Index</param>
</member>
<member name="T:DevComponents.DotNetBar.TabStripActionEventArgs">
<summary>
Represents the event arguments for action events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.TabStripActionEventArgs.Cancel">
<summary>
Cancels the operation.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.TabStripActionEventArgs.TabItem">
<summary>
Reference to relevant TabItem, if any, otherwise null/nothing.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabStripActionEventArgs.#ctor">
<summary>
Default Constructor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabSystemBox.HideToolTip">
<summary>
Destroys tooltip window.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eTabStripAlignment">
<summary>
Specifies the tab alignment inside the Tab-Strip control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTabStripAlignment.Left">
<summary>
Tabs are left aligned.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTabStripAlignment.Right">
<summary>
Tabs are right aligned.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTabStripAlignment.Top">
<summary>
Tabs are top aligned.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTabStripAlignment.Bottom">
<summary>
Tabs are bottom aligned.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eTabStripStyle">
<summary>
Indicates tab strip style.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTabStripStyle.Flat">
<summary>
Default VS.NET like flat style.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTabStripStyle.Office2003">
<summary>
Office 2003 like style.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTabStripStyle.OneNote">
<summary>
OneNote like style.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTabStripStyle.VS2005">
<summary>
VS.NET 2005 style tabs.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTabStripStyle.RoundHeader">
<summary>
Tab style where tabs are centered and first and last tab have the corners rounded. This style does not support multi-line tabs or tab scrolling.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTabStripStyle.VS2005Dock">
<summary>
VS.NET 2005 dock style tabs.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTabStripStyle.VS2005Document">
<summary>
VS.NET 2005 document style tabs.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTabStripStyle.SimulatedTheme">
<summary>
Simulated theme style with the horizontal text alignment at all times.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTabStripStyle.Office2007Document">
<summary>
Office 2007 document style.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTabStripStyle.Office2007Dock">
<summary>
Office 2007 dock style.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTabStripStyle.Metro">
<summary>
Metro UI style.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.MeasureTabItemEventHandler">
<summary>
Defines delegate for the MeasureTabItem event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.MeasureTabItemEventArgs">
<summary>
Represents event arguments for MeasureTabItem event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.MeasureTabItemEventArgs.TabItem">
<summary>
Gets the TabItem that is being measured.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.MeasureTabItemEventArgs.Size">
<summary>
Gets or sets the size of the TabItem. The default size calculated by the control will be set by default. You can inspect it and change it to the
custom size by setting this property.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.MeasureTabItemEventArgs.#ctor(DevComponents.DotNetBar.TabItem,System.Drawing.Size)">
<summary>
Creates new instance of the class and initializes it with default values.
</summary>
<param name="tab">TabItem being measured.</param>
<param name="size">Default size.</param>
</member>
<member name="T:DevComponents.DotNetBar.RenderTabItemEventHandler">
<summary>
Defines delegate for the PreRenderTabItem and PostRenderTabItem events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.RenderTabItemEventArgs">
<summary>
Represents event arguments for PreRenderTabItem and PostRenderTabItem event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RenderTabItemEventArgs.TabItem">
<summary>
Gets the reference to the TabItem being rendered. You can use properties like DisplayRectangle to determine the rendering bounds for the tab.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RenderTabItemEventArgs.Cancel">
<summary>
When used in PreRenderTabItem event allows you to cancel the default rendering by setting this property to true.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.RenderTabItemEventArgs.Graphics">
<summary>
Gets the reference to the Graphics object to render the tab on.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.RenderTabItemEventArgs.#ctor(DevComponents.DotNetBar.TabItem,System.Drawing.Graphics)">
<summary>
Creates new instance of the class and initializes it with default values.
</summary>
<param name="tab">Default value for TabItem property.</param>
<param name="g">Default value for Graphics property.</param>
</member>
<member name="T:DevComponents.DotNetBar.TabStripBaseDisplay">
<summary>
Represents base class for tab display.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabStripBaseDisplay.Paint(System.Drawing.Graphics,DevComponents.DotNetBar.TabStrip)">
<summary>
Main method for painting.
</summary>
<param name="g">Reference to graphics object</param>
<param name="tabStrip">TabStrip to paint</param>
</member>
<member name="P:DevComponents.DotNetBar.TabStripBaseDisplay.AntiAlias">
<summary>
Gets or sets whether anti-alias is used for painting the tabs. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStripBaseDisplay.HorizontalText">
<summary>
Gets or sets whether text is drawn horizontaly regardless of tab orientation.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TabStripBaseDisplay.CloseButtonOnTabs">
<summary>
Gets or sets whether close button is painted on each tab.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TabStripOffice2007DockDisplay">
<summary>
Provides display capabilities for TabStrip with Office 2007 Dock style.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TabStripOffice2007DocumentDisplay">
<summary>
Provides display capabilities for TabStrip with Office 2007 Document style.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabStripOffice2007DocumentDisplay.#ctor">
<summary>
Creates new instance of the class.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TabStripRoundHeaderDisplay">
<summary>
Represents class performing the display of tabs with RoundHeader style.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TabStripSimulatedThemeDisplay">
<summary>
Provides display support for SimualtedTheme tab style.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TabStripVS2005DockDisplay">
<summary>
Provides display capabilites for TabStrip with VS2005Dock style.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TabStripVS2005DockDisplay.#ctor">
<summary>
Creates new instance of the class.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TaskDialog">
<summary>
Represent a task-dialog message box window.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TaskDialog.Show(System.String,System.String,System.String,DevComponents.DotNetBar.eTaskDialogButton)">
<summary>
Displays TaskDialog message.
</summary>
<param name="dialogTitle">Title of the window.</param>
<param name="dialogHeader">Task dialog header.</param>
<param name="dialogText">Task dialog text.</param>
<param name="dialogButtons">Displayed buttons.</param>
<returns>Result from task-dialog.</returns>
</member>
<member name="M:DevComponents.DotNetBar.TaskDialog.Show(System.String,System.String,System.String,DevComponents.DotNetBar.eTaskDialogButton,DevComponents.DotNetBar.eTaskDialogBackgroundColor)">
<summary>
Displays TaskDialog message.
</summary>
<param name="dialogTitle">Title of the window.</param>
<param name="dialogHeader">Task dialog header.</param>
<param name="dialogText">Task dialog text.</param>
<param name="dialogButtons">Displayed buttons.</param>
<param name="dialogColor">Specifies the predefined color for the dialog.</param>
<returns>Result from task-dialog.</returns>
</member>
<member name="M:DevComponents.DotNetBar.TaskDialog.Show(System.String,DevComponents.DotNetBar.eTaskDialogIcon,System.String,System.String,DevComponents.DotNetBar.eTaskDialogButton)">
<summary>
Displays TaskDialog message.
</summary>
<param name="dialogTitle">Title of the window.</param>
<param name="dialogIcon">Icon displayed on dialog.</param>
<param name="dialogHeader">Task dialog header.</param>
<param name="dialogText">Task dialog text.</param>
<param name="dialogButtons">Displayed buttons.</param>
<returns>Result from task-dialog.</returns>
</member>
<member name="M:DevComponents.DotNetBar.TaskDialog.Show(System.String,DevComponents.DotNetBar.eTaskDialogIcon,System.String,System.String,DevComponents.DotNetBar.eTaskDialogButton,DevComponents.DotNetBar.eTaskDialogBackgroundColor)">
<summary>
Displays TaskDialog message.
</summary>
<param name="dialogTitle">Title of the window.</param>
<param name="dialogIcon">Icon displayed on dialog.</param>
<param name="dialogHeader">Task dialog header.</param>
<param name="dialogText">Task dialog text.</param>
<param name="dialogButtons">Displayed buttons.</param>
<param name="dialogColor">Specifies the predefined color for the dialog.</param>
<returns>Result from task-dialog.</returns>
</member>
<member name="M:DevComponents.DotNetBar.TaskDialog.Show(DevComponents.DotNetBar.TaskDialogInfo)">
<summary>
Displays TaskDialog message.
</summary>
<param name="info">Specifies the content of the task dialog.</param>
<returns>Result from task-dialog.</returns>
</member>
<member name="M:DevComponents.DotNetBar.TaskDialog.Show(System.Windows.Forms.IWin32Window,DevComponents.DotNetBar.TaskDialogInfo)">
<summary>
Displays TaskDialog message.
</summary>
<param name="owner">Window owner of the task dialog.</param>
<param name="info">Specifies the content of the task dialog.</param>
<returns>Result from task-dialog.</returns>
</member>
<member name="M:DevComponents.DotNetBar.TaskDialog.Close">
<summary>
Closes the task dialog if it is open with eTaskDialogResult.None result.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TaskDialog.Close(DevComponents.DotNetBar.eTaskDialogResult)">
<summary>
Closes the task dialog if it is open with specified result value.
</summary>
<param name="result">Value that will be used as return value from Show method.</param>
</member>
<member name="P:DevComponents.DotNetBar.TaskDialog.EnableGlass">
<summary>
Gets or sets whether TaskDialog form has Windows Vista Glass enabled if running on
Windows Vista with Glass enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TaskDialog.AntiAlias">
<summary>
Gets or sets the anti-alias text-rendering setting for the controls on task-dialog. Default value is true.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TaskDialog.MarkupLinkClick">
<summary>
Occurs when any text markup link on Task-Dialog Box is clicked. Markup links can be created using "a" tag, for example:
<a name="MyLink">Markup link</a>
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TaskDialogInfo">
<summary>
Specifies the information displayed on task-dialog.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TaskDialogInfo.#ctor(System.String,DevComponents.DotNetBar.eTaskDialogIcon,System.String,System.String,DevComponents.DotNetBar.eTaskDialogButton,DevComponents.DotNetBar.eTaskDialogBackgroundColor,DevComponents.DotNetBar.Command[],DevComponents.DotNetBar.Command[],DevComponents.DotNetBar.Command,System.String,System.Drawing.Image)">
<summary>
Initializes a new instance of the TaskDialogInfo structure.
</summary>
<param name="title">Title of dialog.</param>
<param name="taskDialogIcon">Task-dialog icon</param>
<param name="header">Header text.</param>
<param name="text">Dialog main/content text.</param>
<param name="dialogButtons">Dialog buttons displayed.</param>
<param name="dialogColor">Dialog background color.</param>
<param name="radioButtons">Radio Button Commands</param>
<param name="buttons">Button commands.</param>
<param name="checkBoxCommand">Check-box command.</param>
<param name="footerText">Footer text</param>
<param name="footerImage">Footer image.</param>
</member>
<member name="M:DevComponents.DotNetBar.TaskDialogInfo.#ctor(System.String,DevComponents.DotNetBar.eTaskDialogIcon,System.String,System.String,DevComponents.DotNetBar.eTaskDialogButton,DevComponents.DotNetBar.eTaskDialogBackgroundColor,DevComponents.DotNetBar.Command[],DevComponents.DotNetBar.Command[],DevComponents.DotNetBar.Command,System.String,System.Drawing.Image,System.Boolean)">
<summary>
Initializes a new instance of the TaskDialogInfo structure.
</summary>
<param name="title">Title of dialog.</param>
<param name="taskDialogIcon">Task-dialog icon</param>
<param name="header">Header text.</param>
<param name="text">Dialog main/content text.</param>
<param name="dialogButtons">Dialog buttons displayed.</param>
<param name="dialogColor">Dialog background color.</param>
<param name="radioButtons">Radio Button Commands</param>
<param name="buttons">Button commands.</param>
<param name="checkBoxCommand">Check-box command.</param>
<param name="footerText">Footer text</param>
<param name="footerImage">Footer image.</param>
<param name="topMost">Indicates whether TaskDialog is top most.</param>
</member>
<member name="M:DevComponents.DotNetBar.TaskDialogInfo.#ctor(System.String,DevComponents.DotNetBar.eTaskDialogIcon,System.String,System.String,DevComponents.DotNetBar.eTaskDialogButton,DevComponents.DotNetBar.eTaskDialogBackgroundColor)">
<summary>
Initializes a new instance of the TaskDialogInfo structure.
</summary>
<param name="title">Title of dialog.</param>
<param name="taskDialogIcon">Task-dialog icon</param>
<param name="header">Header text.</param>
<param name="text">Dialog main/content text.</param>
<param name="dialogButtons">Dialog buttons displayed.</param>
<param name="dialogColor">Dialog background color.</param>
</member>
<member name="M:DevComponents.DotNetBar.TaskDialogInfo.#ctor(System.String,DevComponents.DotNetBar.eTaskDialogIcon,System.String,System.String,DevComponents.DotNetBar.eTaskDialogButton)">
<summary>
Initializes a new instance of the TaskDialogInfo structure.
</summary>
<param name="title">Title of dialog.</param>
<param name="taskDialogIcon">Task-dialog icon</param>
<param name="header">Header text.</param>
<param name="text">Dialog main/content text.</param>
<param name="dialogButtons">Dialog buttons displayed.</param>
</member>
<member name="M:DevComponents.DotNetBar.TaskDialogInfo.#ctor(System.String,DevComponents.DotNetBar.eTaskDialogIcon,System.String,System.String,DevComponents.DotNetBar.eTaskDialogButton,DevComponents.DotNetBar.eTaskDialogButton)">
<summary>
Initializes a new instance of the TaskDialogInfo structure.
</summary>
<param name="title">Title of dialog.</param>
<param name="taskDialogIcon">Task-dialog icon</param>
<param name="header">Header text.</param>
<param name="text">Dialog main/content text.</param>
<param name="dialogButtons">Dialog buttons displayed.</param>
</member>
<member name="P:DevComponents.DotNetBar.TaskDialogInfo.Title">
<summary>
Gets or sets the task-dialog window title.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TaskDialogInfo.Header">
<summary>
Gets or sets the task-dialog header.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TaskDialogInfo.Text">
<summary>
Gets or sets the task-dialog text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TaskDialogInfo.DialogButtons">
<summary>
Gets or sets the task-dialog buttons displayed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TaskDialogInfo.DialogColor">
<summary>
Gets or sets the task-dialog background color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TaskDialogInfo.RadioButtons">
<summary>
Gets or sets the array of commands that will be used to create the radio-buttons displayed on task-dialog. Each command will be executed as radio-buttons are checked by user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TaskDialogInfo.Buttons">
<summary>
Gets or sets the array of commands that will be used to create the buttons displayed on task-dialog. Each command will be executed as buttons are clicked by user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TaskDialogInfo.FooterText">
<summary>
Gets or sets the footer text displayed on task-dialog.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TaskDialogInfo.CheckBoxCommand">
<summary>
Gets or sets the command that is used to initialize the footer check-box. Command will be executed when check-box state changes by end user.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TaskDialogInfo.TaskDialogIcon">
<summary>
Gets or sets the icon that is displayed on task dialog.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TaskDialogInfo.FooterImage">
<summary>
Gets or sets the image that is displayed in the task-dialog footer. Expected image size is 16x16 pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TaskDialogInfo.TopMost">
<summary>
Gets or sets whether TaskDialog form is top-most. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TaskDialogInfo.DefaultButton">
<summary>
Gets or sets the TaskDialog default button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TaskDialogInfo.FormCloseEnabled">
<summary>
Indicates whether task dialog form close button is enabled, default value is true.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eTaskDialogButton">
<summary>
Specifies the task dialog buttons.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogButton.Ok">
<summary>
OK button will be displayed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogButton.Yes">
<summary>
Yes button will be displayed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogButton.No">
<summary>
No button will be displayed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogButton.Cancel">
<summary>
Cancel button will be displayed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogButton.Retry">
<summary>
Retry button will be displayed.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogButton.Close">
<summary>
Close button will be displayed.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eTaskDialogResult">
<summary>
Specifies the task dialog return values.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogResult.None">
<summary>
No button was clicked because dialog was closed using TaskDialog.Close method.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogResult.Ok">
<summary>
OK button was clicked.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogResult.Yes">
<summary>
Yes button was clicked.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogResult.No">
<summary>
No button was clicked.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogResult.Cancel">
<summary>
Cancel button was clicked.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogResult.Retry">
<summary>
Retry button was clicked.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogResult.Close">
<summary>
Close button was clicked.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogResult.Custom1">
<summary>
Specifies the custom result. Custom result can be specified if TaskDialog.Close method is called to close dialog.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogResult.Custom2">
<summary>
Specifies the custom result. Custom result can be specified if TaskDialog.Close method is called to close dialog.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogResult.Custom3">
<summary>
Specifies the custom result. Custom result can be specified if TaskDialog.Close method is called to close dialog.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eTaskDialogIcon">
<summary>
Define icons available on TaskDialog.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogIcon.None">
<summary>
No icon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogIcon.BlueFlag">
<summary>
Blue flag icon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogIcon.BlueStop">
<summary>
Blue stop icon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogIcon.Bulb">
<summary>
Light bulb, idea icon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogIcon.CheckMark">
<summary>
Check-mark icon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogIcon.CheckMark2">
<summary>
Check-mark icon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogIcon.Delete">
<summary>
Trash-can delete icon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogIcon.Exclamation">
<summary>
Exclamation icon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogIcon.Flag">
<summary>
Flag icon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogIcon.Hand">
<summary>
Hand-stop icon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogIcon.Help">
<summary>
Help icon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogIcon.Information">
<summary>
Informational icon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogIcon.Information2">
<summary>
Informational icon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogIcon.NoEntry">
<summary>
No entry icon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogIcon.Shield">
<summary>
Shield icon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogIcon.ShieldHelp">
<summary>
Shield help icon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogIcon.ShieldOk">
<summary>
Shield OK icon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogIcon.ShieldStop">
<summary>
Shield stop icon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogIcon.Stop">
<summary>
Stop icon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogIcon.Stop2">
<summary>
Stop icon.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogIcon.Users">
<summary>
Users icons.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.TaskDialogForm.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TaskDialogForm.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
</member>
<member name="M:DevComponents.DotNetBar.TaskDialogForm.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TaskDialogForm.TaskBackgroundColor">
<summary>
Gets or sets the task-background color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TaskDialogForm.Result">
<summary>
Gets the task-dialog result
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TaskDialogForm.AntiAlias">
<summary>
Gets or sets the anti-alias text-rendering setting for the controls.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eTaskDialogBackgroundColor">
<summary>
Defines TaskDialog colors.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogBackgroundColor.Default">
<summary>
Task dialog will use default background as specified by current theme.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogBackgroundColor.Silver">
<summary>
Task dialog will use silver background color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogBackgroundColor.Tan">
<summary>
Task dialog will use tan background color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogBackgroundColor.DarkBlue">
<summary>
Task dialog will use dark-blue background color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogBackgroundColor.Blue">
<summary>
Task dialog will use blue background color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogBackgroundColor.Red">
<summary>
Task dialog will use red background color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogBackgroundColor.OliveGreen">
<summary>
Task dialog will use olive-green background color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogBackgroundColor.Purple">
<summary>
Task dialog will use purple background color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogBackgroundColor.Aqua">
<summary>
Task dialog will use aqua background color.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTaskDialogBackgroundColor.Orange">
<summary>
Task dialog will use orange background color.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TextBoxItem">
<summary>
Summary description for TextBoxItem.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TextBoxItem.SelectAll">
<summary>
Selects all text in text box.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TextBoxItem.ShouldSerializeWatermarkColor">
<summary>
Indicates whether property should be serialized by Windows Forms designer.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TextBoxItem.ResetWatermarkColor">
<summary>
Resets the property to default value.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TextBoxItem.ButtonCustomClick">
<summary>
Occurs when ButtonCustom control is clicked.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.TextBoxItem.ButtonCustom2Click">
<summary>
Occurs when ButtonCustom2 control is clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextBoxItem.Bounds">
<summary>
IBlock member implementation
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextBoxItem.UseSystemPasswordChar">
<summary>
Gets or sets a value indicating whether the text in the TextBox control should appear as the default password character.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextBoxItem.PasswordChar">
<summary>
Gets or sets the character used to mask characters of a password in a single-line TextBox control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextBoxItem.Text">
<summary>
Gets or sets the text associated with the editable part of the item.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextBoxItem.Caption">
<summary>
Gets or sets the item caption text displayed next to the text input.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextBoxItem.MaxLength">
<summary>
Gets or sets the maximum number of characters the user can type or paste into the text box control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextBoxItem.WatermarkEnabled">
<summary>
Gets or sets whether watermark text is displayed when control is empty. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextBoxItem.WatermarkImage">
<summary>
Gets or sets the watermark image displayed inside of the control when Text is not set and control does not have input focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextBoxItem.WatermarkImageAlignment">
<summary>
Gets or sets the watermark image alignment.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.TextBoxItem.WatermarkText" -->
<member name="P:DevComponents.DotNetBar.TextBoxItem.WatermarkFont">
<summary>
Gets or sets the watermark font.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextBoxItem.WatermarkColor">
<summary>
Gets or sets the watermark text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextBoxItem.WatermarkBehavior">
<summary>
Gets or sets the watermark hiding behaviour. Default value indicates that watermark is hidden when control receives input focus.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextBoxItem.FocusHighlightEnabled">
<summary>
Gets or sets whether FocusHighlightColor is used as background color to highlight text box when it has input focus. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextBoxItem.FocusHighlightColor">
<summary>
Gets or sets the color used as background color to highlight text box when it has input focus and focus highlight is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextBoxItem.TextAlign">
<summary>
Gets or sets the text-alignment inside of the text box.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextBoxItem.ButtonCustom">
<summary>
Gets the object that describes the settings for the custom button that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextBoxItem.ButtonCustom2">
<summary>
Gets the object that describes the settings for the custom button that can execute an custom action of your choosing when clicked.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TextMarkup.MarkupElement.Measure(System.Drawing.Size,DevComponents.DotNetBar.TextMarkup.MarkupDrawContext)">
<summary>
Measures the element given available size.
</summary>
<param name="availableSize">Size available to element</param>
<param name="g">Reference to graphics object</param>
</member>
<member name="M:DevComponents.DotNetBar.TextMarkup.MarkupElement.MeasureEnd(System.Drawing.Size,DevComponents.DotNetBar.TextMarkup.MarkupDrawContext)">
<summary>
Measures the end tag of an element. Most implementations do not need to do anything but implementations like the ones
that change color should return state back at this time.
</summary>
<param name="availableSize"></param>
<param name="d"></param>
</member>
<member name="M:DevComponents.DotNetBar.TextMarkup.MarkupElement.Render(DevComponents.DotNetBar.TextMarkup.MarkupDrawContext)">
<summary>
Renders element.
</summary>
<param name="d">Provides markup drawing context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.TextMarkup.MarkupElement.RenderEnd(DevComponents.DotNetBar.TextMarkup.MarkupDrawContext)">
<summary>
Renders element tag end. Most implementations do not need to do anything but mplementations like the ones
that change color should return state back at this time.
</summary>
<param name="d">Provides markup drawing context information.</param>
</member>
<member name="M:DevComponents.DotNetBar.TextMarkup.MarkupElement.ArrangeCore(System.Drawing.Rectangle,DevComponents.DotNetBar.TextMarkup.MarkupDrawContext)">
<summary>
Provides final rectangle to element and lets it arrange it's content given new constraint.
</summary>
<param name="finalRect">Final rectangle.</param>
<param name="g"></param>
</member>
<member name="M:DevComponents.DotNetBar.TextMarkup.MarkupElement.Arrange(System.Drawing.Rectangle,DevComponents.DotNetBar.TextMarkup.MarkupDrawContext)">
<summary>
Arranges the element given the final size. Layout is two step process with Measure followed by Arrange.
</summary>
<param name="finalSize"></param>
<param name="g"></param>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.MarkupElement.IsBlockContainer">
<summary>
Returns whether markup element is an container so it receives full available size of parent control for layout.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.MarkupElement.IsBlockElement">
<summary>
Returns whether markup element is an block element that always consumes a whole line in layout.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.MarkupElement.IsNewLineAfterElement">
<summary>
Returns whether layout manager switches to new line after processing this element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.MarkupElement.CanStartNewLine">
<summary>
Returns whether layout manager can start new line with this element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.MarkupElement.Elements">
<summary>
Gets the collection of child elements if any for this markup element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.MarkupElement.IsSizeValid">
<summary>
Gets or sets whether element size is valid. When size is not valid element Measure method will be called to validate size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.MarkupElement.Parent">
<summary>
Gets element parent or null if parent is not set.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.MarkupElement.Bounds">
<summary>
Gets or sets actual rendering bounds.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.MarkupElement.Visible">
<summary>
Gets or sets whether markup element is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.MarkupElement.Margin">
<summary>
Gets or sets the element margin.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.MarkupElement.RenderBounds">
<summary>
Gets or sets actual rendered bounds for a give markup element if applicable.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.ContainerElement.IsBlockElement">
<summary>
Returns whether markup element is an block element that always consumes a whole line in layout.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TextMarkup.eParagraphAlignment">
<summary>
Indicates paragraph content alignment
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TextMarkup.eParagraphVerticalAlignment">
<summary>
Indicates paragraph content alignment
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.EndMarkupElement.StartElement">
<summary>
Gets reference to markup start element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.ExpandElement.CanStartNewLine">
<summary>
Returns whether layout manager can start new line with this element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.Heading.Level">
<summary>
Gets or sets heading level. Values from 1 to 6 are valid. Default is 1.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TextMarkup.HyperLink.HitTest(System.Int32,System.Int32)">
<summary>
Returns whether hyper-link contains specified coordinates.
</summary>
<param name="x"></param>
<param name="y"></param>
<returns></returns>
</member>
<member name="M:DevComponents.DotNetBar.TextMarkup.MarkupElementCollection.#ctor(DevComponents.DotNetBar.TextMarkup.MarkupElement)">
<summary>Creates new instance of the class.</summary>
</member>
<member name="M:DevComponents.DotNetBar.TextMarkup.MarkupElementCollection.Add(DevComponents.DotNetBar.TextMarkup.MarkupElement)">
<summary>
Adds new object to the collection.
</summary>
<param name="MarkupElement">Object to add.</param>
<returns>Index of newly added object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.TextMarkup.MarkupElementCollection.Insert(System.Int32,DevComponents.DotNetBar.TextMarkup.MarkupElement)">
<summary>
Inserts new object into the collection.
</summary>
<param name="index">Position of the object.</param>
<param name="value">Object to insert.</param>
</member>
<member name="M:DevComponents.DotNetBar.TextMarkup.MarkupElementCollection.IndexOf(DevComponents.DotNetBar.TextMarkup.MarkupElement)">
<summary>
Returns index of the object inside of the collection.
</summary>
<param name="value">Reference to the object.</param>
<returns>Index of the object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.TextMarkup.MarkupElementCollection.Contains(DevComponents.DotNetBar.TextMarkup.MarkupElement)">
<summary>
Returns whether collection contains specified object.
</summary>
<param name="value">Object to look for.</param>
<returns>true if object is part of the collection, otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.TextMarkup.MarkupElementCollection.Remove(DevComponents.DotNetBar.TextMarkup.MarkupElement)">
<summary>
Removes specified object from the collection.
</summary>
<param name="value"></param>
</member>
<member name="M:DevComponents.DotNetBar.TextMarkup.MarkupElementCollection.CopyTo(DevComponents.DotNetBar.TextMarkup.MarkupElement[],System.Int32)">
<summary>
Copies collection into the specified array.
</summary>
<param name="array">Array to copy collection to.</param>
<param name="index">Starting index.</param>
</member>
<member name="M:DevComponents.DotNetBar.TextMarkup.MarkupElementCollection.CopyTo(DevComponents.DotNetBar.TextMarkup.MarkupElement[])">
<summary>
Copies contained items to the MarkupElement array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.MarkupElementCollection.Parent">
<summary>
Gets or sets the collection parent element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.MarkupElementCollection.Item(System.Int32)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TextMarkup.MarkupParser.IsMarkup(System.String@)">
<summary>
Tests whether input text could be markup text.
</summary>
<param name="text">Text to test.</param>
<returns>true if text could be markup, otherwise false</returns>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.MarkupSettings.NormalHyperlink">
<summary>
Gets the style of the hyperlink in its default state.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.MarkupSettings.MouseOverHyperlink">
<summary>
Gets the style of the hyperlink when mouse is over the link.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.MarkupSettings.VisitedHyperlink">
<summary>
Gets the style of the visited hyperlink.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "E:DevComponents.DotNetBar.TextMarkup.MarkupSettings.ResolveImage" -->
<member name="T:DevComponents.DotNetBar.TextMarkup.MarkupSettings.ResolveImageEventHandler">
<summary>
Represents the method that will handle the ResolveImage event.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.TextMarkup.HyperlinkStyle">
<summary>
Defines the text-markup hyperlink appearance style.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TextMarkup.HyperlinkStyle.#ctor">
<summary>
Initializes a new instance of the HyperlinkStyle class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TextMarkup.HyperlinkStyle.#ctor(System.Drawing.Color,DevComponents.DotNetBar.TextMarkup.eHyperlinkUnderlineStyle)">
<summary>
Initializes a new instance of the HyperlinkStyle class.
</summary>
<param name="textColor"></param>
<param name="underlineStyle"></param>
</member>
<member name="M:DevComponents.DotNetBar.TextMarkup.HyperlinkStyle.#ctor(System.Drawing.Color,System.Drawing.Color,DevComponents.DotNetBar.TextMarkup.eHyperlinkUnderlineStyle)">
<summary>
Initializes a new instance of the HyperlinkStyle class.
</summary>
<param name="textColor"></param>
<param name="backColor"></param>
<param name="underlineStyle"></param>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.HyperlinkStyle.TextColor">
<summary>
Gets or sets hyperlink text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.HyperlinkStyle.BackColor">
<summary>
Gets or sets hyperlink back color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.HyperlinkStyle.UnderlineStyle">
<summary>
Gets or sets the underline style for the hyperlink.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.HyperlinkStyle.IsChanged">
<summary>
Gets whether style has been changed from its default state.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "T:DevComponents.DotNetBar.TextMarkup.ResolveImageEventArgs" -->
<member name="F:DevComponents.DotNetBar.TextMarkup.ResolveImageEventArgs.Handled">
<summary>
Indicates that event has been handled and that ResolvedImage should be used.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.TextMarkup.ResolveImageEventArgs.Key">
<summary>
Indicates the string key parameters in url-style for the image that needs to be resolved.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.TextMarkup.ResolveImageEventArgs.ResolvedImage">
<summary>
Indicates the resolved image value.
you need to set this value to the resolved image and you need to set Handled property to true.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.TextMarkup.ResolveImageEventArgs.#ctor">
<summary>
Default constructor.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.NewLine.IsSizeValid">
<summary>
Gets or sets whether element size is valid. When size is not valid element Measure method will be called to validate size.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.NewLine.IsNewLineAfterElement">
<summary>
Returns whether layout manager switches to new line after processing this element.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.Span.IsBlockElement">
<summary>
Returns whether markup element is an block element that always consumes a whole line in layout.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.TextMarkup.SymbolElement.CanStartNewLine">
<summary>
Returns whether layout manager can start new line with this element.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Themes">
<summary>
Summary description for Themes.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ToastDisplay">
<summary>
Represents toast display control. This class is not for public use.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ToastDisplay.#ctor">
<summary>
Initializes a new instance of the ToastDisplay class.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ToastDisplay.Alpha">
<summary>
Specifies the alpha-blending, opacity for the content rendered by the control. Setting this property allows fading in and out of the control content.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ToastDisplay.ToastBackColor">
<summary>
Gets or sets the toast background color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ToastDisplay.GlowColor">
<summary>
Gets or sets the toast glow color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ToastDisplay.Image">
<summary>
Gets or sets the image displayed on the toast.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ToastNotification">
<summary>
Represents class used to display toast notifications. A toast notification is a message that appears on the surface of the screen for a moment,
but it does not take focus (or pause the current activity), so it cannot accept any user input.
Notification pops up on the surface of the specified Form or Control.
It only fills the amount of space required for the message and the user's current activity remains visible and interactive.
The notification automatically fades in and out after specified time interval.
Notification text supports text-markup.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ToastNotification.Close(System.Windows.Forms.Control)">
<summary>
Closes all toast notifications open on specified parent control.
</summary>
<param name="parent">Parent control.</param>
</member>
<member name="M:DevComponents.DotNetBar.ToastNotification.Close(System.Windows.Forms.Control,System.IntPtr)">
<summary>
Closes specified toast notification on parent control.
</summary>
<param name="parent">Parent control.</param>
<param name="toastId">Toast ID as returned by the Show method.</param>
</member>
<member name="M:DevComponents.DotNetBar.ToastNotification.UpdateToast(System.Windows.Forms.Control,System.IntPtr,System.String)">
<summary>
Updates the already displayed toast text. Note that toast notification will not be resized.
</summary>
<param name="parent">Parent control which was used to show toast.</param>
<param name="toastId">Toast ID returned by the Show toast method.</param>
<param name="text">New toast notification text.</param>
</member>
<member name="M:DevComponents.DotNetBar.ToastNotification.Show(System.Windows.Forms.Control,System.String,System.Drawing.Image,System.Int32,DevComponents.DotNetBar.eToastGlowColor,DevComponents.DotNetBar.eToastPosition)">
<summary>
Displays the toast notification on top of the specified parent control, we recommend always using a parent form.
</summary>
<param name="parent">Parent form to display toast notification on top of</param>
<param name="message">Message to display.</param>
<param name="image">Image to display next to toast text.</param>
<param name="timeoutInterval">Interval in milliseconds after which the notification is hidden.</param>
<param name="toastGlowColor">Specifies toast-glow color used.</param>
<param name="toastPosition">Specifies the position of the toast notification.</param>
</member>
<member name="M:DevComponents.DotNetBar.ToastNotification.Show(System.Windows.Forms.Control,System.String,System.Drawing.Image,System.Int32,DevComponents.DotNetBar.eToastGlowColor,System.Int32,System.Int32)">
<summary>
Displays the toast notification on top of the specified parent control, we recommend always using a parent form.
</summary>
<param name="parent">Parent form to display toast notification on top of</param>
<param name="message">Message to display.</param>
<param name="image">Image to display next to toast text.</param>
<param name="timeoutInterval">Interval in milliseconds after which the notification is hidden.</param>
<param name="toastGlowColor">Specifies toast-glow color used.</param>
<param name="x">Specifies the X position of the toast notification with its parent window.</param>
<param name="y">Specifies the Y position of the toast notification with its parent window.</param>
</member>
<member name="M:DevComponents.DotNetBar.ToastNotification.Show(System.Windows.Forms.Control,System.String,System.Drawing.Image,System.Int32,DevComponents.DotNetBar.eToastGlowColor)">
<summary>
Displays the toast notification on top of the specified parent control, we recommend always using a parent form.
</summary>
<param name="parent">Parent form to display toast notification on top of</param>
<param name="message">Message to display.</param>
<param name="image">Image to display next to toast text.</param>
<param name="timeoutInterval">Interval in milliseconds after which the notification is hidden.</param>
/// <param name="toastGlowColor">Specifies toast-glow color used.</param>
</member>
<member name="M:DevComponents.DotNetBar.ToastNotification.Show(System.Windows.Forms.Control,System.String)">
<summary>
Displays the toast notification on top of the specified parent control, we recommend always using a parent form, with default timeout interval.
</summary>
<param name="parent">Parent control to display toast notification on top of</param>
<param name="message">Message to display.</param>
</member>
<member name="M:DevComponents.DotNetBar.ToastNotification.Show(System.Windows.Forms.Control,System.String,DevComponents.DotNetBar.eToastPosition)">
<summary>
Displays the toast notification on top of the specified parent control, we recommend always using a parent form, with default timeout interval.
</summary>
<param name="parent">Parent control to display toast notification on top of</param>
<param name="message">Message to display.</param>
<param name="toastPosition">Specifies the position of the toast notification.</param>
</member>
<member name="M:DevComponents.DotNetBar.ToastNotification.Show(System.Windows.Forms.Control,System.String,System.Drawing.Image)">
<summary>
Displays the toast notification on top of the specified parent control, we recommend always using a parent form, with default timeout interval.
</summary>
<param name="parent">Parent control to display toast notification on top of</param>
<param name="message">Message to display.</param>
<param name="image">Image to display next to toast text.</param>
</member>
<member name="M:DevComponents.DotNetBar.ToastNotification.Show(System.Windows.Forms.Control,System.String,System.Drawing.Image,System.Int32)">
<summary>
Displays the toast notification on top of the specified parent control, we recommend always using a parent form.
</summary>
<param name="parent">Parent form to display toast notification on top of</param>
<param name="message">Message to display.</param>
<param name="image">Image to display next to toast text.</param>
<param name="timeoutInterval">Interval in milliseconds after which the notification is hidden.</param>
</member>
<member name="M:DevComponents.DotNetBar.ToastNotification.Show(System.Windows.Forms.Control,System.String,System.Int32)">
<summary>
Displays the toast notification on top of the specified parent control, we recommend always using a parent form.
</summary>
<param name="parent">Parent form to display toast notification on top of</param>
<param name="message">Message to display.</param>
<param name="timeoutInterval">Interval in milliseconds after which the notification is hidden.</param>
</member>
<member name="M:DevComponents.DotNetBar.ToastNotification.Show(System.Windows.Forms.Control,System.String,System.Int32,DevComponents.DotNetBar.eToastPosition)">
<summary>
Displays the toast notification on top of the specified parent control, we recommend always using a parent form.
</summary>
<param name="parent">Parent form to display toast notification on top of</param>
<param name="message">Message to display.</param>
<param name="timeoutInterval">Interval in milliseconds after which the notification is hidden.</param>
<param name="toastPosition">Specifies the position of the toast notification.</param>
</member>
<member name="P:DevComponents.DotNetBar.ToastNotification.ToastMargin">
<summary>
Specifies the toast margin from the edges of the parent control. Default value is 16 pixels on all sides.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ToastNotification.DefaultToastPosition">
<summary>
Specifies the default toast position within the parent control. Default value is BottomCenter.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ToastNotification.DefaultToastGlowColor">
<summary>
Specifies default glow color around toast notification. Default value is Blue.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ToastNotification.DefaultTimeoutInterval">
<summary>
Specifies the default timeout interval for the toast notification.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ToastNotification.ToastBackColor">
<summary>
Specifies the toast background color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ToastNotification.ToastForeColor">
<summary>
Specifies the toast text color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ToastNotification.ToastFont">
<summary>
Specifies the font used for the toast.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ToastNotification.CustomGlowColor">
<summary>
Specifies the custom glow color used when eToastGlowColor.Custom is used.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eToastPosition">
<summary>
Specifies toast position within parent control.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.eToastGlowColor">
<summary>
Specifies the glow color around toast notification.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ToolbarName">
<summary>
Summary description for NewToolbar.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ToolbarName.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ToolbarName.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.ToolbarName.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.ToolTip">
<summary>
Summary description for Tooltip.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.ToolTip.ReferenceRectangle">
<summary>
Gets or sets the rectangle of the control or item tooltip is displayed for.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ToolTip.MarkupEnabled">
<summary>
Gets or sets whether text-markup is enabled for the tooltips.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.ToolTip.FixedLocation">
<summary>
Specifies fixed location for tooltip window.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.OnPanBegin(DevComponents.DotNetBar.Touch.GestureEventArgs)">
<summary>
Raises PanBegin event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.OnPanEnd(DevComponents.DotNetBar.Touch.GestureEventArgs)">
<summary>
Raises PanBegin event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.OnPan(DevComponents.DotNetBar.Touch.GestureEventArgs)">
<summary>
Raises PanBegin event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.OnBegin(DevComponents.DotNetBar.Touch.GestureEventArgs)">
<summary>
Raises Begin event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.OnEnd(DevComponents.DotNetBar.Touch.GestureEventArgs)">
<summary>
Raises End event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.OnPressAndTap(DevComponents.DotNetBar.Touch.GestureEventArgs)">
<summary>
Raises PressAndTap event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.OnRotateBegin(DevComponents.DotNetBar.Touch.GestureEventArgs)">
<summary>
Raises RotateBegin event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.OnRotate(DevComponents.DotNetBar.Touch.GestureEventArgs)">
<summary>
Raises Rotate event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.OnRotateEnd(DevComponents.DotNetBar.Touch.GestureEventArgs)">
<summary>
Raises RotateEnd event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.OnTwoFingerTap(DevComponents.DotNetBar.Touch.GestureEventArgs)">
<summary>
Raises TwoFingerTap event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.OnZoomBegin(DevComponents.DotNetBar.Touch.GestureEventArgs)">
<summary>
Raises ZoomBegin event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.OnZoom(DevComponents.DotNetBar.Touch.GestureEventArgs)">
<summary>
Raises Zoom event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.OnZoomEnd(DevComponents.DotNetBar.Touch.GestureEventArgs)">
<summary>
Raises ZoomEnd event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.OnTouchDown(DevComponents.DotNetBar.Touch.TouchEventArgs)">
<summary>
Raises TouchDown event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.OnTouchUp(DevComponents.DotNetBar.Touch.TouchEventArgs)">
<summary>
Raises TouchDown event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.OnTouchMove(DevComponents.DotNetBar.Touch.TouchEventArgs)">
<summary>
Raises TouchDown event.
</summary>
<param name="e">Provides event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.#ctor(System.Windows.Forms.Control)">
<summary>
Initializes a new instance of the TouchHandler class.
</summary>
<param name="parentControl"></param>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.#ctor(System.Windows.Forms.Control,DevComponents.DotNetBar.Touch.eTouchHandlerType)">
<summary>
Initializes a new instance of the TouchHandler class.
</summary>
<param name="parentControl"></param>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.Initialize">
<summary>
Initializes handler
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.WindowProc(System.IntPtr,System.Int32,System.IntPtr,System.IntPtr)">
<summary>
The Windows message handler.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.DecodeMessage(System.IntPtr,System.Int32,System.IntPtr,System.IntPtr,System.Single,System.Single)">
<summary>
Decode the message and create a collection of event arguments
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Touch.TouchHandler._LastEventArgs">
<summary>
The last event in the current gesture event sequence
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchHandler.RegisterTouchWindow">
<summary>
Register for touch event
</summary>
<returns>true if succeeded</returns>
</member>
<member name="P:DevComponents.DotNetBar.Touch.TouchHandler.LastBeginEventArgs">
<summary>
The event arguments that started the current gesture
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Touch.TouchHandler.DisablePalmRejection">
<summary>
Gets or sets whether palm rejection is enabled.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Touch.TouchHandler.IsTouchEnabled">
<summary>
Check if Multi-touch support device is ready
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Touch.TouchHandler.EnableTouchSupport">
<summary>
Gets or sets whether internal touch support is enabled for all DotNetBar controls.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Touch.GestureEventArgs.#ctor(DevComponents.DotNetBar.Touch.TouchHandler,DevComponents.DotNetBar.Touch.WinApi.GESTUREINFO@)">
<summary>
Create new gesture event instance and decode the gesture info structure
</summary>
<param name="handler">The gesture handler</param>
<param name="gestureInfo">The gesture information</param>
</member>
<member name="F:DevComponents.DotNetBar.Touch.GestureEventArgs._RotateAngle">
<summary>
Gesture relative rotation angle for Rotate event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Touch.GestureEventArgs._Center">
<summary>
Indicates calculated gesture center.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Touch.GestureEventArgs._ZoomFactor">
<summary>
Gesture zoom factor for Zoom event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Touch.GestureEventArgs._PanTranslation">
<summary>
Gesture relative panning translation for Pan event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Touch.GestureEventArgs._PanVelocity">
<summary>
Gesture velocity vector of the pan gesture for custom inertia implementations.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Touch.GestureEventArgs._LastEvent">
<summary>
The last touch arguments in this gesture event sequence.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Touch.GestureEventArgs.Location">
<summary>
The client location of gesture.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Touch.GestureEventArgs.IsBegin">
<summary>
Is this the first event of a gesture.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Touch.GestureEventArgs.IsEnd">
<summary>
It this last event of a gesture.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Touch.GestureEventArgs.IsInertia">
<summary>
Has gesture triggered inertia.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Touch.GestureEventArgs.LastBeginEvent">
<summary>
The first touch arguments in this gesture event sequence.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Touch.GestureEventArgs.Handled">
<summary>
Gets or sets whether event is handled.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Touch.TouchEventArgs">
<summary>
EventArgs passed to Touch handlers
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Touch.TouchEventArgs.#ctor(DevComponents.DotNetBar.Touch.TouchHandler,System.Single,System.Single,DevComponents.DotNetBar.Touch.WinApi.TOUCHINPUT@)">
<summary>
Create new touch event argument instance
</summary>
<param name="hWndWrapper">The target control</param>
<param name="touchInput">one of the inner touch input in the message</param>
</member>
<member name="F:DevComponents.DotNetBar.Touch.TouchEventArgs._Location">
<summary>
Touch client coordinate in pixels
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Touch.TouchEventArgs._Id">
<summary>
A touch point identifier that distinguishes a particular touch input
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Touch.TouchEventArgs._Flags">
<summary>
A set of bit flags that specify various aspects of touch point
press, release, and motion.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Touch.TouchEventArgs._Mask">
<summary>
mask which fields in the structure are valid
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Touch.TouchEventArgs._AbsoluteTime">
<summary>
touch event time
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Touch.TouchEventArgs._Time">
<summary>
touch event time from system up
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Touch.TouchEventArgs._ContactSize">
<summary>
the size of the contact area in pixels
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Touch.TouchEventArgs.IsPrimaryContact">
<summary>
Is Primary Contact (The first touch sequence)
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Touch.TouchEventArgs.IsTouchMove">
<summary>
Specifies that movement occurred
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Touch.TouchEventArgs.IsTouchDown">
<summary>
Specifies that the corresponding touch point was established through a new contact
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Touch.TouchEventArgs.IsTouchUp">
<summary>
Specifies that a touch point was removed
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Touch.TouchEventArgs.IsTouchInRange">
<summary>
Specifies that a touch point is in range
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Touch.TouchEventArgs.IsTouchNoCoalesce">
<summary>
specifies that this input was not coalesced.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Touch.TouchEventArgs.IsTouchPen">
<summary>
Specifies that the touch point is associated with a pen contact
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Touch.TouchEventArgs.IsTouchPalm">
<summary>
The touch event came from the user's palm
</summary>
<remarks>Set <see cref="!:DisablePalmRejection"/> to true</remarks>
</member>
<member name="P:DevComponents.DotNetBar.Touch.TouchEventArgs.Handled">
<summary>
Gets or sets whether event is handled.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Touch.WinApi.GetDigitizerStatus">
<summary>
Get the current Digitizer Status
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Touch.WinApi.GESTURECONFIG.#ctor(System.UInt32,System.UInt32,System.UInt32)">
<summary>
Initializes a new instance of the GESTURECONFIG structure.
</summary>
<param name="dwID"></param>
<param name="dwWant"></param>
<param name="dwBlock"></param>
</member>
<member name="T:DevComponents.DotNetBar.Touch.WinApi.DigitizerStatus">
<summary>
Specifies available digitizer capabilities
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Touch.WinApi.GESTUREINFO">
<summary>
Gesture Info Interop Structure
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Touch.WinApi.POINTS">
<summary>
A Simple POINTS Interop structure
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Touch.WinApi.POINT">
<summary>
A Simple POINT Interop structure
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Touch.WinApi.TOUCHINPUT">
<summary>
Touch API defined structures [winuser.h]
</summary>
</member>
<member name="T:DevComponents.DotNetBar.UIGraphics">
<summary>
Represents class that holds User Interface static methods.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.UIGraphics.GetTrianglePath(System.Drawing.Point,System.Int32,DevComponents.DotNetBar.eTriangleDirection)">
<summary>
Gets the graphics path that represents triangle.
</summary>
<param name="p">Top left position of the triangle.</param>
<param name="size">Size of the triangle.</param>
<param name="direction">Pointing direction of the triangle.</param>
<returns>Returns graphics path for the triangle of given size and pointing in given direction.</returns>
</member>
<member name="M:DevComponents.DotNetBar.UIGraphics.CreateExpandButtonImage(System.Boolean,System.Drawing.Color,System.Boolean)">
<summary>
Creates the double arrow >> collapse expand image for the collapsable controls.
</summary>
<param name="collapse">Indicates the direction of the arrow</param>
<param name="color">Color for the arrows</param>
<param name="verticalCollapse">Indicates whether image is for vertical collapse/expand</param>
<returns></returns>
</member>
<member name="T:DevComponents.DotNetBar.eTriangleDirection">
<summary>
Specifies the pointing direction of triangle.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTriangleDirection.Left">
<summary>
Triangle point to the left.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTriangleDirection.Right">
<summary>
Triangle point to the right.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTriangleDirection.Top">
<summary>
Triangle point to the top.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.eTriangleDirection.Bottom">
<summary>
Triangle point to the bottom.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Validator.CompareValidator">
<summary>
Represents compare validator for SuperValidator control used to compare two input fields or input fields to specified value.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Validator.ValidatorBase">
<summary>
Represents base validator used by SuperValidator component.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.ValidatorBase.Validate(System.Windows.Forms.Control)">
<summary>
Validates the input control.
</summary>
<param name="input">Input control to validate.</param>
<returns>true if validation is successful otherwise false</returns>
</member>
<member name="M:DevComponents.DotNetBar.Validator.ValidatorBase.GetControlValue(System.Windows.Forms.Control)">
<summary>
Gets the input control value.
</summary>
<param name="input">Control to return value for.</param>
<returns>Controls value</returns>
</member>
<member name="M:DevComponents.DotNetBar.Validator.ValidatorBase.GetControlValue(System.Windows.Forms.Control,System.String)">
<summary>
Gets the input control value.
</summary>
<param name="input">Control to return value for.</param>
<returns>Controls value</returns>
</member>
<member name="M:DevComponents.DotNetBar.Validator.ValidatorBase.OnGetValue(DevComponents.DotNetBar.Validator.ValidatorGetValueEventArgs)">
<summary>
Raises the GetValue event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="E:DevComponents.DotNetBar.Validator.ValidatorBase.GetValue">
<summary>
Occurs when validator retrieves the value for the control. It allows you to return value for the controls validator does not recognize.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.ValidatorBase.ErrorMessage">
<summary>
Gets or sets the error message that is displayed by error provider when validation fails.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.ValidatorBase.LastValidationResult">
<summary>
Gets the last validation result returned from Validate call. True if validation was successful or false if validation failed.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.ValidatorBase.SuperValidator">
<summary>
Returns SuperValidator control validator is assigned to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.ValidatorBase.DisplayError">
<summary>
Gets or sets whether error is displayed using the error provider on SuperValidator when validation fails. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.ValidatorBase.Enabled">
<summary>
Gets or sets whether validator is enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.ValidatorBase.OptionalValidationGroup">
<summary>
Gets or sets the group name validation belongs to. When control belongs to optional validation group the validation is considered successful when any of the controls in the group validates.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.ValidatorBase.HighlightColor">
<summary>
Gets or sets the highlight color for control when validation fails if Highlighter component is used on SuperValidator. Default Value is None.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.ValidatorBase.ValuePropertyName">
<summary>
Gets or sets the value property name for the control to validate.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.CompareValidator.#ctor">
<summary>
Initializes a new instance of the RequiredFieldValidator class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.CompareValidator.#ctor(System.String)">
<summary>
Initializes a new instance of the RequiredFieldValidator class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.CompareValidator.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the RequiredFieldValidator class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.CompareValidator.#ctor(System.String,System.String,System.Windows.Forms.Control,DevComponents.DotNetBar.Validator.eValidationCompareOperator)">
<summary>
Initializes a new instance of the RequiredFieldValidator class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.CompareValidator.#ctor(System.String,System.Windows.Forms.Control,DevComponents.DotNetBar.Validator.eValidationCompareOperator)">
<summary>
Initializes a new instance of the RequiredFieldValidator class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.CompareValidator.#ctor(System.String,System.String,System.Object,DevComponents.DotNetBar.Validator.eValidationCompareOperator)">
<summary>
Initializes a new instance of the RequiredFieldValidator class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.CompareValidator.#ctor(System.String,System.Object,DevComponents.DotNetBar.Validator.eValidationCompareOperator)">
<summary>
Initializes a new instance of the RequiredFieldValidator class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.CompareValidator.#ctor(System.String,System.String,System.Windows.Forms.Control,System.Object,DevComponents.DotNetBar.Validator.eValidationCompareOperator)">
<summary>
Initializes a new instance of the RequiredFieldValidator class.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.CompareValidator.ControlToCompare">
<summary>
Gets or sets the control to compare validated control to.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.CompareValidator.ControlToCompareValuePropertyName">
<summary>
Gets or sets the Value property name for the ControlToCompare control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.CompareValidator.ValueToCompare">
<summary>
Gets or sets the value to compare to the validation control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.CompareValidator.Operator">
<summary>
Gets or sets the operator used for comparison.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Validator.eValidationCompareOperator">
<summary>
Specifies the validation comparison operators used by the CompareValidator.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Validator.eValidationCompareOperator.Equal">
<summary>
A comparison for equality.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Validator.eValidationCompareOperator.NotEqual">
<summary>
A comparison for inequality.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Validator.eValidationCompareOperator.GreaterThan">
<summary>
A comparison for greater than.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Validator.eValidationCompareOperator.GreaterThanEqual">
<summary>
A comparison for greater than or equal to.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Validator.eValidationCompareOperator.LessThan">
<summary>
A comparison for less than.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Validator.eValidationCompareOperator.LessThanEqual">
<summary>
A comparison for less than or equal to.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Validator.eValidationCompareOperator.DataTypeCheck">
<summary>
A comparison for data type only.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.CustomValidator.#ctor">
<summary>
Initializes a new instance of the CustomValidator class.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.CustomValidator.Tag">
<summary>
Gets or sets custom data associated with the validator
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Validator.ValidateValueEventHandler">
<summary>
Defines delegate for CustomValidator ValidateValue event.
</summary>
<param name="sender">Sender</param>
<param name="e">Event arguments</param>
</member>
<member name="F:DevComponents.DotNetBar.Validator.ValidateValueEventArgs.ControlToValidate">
<summary>
Gets the reference to the control to validate.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Validator.ValidateValueEventArgs.IsValid">
<summary>
Gets or sets whether control's value is valid.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.ValidateValueEventArgs.#ctor(System.Windows.Forms.Control)">
<summary>
Initializes a new instance of the ValidateValueEventArgs class.
</summary>
<param name="controlToValidate">Control to validate.</param>
</member>
<member name="T:DevComponents.DotNetBar.Validator.IErrorProvider">
<summary>
Defines an interface that can be implemented by custom error providers to be used with SuperValidator.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.IErrorProvider.SetError(System.Windows.Forms.Control,System.String)">
<summary>
Sets the error state on the control.
</summary>
<param name="control">Control for which error state is being set.</param>
<param name="value">The error message from validator.</param>
</member>
<member name="M:DevComponents.DotNetBar.Validator.IErrorProvider.ClearError(System.Windows.Forms.Control)">
<summary>
Clears the error state for the control.
</summary>
<param name="control">Control to clear error state for.</param>
</member>
<member name="M:DevComponents.DotNetBar.Validator.Highlighter.GetHighlightOnFocus(System.Windows.Forms.Control)">
<summary>
Retrieves whether control is highlighted when it receives input focus.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.Highlighter.SetHighlightOnFocus(System.Windows.Forms.Control,System.Boolean)">
<summary>
Sets whether control is highlighted when it receives input focus.
</summary>
<param name="c">Reference to supported control.</param>
<param name="highlight">Indicates whether to highlight control on focus.</param>
</member>
<member name="M:DevComponents.DotNetBar.Validator.Highlighter.GetHighlightColor(System.Windows.Forms.Control)">
<summary>
Retrieves the highlight color that is applied to the control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.Highlighter.SetHighlightColor(System.Windows.Forms.Control,DevComponents.DotNetBar.Validator.eHighlightColor)">
<summary>
Sets the highlight color for the control.
</summary>
<param name="c">Reference to supported control.</param>
<param name="highlightColor">Highlight color.</param>
</member>
<member name="M:DevComponents.DotNetBar.Validator.Highlighter.UpdateHighlights">
<summary>
Updates the highlighted controls border. Usually call to this method is not needed but under
certain scenarios where highlighter does not automatically detects the change in visibility of
the highlighted control call to this method is necessary.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.Highlighter.FocusHighlightColor">
<summary>
Indicates the highlight focus color.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.Highlighter.ContainerControl">
<summary>
Gets or sets the container control highlighter is bound to. The container control must be set in order for highlighter to work.
Container control should always be a form.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.Highlighter.CustomHighlightColors">
<summary>
Gets or sets the array of colors used to render custom highlight color. Control expects 3 colors in array to be specified which define the highlight border.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Validator.eHighlightColor">
<summary>
Defines highlight colors provided by Highlighter control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.ErrorProviderWrapper.#ctor(System.Windows.Forms.ErrorProvider)">
<summary>
Initializes a new instance of the ErrorProviderWrapper class.
</summary>
<param name="errorProvider"></param>
</member>
<member name="M:DevComponents.DotNetBar.Validator.ErrorProviderWrapper.#ctor(System.Windows.Forms.ErrorProvider,System.Int32)">
<summary>
Initializes a new instance of the ErrorProviderWrapper class.
</summary>
<param name="errorProvider"></param>
<param name="iconPadding"></param>
</member>
<member name="M:DevComponents.DotNetBar.Validator.HighlightPanel.#ctor(System.Collections.Generic.Dictionary{System.Windows.Forms.Control,DevComponents.DotNetBar.Validator.eHighlightColor})">
<summary>
Initializes a new instance of the HighlightPanel class.
</summary>
<param name="highlights"></param>
</member>
<member name="P:DevComponents.DotNetBar.Validator.HighlightPanel.CustomHighlightColors">
<summary>
Gets or sets the array of colors used to render custom highlight color. Control expects 3 colors in array to be specified which define the highlight border.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.HighlightPanel.HighlightRegion.#ctor(System.Drawing.Rectangle,System.Drawing.Color,DevComponents.DotNetBar.Validator.eHighlightColor)">
<summary>
Initializes a new instance of the HighlightRegion structure.
</summary>
<param name="bounds"></param>
<param name="backColor"></param>
<param name="highlightColor"></param>
</member>
<member name="M:DevComponents.DotNetBar.Validator.RangeValidator.#ctor">
<summary>
Initializes a new instance of the RangeValidator class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.RangeValidator.#ctor(System.String,System.Object,System.Object)">
<summary>
Initializes a new instance of the RangeValidator class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.RangeValidator.#ctor(System.String,System.String,System.Object,System.Object)">
<summary>
Initializes a new instance of the RangeValidator class.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.RangeValidator.MaximumValue">
<summary>
Gets or sets the maximum value control may have.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.RangeValidator.MinimumValue">
<summary>
Gets or sets the minimum value control may have.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.RangeValidator.IsEmptyStringValid">
<summary>
Indicates whether empty string of zero length is considered valid input.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Validator.RegularExpressionValidator">
<summary>
Represents the regular expression validator used with SuperValidator control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.RegularExpressionValidator.#ctor">
<summary>
Initializes a new instance of the RegularExpressionValidator class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.RegularExpressionValidator.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the RegularExpressionValidator class.
</summary>
<param name="validationExpression"></param>
</member>
<member name="M:DevComponents.DotNetBar.Validator.RegularExpressionValidator.#ctor(System.String,System.String,System.Boolean)">
<summary>
Initializes a new instance of the RegularExpressionValidator class.
</summary>
<param name="validationExpression"></param>
</member>
<member name="M:DevComponents.DotNetBar.Validator.RegularExpressionValidator.#ctor(System.String,System.String,System.String,System.Boolean)">
<summary>
Initializes a new instance of the RegularExpressionValidator class.
</summary>
<param name="validationExpression"></param>
</member>
<member name="P:DevComponents.DotNetBar.Validator.RegularExpressionValidator.ValidationExpression">
<summary>
Gets or sets regular expression used to validate controls value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.RegularExpressionValidator.EmptyValueIsValid">
<summary>
Gets or sets whether empty value is considered valid value by the validator. Default value is false.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Validator.RequiredFieldValidator">
<summary>
Describes required field validator used with SuperValidator control.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.RequiredFieldValidator.#ctor">
<summary>
Initializes a new instance of the RequiredFieldValidator class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.RequiredFieldValidator.#ctor(System.String)">
<summary>
Initializes a new instance of the RequiredFieldValidator class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.RequiredFieldValidator.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the RequiredFieldValidator class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.RequiredFieldValidator.OnEvaluateIsEmpty(DevComponents.DotNetBar.Validator.EvaluateIsEmptyEventArgs)">
<summary>
Raises EvaluateIsEmpty event.
</summary>
<param name="args">Event Arguments</param>
</member>
<member name="E:DevComponents.DotNetBar.Validator.RequiredFieldValidator.EvaluateIsEmpty">
<summary>
Occurs when controls value needs to be evaluated to check whether it is empty. You can use this event to perform custom evaluation.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.RequiredFieldValidator.IsEmptyStringValid">
<summary>
Indicates whether empty string of zero length is considered valid input.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.EvaluateIsEmptyEventArgs.#ctor(System.Windows.Forms.Control,System.Object,DevComponents.DotNetBar.Validator.ValidatorBase)">
<summary>
Initializes a new instance of the ValidatorGetValueEventArgs class.
</summary>
<param name="control"></param>
<param name="validator"></param>
</member>
<member name="F:DevComponents.DotNetBar.Validator.EvaluateIsEmptyEventArgs.Control">
<summary>
Gets Control to retrieve value for.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Validator.EvaluateIsEmptyEventArgs.Value">
<summary>
Gets the Value to evaluate.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Validator.EvaluateIsEmptyEventArgs.Validator">
<summary>
Gets validator that is requesting value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.EvaluateIsEmptyEventArgs.ResetIsEmpty">
<summary>
Resets the Value set and indicates that validator will internally retrieve value for the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.EvaluateIsEmptyEventArgs.IsEmpty">
<summary>
Gets or sets the value that will be used by validator.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.SuperValidator.OnCustomValidatorValidateValue(DevComponents.DotNetBar.Validator.CustomValidator,DevComponents.DotNetBar.Validator.ValidateValueEventArgs)">
<summary>
Raises the CustomValidatorValidateValue event.
</summary>
<param name="validator">Validator that needs validation.</param>
<param name="e">Control to validate.</param>
</member>
<member name="M:DevComponents.DotNetBar.Validator.SuperValidator.GetValidator1(System.Windows.Forms.Control)">
<summary>
Retrieves first level Validator for given control or return null if control does not have validator associated with it.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.SuperValidator.SetValidator1(System.Windows.Forms.Control,DevComponents.DotNetBar.Validator.ValidatorBase)">
<summary>
Associates first level Validator with given control.
</summary>
<param name="c">Reference to supported control.</param>
<param name="info">Instance of validator class. If null is passed existing Validator is detached from the given control.</param>
</member>
<member name="M:DevComponents.DotNetBar.Validator.SuperValidator.GetValidator2(System.Windows.Forms.Control)">
<summary>
Retrieves second level Validator for given control or return null if control does not have validator associated with it.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.SuperValidator.SetValidator2(System.Windows.Forms.Control,DevComponents.DotNetBar.Validator.ValidatorBase)">
<summary>
Associates second level Validator with given control.
</summary>
<param name="c">Reference to supported control.</param>
<param name="info">Instance of validator class. If null is passed existing Validator is detached from the given control.</param>
</member>
<member name="M:DevComponents.DotNetBar.Validator.SuperValidator.GetValidator3(System.Windows.Forms.Control)">
<summary>
Retrieves third level Validator for given control or return null if control does not have validator associated with it.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.SuperValidator.SetValidator3(System.Windows.Forms.Control,DevComponents.DotNetBar.Validator.ValidatorBase)">
<summary>
Associates third level Validator with given control.
</summary>
<param name="c">Reference to supported control.</param>
<param name="info">Instance of validator class. If null is passed existing Validator is detached from the given control.</param>
</member>
<member name="M:DevComponents.DotNetBar.Validator.SuperValidator.OnGetValue(DevComponents.DotNetBar.Validator.ValidatorGetValueEventArgs)">
<summary>
Raises the GetValue event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.Validator.SuperValidator.Validate">
<summary>
Performs validation on all validators. It also uses error provider to display failed validations if validator has that enabled.
</summary>
<returns>Returns true if all validations succeeded or false if at least one validation has failed.</returns>
</member>
<member name="M:DevComponents.DotNetBar.Validator.SuperValidator.Validate(System.Windows.Forms.Control)">
<summary>
Validate single control. Note that control must have validator assigned to it. This method will change LastFailedValidationResults collection.
</summary>
<param name="controlToValidate">Control to validate.</param>
<returns>returns true if validation succeeds or false if it fails</returns>
</member>
<member name="M:DevComponents.DotNetBar.Validator.SuperValidator.Validate(System.Windows.Forms.Control,System.Boolean)">
<summary>
Validate single control. Note that control must have validator assigned to it. This method will change LastFailedValidationResults collection.
</summary>
<param name="controlToValidate">Control to validate.</param>
<param name="clearLastFailedValidations">Indicates whether to clear the last set of failed validations by calling ClearFailedValidations() method.</param>
<returns>returns true if validation succeeds or false if it fails</returns>
</member>
<member name="M:DevComponents.DotNetBar.Validator.SuperValidator.ClearFailedValidations">
<summary>
Removes all visual markers from failed validations that were placed on the controls.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Validator.SuperValidator.GetValue">
<summary>
Occurs when validator retrieves the value for the control. It allows you to return value for the controls validator does not recognize.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Validator.SuperValidator.CustomValidatorValidateValue">
<summary>
Occurs when CustomValidator needs to validate the control value.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.SuperValidator.SteppedValidation">
<summary>
Gets or sets whether validation is performed in steps meaning that if first level validation fails, second level is not validated
until first level validation succeeds. Default value is false which means that all validation levels are validated even if first level fails.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.SuperValidator.LastFailedValidationResults">
<summary>
Gets the readonly collection that returns failed validations that were result of last Validate method call.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.SuperValidator.DefaultErrorProviderHighlighterIconPadding">
<summary>
Indicates default ErrorProvider IconPadding when Highlighter is used with SuperValidator. Setting this property to 0 will allow you to set IconPadding for each control manually.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.SuperValidator.ErrorProvider">
<summary>
Gets or sets the error provider that is used by the validator to report validation errors.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.SuperValidator.CustomErrorProvider">
<summary>
Gets or sets the custom error provider that is used by validator to report errors. You can provide your own error validators by implementing IErrorProvider interface.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.SuperValidator.Highlighter">
<summary>
Gets or sets the Highlighter component that is used to highlight validation errors.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.SuperValidator.ValidationType">
<summary>
Gets or sets the validation type performed by the control. Default value is Manual.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.SuperValidator.ContainerControl">
<summary>
Gets or sets the container control validator is bound to. The container control must be set for the ValidationType ValidatingEventOnContainer.
When ContainerControl is Form the validator handles the Closing event of the form to perform the validation and cancel the form closing.
You can disable that by setting either Enabled=false or Form.CausesValidation=false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.SuperValidator.Enabled">
<summary>
Gets or sets whether validation is performed. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.SuperValidator.CancelValidatingOnControl">
<summary>
Gets or sets whether Cancel argument in Validating event for validation type ValidatingEventPerControl is set to true when validation fails.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Validator.eValidationType">
<summary>
Specifies the validation type for SuperValidator control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Validator.eValidationType.Manual">
<summary>
SuperValidator uses manual validation, i.e. you will call Validate method to perform validation.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Validator.eValidationType.ValidatingEventPerControl">
<summary>
Validation is performed per control from each controls Validating event. The Cancel is set to true on event arguments if validation fails.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Validator.eValidationType.ValidatingEventOnContainer">
<summary>
Validation is performed for all controls from Validating event on container control. By default container control is Form that SuperValidator is on.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Validator.ValidatorControlPair">
<summary>
Defines validator control pair used by SuperValidator control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Validator.ValidatorControlPair.Validator">
<summary>
Gets the validator associated with the control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Validator.ValidatorControlPair.Control">
<summary>
Gets control reference.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.ValidatorControlPair.#ctor(DevComponents.DotNetBar.Validator.ValidatorBase,System.Windows.Forms.Control)">
<summary>
Initializes a new instance of the ValidatorControlPair structure.
</summary>
<param name="validator">Validator associated with the control</param>
<param name="control">Control reference</param>
</member>
<member name="M:DevComponents.DotNetBar.Validator.ValidatorGetValueEventArgs.#ctor(System.Windows.Forms.Control,DevComponents.DotNetBar.Validator.ValidatorBase)">
<summary>
Initializes a new instance of the ValidatorGetValueEventArgs class.
</summary>
<param name="control"></param>
<param name="validator"></param>
</member>
<member name="F:DevComponents.DotNetBar.Validator.ValidatorGetValueEventArgs.Control">
<summary>
Gets Control to retrieve value for.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Validator.ValidatorGetValueEventArgs.Validator">
<summary>
Gets validator that is requesting value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Validator.ValidatorGetValueEventArgs.ResetValue">
<summary>
Resets the Value set and indicates that validator will internally retrieve value for the control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Validator.ValidatorGetValueEventArgs.Value">
<summary>
Gets or sets the value that will be used by validator.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.WinApi.GetWindowPlacement(System.IntPtr,DevComponents.DotNetBar.WinApi.WINDOWPLACEMENT@)">
<summary>
Retrieves the show state and the restored, minimized, and maximized positions of the specified window.
</summary>
<param name="hWnd">
A handle to the window.
</param>
<param name="lpwndpl">
A pointer to the WINDOWPLACEMENT structure that receives the show state and position information.
<para>
Before calling GetWindowPlacement, set the length member to sizeof(WINDOWPLACEMENT). GetWindowPlacement fails if lpwndpl-> length is not set correctly.
</para>
</param>
<returns>
If the function succeeds, the return value is nonzero.
<para>
If the function fails, the return value is zero. To get extended error information, call GetLastError.
</para>
</returns>
</member>
<member name="T:DevComponents.DotNetBar.WinApi.WindowHitTestRegions">
<summary>Options available when a form is tested for mose positions.</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.Error">
<summary>HTERROR: On the screen background or on a dividing line between windows
(same as HTNOWHERE, except that the DefWindowProc function produces a system
beep to indicate an error).</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.TransparentOrCovered">
<summary>HTTRANSPARENT: In a window currently covered by another window in the
same thread (the message will be sent to underlying windows in the same thread
until one of them returns a code that is not HTTRANSPARENT).</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.NoWhere">
<summary>HTNOWHERE: On the screen background or on a dividing line between
windows.</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.ClientArea">
<summary>HTCLIENT: In a client area.</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.TitleBar">
<summary>HTCAPTION: In a title bar.</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.SystemMenu">
<summary>HTSYSMENU: In a window menu or in a Close button in a child window.</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.GrowBox">
<summary>HTGROWBOX: In a size box (same as HTSIZE).</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.Menu">
<summary>HTMENU: In a menu.</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.HorizontalScrollBar">
<summary>HTHSCROLL: In a horizontal scroll bar.</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.VerticalScrollBar">
<summary>HTVSCROLL: In the vertical scroll bar.</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.MinimizeButton">
<summary>HTMINBUTTON: In a Minimize button. </summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.MaximizeButton">
<summary>HTMAXBUTTON: In a Maximize button.</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.LeftSizeableBorder">
<summary>HTLEFT: In the left border of a resizable window (the user can click
the mouse to resize the window horizontally).</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.RightSizeableBorder">
<summary>HTRIGHT: In the right border of a resizable window (the user can click
the mouse to resize the window horizontally).</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.TopSizeableBorder">
<summary>HTTOP: In the upper-horizontal border of a window.</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.TopLeftSizeableCorner">
<summary>HTTOPLEFT: In the upper-left corner of a window border.</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.TopRightSizeableCorner">
<summary>HTTOPRIGHT: In the upper-right corner of a window border.</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.BottomSizeableBorder">
<summary>HTBOTTOM: In the lower-horizontal border of a resizable window (the
user can click the mouse to resize the window vertically).</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.BottomLeftSizeableCorner">
<summary>HTBOTTOMLEFT: In the lower-left corner of a border of a resizable
window (the user can click the mouse to resize the window diagonally).</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.BottomRightSizeableCorner">
<summary>HTBOTTOMRIGHT: In the lower-right corner of a border of a resizable
window (the user can click the mouse to resize the window diagonally).</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.NonSizableBorder">
<summary>HTBORDER: In the border of a window that does not have a sizing
border.</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.Object">
<summary>HTOBJECT: Unknown...No Documentation Found</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.CloseButton">
<summary>HTCLOSE: In a Close button.</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.HelpButton">
<summary>HTHELP: In a Help button.</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.SizeBox">
<summary>HTSIZE: In a size box (same as HTGROWBOX). (Same as GrowBox).</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.ReduceButton">
<summary>HTREDUCE: In a Minimize button. (Same as MinimizeButton).</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.WindowHitTestRegions.ZoomButton">
<summary>HTZOOM: In a Maximize button. (Same as MaximizeButton).</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.ShowWindowCommands.Hide">
<summary>
Hides the window and activates another window.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.ShowWindowCommands.Normal">
<summary>
Activates and displays a window. If the window is minimized or
maximized, the system restores it to its original size and position.
An application should specify this flag when displaying the window
for the first time.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.ShowWindowCommands.ShowMinimized">
<summary>
Activates the window and displays it as a minimized window.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.ShowWindowCommands.Maximize">
<summary>
Maximizes the specified window.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.ShowWindowCommands.ShowMaximized">
<summary>
Activates the window and displays it as a maximized window.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.ShowWindowCommands.ShowNoActivate">
<summary>
Displays a window in its most recent size and position. This value
is similar to <see cref="!:Win32.ShowWindowCommand.Normal"/>, except
the window is not actived.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.ShowWindowCommands.Show">
<summary>
Activates the window and displays it in its current size and position.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.ShowWindowCommands.Minimize">
<summary>
Minimizes the specified window and activates the next top-level
window in the Z order.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.ShowWindowCommands.ShowMinNoActive">
<summary>
Displays the window as a minimized window. This value is similar to
<see cref="!:Win32.ShowWindowCommand.ShowMinimized"/>, except the
window is not activated.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.ShowWindowCommands.ShowNA">
<summary>
Displays the window in its current size and position. This value is
similar to <see cref="!:Win32.ShowWindowCommand.Show"/>, except the
window is not activated.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.ShowWindowCommands.Restore">
<summary>
Activates and displays the window. If the window is minimized or
maximized, the system restores it to its original size and position.
An application should specify this flag when restoring a minimized window.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.ShowWindowCommands.ShowDefault">
<summary>
Sets the show state based on the SW_* value specified in the
STARTUPINFO structure passed to the CreateProcess function by the
program that started the application.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.WinApi.ShowWindowCommands.ForceMinimize">
<summary>
<b>Windows 2000/XP:</b> Minimizes a window, even if the thread
that owns the window is not responding. This flag should only be
used when minimizing windows from a different thread.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.Wizard">
<summary>
Represents Wizard control.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.Wizard.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Wizard.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Wizard.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Wizard.ResetHeaderStyle">
<summary>
Resets the style to it's default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Wizard.ResetFooterStyle">
<summary>
Resets the style to it's default value.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Wizard.NavigateBack">
<summary>
Simulates Back button click on Wizard control. Note that this method will raise the same events as
standard Wizard Back button click.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Wizard.NavigateNext">
<summary>
Simulates Next button click on Wizard control. Note that this method will raise the same events as
standard Wizard Next button click.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Wizard.NavigateCancel">
<summary>
Simulates Cancel button click on Wizard control. Note that this method will raise the same events as
standard Wizard Cancel button click.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Wizard.NavigateFinish">
<summary>
Simulates Finish button click on Wizard control. Note that this method will raise the same events as
standard Wizard Finish button click.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.Wizard.OnBackButtonClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises BackButtonClick event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.Wizard.OnNextButtonClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises NextButtonClick event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.Wizard.OnFinishButtonClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises FinishButtonClick event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.Wizard.OnCancelButtonClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises CancelButtonClick event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.Wizard.OnHelpButtonClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises HelpButtonClick event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.Wizard.OnWizardPageChanging(DevComponents.DotNetBar.WizardCancelPageChangeEventArgs)">
<summary>
Raises WizardPageChanging event.
</summary>
<param name="e">Provides event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.Wizard.OnWizardPageChanged(DevComponents.DotNetBar.WizardCancelPageChangeEventArgs)">
<summary>
Raises WizardPageChanged event.
</summary>
<param name="e">Provides event arguments</param>
</member>
<member name="E:DevComponents.DotNetBar.Wizard.BackButtonClick">
<summary>
Occurs when Back button is clicked. You can cancel any default processing performed by Wizard control by setting Cancel=true on event arguments.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Wizard.NextButtonClick">
<summary>
Occurs when Next button is clicked. You can cancel any default processing performed by Wizard control by setting Cancel=true on event arguments.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Wizard.FinishButtonClick">
<summary>
Occurs when Finish button is clicked. You can cancel any default processing performed by Wizard control by setting Cancel=true on event arguments.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Wizard.CancelButtonClick">
<summary>
Occurs when Cancel button is clicked. You can cancel any default processing performed by Wizard control by setting Cancel=true on event arguments.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Wizard.HelpButtonClick">
<summary>
Occurs when Help button is clicked. You can cancel any default processing performed by Wizard control by setting Cancel=true on event arguments.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Wizard.WizardPageChanging">
<summary>
Occurs before wizard page has changed and gives you opportunity to cancel the change.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Wizard.WizardPageChanged">
<summary>
Occurs after wizard page has changed. This event cannot be cancelled. To cancel the page change please use WizardPageChanging event.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.Wizard.LayoutWizardButtons">
<summary>
Occurs when wizard buttons (Back, Next, Finish etc) are positioned and resized.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.HeaderImage">
<summary>
Gets or sets the header image. Default value is null which means that internal header image is used. You can hide header image
by setting HeaderImageVisible property.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.HeaderImageVisible">
<summary>
Gets or sets whether header image is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.FormAcceptButton">
<summary>
Gets or sets wizard button that is clicked when ENTER key is pressed. Default value is eWizardFormAcceptButton.FinishAndNext which
indicates that finish button will be clicked if available otherwise next button will be clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.FormCancelButton">
<summary>
Gets or sets wizard button that is clicked when ESCAPE key is pressed. Default value is eWizardFormCancelButton.Cancel which
indicates that Cancel button will be clicked.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.PageChangeDisableButtons">
<summary>
Gets or sets whether all buttons are disabled while wizard page is changed which prevents users from clicking the buttons
if page change is taking longer. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.PageChangeWaitCursor">
<summary>
Gets or sets whether wait cursor is displayed while page is changed. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.SelectedPageIndex">
<summary>
Gets or sets the selected page index. You can set this property to change the currently selected wizard page.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.SelectedPage">
<summary>
Gets or sets selected wizard page. You can set this property to change the currently selected wizard page.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.WizardPages">
<summary>
Gets the collection of Wizard pages. The order of WizardPage objects inside of this collection determines the flow of the wizard.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.PagesHistory">
<summary>
Returns a Stack of page history. Each time next page is displayed by wizard, previously visited page is added to the history.
When user commands Wizard back, the last page from the history is shown and removed from the stack. You should not modify this collection
directly since it is maintained by Wizard control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.ButtonFlatStyle">
<summary>
Gets or sets the FlatStyle setting for the wizard buttons. Default value is FlatStyle.System
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.ButtonHeight">
<summary>
Gets or sets height of wizard command buttons. Default value is 22 pixels.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.BackButtonCausesValidation">
<summary>
Gets or sets whether back button causes validation to be performed on any controls that require validation when it receives focus. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.BackButtonTabIndex">
<summary>
Gets or sets tab index of back button. Default value is 1.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.BackButtonTabStop">
<summary>
Gets or sets a value indicating whether the user can give the focus to this back button using the TAB key. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.BackButtonText">
<summary>
Gets or sets caption of the back button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.BackButtonWidth">
<summary>
Gets or sets width of the back button. Default value is 74.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.BackButtonAutoSize">
<summary>
Gets or sets auto size of the button. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.BackButtonAutoSizeMode">
<summary>
Gets or sets auto size mode of the button. Default value is AutoSizeMode.GrowOnly.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.NextButtonCausesValidation">
<summary>
Gets or sets whether next button causes validation to be performed on any controls that require validation when it receives focus. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.NextButtonTabIndex">
<summary>
Gets or sets tab index of next button. Default value is 2.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.NextButtonTabStop">
<summary>
Gets or sets a value indicating whether the user can give the focus to button using the TAB key. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.NextButtonText">
<summary>
Gets or sets caption of the next button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.NextButtonWidth">
<summary>
Gets or sets width of the next button. Default value is 74.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.NextButtonAutoSize">
<summary>
Gets or sets auto size of the button. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.NextButtonAutoSizeMode">
<summary>
Gets or sets auto size mode of the button. Default value is AutoSizeMode.GrowOnly.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.CancelButtonCausesValidation">
<summary>
Gets or sets whether button causes validation to be performed on any controls that require validation when it receives focus. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.CancelButtonTabIndex">
<summary>
Gets or sets tab index of the button. Default value is 4.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.CancelButtonTabStop">
<summary>
Gets or sets a value indicating whether the user can give the focus to button using the TAB key. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.CancelButtonText">
<summary>
Gets or sets caption of the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.CancelButtonWidth">
<summary>
Gets or sets width of the button. Default value is 74.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.CancelButtonAutoSize">
<summary>
Gets or sets auto size of the button. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.CancelButtonAutoSizeMode">
<summary>
Gets or sets auto size mode of the button. Default value is AutoSizeMode.GrowOnly.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.FinishButtonCausesValidation">
<summary>
Gets or sets whether button causes validation to be performed on any controls that require validation when it receives focus. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.FinishButtonTabIndex">
<summary>
Gets or sets tab index of the button. Default value is 4.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.FinishButtonTabStop">
<summary>
Gets or sets a value indicating whether the user can give the focus to button using the TAB key. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.FinishButtonText">
<summary>
Gets or sets caption of the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.FinishButtonWidth">
<summary>
Gets or sets width of the button. Default value is 74.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.FinishButtonAlwaysVisible">
<summary>
Gets or sets whether finish button is always visible next to the Next button. Default value is false which means that Finish
button will be visible only on last Wizard page and it will replace the Next button. When set to true Finish button is always visible next
to the Next button except on first Welcome wizard page.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.FinishButtonAutoSize">
<summary>
Gets or sets auto size of the button. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.FinishButtonAutoSizeMode">
<summary>
Gets or sets auto size mode of the button. Default value is AutoSizeMode.GrowOnly.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.HelpButtonCausesValidation">
<summary>
Gets or sets whether button causes validation to be performed on any controls that require validation when it receives focus. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.HelpButtonVisible">
<summary>
Gets or sets whether button is visible. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.HelpButtonTabIndex">
<summary>
Gets or sets tab index of the button. Default value is 5.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.HelpButtonTabStop">
<summary>
Gets or sets a value indicating whether the user can give the focus to button using the TAB key. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.HelpButtonText">
<summary>
Gets or sets caption of the button.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.HelpButtonWidth">
<summary>
Gets or sets width of the button. Default value is 74.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.HelpButtonAutoSize">
<summary>
Gets or sets auto size of the button. Default value is false.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.HelpButtonAutoSizeMode">
<summary>
Gets or sets auto size mode of the button. Default value is AutoSizeMode.GrowOnly.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.FooterHeight">
<summary>
Gets or sets the height of the wizard footer. Default value is 46
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.HeaderHeight">
<summary>
Gets or sets the height of the wizard header. Default value is 60
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.HeaderImageAlignment">
<summary>
Gets or sets the header image alignment. Default value is right.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.HeaderImageSize">
<summary>
Gets or sets the header image size for interior wizard pages. Default value is 48x48
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.HeaderTitleIndent">
<summary>
Gets or sets indentation of header title label. Default value is 16.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.HeaderDescriptionIndent">
<summary>
Gets or sets indentation of header description label. Default value is 44.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:DevComponents.DotNetBar.Wizard.HeaderDescriptionFont" -->
<member name="P:DevComponents.DotNetBar.Wizard.HeaderCaptionFont">
<summary>
Indicates the font used to render caption header text.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.HeaderDescriptionVisible">
<summary>
Gets or sets whether description text displayed in wizard header is visible.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.HeaderStyle">
<summary>
Gets or sets the header background style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.FooterStyle">
<summary>
Gets or sets the footer background style.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.NextButtonControl">
<summary>
Returns reference to internal Next button control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.CancelButtonControl">
<summary>
Returns reference to internal Cancel button control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.FinishButtonControl">
<summary>
Returns reference to internal Finish button control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.HelpButtonControl">
<summary>
Returns reference to internal Help button control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.BackButtonControl">
<summary>
Returns reference to internal Back button control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.ButtonFocusCuesEnabled">
<summary>
Gets or sets whether Focus cues on wizard navigation buttons are enabled. Default value is true.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.Wizard.ButtonStyle">
<summary>
Gets or sets the visual style used for wizard buttons.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.WizardButtonsLayoutEventArgs">
<summary>
Provides data for LayoutWizardButtons event.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.WizardButtonsLayoutEventArgs.BackButtonBounds">
<summary>
Gets or sets bounds of Back button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.WizardButtonsLayoutEventArgs.NextButtonBounds">
<summary>
Gets or sets bounds of Next button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.WizardButtonsLayoutEventArgs.FinishButtonBounds">
<summary>
Gets or sets bounds of Finish button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.WizardButtonsLayoutEventArgs.CancelButtonBounds">
<summary>
Gets or sets bounds of Cancel button.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.WizardButtonsLayoutEventArgs.HelpButtonBounds">
<summary>
Gets or sets bounds of Help button.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.WizardButtonsLayoutEventArgs.#ctor">
<summary>
Creates new instance of the class.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.WizardButtonsLayoutEventArgs.#ctor(System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Rectangle)">
<summary>
Creates new instance of the class and initializes it with default values.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.WizardButtonsLayoutEventHandler">
<summary>
Defines delegate for WizardPageChange events.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.WizardPage.UpdatePageState">
<summary>
Updates page state when one of the page appearance properties has changed.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.WizardPage.OnBeforePageDisplayed(DevComponents.DotNetBar.WizardCancelPageChangeEventArgs)">
<summary>
Fires BeforePageDisplayed event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.WizardPage.InvokeBeforePageDisplayed(DevComponents.DotNetBar.WizardCancelPageChangeEventArgs)">
<summary>
Invokes the BeforePageDisplayed event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.WizardPage.OnAfterPageDisplayed(DevComponents.DotNetBar.WizardPageChangeEventArgs)">
<summary>
Fires AfterPageDisplayed event.
</summary>
<param name="e">Event arguments.</param>
</member>
<member name="M:DevComponents.DotNetBar.WizardPage.InvokeAfterPageDisplayed(DevComponents.DotNetBar.WizardPageChangeEventArgs)">
<summary>
Invokes AfterPageDisplayed event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.WizardPage.OnAfterPageHidden(DevComponents.DotNetBar.WizardPageChangeEventArgs)">
<summary>
Fires BeforePageDisplayed event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.WizardPage.InvokeAfterPageHidden(DevComponents.DotNetBar.WizardPageChangeEventArgs)">
<summary>
Invokes the BeforePageDisplayed event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.WizardPage.OnBackButtonClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises BackButtonClick event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.WizardPage.InvokeBackButtonClick(System.ComponentModel.CancelEventArgs)">
<summary>
Invokes BackButtonClick event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.WizardPage.OnNextButtonClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises NextButtonClick event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.WizardPage.InvokeNextButtonClick(System.ComponentModel.CancelEventArgs)">
<summary>
Invokes NextButtonClick event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.WizardPage.OnFinishButtonClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises FinishButtonClick event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.WizardPage.InvokeFinishButtonClick(System.ComponentModel.CancelEventArgs)">
<summary>
Invokes FinishButtonClick event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.WizardPage.OnCancelButtonClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises CancelButtonClick event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.WizardPage.InvokeCancelButtonClick(System.ComponentModel.CancelEventArgs)">
<summary>
Invokes CancelButtonClick event.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.WizardPage.OnHelpButtonClick(System.ComponentModel.CancelEventArgs)">
<summary>
Raises HelpButtonClick event.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:DevComponents.DotNetBar.WizardPage.InvokeHelpButtonClick(System.ComponentModel.CancelEventArgs)">
<summary>
Invokes HelpButtonClick event.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.WizardPage.BeforePageDisplayed">
<summary>
Occurs before page is displayed. This event can cancel the page change. You can perform any additional setup of the Wizard page in this event.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.WizardPage.AfterPageDisplayed">
<summary>
Occurs after page has been displayed.This event can cancel the page change. You can perform any additional setup of the Wizard page in this event.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.WizardPage.AfterPageHidden">
<summary>
Occurs after page is hidden. You can perform any additional steps that are needed to complete wizard step in this event.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.WizardPage.BackButtonClick">
<summary>
Occurs when Back button is clicked. You can cancel any default processing performed by Wizard control by setting Cancel=true on event arguments.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.WizardPage.NextButtonClick">
<summary>
Occurs when Next button is clicked. You can cancel any default processing performed by Wizard control by setting Cancel=true on event arguments.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.WizardPage.FinishButtonClick">
<summary>
Occurs when Finish button is clicked. You can cancel any default processing performed by Wizard control by setting Cancel=true on event arguments.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.WizardPage.CancelButtonClick">
<summary>
Occurs when Cancel button is clicked. You can cancel any default processing performed by Wizard control by setting Cancel=true on event arguments.
</summary>
</member>
<member name="E:DevComponents.DotNetBar.WizardPage.HelpButtonClick">
<summary>
Occurs when Help button is clicked. You can cancel any default processing performed by Wizard control by setting Cancel=true on event arguments.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.WizardPage.IsSelected">
<summary>
Gets whether page is currently selected page in Wizard.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.WizardPage.BackButtonEnabled">
<summary>
Gets or sets whether back button is enabled when page is active. Default value is eWizardButtonState.Auto which indicates that state is
automatically managed by control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.WizardPage.BackButtonVisible">
<summary>
Gets or sets whether back button is visible when page is active. Default value is eWizardButtonState.Auto.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.WizardPage.NextButtonEnabled">
<summary>
Gets or sets whether next button is enabled when page is active. Default value is eWizardButtonState.Auto which indicates that state is
automatically managed by control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.WizardPage.NextButtonVisible">
<summary>
Gets or sets whether next button is visible when page is active. Default value is eWizardButtonState.Auto.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.WizardPage.FinishButtonEnabled">
<summary>
Gets or sets whether finish button is enabled when page is active. Default value is eWizardButtonState.Auto which indicates that state is
automatically managed by control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.WizardPage.CancelButtonEnabled">
<summary>
Gets or sets whether cancel button is enabled when page is active. Default value is eWizardButtonState.Auto which indicates that state is
automatically managed by control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.WizardPage.CancelButtonVisible">
<summary>
Gets or sets whether cancel button is visible when page is active. Default value is eWizardButtonState.Auto.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.WizardPage.HelpButtonEnabled">
<summary>
Gets or sets whether help button is enabled when page is active. Default value is eWizardButtonState.Auto which indicates that state is
automatically managed by control.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.WizardPage.HelpButtonVisible">
<summary>
Gets or sets whether help button is visible when page is active. Default value is eWizardButtonState.Auto.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.WizardPage.PageHeaderImage">
<summary>
Gets or sets the page header image when page is an interior page, InteriorPage=true. Default value is null.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.WizardPage.PageTitle">
<summary>
Gets or sets the text that is displayed as title in wizard header when page is active.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.WizardPage.PageDescription">
<summary>
Gets or sets the text that is displayed as description in wizard header when page is active.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.WizardPage.FormCaption">
<summary>
Gets or sets the text that is displayed on form caption when page is active. Default value is empty string which indicates that form caption
is not changed when page becomes active.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.WizardPage.InteriorPage">
<summary>
Gets or sets whether page is interior page. Interior pages use wizard header area to display page title, description and optional image. They are also padded and do not
fill the client area of the Wizard. Default value is true.
You can set this value to false to hide header area and make page fill the client area of the wizard.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.WizardPage.Visible">
<summary>
Gets or sets whether page is visible. Page visibility is managed by Wizard control and it should not be set directly.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.WizardPageCollection">
<summary>
Represents the collection of WizardPage objects which determines the flow of the wizard.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.WizardPageCollection.Add(DevComponents.DotNetBar.WizardPage)">
<summary>
Adds new object to the collection.
</summary>
<param name="WizardPage">Object to add.</param>
<returns>Index of newly added object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.WizardPageCollection.AddRange(DevComponents.DotNetBar.WizardPage[])">
<summary>
Adds an array of objects to the collection.
</summary>
<param name="WizardPages">Array of WizardPage objects.</param>
</member>
<member name="M:DevComponents.DotNetBar.WizardPageCollection.Insert(System.Int32,DevComponents.DotNetBar.WizardPage)">
<summary>
Inserts new object into the collection.
</summary>
<param name="index">Position of the object.</param>
<param name="value">Object to insert.</param>
</member>
<member name="M:DevComponents.DotNetBar.WizardPageCollection.IndexOf(DevComponents.DotNetBar.WizardPage)">
<summary>
Returns index of the object inside of the collection.
</summary>
<param name="value">Reference to the object.</param>
<returns>Index of the object.</returns>
</member>
<member name="M:DevComponents.DotNetBar.WizardPageCollection.Contains(DevComponents.DotNetBar.WizardPage)">
<summary>
Returns whether collection contains specified object.
</summary>
<param name="value">Object to look for.</param>
<returns>true if object is part of the collection, otherwise false.</returns>
</member>
<member name="M:DevComponents.DotNetBar.WizardPageCollection.Remove(DevComponents.DotNetBar.WizardPage)">
<summary>
Removes specified object from the collection.
</summary>
<param name="value"></param>
</member>
<member name="M:DevComponents.DotNetBar.WizardPageCollection.CopyTo(DevComponents.DotNetBar.WizardPage[],System.Int32)">
<summary>
Copies collection into the specified array.
</summary>
<param name="array">Array to copy collection to.</param>
<param name="index">Starting index.</param>
</member>
<member name="M:DevComponents.DotNetBar.WizardPageCollection.CopyTo(DevComponents.DotNetBar.WizardPage[])">
<summary>
Copies contained items to the WizardPage array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="M:DevComponents.DotNetBar.WizardPageCollection.CopyTo(DevComponents.DotNetBar.WizardPageCollection)">
<summary>
Copies contained items to the WizardPage array.
</summary>
<param name="array">Array to copy to.</param>
</member>
<member name="P:DevComponents.DotNetBar.WizardPageCollection.Parent">
<summary>
Gets the parent this collection is associated with.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.WizardPageCollection.Item(System.Int32)">
<summary>
Returns reference to the object in collection based on it's index.
</summary>
</member>
<member name="P:DevComponents.DotNetBar.WizardPageCollection.Item(System.String)">
<summary>
Returns reference to the object in collection based on it's name.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.WizardPageChangeEventArgs">
<summary>
Provides data for Wizard Page Change events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.WizardPageChangeEventArgs.NewPage">
<summary>
Specifies the new active wizard page. You can change this argument when handling WizardPageChanging event and provide newly selected page of your own.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.WizardPageChangeEventArgs.OldPage">
<summary>
Specifies page that was or currently is active.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.WizardPageChangeEventArgs.PageChangeSource">
<summary>
Indicates the wizard button that was source of page change.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.WizardPageChangeEventArgs.#ctor(DevComponents.DotNetBar.WizardPage,DevComponents.DotNetBar.WizardPage,DevComponents.DotNetBar.eWizardPageChangeSource)">
<summary>
Creates new instance of the class with default values.
</summary>
<param name="newPage">New wizard page</param>
<param name="oldPage">Old or current wizard page</param>
<param name="pageChangeSource">Page change source</param>
</member>
<member name="T:DevComponents.DotNetBar.WizardCancelPageChangeEventArgs">
<summary>
Provides data for Wizard Page Change events.
</summary>
</member>
<member name="F:DevComponents.DotNetBar.WizardCancelPageChangeEventArgs.Cancel">
<summary>
Allows you to cancel the page change.
</summary>
</member>
<member name="M:DevComponents.DotNetBar.WizardCancelPageChangeEventArgs.#ctor(DevComponents.DotNetBar.WizardPage,DevComponents.DotNetBar.WizardPage,DevComponents.DotNetBar.eWizardPageChangeSource)">
<summary>
Creates new instance of the class with default values.
</summary>
<param name="newPage">New wizard page</param>
<param name="oldPage">Old or current wizard page</param>
<param name="pageChangeSource">Page change source</param>
</member>
<member name="T:DevComponents.DotNetBar.WizardCancelPageChangeEventHandler">
<summary>
Defines delegate for WizardPageChange events.
</summary>
</member>
<member name="T:DevComponents.DotNetBar.WizardPageChangeEventHandler">
<summary>
Defines delegate for WizardPageChange events.
</summary>
</member>
</members>
</doc>