Files
2018-03-27 17:27:28 +02:00

90643 lines
4.4 MiB
Plaintext

<?xml version="1.0"?>
<doc>
<assembly>
<name>FarPoint.Win.Spread</name>
</assembly>
<members>
<member name="T:FarPoint.Win.Spread.DrawingSpace.DrawingSurface">
<summary>
Represents the drawing surface that handles mouse input and draws graphics objects.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.DrawingSurface.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingSurface.#ctor">
<summary>
Creates a new drawing surface.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingSurface.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingSurface.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingSurface.OnPaint(System.Windows.Forms.PaintEventArgs)">
<summary>
Draws graphic objects and group selection rectangle (if necessary).
</summary>
<param name="e">Paint Event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingSurface.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Handles mouse down processing.
</summary>
<param name="e">Mouse Event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingSurface.DrawingSurface_MouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Mouse down.
Left button used by current tool.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingSurface.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
Handles mouse move processing.
</summary>
<param name="e">Mouse Event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingSurface.DrawingSurface_MouseMove(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Mouse move.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingSurface.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
Handles mouse up processing.
</summary>
<param name="e">Mouse Event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingSurface.DrawingSurface_MouseUp(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Mouse up event.
Left button used by current tool.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingSurface.Initialize(System.Object)">
<summary>
Initializes the drawing surface of the specified control.
</summary>
<param name="owner"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingSurface.DrawGroupSelection(System.Drawing.Graphics)">
<summary>
Draws a group selection rectangle.
</summary>
<param name="g"></param>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingSurface.Owner">
<summary>
Gets or sets the control that owns this drawing surface.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingSurface.SelectionRectangle">
<summary>
Gets or sets the group selection rectangle.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingSurface.SelectionRectangleVisible">
<summary>
Gets or sets whether the group selection rectangle is displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingSurface.CloseFigures">
<summary>
Gets or sets whether figures are closed before a new figure is drawn.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingSurface.CurrentTool">
<summary>
Current drawing tool.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingSurface.DrawnObjectList">
<summary>
List of drawn graphics objects.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingSurface.BackColor">
<summary>
Gets or sets the background color for the control.
</summary>
<value></value>
<returns>A <see cref="T:System.Drawing.Color"/> that represents the background color of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultBackColor"/> property.</returns>
<PermissionSet>
<IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
</PermissionSet>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.DrawingTool">
<summary>
Base class for all drawing tools
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingTool.OnMouseDown(FarPoint.Win.Spread.DrawingSpace.DrawingSurface,System.Windows.Forms.MouseEventArgs)">
<summary>
Mouse button pressed
</summary>
<param name="drawingSurface"></param>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingTool.OnMouseMove(FarPoint.Win.Spread.DrawingSpace.DrawingSurface,System.Windows.Forms.MouseEventArgs)">
<summary>
Mouse moved
</summary>
<param name="drawingSurface"></param>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingTool.OnMouseUp(FarPoint.Win.Spread.DrawingSpace.DrawingSurface,System.Windows.Forms.MouseEventArgs)">
<summary>
Mouse button released
</summary>
<param name="drawingSurface"></param>
<param name="e"></param>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.DrawingToolObject">
<summary>
Base class for all tools which generate a drawn object
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingToolObject.OnMouseUp(FarPoint.Win.Spread.DrawingSpace.DrawingSurface,System.Windows.Forms.MouseEventArgs)">
<summary>
Left mouse released.
New object is created and resized.
</summary>
<param name="drawingSurface"></param>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingToolObject.AddNewObject(FarPoint.Win.Spread.DrawingSpace.DrawingSurface,FarPoint.Win.Spread.DrawingSpace.DrawingObject)">
<summary>
Add new object to drawing surface.
Function is called when user left-clicks drawing surface,
and one of ToolObject-derived tools is active.
</summary>
<param name="drawingSurface"></param>
<param name="o"></param>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingToolObject.Cursor">
<summary>
Tool cursor.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.GraphicsList">
<summary>
List of graphic objects
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.GraphicsList.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Save object to serialization stream
</summary>
<param name="info"></param>
<param name="context"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.GraphicsList.Draw(System.Drawing.Graphics)">
<summary>
Draws the object in the specified graphics device.
</summary>
<param name="g">Graphics device</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.GraphicsList.Clear">
<summary>
Clears all objects in the list.
</summary>
<returns>
true if at least one object is deleted; false otherwise
</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.GraphicsList.GetSelectedObject(System.Int32)">
<summary>
Gets the specified selected object.
</summary>
<param name="index">Index of the selected object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.GraphicsList.Add(FarPoint.Win.Spread.DrawingSpace.DrawingObject)">
<summary>
Adds a graphics object.
</summary>
<param name="obj">Graphics object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.GraphicsList.SelectInRectangle(System.Drawing.Rectangle)">
<summary>
Determine whether a graphics object is selected (in the specified rectangle).
</summary>
<param name="rectangle">Rectangle bounding the selected area</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.GraphicsList.UnselectAll">
<summary>
Unselect all the graphics objects.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.GraphicsList.SelectAll">
<summary>
Selects all the graphics objects.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.GraphicsList.DeleteSelection">
<summary>
Removes all the selected items.
</summary>
<returns>
true if at least one object is deleted; false otherwise
</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.GraphicsList.MoveSelectionToFront">
<summary>
Moves selected items to front (beginning of the list)
</summary>
<returns>
true if at least one object is moved
</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.GraphicsList.MoveSelectionToBack">
<summary>
Moves selected items to back (end of the list)
</summary>
<returns>
true if at least one object is moved
</returns>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.GraphicsList.Count">
<summary>
Counts all graphics objects from the graphics list.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.GraphicsList.Item(System.Int32)">
<summary>
Gets all graphics objects.
</summary>
<param name="index">Integer index of the graphics object</param>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.GraphicsList.SelectionCount">
<summary>
Gets the number of selected objects in the list.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.DrawingToolPointer">
<summary>
Pointer tool
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingToolPointer.OnMouseDown(FarPoint.Win.Spread.DrawingSpace.DrawingSurface,System.Windows.Forms.MouseEventArgs)">
<summary>
Left mouse button is pressed
</summary>
<param name="drawingSurface"></param>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingToolPointer.OnMouseMove(FarPoint.Win.Spread.DrawingSpace.DrawingSurface,System.Windows.Forms.MouseEventArgs)">
<summary>
Mouse is moved.
None button is pressed, ot left button is pressed.
</summary>
<param name="drawingSurface"></param>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingToolPointer.OnMouseUp(FarPoint.Win.Spread.DrawingSpace.DrawingSurface,System.Windows.Forms.MouseEventArgs)">
<summary>
Right mouse button is released
</summary>
<param name="drawingSurface"></param>
<param name="e"></param>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.DrawingToolPolygon">
<summary>
Polygon tool
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingToolPolygon.OnMouseDown(FarPoint.Win.Spread.DrawingSpace.DrawingSurface,System.Windows.Forms.MouseEventArgs)">
<summary>
Left mouse button is pressed
</summary>
<param name="drawingSurface"></param>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingToolPolygon.OnMouseMove(FarPoint.Win.Spread.DrawingSpace.DrawingSurface,System.Windows.Forms.MouseEventArgs)">
<summary>
Mouse move - resize new polygon
</summary>
<param name="drawingSurface"></param>
<param name="e"></param>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.DrawingObject">
<summary>
Base class for all drawn objects
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingObject.SetScale(System.Single)">
<summary>
Scale by the factor
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingObject.GetPoints">
<summary>
Gets the points that make up the objects shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingObject.GetPoint(System.Int32)">
<summary>
Gets a specified point.
</summary>
<param name="index">Integer index of the point</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingObject.Draw(System.Drawing.Graphics)">
<summary>
Draws the object to the specified graphics device.
</summary>
<param name="g">Graphics device</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingObject.GetHandle(System.Int32)">
<summary>
Gets handle point by one-based number.
</summary>
<param name="handleNumber">Number of handle</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingObject.GetHandleRectangle(System.Int32)">
<summary>
Gets handle rectangle by one-based number.
</summary>
<param name="handleNumber">Number of handle</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingObject.DrawTracker(System.Drawing.Graphics)">
<summary>
Draws a tracker for the selected object.
</summary>
<param name="g">Graphics device</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingObject.HitTest(System.Drawing.Point)">
<summary>
Hit test.
Return value: -1 - no hit
0 - hit anywhere
> 1 - handle number
</summary>
<param name="point">Point</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingObject.PointInObject(System.Drawing.Point)">
<summary>
Tests whether the point is inside of the object.
</summary>
<param name="point">Point</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingObject.GetHandleCursor(System.Int32)">
<summary>
Gets the cursor for the specified handle.
</summary>
<param name="handleNumber">Number of the handle</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingObject.IntersectsWith(System.Drawing.Rectangle)">
<summary>
Tests whether the object intersects with the rectangle.
</summary>
<param name="rectangle">Rectangle bounding the objects</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingObject.Move(System.Int32,System.Int32)">
<summary>
Move object
</summary>
<param name="deltaX"></param>
<param name="deltaY"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingObject.MoveHandleTo(System.Drawing.Point,System.Int32)">
<summary>
Move handle to the point
</summary>
<param name="point"></param>
<param name="handleNumber"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingObject.Dump">
<summary>
Dump (for debugging)
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingObject.Normalize">
<summary>
Normalize object.
Call this function in the end of object resizing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingObject.SaveToStream(System.Runtime.Serialization.SerializationInfo,System.Int32)">
<summary>
Save object to serialization stream
</summary>
<param name="info"></param>
<param name="orderNumber"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingObject.LoadFromStream(System.Runtime.Serialization.SerializationInfo,System.Int32)">
<summary>
Load object from serialization stream
</summary>
<param name="info"></param>
<param name="orderNumber"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingObject.Initialize">
<summary>
Initialization
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingObject.Selected">
<summary>
Selection flag
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingObject.Color">
<summary>
Color
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingObject.PenWidth">
<summary>
Pen width
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingObject.HandleCount">
<summary>
Number of handles
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingObject.LastUsedColor">
<summary>
Last used color
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingObject.LastUsedPenWidth">
<summary>
Last used pen width
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.DrawnLine">
<summary>
Line graphic object
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.DrawnLine.areaPath">
<summary>
Graphic objects for hit test
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawnLine.GetPoint(System.Int32)">
<summary>
Get a specific point
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawnLine.GetHandle(System.Int32)">
<summary>
Gets the handle point by one-based number.
</summary>
<param name="handleNumber">Number of the handle</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawnLine.HitTest(System.Drawing.Point)">
<summary>
Hit test.
Return value: -1 - no hit
0 - hit anywhere
> 1 - handle number
</summary>
<param name="point">Point</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawnLine.Invalidate">
<summary>
Invalidate object.
When object is invalidated, path used for hit test
is released and should be created again.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawnLine.CreateObjects">
<summary>
Creates graphic objects used from hit test.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.DrawnPolygon">
<summary>
Polygon graphic object
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawnPolygon.SetScale(System.Single)">
<summary>
Scale by the factor
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawnPolygon.GetPoint(System.Int32)">
<summary>
Gets a specific point
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawnPolygon.GetHandle(System.Int32)">
<summary>
Gets handle point by one-based number.
</summary>
<param name="handleNumber"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawnPolygon.GetHandleRectangle(System.Int32)">
<summary>
Gets handle rectangle by one-based number.
</summary>
<param name="handleNumber"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawnPolygon.CreateObjects">
<summary>
Creates a graphic object used for hit test.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawnPolygon.DrawTracker(System.Drawing.Graphics)">
<summary>
Draws a tracker for the selected object.
</summary>
<param name="g">Graphics device</param>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawnPolygon.Selected">
<summary>
Selection flag
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.DrawingToolbar">
<summary>
Represents the toolbar for shapes.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingToolbar.#ctor">
<summary>
Creates a new drawing toolbar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingToolbar.#ctor(System.Windows.Forms.Control,FarPoint.Win.Spread.DrawingSpace.PSContainer)">
<summary>
Creates a new drawing toolbar for the specified container in the specified control.
</summary>
<param name="control">Control</param>
<param name="container">Container</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingToolbar.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingToolbar.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingToolbar.GetChartLocationOffset(System.Int32,System.Int32)">
<summary>
Get the correct chart location in spread view.
</summary>
<param name="width">Chart width</param>
<param name="height">Chart height</param>
<returns>Correct chart location</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingToolbar.SetShapeStyle(FarPoint.Win.Spread.DrawingSpace.ShapeEventArgs)">
<summary>
Set the Shape Style.
</summary>
<param name="e">Argument object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingToolbar.ShowSymbolDialog">
<summary>
Show the symbol dialog.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DrawingToolbar.AddShape(System.String)">
<summary>
Add a Shape by shape type.
</summary>
<param name="ShapeType">Shape type.</param>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingToolbar.ToolbarPanel">
<summary>
Gets the toolbar panel.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingToolbar.ToolbarMain">
<summary>
Gets the main toolbar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingToolbar.ToolbarSupplement">
<summary>
Gets the supplementary toolbar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingToolbar.OwnsFocus">
<summary>
Gets or sets whether the OwningControl receives focus after a toolbar action.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingToolbar.OwningControl">
<summary>
Gets or sets the owner control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingToolbar.ShapeContainer">
<summary>
Gets or sets the shape container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingToolbar.ContainerXOffset">
<summary>
Internal use only.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.DrawingToolbar.ContainerYOffset">
<summary>
Internal use only.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.SymbolDataGridView">
<summary>
Represents the Symbol DataGridView.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SymbolDataGridView.#ctor">
<summary>
Create a new SymbolDataGridView.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SymbolDataGridView.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
<summary>
Raises the KeyDown Event
</summary>
<param name="e">object</param>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.SymbolDialog">
<summary>
Represents the SymbolDialog.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.SymbolDialog.spread">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SymbolDialog.#ctor(FarPoint.Win.Spread.FpSpread,System.Int32)">
<summary>
Create a new SymbolDialog.
</summary>
<param name="spread">spread object</param>
<param name="symbol">symbol index</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SymbolDialog.#ctor(FarPoint.Win.Spread.FpSpread,System.Int32,System.Int32)">
<summary>
Create a new SymbolDialog.
</summary>
<param name="spread">spread object</param>
<param name="symbol">symbol index</param>
<param name="selectStart">select item start index</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SymbolDialog.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:FarPoint.Win.Spread.DrawingSpace.SymbolDialog.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SymbolDialog.LocalizeGUIStrings">
<summary>
Localize all GUI strings of this instance
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SymbolDialog.InitSymbol">
<summary>
Get the InitSymbol.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.NewPaperSize">
<summary>
Represents the NewPaperSize.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.NewPaperSize.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.NewPaperSize.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:FarPoint.Win.Spread.DrawingSpace.NewPaperSize.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.NewPaperSize.#ctor(FarPoint.Win.Spread.SheetView)">
<summary>
Create a new NewPaperSize.
</summary>
<param name="sheet">sheetview object</param>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.NewPaperSize.PageWidth">
<summary>
Page width.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.NewPaperSize.PageHeight">
<summary>
Page height.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.Zoom">
<summary>
Represents the Zoom.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.Zoom.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Zoom.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:FarPoint.Win.Spread.DrawingSpace.Zoom.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Zoom.#ctor(FarPoint.Win.Spread.FpSpread)">
<summary>
Create a new Zoom.
</summary>
<param name="spread"></param>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.ShapeEventArgs">
<summary>
Represents the ShapeEventArgs.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ShapeEventArgs.#ctor">
<summary>
Creates a new object with the SubEditorCancel event arguments.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ShapeEventArgs.#ctor(System.String)">
<summary>
Creates a new object with the SubEditorCancel event arguments.
</summary>
<param name="type">Shape type</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ShapeEventArgs.#ctor(System.String,System.Drawing.Color)">
<summary>
Creates a new object with the SubEditorCancel event arguments.
</summary>
<param name="type">Shape type</param>
<param name="shapecolor">Shape color</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ShapeEventArgs.#ctor(System.String,System.String)">
<summary>
Creates a new object with the SubEditorCancel event arguments.
</summary>
<param name="type">Shape type</param>
<param name="childType">Shape child type</param>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.ShapeEventArgs.ChildType">
<summary>
Get or set the ChildType
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.ShapeEventArgs.ShapeType">
<summary>
Get or set the ShapeType
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.ShapeEventArgs.ShapeColor">
<summary>
Get or set the ShapeColor
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.FontPicker">
<summary>
Represents the FarPoint presentation space font picker.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.FontPicker.#ctor">
<summary>
Creates a new font picker.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.FontPicker.#ctor(System.Boolean)">
<summary>
Creates a new font picker.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.FontPicker.#ctor(System.Boolean,System.Boolean)">
<summary>
Creates a new font picker.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.FontPicker.Dispose(System.Boolean)">
<summary>
Internal use only. Clean up any resources being used.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.FontPicker.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.DrawingSpace.FontPicker.FontSelected">
<summary>
Handles the font selected event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.FontPicker.FontName">
<summary>
Gets or sets the name of the font.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.FontPicker.SelectedFont">
<summary>
Gets or sets the font for selected text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.FontPicker.TextString">
<summary>
Gets or sets the text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.FontPicker.FontSize">
<summary>
Gets or sets the text.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.FontPickerWide">
<summary>
Represents the FarPoint presentation space wide font picker
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.FontPickerWide.#ctor">
<summary>
Creates a new wide font picker.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.FontPickerWide.Dispose(System.Boolean)">
<summary>
Internal use only. Clean up any resources being used.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.FontPickerWide.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.FontPickerWide.IsDirty">
<summary>
Gets whether the user changed the font or its properties.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.DrawingSpace.FontPickerWide.FontSelected">
<summary>
Occurs when font is selected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.FontPickerWide.FontName">
<summary>
Gets or sets the name of the font.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.FontPickerWide.FontSize">
<summary>
Gets or sets the text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.FontPickerWide.OriginalFont">
<summary>
Gets the original font assigned to the control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.FontPickerWide.SelectedFont">
<summary>
Gets or sets the font for selected text.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.ChildActivationPolicy">
<summary>
Specifies the activation behavior of an embedded child control.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.ChildActivationPolicy.None">
<summary>
Does not allow user activation
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.ChildActivationPolicy.Click">
<summary>
Allows user to activate the control with a single click
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.ChildActivationPolicy.DoubleClick">
<summary>
Allows user to activate the control with a double click
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.IPSObject">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.IPSObject.GetGrabHandleRectangles(System.Drawing.Rectangle,System.Drawing.Rectangle[]@)">
<summary>
Gets the grab handle rectangles.
</summary>
<param name="r">Rectangular area</param>
<param name="handleRects">Array of grab handles</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.IPSObject.PaintGrabHandles(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints the grab handles.
</summary>
<param name="g">Graphics device interface</param>
<param name="r">Rectangular area</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.IPSObject.DoMouseEnter(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Mouse enter.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.IPSObject.DoMouseLeave(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Mouse leave.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.IPSObject.Top">
<summary>
Gets or sets the top of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.IPSObject.Left">
<summary>
Gets or sets the left (near) of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.IPSObject.Height">
<summary>
Gets or sets the height of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.IPSObject.Width">
<summary>
Gets or sets the width of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.IPSObject.Size">
<summary>
Gets or sets the size of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.IPSObject.Location">
<summary>
Gets or sets the location of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.IPSObject.CanMove">
<summary>
Gets or sets whether the object can be moved.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.IPSObject.CanSize">
<summary>
Gets or sets whether the object can be resized.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.IPSObject.Anchor">
<summary>
Gets or sets the anchor.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.IPSObject.SizeProportional">
<summary>
Gets or sets whether the size is proportional.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.DrawingSpace.IPSObject.MouseEnter">
<summary>
Occurs when the mouse enters the object.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.DrawingSpace.IPSObject.MouseLeave">
<summary>
Occurs when the mouse leaves the object.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.IPdfSupportPSObject">
<summary>
Interface that supports printing to PDF for control layer objects.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.IPdfSupportPSObject.Print(FarPoint.PDF.PdfGraphics,System.Drawing.Rectangle,System.Single)">
<summary>
Prints to PDF the control layer objects.
</summary>
<param name="g">PDF graphics device interface</param>
<param name="rectangle">Rectangular bounds to print</param>
<param name="zoomFactor">Numeric scaling factor</param>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.Sizing">
<summary>
Specifies the sizing aspects of the object.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.Sizing.None">
<summary>
Does not allow user sizing
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.Sizing.Height">
<summary>
Allows user to size the height of the object
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.Sizing.Width">
<summary>
Allows user to size the width of the object
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.Sizing.HeightAndWidth">
<summary>
Allows user to size both the height of the object
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.Moving">
<summary>
Specifies the movement aspects of the object.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.Moving.None">
<summary>
Does not allow user movement
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.Moving.Horizontal">
<summary>
Allows the user to horizontally move the object
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.Moving.Vertical">
<summary>
Allows the user to vertically move the object
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.Moving.HorizontalAndVertical">
<summary>
Allows the user to move the object both horizontally and vertically
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.ShadowDirection">
<summary>
Specifies the direction of the drop shadow of the shape.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.ShadowDirection.None">
<summary>
Displays no shadow
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.ShadowDirection.Right">
<summary>
Displays a shadow on the right of the object only
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.ShadowDirection.BottomRight">
<summary>
Displays a shadow on the bottom and right of the object
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.ShadowDirection.Bottom">
<summary>
Displays a shadow on the bottom of the object only
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.ShadowDirection.BottomLeft">
<summary>
Displays a shadow on the bottom and left of the object
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.ShadowDirection.Left">
<summary>
Displays a shadow on the left of the object only
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.ShadowDirection.TopLeft">
<summary>
Displays a shadow on the top and left of the object
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.ShadowDirection.Top">
<summary>
Displays a shadow on the top of the object only
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.ShadowDirection.TopRight">
<summary>
Displays a shadow on the top and right of the object
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.GradientStyle">
<summary>
Specifies the background gradient style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.GradientStyle.None">
<summary>
Displays no gradient fill
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.GradientStyle.LinearTopDown">
<summary>
Displays a linear gradient fill from top to bottom
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.GradientStyle.LinearBottomUp">
<summary>
Displays a linear gradient fill from bottom to top
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.GradientStyle.LinearLeftRight">
<summary>
Displays a linear gradient fill from left to right
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.GradientStyle.LinearRightLeft">
<summary>
Displays a linear gradient fill from right to left
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.GradientStyle.LinearTopRightBottomLeft">
<summary>
Displays a linear gradient fill from top right to bottom left
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.GradientStyle.LinearTopLeftBottomRight">
<summary>
Displays a linear gradient fill from top left to bottom right
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.GradientStyle.RadialFromCenter">
<summary>
Displays a radial gradient fill from center to outside edges
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.GradientStyle.RadialIntoCenter">
<summary>
Displays a radial gradient fill from outside edges into center
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.GradientSection">
<summary>
Represents the sections of a color gradient, a continuously smooth color transitions.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.GradientSection.#ctor(System.Drawing.Color,System.Int32,System.Int32)">
<summary>
Creates a new color gradient section with the specified parameters.
</summary>
<param name="color">Color</param>
<param name="amount">Amount of the gradient</param>
<param name="alphaBlend">Amount of alpha-blending (transparency)</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.GradientSection.#ctor(System.Drawing.Color,System.Int32)">
<summary>
Creates a new color gradient section with the specified parameters.
</summary>
<param name="color">Color</param>
<param name="amount">Amount of the gradient</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.GradientSection.#ctor(System.Drawing.Color)">
<summary>
Creates a new color gradient section with default settings.
</summary>
<param name="color">Color</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.GradientSection.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the gradient section to XML.
</summary>
<param name="w">XmlTextWriter object used to write (save) the gradient </param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.GradientSection.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the gradient section from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the gradient </param>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.GradientSection.Color">
<summary>
Gets or sets the color of the gradient.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.GradientSection.Amount">
<summary>
Gets or sets the amount of the gradient.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.GradientSection.AlphaBlend">
<summary>
Gets or sets the amount of alpha-blending of the gradient.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.PSGradient">
<summary>
Represents a gradient.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSGradient.#ctor">
<summary>
Creates a new presentation space gradient object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSGradient.#ctor(System.Object)">
<summary>
Creates a new presentation space gradient object based on another object.
</summary>
<param name="cloneFrom">Object from which to clone the gradient</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSGradient.Clone">
<summary>
Creates a new gradient object by copying the current object properties.
</summary>
<returns>Copy of the object</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSGradient.Reset">
<summary>
Resets the appearance object to its default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSGradient.ResetName">
<summary>
Resets the name to its default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSGradient.ResetStyle">
<summary>
Resets the gradient style of the object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSGradient.ResetSections">
<summary>
Resets the gradient sections of the object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSGradient.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to write (save) the object </param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSGradient.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object </param>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSGradient.Name">
<summary>
Gets or sets the name for the appearance object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSGradient.Style">
<summary>
Gets or sets the gradient style for the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSGradient.Sections">
<summary>
Gets or sets the gradient sections for the object.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo">
<summary>
Represents the customizable appearance settings of a cell note that stays visible.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo">
<summary>
Represents a shape object customizable properties.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsBackColorSet">
<summary>
Determines whether the background color is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsForeColorSet">
<summary>
Determines whether the text color is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsFontSet">
<summary>
Determines whether the font is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsTextWrapSet">
<summary>
Determines whether the text wrapping option is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsTagSet">
<summary>
Determines whether the tag is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsCanMoveSet">
<summary>
Determines whether the option for the user to move it is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsCanSizeSet">
<summary>
Determines whether the option for the user to resize it is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsTopSet">
<summary>
Determines whether the top is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsLeftSet">
<summary>
Determines whether the left is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsHeightSet">
<summary>
Determines whether the height is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsWidthSet">
<summary>
Determines whether the width is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsAlphaBlendBackColorSet">
<summary>
Determines whether the alpha-blend background color is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsGradientSet">
<summary>
Determines whether the gradient is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsLockedSet">
<summary>
Determines whether it is marked as locked.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsShapeOutlineColorSet">
<summary>
Determines whether the shape outline color is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsShapeOutlineStyleSet">
<summary>
Determines whether the shape outline style is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsShapeOutlineThicknessSet">
<summary>
Determines whether the shape outline thickness is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsAlphaBlendShadowColorSet">
<summary>
Determines whether the alpha-blend shadow color is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsShadowColorSet">
<summary>
Determines whether the shadow color is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsShadowOffsetXSet">
<summary>
Determines whether the shadow offest (along x-axis) is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsShadowOffsetYSet">
<summary>
Determines whether the shadow offest (along y-axis) is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.IsShadowDirectionSet">
<summary>
Determines whether the direction of the shadow is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.Reset">
<summary>
Resets all properties to default state.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.AlphaBlendShadowColor">
<summary>
Gets or sets the amount of transparency of the shadow.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.ShadowOffsetX">
<summary>
Gets or sets the amount of horizontal offset of the shadow of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.ShadowOffsetY">
<summary>
Gets or sets the amount of vertical offset of the shadow of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.ShadowColor">
<summary>
Gets or sets the color of the shadow of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.ShadowDirection">
<summary>
Gets or sets the direction of the shadow.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.BackColor">
<summary>
Gets or sets the background color for the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.ForeColor">
<summary>
Gets or sets the foreground color for the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.Font">
<summary>
Gets or sets the font for the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.CanMove">
<summary>
Gets or sets whether the user is allowed to move the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.CanSize">
<summary>
Gets or sets whether the user is allowed to resize the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.Top">
<summary>
Gets or sets the Y-coordinate of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.Left">
<summary>
Gets or sets the X-coordinate of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.Height">
<summary>
Gets or sets the height of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.Width">
<summary>
Gets or sets the width of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.AlphaBlendBackColor">
<summary>
Gets or sets the alpha-blend value of the background color of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.Tag">
<summary>
Gets or sets the Tag object for the element.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.TextWrap">
<summary>
Gets or sets whether to wrap the text in the element.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.Gradient">
<summary>
Gets or sets the gradient for the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.Locked">
<summary>
Gets or sets whether the object is marked as locked.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.ShapeOutlineColor">
<summary>
Gets or sets the shape outline color for the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.ShapeOutlineStyle">
<summary>
Gets or sets the shape outline style for the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.PSShapeStyleInfo.ShapeOutlineThickness">
<summary>
Gets or sets the shape outline thickness for the object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo.IsAlignHorzSet">
<summary>
Determines whether the horizontal alignment of the contents for the cell note is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo.IsAlignVertSet">
<summary>
Determines whether the vertical alignment of the contents for the cell note is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo.IsMarginBottomSet">
<summary>
Determines whether the margin between the bottom of the cell note and its contents is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo.IsMarginTopSet">
<summary>
Determines whether the margin between the top of the cell note and its contents is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo.IsMarginRightSet">
<summary>
Determines whether the margin between the right of the cell note and its contents is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo.IsMarginLeftSet">
<summary>
Determines whether the margin between the left of the cell note and its contents is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo.IsTextWrapSet">
<summary>
Determines whether the text wrapping option is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo.Reset">
<summary>
Resets all properties to default state.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo.AlignHorz">
<summary>
Gets or sets the horizontal alignment of the contents for the cell note.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo.AlignVert">
<summary>
Gets or sets the vertical alignment of the contents for the cell note.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo.MarginBottom">
<summary>
Gets or sets the margin between the bottom of the cell note and its contents.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo.MarginTop">
<summary>
Gets or sets the margin between the top of the cell note and its contents.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo.MarginRight">
<summary>
Gets or sets the margin between the right of the cell note and its contents.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo.MarginLeft">
<summary>
Gets or sets the margin between the left of the cell note and its contents.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo.TextWrap">
<summary>
Gets or sets whether to wrap the text in the element.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer">
<summary>
Internal use only.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.PSContainer">
<summary>
Represents the presentation space object container.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.PSObject">
<summary>
Represents the windowless presentation space object.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSObject.AnchorNone">
<summary>
Applies no anchoring, so the object is allowed free movement
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSObject.AnchorLeft">
<summary>
Anchors on left side of object
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSObject.AnchorTop">
<summary>
Anchors on top side of object
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSObject.AnchorRight">
<summary>
Anchors on right side of object
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSObject.AnchorBottom">
<summary>
Anchors on bottom side of object
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSObject.AnchorAll">
<summary>
Anchors on all sides of object
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSObject.clickPt">
<summary>
Specifies the click point of the object container.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSObject.centerPt">
<summary>
Specifies the center point of the the bounding rectangle.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSObject.rotating">
<summary>
Specifies the direction of object rotation, if at all, for the object container.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSObject.region">
<summary>
Specifies the region of the object container.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSObject.resizeHandle">
<summary>
Specifies the handle currently being used for resizing.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSObject.rotatedAngle">
<summary>
Specifies the angle at which the object is rotated.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSObject.pictureAngle">
<summary>
Specifies the angle at which the picture is rotated.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSObject.shapeThickness">
<summary>
Specifies the line thickness of the object container.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSObject.shapeStyle">
<summary>
Specifies the dashed-line style of the object container.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSObject.shapeColor">
<summary>
Specifies the color of the object container.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSObject.alphaBackColor">
<summary>
Specifies the alpha-blending background color.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSObject.deserializing">
<summary>
Specifies whether the container is saving to XML.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSObject.theShape">
<summary>
Internal use only.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSObject.bgImageRotationAllowed">
<summary>
Specifies whether the background image rotates when the user rotates the shape
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSObject.bgImageAngle">
<summary>
Specifies the angle at which the background image is rotated.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.#ctor">
<summary>
Creates a new instance of a presentation space object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.Finalize">
<summary>
The destructor method
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.#ctor(System.Object)">
<summary>
Creates a new object based on the specified object.
</summary>
<param name="cloneFrom">Object from which to clone the new object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.CopyTo(System.Object)">
<summary>
Copies the properties of this object in presentation space (drawing space) to the target object.
</summary>
<param name="target">Target object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.Clone">
<summary>
Creates and returns a copy of the object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.Reset">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.AttachParent(System.Windows.Forms.Control,System.Boolean,System.Boolean)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ShouldSerializeAllowBackgroundImageRotation">
<summary>
Determines if the background image rotation allowed flag of the object should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ResetAllowBackgroundImageRotation">
<summary>
Resets the background image rotation allowed flag to its default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ShouldSerializeBackgroundImageRotationAngle">
<summary>
Determines if the background image rotation angle of the object should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ResetBackgroundImageRotationAngle">
<summary>
Resets the background image rotation angle to its default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ShouldSerializeRotationAngle">
<summary>
Determines if the rotation angle of the object should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ResetRotationAngle">
<summary>
Resets the rotation angle to its default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ShouldSerializeTextRotationAngle">
<summary>
Determines if the text rotation angle of the object should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ResetTextRotationAngle">
<summary>
Resets the text rotation angle to its default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ShouldSerializePictureRotationAngle">
<summary>
Determines if the picture rotation angle of the object should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ResetPictureRotationAngle">
<summary>
Resets the picture rotation angle to its default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ResetName">
<summary>
Resets the name to its default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ShouldSerializeName">
<summary>
Determines if the name of the object should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ResetAlphaBlendBackColor">
<summary>
Resets the alpha-blend value of the background color of the object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ShouldSerializeAlphaBlendBackColor">
<summary>
Determines if the alpha-blend value of the background color of the object should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ResetShape">
<summary>
Resets the shape of the object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ShouldSerializeShape">
<summary>
Determines if the shape should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ShouldSerializeShapeOutlineThickness">
<summary>
Determines if the shape outline thickness should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ResetShapeOutlineThickness">
<summary>
Resets the shape outline thickness of the object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ShouldSerializeShapeOutlineStyle">
<summary>
Determines if the shape outline style should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ResetShapeOutlineStyle">
<summary>
Resets the shape outline style of the object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ShouldSerializeShapeOutlineColor">
<summary>
Determines if the shape outline color should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ResetShapeOutlineColor">
<summary>
Resets the shape outline color of the object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ShouldSerializeGradient">
<summary>
Determines if the shape outline scaling should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ResetGradient">
<summary>
Resets the gradient style of the object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.SetBounds(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Sets the bounds of the object to the specified position and size.
</summary>
<param name="x">X-coordinate for bounding rectangle's top-left corner</param>
<param name="y">Y-coordinate for bounding rectangle's top-left corner</param>
<param name="width">Width of bounding rectangle in pixels</param>
<param name="height">Height of bounding rectangle in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.SetBoundsFloat(System.Single,System.Single,System.Single,System.Single)">
<summary>
Sets the bounds of the object to the specified position and size.
</summary>
<param name="x">X-coordinate for bounding rectangle's top-left corner</param>
<param name="y">Y-coordinate for bounding rectangle's top-left corner</param>
<param name="width">Width of bounding rectangle in pixels</param>
<param name="height">Height of bounding rectangle in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.SetBoundsFloat(System.Single,System.Single,System.Single,System.Single,System.Boolean)">
<summary>
Sets the bounds of the object to the specified position and size.
</summary>
<param name="x">X-coordinate for bounding rectangle's top-left corner</param>
<param name="y">Y-coordinate for bounding rectangle's top-left corner</param>
<param name="width">Width of bounding rectangle in pixels</param>
<param name="height">Height of bounding rectangle in pixels</param>
<param name="adjustRegion">Whether to adjust the region</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ApproxEqual(System.Double,System.Double)">
<summary>
Internal use only.
</summary>
<param name="x"></param>
<param name="y"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.GetClientRectangleF(System.Drawing.RectangleF)">
<summary>
Gets the coordinates of the element.
</summary>
<param name="rectInput">Rectangle object containing the rectangle</param>
<returns>Coordinates of the element</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.SetBoundsFloat(System.Single,System.Single,System.Single,System.Single,System.Boolean,System.Boolean)">
<summary>
Sets the bounds of the object to the specified position and size.
</summary>
<param name="x">X-coordinate for bounding rectangle's top-left corner</param>
<param name="y">Y-coordinate for bounding rectangle's top-left corner</param>
<param name="width">Width of bounding rectangle in pixels</param>
<param name="height">Height of bounding rectangle in pixels</param>
<param name="adjustRegion">Whether to adjust the region</param>
<param name="recursive">Whether to check recursively for each element</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.Update">
<summary>
Causes the control to redraw invalidated region.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.SizeRegion(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Resizes the region.
</summary>
<param name="newWidth">New width value in pixels</param>
<param name="newHeight">New height value in pixels</param>
<param name="oldWidth">Old width value in pixels</param>
<param name="oldHeight">Old height value in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.SizeRegion(System.Single,System.Single,System.Single,System.Single)">
<summary>
Resizes the region.
</summary>
<param name="newWidth">New width value in pixels</param>
<param name="newHeight">New height value in pixels</param>
<param name="oldWidth">Old width value in pixels</param>
<param name="oldHeight">Old height value in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ShouldSerializeLocked">
<summary>
Determines if the locked property should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ResetLocked">
<summary>
Reset the object's locked status.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ShouldSerializeAnchor">
<summary>
Determines if the anchor property should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ResetAnchor">
<summary>
Resets the object's anchored status.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ShouldSerializeCanPrint">
<summary>
Determines if the CanPrint property should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ResetCanPrint">
<summary>
Resets whether the object can be printed by the container.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ShouldSerializeCanRotate">
<summary>
Determines if the CanRotate property should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ResetCanRotate">
<summary>
Resets whether the object can be rotated by the user.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ShouldSerializeCanMove">
<summary>
Determines if the CanMove property should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ResetCanMove">
<summary>
Resets whether the object can be moved by the user.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ShouldSerializeSizeProportional">
<summary>
Determines if the SizeProportional property should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ResetSizeProportional">
<summary>
Resets whether the object can be resized proportionally by the user.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ShouldSerializeCanSize">
<summary>
Determines if the CanSize property should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ResetCanSize">
<summary>
Resets whether the object can be resized by the user.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ShouldSerializeContainedObjects">
<summary>
Determines if the ContainedObjects property should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.Contains(System.Drawing.Point)">
<summary>
Determines whether the container contains the specified point.
</summary>
<param name="pt">Point to check</param>
<returns>true if the point is found in the collection; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.Contains(System.Drawing.Point,System.Boolean)">
<summary>
Determines whether the container contains the specified point ignoring transparency.
</summary>
<param name="pt">Point to check</param>
<param name="ignoreTransparency">Whether to ignore transparency</param>
<returns>true if it contains the point; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.PaintPicture(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints the picture inside the specified rectangle.
</summary>
<param name="g">Graphic device interface</param>
<param name="rPict">Bounding rectangle for the picture</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.PaintText(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Draws the text.
</summary>
<param name="g">Graphics device</param>
<param name="rText">Bounding rectangle for the text</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.OnPaint(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Initiates a redraw for the object to repaint itself.
</summary>
<param name="g">Graphics device interface</param>
<param name="rectInput">Rectangle to redraw</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.PaintBackgroundImage(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Draws the background image.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.PaintOutline(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints the outline of a GraphicsPath shape.
</summary>
<param name="g">Graphics device</param>
<param name="r">Rectangle bounding the area</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.PaintOutlineInternal(System.Drawing.Graphics,System.Drawing.RectangleF)">
<summary>
Paints the outline internal.
</summary>
<param name="g">The g.</param>
<param name="r">The r.</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.PaintBackColor(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints the background color.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the background color</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.FillBackgroundWithGradient(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Fills the background with a gradient.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the gradient</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.OnPaintBackground(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Initiates a redraw for the object to repaint its background.
</summary>
<param name="g">Graphics device interface</param>
<param name="rectInput">Rectangle to redraw</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.PaintSpecialBackground(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Asks the control to repaint the background for the object.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.GetPictureRegion(System.Object)">
<summary>
Gets the region of the picture.
</summary>
<param name="picture">Picture</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.PaintFocusRectangle(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Draws the focus rectangle.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.PaintFocusRectangleInternal(System.Drawing.Graphics,System.Drawing.RectangleF)">
<summary>
Paints the focus rectangle internal.
</summary>
<param name="g">The g.</param>
<param name="r">The r.</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.GetRotateHandleRectangle(System.Drawing.Rectangle)">
<summary>
Gets the rotate handle rectangle.
</summary>
<param name="r">Rectangle</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.GetGrabHandleRectangles(System.Drawing.Rectangle,System.Drawing.Rectangle[]@)">
<summary>
Gets the grab handle rectangles.
</summary>
<param name="r">Rectangle</param>
<param name="handleRects">Arrary of handle rectangles</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.GrabHandleFromPoint(System.Drawing.Point)">
<summary>
Returns the grab handle from the specified point.
</summary>
<param name="pt">Point</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.PointInRotateHandle(System.Drawing.Point)">
<summary>
Gets whether the specified point is in the rotate handle.
</summary>
<param name="pt">Point</param>
<returns>true if in handle; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.PointInGrabHandle(System.Drawing.Point)">
<summary>
Gets whether the specified point is in a grab handle.
</summary>
<param name="pt">Point</param>
<returns>true if in handle; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.PaintRotateHandle(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Draws the rotate handle.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.PaintGrabHandles(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Draws the handles for sizing.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.DoMouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
MouseDown processing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.DoMouseMove(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.DoMouseUp(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Internal use only.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.GetRotateAngle(System.Drawing.Point,System.Drawing.Point,System.Drawing.Point)">
<summary>
Gets the rotate angle.
</summary>
<param name="centerPt">Point containing the basepoint of rotation</param>
<param name="pt1">Point containing the first endpoint</param>
<param name="pt2">Point containing the second endpoint</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.FlipShapeHorizontal">
<summary>
Flips the shape horizontally (along a horizontal axis).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.FlipShapeVertical">
<summary>
Flips the shape vertically (along a vertical axis).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.DoRotate(System.Drawing.Point)">
<summary>
Allows the object to rotate using the specified point to determine the rotation angle.
</summary>
<param name="pt">Point with which to determine rotation angle.</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.Rotate(System.Single)">
<summary>
Rotates the object by the specified angle around the center of the object.
</summary>
<param name="angle">Angle to rotate the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.Rotate(System.Drawing.Point,System.Single)">
<summary>
Rotates the object by the specified angle around the specified point.
</summary>
<param name="rotationCenterPoint">Point around which to rotate the object</param>
<param name="angle">Angle to rotate the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.RotateImage(System.Drawing.Image,System.Single)">
<summary>
Creates a new Image containing the same image only rotated
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.Scale(System.Single,System.Single)">
<summary>
Adjusts the size of the object by the specified amount.
</summary>
<param name="scaleX">Factor by which to scale the object in the horizontal dimension</param>
<param name="scaleY">Factor by which to scale the object in the vertical dimension</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.Scale(System.Single,System.Single,System.Boolean)">
<summary>
Adjusts the size of the object by the specified amount.
</summary>
<param name="scaleX">Factor by which to scale the object in the horizontal dimension</param>
<param name="scaleY">Factor by which to scale the object in the vertical dimension</param>
<param name="repaint">Whether to re-draw the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.DoSize(System.Int32,System.Drawing.Point)">
<summary>
Allows the object to be sized.
</summary>
<param name="resizeHandle">Index of the grab handle used to size the object</param>
<param name="pt">Point from which to size the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.AdjustLocationForMoving(System.Single@,System.Single@)">
<summary>
Adjusts the location for moving.
</summary>
<param name="diffX">The diff X.</param>
<param name="diffY">The diff Y.</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.DoClick(System.Object,System.EventArgs)">
<summary>
Fires click event.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Object of EventArgs class that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.DoDoubleClick(System.Object,System.EventArgs)">
<summary>
Fires double click event.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Object of EventArgs class that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.DoMove(System.Drawing.Point)">
<summary>
Allows the object to be moved.
</summary>
<param name="pt">Point location of object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.HitTestTransparentShape(System.Drawing.Point,System.Boolean)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
MouseMove processing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.OnClick(System.EventArgs)">
<summary>
Click processing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.DoMouseUpInternal(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.OnMouseUp(System.Windows.Forms.MouseEventArgs,System.Boolean)">
<summary>
MouseUp processing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
MouseUp processing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ProcessMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
MouseDown processing.
</summary>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.ProcessMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
MouseUp processing.
</summary>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.OnMouseEnter(System.Windows.Forms.MouseEventArgs)">
<summary>
MouseEnter processing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.DoMouseEnter(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.OnMouseLeave(System.Windows.Forms.MouseEventArgs)">
<summary>
MouseLeave processing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.DoMouseLeave(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.Serialize(System.Object,System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="obj">Object to save to XML</param>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.SerializePositionAndSize(System.Xml.XmlTextWriter)">
<summary>
Serializes the position and size.
</summary>
<param name="w">XmlTextWriter to which to write (save) the position and size</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.SerializeProps(System.Xml.XmlTextWriter)">
<summary>
Saves the object properties to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object properties</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.Deserialize(System.Object,System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="obj">Object</param>
<param name="r">XmlNodeReader from which to load the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.DeserializePositionAndSize(System.Xml.XmlNodeReader)">
<summary>
Deserializes the position and size.
</summary>
<param name="r">XmlNodeReader from which to read (load) the position and size</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.DeserializeObjectProps(System.Xml.XmlNodeReader)">
<summary>
Loads the object properties from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object properties</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object </param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.OnDeserialization(System.Object)">
<summary>
Internal use only.
</summary>
<param name="sender"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.Dispose(System.Boolean)">
<summary>
Internal use only. Clean up any resources being used.
</summary>
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.Print(FarPoint.PDF.PdfGraphics,System.Drawing.Rectangle,System.Single)">
<summary>
Prints the shape objects.
</summary>
<param name="g">PDF graphics device interface</param>
<param name="rectangle">Rectangle bounding the shape objects to print</param>
<param name="zoomFactor">Scaling factor for zooming when printing</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObject.FireUIChangeComplete">
<summary>
Occurs when the User Interface (UI) change is complete.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.Picture">
<summary>
Gets or sets an image for this element.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.ZoomFactor">
<summary>
Gets or sets the zoom factor.
</summary>
<value>The zoom factor.</value>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.ZoomedRectangle">
<summary>
Gets the zoomed rectangle.
</summary>
<value>The zoomed rectangle.</value>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.Selectable">
<summary>
Gets or sets whether can select.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.DrawingSpace.PSObject.MouseEnter">
<summary>
Internal use only.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.DrawingSpace.PSObject.MouseLeave">
<summary>
Internal use only.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.FlipVertical">
<summary>
Gets or sets a value indicating whether the shape is flip vertical.
</summary>
<value><c>true</c> if the shape is flip vertical]; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.FlipHorizontal">
<summary>
Gets or sets a value indicating whether the shape is flip horizontal.
</summary>
<value><c>true</c> if the shape is flip horizontal; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.AllowBackgroundImageRotation">
<summary>
Gets or sets the background image rotation allowed flag of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.BackgroundImageRotationAngle">
<summary>
Gets or sets the background image rotation angle of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.UniqueIdentifier">
<summary>
Gets the unique identifier for the element.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.UniqueIdentifierPriv">
<summary>
Gets or sets the unique identifier for the element.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.Tag">
<summary>
Gets or sets the tag for the element.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.TextWrap">
<summary>
Gets or sets whether to wrap the text in the element.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.MarginBottom">
<summary>
Gets or sets the margin between the bottom of the element and its contents.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.MarginTop">
<summary>
Gets or sets the margin between the top of the element and its contents.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.MarginRight">
<summary>
Gets or sets the margin between the right of the element and its contents.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.MarginLeft">
<summary>
Gets or sets the margin between the left of the element and its contents.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.PictureMargin">
<summary>
Gets or sets the margin between the picture and the text in the element.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.AlignHorz">
<summary>
Gets or sets the horizontal alignment of the contents of the element.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.AlignVert">
<summary>
Gets or sets the vertical alignment of the contents of the element.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.AlignText">
<summary>
Gets or sets the text alignment for the element.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.DrawFocusRectangle">
<summary>
Gets or sets the focus rectangle drawing style in the element.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.PictureOrientation">
<summary>
Gets or sets the orientation of the picture.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.TextOrientation">
<summary>
Gets or sets the orientation of the text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.RotationAngle">
<summary>
Gets or sets the rotation angle of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.RotationAnglePriv">
<summary>
Internal use only.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.TextRotationAngle">
<summary>
Gets or sets the text rotation angle of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.PictureRotationAngle">
<summary>
Gets or sets the picture rotation angle of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.AlphaBlendBackColor">
<summary>
Gets or sets the alpha-blend value of the background color of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.Shape">
<summary>
Gets or sets the shape for the object.
</summary>
<exception cref="T:System.ArgumentException">
Invalid object type specified; must be a valid type (GraphicsPath, Region, FarPoint.Win.Picture, or Bitmap)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.ShapeOutlineThickness">
<summary>
Gets or sets the shape outline thickness for the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.ShapeOutlineStyle">
<summary>
Gets or sets the shape outline style for the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.ShapeOutlineColor">
<summary>
Gets or sets the shape outline color for the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.Gradient">
<summary>
Gets or sets the gradient for the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.Visible">
<summary>
Gets or sets whether the object is visible.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.Enabled">
<summary>
Gets or sets whether the object can receive focus and respond to user actions.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.OriginalBounds">
<summary>
Gets the original bounds.
</summary>
<value>The original bounds.</value>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.OriginalGraphicsPath">
>>> bug 99903092 lucky 20081030
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.RegionPriv">
<summary>
Internal use only.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.Locked">
<summary>
Gets or sets whether the object is marked as locked.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.Anchor">
<summary>
Gets or sets whether the object is anchored.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.CanPrint">
<summary>
Gets or sets whether the container is allowed to print the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.CanRotate">
<summary>
Gets or sets whether the user is allowed to rotate the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.CanMove">
<summary>
Gets or sets whether the user is allowed to move the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.SizeProportional">
<summary>
Gets or sets whether the user is allowed to resize the object proportionally.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.CanSize">
<summary>
Gets or sets whether the user is allowed to resize the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.Top">
<summary>
Gets or sets the Y-coordinate of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.Left">
<summary>
Gets or sets the X-coordinate of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.Height">
<summary>
Gets or sets the height of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.Width">
<summary>
Gets or sets the width of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.Location">
<summary>
Gets or sets the location of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.Size">
<summary>
Gets or sets the size of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.ContainedObjects">
<summary>
Gets or sets the contained objects of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.Rotating">
<summary>
Gets a value indicating whether this <see cref="T:FarPoint.Win.Spread.DrawingSpace.PSObject"/> is rotating.
</summary>
<value><c>true</c> if rotating; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSObject.Resizing">
<summary>
Gets a value indicating whether this <see cref="T:FarPoint.Win.Spread.DrawingSpace.PSObject"/> is resizing.
</summary>
<value>The resize handle.</value>
</member>
<member name="E:FarPoint.Win.Spread.DrawingSpace.PSObject.UIChangeComplete">
<summary>
Occurs when the User Interface (UI) change is complete.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSContainer.#ctor">
<summary>
Creates a new presentation space object container.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSContainer.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new container object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSContainer.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSContainer.GetMaxExtent">
<summary>
Gets the size of the largest contained objects.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSContainer.GetPrintMaxExtent">
<summary>
Gets the size of the largest contained objects.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSContainer.ChildContains(System.Drawing.Point,System.Boolean)">
<summary>
Gets the child object in this container that contains the screen location.
</summary>
<param name="pt">Point on the screen</param>
<param name="ignoreTransparency">Whether to ignore the transparency</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSContainer.Find(System.Int32)">
<summary>
Finds an object in the collection that matches the specified unique identifier.
</summary>
<param name="uniqueIdentifier">Unique identifier for the object in the collection</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSContainer.IndexOf(System.Int32)">
<summary>
Get the index of an object in the collection.
</summary>
<param name="uniqueIdentifer">Unique identifier for the object in the collection</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSContainer.ChildContains(System.Drawing.Point,System.Boolean,System.Boolean)">
<summary>
Gets the child object in this container that contains the screen location.
</summary>
<param name="pt">Point on the screen</param>
<param name="ignoreTransparency">Whether to ignore the transparency</param>
<param name="includeHandles">Whether to include the handles</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSContainer.ElementNotify(System.Object,System.Object)">
<summary>
Handles element notification.
</summary>
<param name="o">Object</param>
<param name="element">Object containing element</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSContainer.ElementDeletedNotify(System.Object,System.Object)">
<summary>
Handles element deleted notification.
</summary>
<param name="o">Object</param>
<param name="element">Object containing element</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSContainer.ClearObjects">
<summary>
Removes all the objects from the container.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSContainer.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the container object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSContainer.PrintElements(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Prints the object container.
</summary>
<param name="g">Graphics device interface</param>
<param name="faceRect">Rectangle that bounds the container</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSContainer.PrintElements(System.Drawing.Graphics,System.Drawing.Rectangle,System.Single)">
<summary>
Prints the object container with zooming.
</summary>
<param name="g">Graphics device interface</param>
<param name="faceRect">Rectangle that bounds the container</param>
<param name="zoomFactor">Scaling factor for zooming</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSContainer.PaintElements(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints the object container.
</summary>
<param name="g">Graphics device interface</param>
<param name="faceRect">Rectangle that bounds the container</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSContainer.MoveChildren(System.Int32,System.Int32)">
<summary>
Moves the objects in the container by a specified amount.
</summary>
<param name="offsetX">Amount to offset object horizontally</param>
<param name="offsetY">Amount to offset object vertically</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSContainer.OnDeserialization(System.Object)">
<summary>
Internal use only.
</summary>
<param name="sender"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.OnNoteCreated(System.Object,System.EventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.NoteCreated"/> event when a
note has been created.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.#ctor(FarPoint.Win.Spread.SheetView)">
<summary>
Serializes a container of notes on the specified sheet.
</summary>
<param name="sheetView">Sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes a container of notes.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a SerializationInfo with the data needed to serialize the target object.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.Print(FarPoint.PDF.PdfGraphics,System.Drawing.Rectangle,System.Single)">
<summary>
Prints the elements of the notes in the container.
</summary>
<param name="g">PDF graphics device interface</param>
<param name="rectangle">Rectangular bounding the elements to print</param>
<param name="zoomFactor">Scaling factor for zooming</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.Print(System.Drawing.Graphics,System.Drawing.Rectangle,System.Single)">
<summary>
Prints the specified area with the specified scaling.
</summary>
<param name="g">Graphic interface device</param>
<param name="rectangle">Rectangular area to print</param>
<param name="zoomFactor">Numeric scaling factor</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.Print(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Prints the specified area.
</summary>
<param name="g">Graphic interface device</param>
<param name="rectangle">Rectangular area to print</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.PaintElements(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints elements.
</summary>
<param name="g">Graphic interface device</param>
<param name="faceRect">Rectangle of the face</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.ChildContains(System.Drawing.Point,System.Boolean)">
<summary>
Contains a child note.
</summary>
<param name="pt">Point</param>
<param name="ignoreTransparency">Whether to ignore transparency</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.PrintElements(System.Drawing.Graphics,System.Drawing.Rectangle,System.Single)">
<summary>
Prints the object container with zooming.
</summary>
<param name="g">Graphics device interface</param>
<param name="faceRect">Rectangle that bounds the container</param>
<param name="zoomFactor">Scaling factor for zooming</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.GetXShift(FarPoint.Win.Spread.SpreadView)">
<summary>
Gets the shift in the horizontal (X) direction.
</summary>
<param name="view">View</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
MouseDown processing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.ShouldSerializeBackColor">
<summary>
Determines whether to serialize the background color.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.ResetBackColor">
<summary>
Resets the background color.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.DoMouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Occurs when mouse down.
</summary>
<param name="sender">Object source of event</param>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.DoMouseMove(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Moves mouse.
</summary>
<param name="sender">Object source of event</param>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.DoMouseUp(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Handles mouse up.
</summary>
<param name="sender">Object source of event</param>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.ElementNotify(System.Object,System.Object)">
<summary>
Notifies element.
</summary>
<param name="o">Object</param>
<param name="element">Object element</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.ElementDeletedNotify(System.Object,System.Object)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.DoDoubleClick(System.Object,System.EventArgs)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.OnNoteEditorKeyDown(System.Object,System.Windows.Forms.KeyEventArgs)">
<summary>
Occurs when a note editor key is down.
</summary>
<param name="sender">Object source of event</param>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.OnNoteEditorKeyPress(System.Object,System.Windows.Forms.KeyPressEventArgs)">
<summary>
Occurs when a note editor key is pressed.
</summary>
<param name="sender">Object source of event</param>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.OnNoteEditorLostFocus(System.Object,System.EventArgs)">
<summary>
Internal use only. Occurs when the note editor has lost focus.
</summary>
<param name="sender">Object source of event</param>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="E:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.NoteCreated">
<summary>
Occurs when a note is created.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.NoteMoved">
<summary>
Occurs when a note is moved.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.NoteSized">
<summary>
Occurs when a note is sized.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.ZoomFactor">
<summary>
Gets or sets the zoom factor.
</summary>
<value>The zoom factor.</value>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.TopRow">
<summary>
Gets or sets the top row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.LeftColumn">
<summary>
Gets or sets the left (near) column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.BottomRow">
<summary>
Gets or sets the bottom row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.RightColumn">
<summary>
Gets or sets the right (far) column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.RowPane">
<summary>
Gets or sets the row pane (viewport).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.ColumnPane">
<summary>
Gets or sets the column pane (viewport).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.XOffset">
<summary>
Gets or sets the offset in the horizontal (X) direction.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.YOffset">
<summary>
Gets or sets the offset in the vertical (Y) direction.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.BackColor">
<summary>
Gets or sets the background color.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.BackgroundImage">
<summary>
Gets or sets the background image.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.CanMove">
<summary>
Gets or sets whether the container can be moved.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.CanSize">
<summary>
Gets or sets whether the container can be sized.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.CanFocus">
<summary>
Gets or sets whether the container can receive focus.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.Text">
<summary>
Gets or sets the text for the container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.Gradient">
<summary>
Gets or sets the gradient.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.Parent">
<summary>
Gets or sets the parent control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadNotesContainer.AllowNoteEdit">
<summary>
Gets or sets whether the notes can be in place edited.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer">
<summary>
Represents the presentation space object container.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.SetRowColumnIndexes(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Internal use only.
</summary>
<param name="leftColumn"></param>
<param name="topRow"></param>
<param name="rightColumn"></param>
<param name="bottomRow"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.SetPrintRowColumnIndexes(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Internal use only.
</summary>
<param name="g"></param>
<param name="leftColumn"></param>
<param name="topRow"></param>
<param name="rightColumn"></param>
<param name="bottomRow"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.#ctor(FarPoint.Win.Spread.SheetView)">
<summary>
Creates a new presentation space object container for the specified sheet.
</summary>
<param name="sheetView">Sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new container object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shapes of the container.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.Print(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Prints the elements of the shapes in the container.
</summary>
<param name="g">Graphics device</param>
<param name="rectangle">Rectangle bounding the elements to print</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.Print(System.Drawing.Graphics,System.Drawing.Rectangle,System.Single)">
<summary>
Prints the elements of the shapes in the container.
</summary>
<param name="g">Graphics device</param>
<param name="rectangle">Rectangle bounding the elements to print</param>
<param name="zoomFactor">Scaling factor for zooming</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.Print(FarPoint.PDF.PdfGraphics,System.Drawing.Rectangle,System.Single)">
<summary>
Prints the elements of the shapes in the container.
</summary>
<param name="g">PDF graphics device interface</param>
<param name="faceRect">Rectangle bounding the elements to print</param>
<param name="zoomFactor">Scaling factor for zooming</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.GetJPEGEncoder">
<summary>
Gets the JPEG encoder.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.ChildContains(System.Drawing.Point,System.Boolean)">
<summary>
Gets the child object in this container that contains the screen location.
</summary>
<param name="pt">Point on the screen</param>
<param name="ignoreTransparency">Whether to ignore the transparency </param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.IsShapeInView(FarPoint.Win.Spread.DrawingSpace.PSShape,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Determines if a shape is currently within the view determined by the row and column parameters.
</summary>
<param name="shape">Shape to check for in view</param>
<param name="topRow">Top row of view</param>
<param name="leftColumn">Left column of view</param>
<param name="bottomRow">Bottom row of view</param>
<param name="rightColumn">Right column of view</param>
<returns>Returns true if shape is in view; otherwise false</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.IsShapeInsideView(FarPoint.Win.Spread.DrawingSpace.PSShape,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Determines if a shape is currently inside completely the view determined by the row and column parameters.
</summary>
<param name="shape">Shape to check for in view</param>
<param name="topRow">Top row of view</param>
<param name="leftColumn">Left column of view</param>
<param name="bottomRow">Bottom row of view</param>
<param name="rightColumn">Right column of view</param>
<returns>Returns true if shape is in view; otherwise false</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.PrintElements(System.Drawing.Graphics,System.Drawing.Rectangle,System.Single)">
<summary>
Prints the object container with zooming.
</summary>
<param name="g">Graphics device interface</param>
<param name="faceRect">Rectangle that bounds the container</param>
<param name="zoom">Scaling factor for zooming</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.GetXShift(FarPoint.Win.Spread.SpreadView)">
<summary>
Internal use only. Gets the shift in the horizontal (X) direction.
</summary>
<param name="view">View</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.PaintElements(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paint any shapes in the container.
</summary>
<param name="g">Graphics object</param>
<param name="faceRect">Rectangle object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.GetRowFromPixel(System.Int32,System.Int32@,System.Int32@)">
<summary>
Internal use only.
</summary>
<param name="y"></param>
<param name="row"></param>
<param name="pixeloffset"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.GetColumnFromPixel(System.Int32,System.Int32@,System.Int32@)">
<summary>
Internal use only.
</summary>
<param name="x"></param>
<param name="column"></param>
<param name="pixeloffset"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.CalculateDimensionLengthChanged(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Int32@,System.Int32@)">
<summary>
Calculates new bound of shape when column or row is changed. This function is implemented to re-use the same policy for both of row and column.
</summary>
<param name="x">The left/top of column/row.</param>
<param name="oldWidth">The old width/height.</param>
<param name="newWidth">The new width/height.</param>
<param name="r_X">The left/top of shape.</param>
<param name="r_Width">Width/Height of the shape.</param>
<param name="dynamicMove">if set to <c>true</c> the shape location will be changed. Otherwise, the shape's size is not changed.</param>
<param name="dynamicSize">if set to <c>true</c> the shape's size will be changed. Otherwise, the shape's size is not changed.</param>
<param name="rX">The new left/top of shape.</param>
<param name="rW">The new width/height of shape</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.ShouldSerializeBackColor">
<summary>
Gets whether to serialize the background color for the container.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.ResetBackColor">
<summary>
Resets the background color for the container.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.AdjustPointFromViewport(System.Drawing.Point)">
<summary>
Internal use only. Adjusts a point from viewports to a point in FpSpread.
</summary>
<param name="pt">The location should be adjust.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.AdjustPointForViewport(System.Drawing.Point)">
<summary>
Internal use only. Adjusts a point for offsets including viewports, frozen areas, and headers.
</summary>
<param name="pt">Point</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.DoMouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Occurs on mouse down.
</summary>
<param name="sender">Source object of event</param>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.DoMouseMove(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.DoMouseUp(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.OnLostFocus(System.EventArgs)">
<summary>
Occurs when focus is lost.
</summary>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.ElementNotify(System.Object,System.Object)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.ElementDeletedNotify(System.Object,System.Object)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.SynchronizeShapeLocators">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.RemoveShape(System.String)">
<summary>
Removes the shape from the container.
</summary>
<param name="name">Name of shape</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.ClearShapes">
<summary>
Removes all shapes from the container.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.AddShape(FarPoint.Win.Spread.DrawingSpace.PSShape)">
<summary>
Adds a shape to the container.
</summary>
<param name="shape">Shape to add</param>
<exception cref="T:System.Exception">
Shape name already exists in the container; shape names must be unique
</exception>
<exception cref="T:System.Exception">
No shape name specified or shape name is null or empty; shape names must be non-null and non-empty
</exception>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.JoinShapes(System.String,System.String)">
<summary>
Joins two shapes.
</summary>
<param name="destinationShapeName">Name of destination shape for merge</param>
<param name="sourceShapeName">Name of source shape for merge</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.GetShape(System.String)">
<summary>
Gets a shape in the container.
</summary>
<param name="name">Name of shape</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.GetShape(System.Int64)">
<summary>
Gets a shape in the container by its internally accessible unique identifier.
</summary>
<param name="id">Unique identifier</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.OnDeserialization(System.Object)">
<summary>
Internal use only.
</summary>
<param name="sender"></param>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.ZoomFactor">
<summary>
Gets or sets the zoom factor.
</summary>
<value>The zoom factor.</value>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.RowPane">
<summary>
Gets or sets the row pane (viewport).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.ColumnPane">
<summary>
Gets or sets the column pane (viewport).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.Count">
<summary>
Gets the count of children of the child control container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.SpreadView">
<summary>
Gets the active spread view. It's the SpreadView contains current active shape (for hierarchical Sheetview)
</summary>
<value>The spread view.</value>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.TopRow">
<summary>
Gets or sets the top row of the container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.LeftColumn">
<summary>
Gets of sets the left column of the container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.BottomRow">
<summary>
Gets or sets the bottom row of the container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.RightColumn">
<summary>
Gets or sets the right column of the container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.XOffset">
<summary>
Gets or sets the X-coordinate offset of the container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.YOffset">
<summary>
Gets or sets the Y-coordinate offset of the container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.BackColor">
<summary>
Gets or sets the background color for the container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.CanSize">
<summary>
Gets or sets whether the user is allowed to size the container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.CanMove">
<summary>
Gets or sets whether the user is allowed to move the container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.CanFocus">
<summary>
Gets or sets whether the container can receive focus.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.Text">
<summary>
Gets or sets the text for the container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.BackgroundImage">
<summary>
Gets or sets the background image for the container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.Gradient">
<summary>
Gets or sets the gradient for the container of shapes.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.Parent">
<summary>
Gets or sets the parent control for the container of shapes.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.Location">
<summary>
Gets or sets the location of the container of shapes.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.Size">
<summary>
Gets or sets the size of the container of shapes.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadShapesContainer.Name">
<summary>
Gets or sets the name of the container of shapes.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadObjectLocator.Rectangle">
<summary>
Internal use only. Currently Rectangle in locators is used for controls layer and not shapes or notes layers.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.IHostChildControls">
<summary>
Interface supplied by objects that support embedded child controls.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.IHostChildControls.ActiveChildControl">
<summary>
Gets or sets the active child control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.IHostChildControls.AllowChildControlDesign">
<summary>
Gets or sets whether to allow design of active child control.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.IEmbeddedControlSupport">
<summary>
Interface that supports the rendering of embedded child controls on a sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.IEmbeddedControlSupport.ControlPaint(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the embedded child control.
</summary>
<param name="g">Graphics device interface</param>
<param name="r">Location and size of a rectangular region bounding the control</param>
<param name="appearance">Appearance settings for the control</param>
<param name="value">Object - name of the renderer</param>
<param name="isSelected">Whether the control is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Scaling factor for zooming when painting the control</param>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.IEmbeddedControlSupport.CanMove">
<summary>
Gets or sets whether the user is allowed to move the embedded child control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.IEmbeddedControlSupport.CanSize">
<summary>
Gets or sets whether the user is alloweed to resize the embedded child control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.IEmbeddedControlSupport.ActivationPolicy">
<summary>
Gets or sets the activation behavior of the embedded child control.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer">
<summary>
Represents the container for child controls.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.Invalidate">
<summary>
Forces a refresh on the owner control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.DoSheetActivating(System.Object,FarPoint.Win.Spread.ActiveSheetChangingEventArgs)">
<summary>
Internal use only.
</summary>
<param name="sender">Source of event</param>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.SetRowColumnIndexes(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Internal use only.
</summary>
<param name="leftColumn"></param>
<param name="topRow"></param>
<param name="rightColumn"></param>
<param name="bottomRow"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.DeactivateChildren">
<summary>
Deactivates child controls of the child control container.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.DeactivateChildren(System.Windows.Forms.Control)">
<summary>
Deactivates child controls of the child control container.
</summary>
<param name="childToDeactivate">Child to deactivate or null to deactivate all children</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.DoMouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.DoDoubleClick(System.Object,System.EventArgs)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.DoMouseMove(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.DoMouseUp(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.DoMove(System.Windows.Forms.Control,FarPoint.Win.Spread.DrawingSpace.Moving,System.Drawing.Point)">
<summary>
Moves the specified child control if design mode is enabled.
</summary>
<param name="ctl">Child control</param>
<param name="movement">Movement of the child control</param>
<param name="pt">Point location of the child control</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.HitTestChildren(System.Int32,System.Int32)">
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.HitTestChildren(System.Drawing.Point)">
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.HitTestChildren(System.Drawing.Point,System.Boolean)">
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.SetFocusChild(System.Windows.Forms.Control)">
<summary>
Internal use only. Gets the child with focus.
</summary>
<returns>Returns the child with the focus.</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.GetFocusChild">
<summary>
Gets the child with focus.
</summary>
<returns>Returns the child with the focus.</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.SetPrintRowColumnIndexes(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Internal use only.
</summary>
<param name="g"></param>
<param name="leftColumn"></param>
<param name="topRow"></param>
<param name="rightColumn"></param>
<param name="bottomRow"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.#ctor(FarPoint.Win.Spread.SheetView)">
<summary>
Creates a new child control container for the specified sheet.
</summary>
<param name="sheetView">Sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new container from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the children of the container.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.IsChildInView(System.Windows.Forms.Control,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Determines if a control is currently within the view determined by the row and column parameters.
</summary>
<param name="child">Control to check for in view</param>
<param name="topRow">Top row of view</param>
<param name="leftColumn">Left column of view</param>
<param name="bottomRow">Bottom row of view</param>
<param name="rightColumn">Right column of view</param>
<returns>Returns true if shape is in view; otherwise false</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.GetXShift(FarPoint.Win.Spread.SpreadView)">
<summary>
Gets the horizontal (X-axis) shift.
</summary>
<param name="view">View</param>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.clickPt">
<summary>
Specifies the click point of the object container.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.resizeHandle">
<summary>
Specifies the handle currently being used for resizing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.GetGrabHandleRectangles(System.Drawing.Rectangle,System.Drawing.Rectangle[]@)">
<summary>
Gets the grab handle rectangles.
</summary>
<param name="r">Rectangle</param>
<param name="handleRects">Arrary of handle rectangles</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.GrabHandleFromPoint(System.Drawing.Point)">
<summary>
Returns the grab handle from the specified point.
</summary>
<param name="pt">Point</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.PointInGrabHandle(System.Drawing.Point)">
<summary>
Gets whether the specified point is in a grab handle.
</summary>
<param name="pt">Point</param>
<returns>true if in handle; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.PaintGrabHandles(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Draws the handles for sizing.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.Print(FarPoint.PDF.PdfGraphics,System.Drawing.Rectangle,System.Single)">
<summary>
Prints the elements of the child control container.
</summary>
<param name="gPdf">PDF graphics device interface</param>
<param name="faceRect">Rectangle bounding the elements to print</param>
<param name="zoomFactor">Scaling factor for zooming when printing</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.Print(System.Drawing.Graphics,System.Drawing.Rectangle,System.Single)">
<summary>
Prints the elements of the shapes in the container.
</summary>
<param name="g">Graphics device</param>
<param name="rectangle">Rectangle bounding the elements to print</param>
<param name="zoom">Scaling factor for zooming</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.PrintChildren(System.Drawing.Graphics,System.Drawing.Rectangle,System.Single)">
<summary>
Paint any children in the container.
</summary>
<param name="g">Graphics object</param>
<param name="faceRect">Rectangle object</param>
<param name="zoomF">Scaling factor for zooming</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.Paint(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints the child control container.
</summary>
<param name="g">Graphics context object</param>
<param name="r">Rectangle for drawing</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.PaintChildren(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paint any children in the container.
</summary>
<param name="g">Graphics object</param>
<param name="faceRect">Rectangle object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.GetRowFromPixel(System.Int32,System.Int32@,System.Int32@)">
<summary>
Internal use only.
</summary>
<param name="y"></param>
<param name="row"></param>
<param name="pixeloffset"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.GetColumnFromPixel(System.Int32,System.Int32@,System.Int32@)">
<summary>
Internal use only.
</summary>
<param name="x"></param>
<param name="column"></param>
<param name="pixeloffset"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.AdjustPointForViewport(System.Drawing.Point,System.Boolean)">
<summary>
Internal use only. Adjusts a point for offsets including viewports, frozen areas, and headers.
</summary>
<param name="pt">Point</param>
<param name="useAbsoluteCoords">Whether to use absolute coordinates</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.AddChildLocator(System.Windows.Forms.Control)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.AddChildLocator(FarPoint.Win.Spread.DrawingSpace.SpreadObjectLocators,System.Windows.Forms.Control)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.RemoveChildLocator(System.Windows.Forms.Control)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.RemoveChildLocator(FarPoint.Win.Spread.DrawingSpace.SpreadObjectLocators,System.Windows.Forms.Control)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.SynchronizeChildLocators">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.RemoveChild(System.String)">
<summary>
Removes the child control from the container.
</summary>
<param name="name">Name of shape</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.ClearChildren">
<summary>
Removes all the child controls from the container.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.AddChild(System.Windows.Forms.Control)">
<summary>
Adds a child control to the container.
</summary>
<param name="ctl">Child control to add</param>
<exception cref="T:System.Exception">
Name of the child control already exists in the container; control names must be unique
</exception>
<exception cref="T:System.Exception">
No child control name specified or control name is null or empty; control names must be non-null and non-empty
</exception>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.GetChild(System.String)">
<summary>
Gets a child control in the container.
</summary>
<param name="name">Name of child control</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.GetNextChildControl(System.Windows.Forms.Control)">
<summary>
Gets the next child control in the container.
</summary>
<param name="startChild">Name of child control to start</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.GetPreviousChildControl(System.Windows.Forms.Control)">
<summary>
Gets the previous child control in the container.
</summary>
<param name="startChild">Name of child control to start</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.OnDeserialization(System.Object)">
<summary>
Internal use only.
</summary>
<param name="sender"></param>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.Name">
<summary>
Gets or sets the name of the child control container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.DesignMode">
<summary>
Gets or sets the design mode of the child control container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.RowPane">
<summary>
Gets or sets the row viewport of the child control container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.ColumnPane">
<summary>
Gets or sets the column viewport of the child control container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.TopRow">
<summary>
Gets or sets the top row of the child control container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.LeftColumn">
<summary>
Gets of sets the left column of the child control container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.BottomRow">
<summary>
Gets or sets the bottom row of the child control container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.RightColumn">
<summary>
Gets or sets the right column of the child control container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.Count">
<summary>
Gets the count of children of the child control container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.XOffset">
<summary>
Gets or sets the X-coordinate offset of the container.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.SpreadChildControlContainer.YOffset">
<summary>
Gets or sets the Y-coordinate offset of the container.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.PSObjects">
<summary>
Represents a collection of windowless presentation space objects.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSObjects.#ctor">
<summary>
Creates a new instance of a presentation space object collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.ShapeRangeGroupInfo.SizedIndex">
<summary>
Indicates the old index of shape before collapsed
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.ShapeRangeGroupInfo.PixelOffset">
<summary>
Indicates the old pixel offset of shape before collapsed
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.ShapeRangeGroupInfo.OldVisible">
<summary>
Indicates the old visible value of the RangeGroup
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.ShapeRangeGroupInfo.IsRow">
<summary>
Indicates whether RangeGroupInfo is for rows or columns
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.PSShape">
<summary>
Represents a shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.OnChanged(System.Object,System.EventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.ElementWindowless.Changed"/> event when the
element has changed.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Event arguments</param>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.PSShape.renderText">
<summary>
Internal use only. Whether to render the text.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.#ctor">
<summary>
Creates a new shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.CopyTo(System.Object)">
<summary>
Copies the properties of this object in presentation space (drawing space) to the target object.
</summary>
<param name="target">Target object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.Reset">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.Initialize">
<summary>
Initializes the shape object in the presentation space.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.SetInitialShape">
<summary>
Creates the initial shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.GetClientRectangle(System.Drawing.Rectangle)">
<summary>
Gets the coordinates of the element.
</summary>
<param name="rectInput">Rectangle object containing the rectangle</param>
<returns>Coordinates of the element</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.GetClientRectangleF(System.Drawing.RectangleF)">
<summary>
Gets the coordinates of the element.
</summary>
<param name="rectInput">Rectangle object containing the rectangle</param>
<returns>Coordinates of the element</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.GetTextAndPictureRectangles(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle@,System.Drawing.Rectangle@)">
<summary>
Gets the bounding rectangles for the text and the picture in the presentation space.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the shape</param>
<param name="rPict">Bounding rectangle for the picture</param>
<param name="rText">Bounding rectangle for the text</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.FillBackgroundWithGradient(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Fills the background of the object with a gradient.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the shape</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.PaintText(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Draws the text for the shape.
</summary>
<param name="g">Graphics device</param>
<param name="rText">Bounding rectangle for the text</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.ShouldSerializeShadowDirection">
<summary>
Determines if the ShadowDirection property should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.ResetShadowDirection">
<summary>
Resets the direction of the shadow to the default, which is None.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.ShouldSerializeAlphaBlendShadowColor">
<summary>
Determines if the AlphaBlendShadowColor property should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.ResetAlphaBlendShadowColor">
<summary>
Resets the amount of transparency for the shadow, which is 128.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.ShouldSerializeCanRenderText">
<summary>
Determines if the shape CanRenderText property should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.ResetCanRenderText">
<summary>
Resets whether the shape can render its text property.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.ShouldSerializeShadowOffset">
<summary>
Determines whether the shadow offset should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.ShouldSerializeShadowOffsetX">
<summary>
Determines if the ShadowOffsetX property should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.ResetShadowOffsetX">
<summary>
Resets the amount of offset of the shadow in the horizontal direction
to the default value, which is 5.0F.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.ShouldSerializeShadowOffsetY">
<summary>
Determines if the ShadowOffsetX property should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.ResetShadowOffsetY">
<summary>
Resets the amount of offset of the shadow in the vertical direction
to the default value, which is 5.0F.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.ShouldSerializeShadowColor">
<summary>
Determines if the ShadowColor property should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.ResetShadowColor">
<summary>
Resets the color of the shadow to the default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.ResetDynamicSize">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.ShouldSerializeDynamicSize">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.ResetDynamicMove">
<summary>
Resets the dynamic move of the object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.ShouldSerializeDynamicMove">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.HitTestTransparentShape(System.Drawing.Point,System.Boolean)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.PaintDropShadow(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Draw the drop shadow.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.DoDoubleClick(System.Object,System.EventArgs)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.OnPaintBackground(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Initiates a redraw for the object to repaint its background.
</summary>
<param name="g">Graphics device interface</param>
<param name="rectInput">Rectangle to redraw</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.PaintBorder(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Not supported for basic shapes.
</summary>
<param name="g">Graphics device</param>
<param name="r">Rectangle bounding the area</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.PaintForegroundImage(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Draws the foreground image.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.Serialize(System.Object,System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="obj">Object to save</param>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.SerializeProps(System.Xml.XmlTextWriter)">
<summary>
Saves the object properties to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object properties</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.Deserialize(System.Object,System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="obj">Object</param>
<param name="r">XmlNodeReader from which to load the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.DeserializeShapeProps(System.Xml.XmlNodeReader)">
<summary>
Loads the object properties from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.PSShape.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object </param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSShape.ShadowDirection">
<summary>
Gets or sets the direction of the shadow.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSShape.AlphaBlendShadowColor">
<summary>
Gets or sets the amount of transparency of the shadow.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSShape.BackColor">
<summary>
Gets or sets the background color of the shape.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSShape.CanRenderText">
<summary>
Gets or sets whether the shape renders its text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSShape.ShadowOffset">
<summary>
Gets or sets the amount of offset of the shadow.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSShape.ShadowOffsetX">
<summary>
Gets or sets the amount of horizontal offset of the shadow of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSShape.ShadowOffsetY">
<summary>
Gets or sets the amount of vertical offset of the shadow of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSShape.ShadowColor">
<summary>
Gets or sets the color of the shadow of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSShape.Shape">
<summary>
Gets or sets the shape of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSShape.DynamicSize">
<summary>
Gets or sets the dynamic size of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSShape.DynamicMove">
<summary>
Gets or sets the dynamic move of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.PSShape.IsJoinedShape">
<summary>
Gets or sets whether the shape is a joined shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.AnnotationShape">
<summary>
Represents an annotation shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.AnnotationShape.#ctor">
<summary>
Creates an annotation shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.AnnotationShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new annotation shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.AnnotationShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.AnnotationShape.SetInitialShape">
<summary>
Creates the initial shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.AnnotationShape.PaintSpecialBackground(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Asks the control to repaint the line shape.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the line shape </param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.AnnotationShape.HitTestTransparentShape(System.Drawing.Point,System.Boolean)">
<summary>
Internal use only.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.AnnotationShape.Shape">
<summary>
Gets or sets the shape.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.AnnotationShape.Width">
<summary>
Gets or sets the width of the annotation shape.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.AnnotationShape.Height">
<summary>
Gets or sets the height of the annotation shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.CustomShape">
<summary>
Represents a custom shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CustomShape.#ctor">
<summary>
Creates a custom shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CustomShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new custom shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CustomShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CustomShape.SetInitialShape">
<summary>
Creates the initial shape.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.CustomShape.Shape">
<summary>
Gets or sets the shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.EllipseShape">
<summary>
Represents an ellipse shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.EllipseShape.#ctor">
<summary>
Creates a new ellipse shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.EllipseShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new ellipse shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.EllipseShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.EllipseShape.SetInitialShape">
<summary>
Creates the initial ellipse shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.RectangleShape">
<summary>
Represents an rectangle shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.RectangleShape.#ctor">
<summary>
Creates a new rectangle shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.RectangleShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new rectangle shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.RectangleShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.RectangleShape.SetInitialShape">
<summary>
Creates the initial rectangle shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.FivePointStarShape">
<summary>
Represents a five-pointed star shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.FivePointStarShape.#ctor">
<summary>
Creates a new five-pointed star shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.FivePointStarShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new five-pointed star shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.FivePointStarShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.FivePointStarShape.SetInitialShape">
<summary>
Creates the initial five-pointed star shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.MultiSideShape">
<summary>
Represents a multi side shape object ( must be greater than 4 sides).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.MultiSideShape.#ctor">
<summary>
Creates a new multiple-sided shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.MultiSideShape.CopyTo(System.Object)">
<summary>
Copies the properties of this object to the target object.
</summary>
<param name="target">Target object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.MultiSideShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new multiple-sided shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.MultiSideShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.MultiSideShape.SetInitialShape">
<summary>
Creates the initial multiple-sided shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.MultiSideShape.Serialize(System.Object,System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="obj">Object</param>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.MultiSideShape.SerializeProps(System.Xml.XmlTextWriter)">
<summary>
Saves the object properties to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object </param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.MultiSideShape.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object </param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.MultiSideShape.Deserialize(System.Object,System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="obj">Object</param>
<param name="r">XmlNodeReader from which to load the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.MultiSideShape.DeserializeMultiSideProps(System.Xml.XmlNodeReader)">
<summary>
Loads the object properties from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.MultiSideShape.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object </param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.MultiSideShape.ShouldSerializeShape">
<summary>
Determines if the shape should be saved to XML.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.MultiSideShape.Sides">
<summary>
Gets or sets the number of sides in the shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.LineShape">
<summary>
Represents a line shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LineShape.#ctor">
<summary>
Creates a new line shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LineShape.CopyTo(System.Object)">
<summary>
Copies the properties of this object to the target object.
</summary>
<param name="target">Target object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LineShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new line shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LineShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LineShape.SetInitialShape">
<summary>
Creates the initial line shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LineShape.Contains(System.Drawing.Point,System.Boolean)">
<summary>
Determines whether the container contains the specified point ignoring transparency.
</summary>
<param name="pt">Point to check</param>
<param name="ignoreTransparency">Whether to ignore transparency</param>
<returns>true if it contains the point; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LineShape.PaintRotateHandle(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Draws the rotate handle.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LineShape.GetRotateHandleRectangle(System.Drawing.Rectangle)">
<summary>
Gets the rotate handle rectangle.
</summary>
<param name="r">Rectangle</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LineShape.GetGrabHandleRectangles(System.Drawing.Rectangle,System.Drawing.Rectangle[]@)">
<summary>
Gets the grab handle rectangles.
</summary>
<param name="r">Rectangle</param>
<param name="handleRects">Arrary of handle rectangles</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LineShape.HitTestTransparentShape(System.Drawing.Point,System.Boolean)">
<summary>
Performs the hit test for a transparent shape at the specified point.
</summary>
<param name="pt">Point</param>
<param name="setCursor">Whether to set the cursor</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LineShape.OnPaint(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Initiates a redraw for the object to repaint itself.
</summary>
<param name="g">Graphics device interface</param>
<param name="rectInput">Rectangle to redraw</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LineShape.OnPaintBackground(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Initiates a redraw for the line to repaint its background.
</summary>
<param name="g">Graphics device interface</param>
<param name="rectInput">Rectangle to redraw</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LineShape.PaintSpecialBackground(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Asks the control to repaint the line shape.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the line shape </param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LineShape.PaintDropShadow(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Draw the drop shadow.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LineShape.Serialize(System.Object,System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="obj">Object</param>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LineShape.SerializeProps(System.Xml.XmlTextWriter)">
<summary>
Saves the object properties to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object </param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LineShape.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object </param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LineShape.Deserialize(System.Object,System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="obj">Object</param>
<param name="r">XmlNodeReader from which to load the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LineShape.DeserializeLineProps(System.Xml.XmlNodeReader)">
<summary>
Loads the object properties from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LineShape.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object </param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.LineShape.ShapeOutlineThickness">
<summary>
Gets or sets the shape outline thickness (line thickness) for the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.LineShape.Thickness">
<summary>
Gets or sets the thickness of the line.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.LineShape.StartCap">
<summary>
Gets or sets the starting cap for the line.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.LineShape.EndCap">
<summary>
Gets or sets the ending cap for the line.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.LineShape.Width">
<summary>
Gets or sets the width of the line shape.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.LineShape.Height">
<summary>
Gets or sets the height of the line shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.TriangleShape">
<summary>
Represents a triangle shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TriangleShape.#ctor">
<summary>
Creates a new triangle shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TriangleShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new triangle shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TriangleShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TriangleShape.SetInitialShape">
<summary>
Creates the initial triangle shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.DiamondShape">
<summary>
Represents a diamond shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DiamondShape.#ctor">
<summary>
Creates a new diamond shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DiamondShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new diamond shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DiamondShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DiamondShape.SetInitialShape">
<summary>
Creates the initial diamond shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.ChevronShape">
<summary>
Represents a chevron shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ChevronShape.#ctor">
<summary>
Creates a new chevron shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ChevronShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new chevron shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ChevronShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ChevronShape.SetInitialShape">
<summary>
Creates the initial chevron shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.ArrowShape">
<summary>
Represents an arrow shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ArrowShape.#ctor">
<summary>
Creates a new arrow shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ArrowShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new arrow shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ArrowShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ArrowShape.SetInitialShape">
<summary>
Creates the initial arrow shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.CurvedArrowShape">
<summary>
Represents a curved arrow shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CurvedArrowShape.#ctor">
<summary>
Creates a new curved arrow shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CurvedArrowShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new arrow shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CurvedArrowShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CurvedArrowShape.SetInitialShape">
<summary>
Creates the initial curved arrow shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CurvedArrowShape.Initialize">
<summary>
Initializes the shape object in the presentation space.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.EditorCalloutShape">
<summary>
Represents an editor's drawn highlight shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.EditorCalloutShape.#ctor">
<summary>
Creates a new bent arrow shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.EditorCalloutShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new bent arrow shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.EditorCalloutShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.EditorCalloutShape.SetInitialShape">
<summary>
Creates the initial bent arrow shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.EditorCalloutShape.Initialize">
<summary>
Initializes the shape object in the presentation space.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.BentArrowShape">
<summary>
Represents a bent arrow shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.BentArrowShape.#ctor">
<summary>
Creates a new bent arrow shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.BentArrowShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new bent arrow shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.BentArrowShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.BentArrowShape.SetInitialShape">
<summary>
Creates the initial bent arrow shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.BentArrowShape.Initialize">
<summary>
Initializes the shape object in the presentation space.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.SquareCaptionBalloonShape">
<summary>
Represents a square caption balloon shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SquareCaptionBalloonShape.#ctor">
<summary>
Creates a new square caption balloon shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SquareCaptionBalloonShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new square caption balloon shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SquareCaptionBalloonShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.SquareCaptionBalloonShape.SetInitialShape">
<summary>
Creates the initial square caption balloon shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.CalloutArrowShape">
<summary>
Represents a square callout with arrow shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CalloutArrowShape.#ctor">
<summary>
Creates a new square callout with arrow shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CalloutArrowShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new square callout with arrow shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CalloutArrowShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CalloutArrowShape.SetInitialShape">
<summary>
Creates the initial square callout with arrow shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.TwoWayArrowShape">
<summary>
Represents a two way arrow shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TwoWayArrowShape.#ctor">
<summary>
Creates a new two way arrow shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TwoWayArrowShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new two way arrow shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TwoWayArrowShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TwoWayArrowShape.SetInitialShape">
<summary>
Creates the initial two way arrow shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TwoWayArrowShape.Initialize">
<summary>
Initializes the shape object in the presentation space.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.ThreeWayArrowShape">
<summary>
Represents a three way arrow shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ThreeWayArrowShape.#ctor">
<summary>
Creates a new three way arrow shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ThreeWayArrowShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new three way arrow shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ThreeWayArrowShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ThreeWayArrowShape.SetInitialShape">
<summary>
Creates the initial three way arrow shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.FourWayArrowShape">
<summary>
Represents a four way arrow shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.FourWayArrowShape.#ctor">
<summary>
Creates a new four way arrow shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.FourWayArrowShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new four way arrow shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.FourWayArrowShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.FourWayArrowShape.SetInitialShape">
<summary>
Creates the initial four way arrow shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.UniversalNoShape">
<summary>
Represents a universal "no" shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.UniversalNoShape.#ctor">
<summary>
Creates a new universal "no" shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.UniversalNoShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new universal "no" shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.UniversalNoShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.UniversalNoShape.SetInitialShape">
<summary>
Creates the initial universal "no" shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.UniversalNoShape.Initialize">
<summary>
Initializes the shape object in the presentation space.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.LightningBoltShape">
<summary>
Represents a lightning bolt shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LightningBoltShape.#ctor">
<summary>
Creates a new lightning bolt shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LightningBoltShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new lightning bolt shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LightningBoltShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LightningBoltShape.SetInitialShape">
<summary>
Creates the initial lightning bolt shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.LightningBoltShape.Initialize">
<summary>
Initializes the shape object in the presentation space.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.DonutShape">
<summary>
Represents a donut shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DonutShape.#ctor">
<summary>
Creates a new donut shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DonutShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new donut shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DonutShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.DonutShape.SetInitialShape">
<summary>
Creates the initial donut shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.BannerShape">
<summary>
Represents a banner shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.BannerShape.#ctor">
<summary>
Creates a new banner shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.BannerShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a banner shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.BannerShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.BannerShape.SetInitialShape">
<summary>
Creates the initial banner shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.BannerShape.Initialize">
<summary>
Initializes the shape object in the presentation space.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.HeartShape">
<summary>
Represents a heart shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.HeartShape.#ctor">
<summary>
Creates a new heart shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.HeartShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new heart shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.HeartShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.HeartShape.SetInitialShape">
<summary>
Creates the initial heart shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.HeartShape.Initialize">
<summary>
Initializes the shape object in the presentation space.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.CrescentShape">
<summary>
Represents a crescent shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CrescentShape.#ctor">
<summary>
Creates a new crescent shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CrescentShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new crescent shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CrescentShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CrescentShape.SetInitialShape">
<summary>
Creates the initial crescent shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.ArcShape">
<summary>
Represents a arc shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ArcShape.#ctor">
<summary>
Creates a new arc shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ArcShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new arc shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ArcShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ArcShape.SetInitialShape">
<summary>
Creates the initial arc shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ArcShape.Initialize">
<summary>
Initializes the shape object in the presentation space.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.BurstShape">
<summary>
Represents a burst shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.BurstShape.#ctor">
<summary>
Creates a new burst shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.BurstShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new burst shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.BurstShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.BurstShape.SetInitialShape">
<summary>
Creates the initial burst shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.BurstShape.Initialize">
<summary>
Initializes the shape object in the presentation space.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.RoundedRectangleShape">
<summary>
Represents a rounded rectangle shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.RoundedRectangleShape.#ctor">
<summary>
Creates a new rounded rectangle shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.RoundedRectangleShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new rounded rectangle shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.RoundedRectangleShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.RoundedRectangleShape.SetInitialShape">
<summary>
Creates the initial rounded rectangle shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.CaptionBalloonShape">
<summary>
Represents a caption balloon shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CaptionBalloonShape.#ctor">
<summary>
Creates a new caption balloon shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CaptionBalloonShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new caption balloon shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CaptionBalloonShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CaptionBalloonShape.SetInitialShape">
<summary>
Creates the initial caption balloon shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CaptionBalloonShape.Initialize">
<summary>
Initializes the shape object in the presentation space.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.ThoughtBalloonShape">
<summary>
Represents a thought balloon shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ThoughtBalloonShape.#ctor">
<summary>
Creates a new thought balloon shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ThoughtBalloonShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new thought balloon shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ThoughtBalloonShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ThoughtBalloonShape.SetInitialShape">
<summary>
Creates the initial thought balloon shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.ExclamationBalloonShape">
<summary>
Represents a exclamation balloon shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ExclamationBalloonShape.#ctor">
<summary>
Creates a new exclamation balloon shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ExclamationBalloonShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new exclamation balloon shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ExclamationBalloonShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ExclamationBalloonShape.SetInitialShape">
<summary>
Creates the initial exclamation balloon shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ExclamationBalloonShape.Initialize">
<summary>
Initializes the shape object in the presentation space.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.CheckmarkShape">
<summary>
Represents a check mark shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CheckmarkShape.#ctor">
<summary>
Creates a new check mark shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CheckmarkShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new checkmark shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CheckmarkShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CheckmarkShape.SetInitialShape">
<summary>
Creates the initial check mark shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.CheckmarkShape.Initialize">
<summary>
Initializes the shape object in the presentation space.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.XShape">
<summary>
Represents an X shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.XShape.#ctor">
<summary>
Creates a new X shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.XShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new X shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.XShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.XShape.SetInitialShape">
<summary>
Creates the initial X shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.XShape.Initialize">
<summary>
Initializes the shape object in the presentation space.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.TextShape">
<summary>
Represents a text string shape object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TextShape.#ctor">
<summary>
Creates a new text string shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TextShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new text string shape object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TextShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape object.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TextShape.OnFontChanged(System.EventArgs)">
<summary>
Returns event information when the font for the element has changed
</summary>
<param name="e">Object with event data</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TextShape.ResetText">
<summary>
Resets the text to the default value, which is "abc".
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TextShape.SetShapeFromText(System.String)">
<summary>
Sets the shape of the text shape.
</summary>
<param name="shapeString">String</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TextShape.SetInitialShape">
<summary>
Creates the initial text shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TextShape.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object </param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.TextShape.Text">
<summary>
Gets or sets the text for the text string shape.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.TextShape.Font">
<summary>
Gets or sets the font.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.TextShape.FontPriv">
<summary>
Internal use only. Gets or sets the font.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.Internal.StickyNoteCommentBase">
<summary>
Represents a shape-based comment object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.StickyNoteCommentBase.#ctor">
<summary>
Creates a new shape-based comment.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.StickyNoteCommentBase.#ctor(System.Drawing.Rectangle)">
<summary>
Creates a new shape-based comment in the specified bounds.
</summary>
<param name="rBounds">Rectangle bounds of the pop-up comment</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.StickyNoteCommentBase.#ctor(System.Drawing.Rectangle,System.Drawing.Point)">
<summary>
Creates a new shape-based comment in the specified bounds.
</summary>
<param name="rBounds">Rectangle bounds of the pop-up comment</param>
<param name="anchorPt">Anchor point</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.StickyNoteCommentBase.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new shape-based comment from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.StickyNoteCommentBase.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the shape-based comment.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.StickyNoteCommentBase.Reset">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.StickyNoteCommentBase.ShouldSerializeCanRenderText">
<summary>
Determines if the shape CanRenderText property should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.StickyNoteCommentBase.ResetCanRenderText">
<summary>
Resets whether the shape can render it's Text property.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.StickyNoteCommentBase.SetBounds(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Sets the bounds for the pop-up comment.
</summary>
<param name="x">X-coordinate for bounding rectangle's top-left corner </param>
<param name="y">Y-coordinate for bounding rectangle's top-left corner </param>
<param name="width">Width of bounding rectangle in pixels </param>
<param name="height">Height of bounding rectangle in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.StickyNoteCommentBase.AdjustStringFormat(System.Drawing.StringFormat@)">
<summary>
Adjusts the string format.
</summary>
<param name="fmt"></param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.StickyNoteCommentBase.PaintSpecialBackground(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Asks the control to repaint the pop-up comment background.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the pop-up comment</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.StickyNoteCommentBase.PaintSpecialForeground(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Asks the control to repaint the pop-up comment foreground.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounded rectangle for the pop-up comment</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.StickyNoteCommentBase.PaintDropShadow(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints the drop shadow around the pop-up comment
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the pop-up comment</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.StickyNoteCommentBase.PrintDropShadowPDF(FarPoint.PDF.PdfGraphics,System.Drawing.Rectangle,System.Single)">
<summary>
Print the drop shadow around the pop-up comment
</summary>
<param name="g">PDF graphics device interface</param>
<param name="r">Rectangle bounding the notes to print</param>
<param name="zoomFactor">Scaling factor for zooming when printing</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.StickyNoteCommentBase.PaintFocusRectangle(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints the focus rectangle for the pop-up comment.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the pop-up comment</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.StickyNoteCommentBase.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object </param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.StickyNoteCommentBase.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object </param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.StickyNoteCommentBase.CanRotate">
<summary>
Gets or sets whether the pop-up comment to rotate.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.StickyNoteCommentBase.AnchorPoint">
<summary>
Gets or sets the anchor point of the pop-up comment.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.StickyNoteCommentBase.PreviewMode">
<summary>
Only for preview cell note in the preview window of the ShapeProps form.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote">
<summary>
Represents a floating cell note object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.#ctor">
<summary>
Creates a new floating cell note.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.#ctor(FarPoint.Win.Spread.SheetView)">
<summary>
Creates a new floating cell note for the specified sheet.
</summary>
<param name="sheet">Sheet (SheetView object)</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32)">
<summary>
Creates a new floating cell note for the specified sheet, with the specified row and column.
</summary>
<param name="sheet">Sheet (SheetView object)</param>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new cell note from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the cell note.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.ShouldSerializeCanRotate">
<summary>
Determine if the CanRotate property should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.Update">
<summary>
Causes the control to redraw the invalidated regions with its client area.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.FillBackgroundWithGradient(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Fills the background of the cell note with a gradient.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the shape</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.OnPaintBackground(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Asks the control to repaint the cell note background.
</summary>
<param name="g">Graphics device</param>
<param name="rectInput">Rectangle bounding the area of the cell note</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.OnPaint(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Asks the control to repaint the cell note.
</summary>
<param name="g">Graphics device</param>
<param name="rectInput">Rectangle bounding the area of the cell note</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.SetBoundsFloat(System.Single,System.Single,System.Single,System.Single)">
<summary>
Sets the bounds of the object to the specified position and size.
</summary>
<param name="x">X-coordinate for bounding rectangle's top-left corner</param>
<param name="y">Y-coordinate for bounding rectangle's top-left corner</param>
<param name="w">Width of bounding rectangle in pixels</param>
<param name="h">Height of bounding rectangle in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.Scale(System.Single,System.Single,System.Boolean)">
<summary>
Adjusts the size of the object by the specified amount.
</summary>
<param name="scaleX">Factor by which to scale the object in the horizontal dimension</param>
<param name="scaleY">Factor by which to scale the object in the vertical dimension</param>
<param name="repaint">Whether to re-draw the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.ShouldSerializeName">
<summary>
Determines if the Name property should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.ShouldSerializeShape">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.ShouldSerializeCanSize">
<summary>
Determines if the CanSize property should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.ShouldSerializeDynamicMove">
<summary>
Determines if the DynamicMove property should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.ShouldSerializeDynamicSize">
<summary>
Determines if the DynamicSize property should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the floating cell note to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the cell note</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the floating cell note from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object </param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.PaintText(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Draws the floating cell note.
</summary>
<param name="g">Graphics device to use</param>
<param name="rText">Rectangle in which to display the text</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.AdjustStringFormat(System.Drawing.StringFormat@)">
<summary>
Adjusts the format of the cell note string.
</summary>
<param name="fmt">Format for the string</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.Print(FarPoint.PDF.PdfGraphics,System.Drawing.Rectangle,System.Single)">
<summary>
Prints the cell notes.
</summary>
<param name="g">PDF graphics device interface</param>
<param name="rectInput">Rectangle bounding the notes to print</param>
<param name="zoomFactor">Scaling factor for zooming when printing</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.PrintSpecialBackgroundPdf(FarPoint.PDF.PdfGraphics,System.Drawing.Rectangle)">
<summary>
Paints the special background.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the special background</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.PrintTextPdf(FarPoint.PDF.PdfGraphics,System.Drawing.Rectangle)">
<summary>
Paints the text.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the text</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.PrintBackColorPdf(FarPoint.PDF.PdfGraphics,System.Drawing.Rectangle)">
<summary>
Paints the color of the background.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the background</param>
</member>
<member name="E:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.Moved">
<summary>
Occurs when the note is moved.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.Sized">
<summary>
Occurs when the note is sized.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.ZoomFactor">
<summary>
Gets or sets the zoom factor.
</summary>
<value>The zoom factor.</value>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.Sheet">
<summary>
Gets or sets the sheet for the floating cell note.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.Row">
<summary>
Gets or sets the row for the floating cell note.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.Column">
<summary>
Gets or sets the column for the floating cell note.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.CanRotate">
<summary>
Gets or sets whether the floating cell note can be rotated by the end user.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.RotationAngle">
<summary>
Gets or sets the rotation angle for the floating cell note.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.Visible">
<summary>
Gets or sets whether the object is visible.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.AnchorPoint">
<summary>
Gets or sets the point at which to anchor the floating cell note.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.CellRange">
<summary>
Gets the range of cells.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.Top">
<summary>
Gets or sets the Y-coordinate of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.Left">
<summary>
Gets or sets the X-coordinate of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.Height">
<summary>
Gets or sets the height of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.Width">
<summary>
Gets or sets the width of the object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.Name">
<summary>
Gets or sets the name of the floating cell note.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.DisplayText">
<summary>
Gets or sets the display text of the cell note(only used by popup note).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.Text">
<summary>
Gets or sets the text of the cell note.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.AlignHorz">
<summary>
Gets or sets the horizontal alignment of the contents of the cell note.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.AlignVert">
<summary>
Gets or sets the vertical alignment of the contents of the cell note.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.MarginBottom">
<summary>
Gets or sets the margin between the bottom of the element and its contents.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.MarginTop">
<summary>
Gets or sets the margin between the top of the element and its contents.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.MarginRight">
<summary>
Gets or sets the margin between the right of the element and its contents.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.MarginLeft">
<summary>
Gets or sets the margin between the left of the element and its contents.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.FlipVertical">
<summary>
Gets or sets a value indicating whether the shape is flip vertical.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.FlipHorizontal">
<summary>
Gets or sets a value indicating whether the shape is flip horizontal.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.Internal.CellNote.Comment">
<summary>
Gets or sets the text of the cell's comment.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.Internal.PSObjectConverter">
<summary>
Converts instances of PSObject objects to and from other types.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSObjectConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Determines whether a PSObject object can be converted to the specified type.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="destinationType">Type</param>
<returns>True if a PSObject object can be converted to the specified type, and false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSObjectConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the PSObject object to the specified type.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">object</param>
<param name="destinationType">Type</param>
<returns>Converted PSObject object.</returns>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.Internal.PSGradientConverter">
<summary>
Converts instances of gradients to and from other types.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSGradientConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Determines whether a gradient can be converted to the specified type.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="destinationType">Type</param>
<returns>True if a PSGradient object can be converted to the specified type, and false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.PSGradientConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the gradient to the specified type.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">object</param>
<param name="destinationType">Type</param>
<returns>Converted gradient object.</returns>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.Internal.GradientSectionConverter">
<summary>
Converts instances of gradient sections to and from other types.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.GradientSectionConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Determines whether a gradient section can be converted to the specified type.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="destinationType">Type</param>
<returns>True if a GradientSection object can be converted to the specified type, and false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.Internal.GradientSectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the gradient section to the specified type.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">object</param>
<param name="destinationType">Type</param>
<returns>Converted gradient section object.</returns>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.ShadowProps">
<summary>
Represents the shadow properties for floating objects.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.ShadowProps.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ShadowProps.#ctor">
<summary>
Creates a new set of shadow properties.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ShadowProps.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ShadowProps.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.ShadowProps.Shape">
<summary>
Gets or sets the shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.ShapeProps">
<summary>
Represents the shape properties.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.ShapeProps.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ShapeProps.#ctor">
<summary>
Creates a new set of shape properties.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ShapeProps.#ctor(System.Windows.Forms.Control)">
<summary>
Creates a new set of shape properties for the specified control.
</summary>
<param name="control">Control</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ShapeProps.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.ShapeProps.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.ShapeProps.Shape">
<summary>
Gets or sets the shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.TextAndFont">
<summary>
Represents the text and font of the presentation space.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.TextAndFont.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TextAndFont.#ctor">
<summary>
Creates a new text and font for the presentation space.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TextAndFont.#ctor(System.Boolean)">
<summary>
Creates a new text and font for the presentation space.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TextAndFont.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TextAndFont.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.TextAndFont.FontName">
<summary>
Gets or sets the name of the font of the text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.TextAndFont.SelectedFont">
<summary>
Gets or sets the font for selected text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.TextAndFont.TextString">
<summary>
Gets or sets the text string.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DrawingSpace.TextInput">
<summary>
Represents the text input for the presentation space.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.TextInput.TextInputCancelButton">
<summary>
Represents the Cancel button of the form.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.TextInput.TextInputOkButton">
<summary>
Represents the OK button of the form.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.TextInput.TextInputInputBox">
<summary>
Represents the input text box of the form.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.TextInput.TextInputPrompt">
<summary>
Represents the informational prompt label of the form.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DrawingSpace.TextInput.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TextInput.#ctor">
<summary>
Creates a new text input.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TextInput.Dispose(System.Boolean)">
<summary>
Internal use only. Clean up any resources being used.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingSpace.TextInput.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.TextInput.NumbersOnly">
<summary>
Gets or sets whether the text input is only numeric input.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.TextInput.AllowNegativeNumbers">
<summary>
Gets or sets whether the numeric text input allows negative values.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.TextInput.HelpTopic">
<summary>
Gets or sets the help topic for the text input.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.TextInput.HelpPath">
<summary>
Gets or sets the help path for the text input.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DrawingSpace.TextInput.HelpFileName">
<summary>
Gets or sets the help file name for the text input.
</summary>
</member>
<member name="T:FarPoint.BugWorkarounds.Bug20421">
<summary>
Workaround for bug 20421 -- PropertyGrid control copying objects when we don't want it to.
</summary>
</member>
<member name="M:FarPoint.BugWorkarounds.Bug20421.IsPropertyGridCopyingMe">
<summary>
Returns true if the .Net 2.0 PropertyGrid control is calling the Clone method to copy
the object from its MergePropertyDescriptor.CopyValue method.
</summary>
<returns></returns>
</member>
<member name="T:FarPoint.Win.Spread.Model.AggregationDataModel">
<summary>
Represents the aggregation data model.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.BaseSheetDataModel">
<summary>
Represents the partial (abstract) implementation of the ISheetDataModel interface
for a data model for a sheet.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.ISheetDataModel">
<summary>
Interface that supports creating a model that represents tabular data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetDataModel.IsRowUsed(System.Int32)">
<summary>
Determines whether the specified row contains data.
</summary>
<param name="row">Row index</param>
<returns>True if the row contains data; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetDataModel.IsEmpty">
<summary>
Determines whether the model is empty of data.
</summary>
<returns>True if the cell has no data; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetDataModel.IsEditable(System.Int32,System.Int32)">
<summary>
Determines whether the contents of the cell at the specified row and column are editable.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<returns>True if the cell contents can be edited; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetDataModel.GetValue(System.Int32,System.Int32)">
<summary>
Gets the value in a cell at the specified row and column.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<returns>Object with value in cell</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetDataModel.SetValue(System.Int32,System.Int32,System.Object)">
<summary>
Sets data in a cell at the specified row and column.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="value">Object containing data to set in cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetDataModel.GetNote(System.Int32,System.Int32)">
<summary>
Gets the note for a cell of the specified row and column.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<returns>String with the note text</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetDataModel.SetNote(System.Int32,System.Int32,System.String)">
<summary>
Sets the note for a cell at the specified row and column.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="value">String for note</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetDataModel.GetTag(System.Int32,System.Int32)">
<summary>
Gets the application data for a cell at the specified row and column.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<returns>Object with application data</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetDataModel.SetTag(System.Int32,System.Int32,System.Object)">
<summary>
Sets the application data associated with the cell
at the specified row and column.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="value">Data to associate with cell</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.ISheetDataModel.ColumnCount">
<summary>
Gets or sets the number of columns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.ISheetDataModel.RowCount">
<summary>
Gets or sets the number of rows.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Model.ISheetDataModel.Changed">
<summary>
Occurs when the data model has changed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.INonEmptyCells">
<summary>
Interface that supports determining the number of columns and rows
with data in the data model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.INonEmptyCells.NonEmptyRowCount">
<summary>
Gets the number of rows with data.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.INonEmptyCells.NonEmptyColumnCount">
<summary>
Gets the number of columns with data.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.IOptimizedEnumerationSupport2">
<summary>
Interface that supports additional optimization for retrieval of data
in the data model beyond IOptimizedEnumerationSupport.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.IOptimizedEnumerationSupport">
<summary>
Interface that supports optimization for retrieval of data
in the data model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IOptimizedEnumerationSupport.IsRowUsed(System.Int32)">
<summary>
Determines whether a row had data in any of the cells in that row.
</summary>
<param name="row">Row index</param>
<returns>true if the row has data; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.IOptimizedEnumerationSupport.NextNonEmptyColumnInRow(System.Int32,System.Int32)">
<summary>
Returns the index of the next column in this row that has data.
</summary>
<param name="row">Index of the row through which to look</param>
<param name="column">Index of the column at which to start looking</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IOptimizedEnumerationSupport2.NextNonEmptyRow(System.Int32)">
<summary>
Returns the index of the next row that has data.
</summary>
<param name="row">Index of the row at which to start looking</param>
</member>
<member name="T:FarPoint.Win.Spread.Model.IChartSupport">
<summary>
Interface that supports notifying that the data model has changed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Model.IChartSupport.AfterChanged">
<summary>
Occurs after Changed event is performed.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetDataModel.IsRowUsed(System.Int32)">
<summary>
Determines whether the specified row contains data.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetDataModel.NextNonEmptyColumnInRow(System.Int32,System.Int32)">
<summary>
Gets the index of the next column in a specified row that contains data.
</summary>
<param name="row">Row index to search</param>
<param name="column">Column index before the column to start searching (-1 to start at column 0)</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetDataModel.NextNonEmptyRow(System.Int32)">
<summary>
Gets the index of the next row that contains data.
</summary>
<param name="row">Row index after which to start searching (-1 to start at row 0)</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetDataModel.IsEmpty">
<summary>
Determines whether the model is empty of data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetDataModel.IsEditable(System.Int32,System.Int32)">
<summary>
Determines whether the contents of a cell
at a specified row and column are editable.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetDataModel.GetValue(System.Int32,System.Int32)">
<summary>
Gets the value for a cell at a specified row and column.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetDataModel.SetValue(System.Int32,System.Int32,System.Object)">
<summary>
Sets data for a cell at a specified row and column.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="value">Value to set in cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetDataModel.GetNote(System.Int32,System.Int32)">
<summary>
Gets the note for a cell at a specified row and column.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetDataModel.SetNote(System.Int32,System.Int32,System.String)">
<summary>
Sets the note for a cell at a specified row and column.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="value">String for note</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetDataModel.GetTag(System.Int32,System.Int32)">
<summary>
Gets the application data for a cell
at a specified row and column.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetDataModel.SetTag(System.Int32,System.Int32,System.Object)">
<summary>
Sets the application data for a cell
at a specified row and column.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="value">Data to associate with cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetDataModel.OnChanged(FarPoint.Win.Spread.Model.SheetDataModelEventArgs)">
<summary>
Raises the Changed event, and permits derived classes to handle
the event without attaching a delegate.
</summary>
<param name="e">SheetSpanModelEventArgs object that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetDataModel.FireChanged(System.Int32,System.Int32)">
<summary>
Raises the Changed event.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetDataModel.OnAfterChanged(FarPoint.Win.Spread.Model.SheetDataModelEventArgs)">
<summary>
Raises the AfterChanged event, and permits derived classes to handle
the event without attaching a delegate.
</summary>
<param name="e">SheetSpanModelEventArgs object that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetDataModel.FireChanged(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Raises the Changed event.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetDataModel.FireChanged(System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.Model.SheetDataModelEventType)">
<summary>
Raises the Changed event.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="type">Type of event raised</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.BaseSheetDataModel.ColumnCount">
<summary>
Gets or sets the number of columns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.BaseSheetDataModel.RowCount">
<summary>
Gets or sets the number of rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.BaseSheetDataModel.NonEmptyColumnCount">
<summary>
Gets the number of columns that contain data.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.BaseSheetDataModel.NonEmptyRowCount">
<summary>
Gets the number of rows that contain data.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Model.BaseSheetDataModel.Changed">
<summary>
Occurs when the user makes a change to the model
that affects the data of the sheet.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Model.BaseSheetDataModel.FarPoint#Win#Spread#Model#IChartSupport#AfterChanged">
<summary>
Occurs after Changed event is performed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.IAggregationSupport">
<summary>
Interface that supports Aggregate functionality on ranges of cells
in the data model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IAggregationSupport.SetCellAggregationType(System.Int32,System.Int32,FarPoint.Win.Spread.Model.AggregationType)">
<summary>
Set aggregation type for cell.
</summary>
<param name="row">Cell row</param>
<param name="col">Cell column</param>
<param name="type">Aggregation type</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IAggregationSupport.SetCellAggregationFormat(System.Int32,System.Int32,System.String)">
<summary>
Set aggregation format for cell.
</summary>
<param name="row">Cell row</param>
<param name="col">Cell column</param>
<param name="format">Aggregation format</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IAggregationSupport.GetCelAggregationType(System.Int32,System.Int32)">
<summary>
Get cell aggregation type.
</summary>
<param name="row">Cell row</param>
<param name="col">Cell column</param>
<returns>Aggregation type of cell</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.IAggregationSupport.GetCellAggregationFormat(System.Int32,System.Int32)">
<summary>
Get cell aggregation format string.
</summary>
<param name="row">Cell row</param>
<param name="col">Cell column</param>
<returns>Cell aggregation format string</returns>
</member>
<member name="T:FarPoint.Win.Spread.Model.IRangeSupport">
<summary>
Interface that supports operations on ranges of cells
in the data model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IRangeSupport.AddRows(System.Int32,System.Int32)">
<summary>
Adds rows of cells after the specified row.
</summary>
<param name="row">Row index of row after which to add rows</param>
<param name="rowCount">Number of rows to add</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IRangeSupport.AddColumns(System.Int32,System.Int32)">
<summary>
Adds columns of cells after the specified column.
</summary>
<param name="column">Column index of column after which to add columns</param>
<param name="columnCount">Number of columns to add</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IRangeSupport.RemoveRows(System.Int32,System.Int32)">
<summary>
Removes rows from the specified starting position.
</summary>
<param name="row">Row index at which to start removing rows</param>
<param name="rowCount">Number of rows to remove</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IRangeSupport.RemoveColumns(System.Int32,System.Int32)">
<summary>
Removes columns from the specified starting position.
</summary>
<param name="column">Column index at which to start removing columns</param>
<param name="columnCount">Number of columns to remove</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IRangeSupport.Clear(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Removes all of the contents from the cells in the specified range of cells.
</summary>
<param name="row">Row index of first row in selected range</param>
<param name="column">Column index of first column in selected range</param>
<param name="rowCount">Number of rows in selected range</param>
<param name="columnCount">Number of columns in selected range</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IRangeSupport.Copy(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Copies a range of cells and pastes it into a range of cells at the specified location.
</summary>
<param name="fromRow">Row index from which to begin copying</param>
<param name="fromColumn">Column index from which to begin copying</param>
<param name="toRow">Row index at which to paste the cell range</param>
<param name="toColumn">Column index at which to paste the cell range</param>
<param name="rowCount">Number of rows to copy</param>
<param name="columnCount">Number of columns to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IRangeSupport.Move(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Moves a range of cells and pastes it into a range of cells at the specified location.
</summary>
<param name="fromRow">Row index from which to begin the move</param>
<param name="fromColumn">Column index from which to begin the move</param>
<param name="toRow">Row index at which to paste the cell range</param>
<param name="toColumn">Column index at which to paste the cell range</param>
<param name="rowCount">Number of rows to move</param>
<param name="columnCount">Number of columns to move</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IRangeSupport.Swap(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Swaps a range of cells from one specified location to another.
</summary>
<param name="fromRow">Row index from which to begin swap</param>
<param name="fromColumn">Column index from which to begin swap</param>
<param name="toRow">Row index of the destination range</param>
<param name="toColumn">Column index of the destination range</param>
<param name="rowCount">Number of rows to swap</param>
<param name="columnCount">Number of columns to swap</param>
</member>
<member name="T:FarPoint.Win.Spread.Model.IExpressionSupport">
<summary>
Interface that supports formulas as values and as expressions
in the data model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IExpressionSupport.GetFormula(System.Int32,System.Int32)">
<summary>
Gets the formula, as a string, in the cell
at the specified row and column.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IExpressionSupport.SetFormula(System.Int32,System.Int32,System.String)">
<summary>
Sets the formula, as a string, in the cell
at the specified row and column.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="value">Formula</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IExpressionSupport.GetExpression(System.Int32,System.Int32)">
<summary>
Gets the formula, as an expression, in the cell
at the specified row and column.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IExpressionSupport.SetExpression(System.Int32,System.Int32,FarPoint.CalcEngine.Expression)">
<summary>
Sets the formula, as an expression, in the cell
at the specified row and column.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="value">Formula</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.IExpressionSupport.ReferenceStyle">
<summary>
Gets or sets the cell reference style.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.ISuspendFormulaParsing">
<summary>
Interface that supports suspension of formula parsing during deserialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISuspendFormulaParsing.SuspendFormulaParsing">
<summary>
Suspends formula parsing until ResumeFormulaParsing is called.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISuspendFormulaParsing.ResumeFormulaParsing">
<summary>
Resumes formula parsing and parses all formulas set while parsing was suspended.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the AggregationDataModel to the SerializationInfo.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a <see cref="T:FarPoint.Win.Spread.Model.AggregationDataModel"/> object from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.#ctor">
<summary>
Creates a new aggregation data model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.#ctor(FarPoint.Win.Spread.Model.ISheetDataModel)">
<summary>
Creates a new aggregation data model for the specified sheet data model.
</summary>
<param name="targetModel">Sheet data model</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.#ctor(FarPoint.Win.Spread.Model.Group)">
<summary>
Creates a new aggregation data model for the specified group.
</summary>
<param name="targetGroup"></param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.Dispose">
<summary>
Disposes this object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.NextNonEmptyColumnInRow(System.Int32,System.Int32)">
<summary>
Gets the index of the next column in a specified row that contains data.
</summary>
<param name="row">Row index to search</param>
<param name="column">Column index before the column to start searching (-1 to start at column 0)</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.NextNonEmptyRow(System.Int32)">
<summary>
Gets the index of the next row that contains data.
</summary>
<param name="row">Row index after which to start searching (-1 to start at row 0)</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.IsRowUsed(System.Int32)">
<summary>
Determines whether the specified row has data (is not empty).
</summary>
<param name="row">Index of row to check</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.IsEditable(System.Int32,System.Int32)">
<summary>
Determines whether the cell in the group is editable.
</summary>
<param name="row">Row index of the cell</param>
<param name="col">Column index of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.IsEmpty">
<summary>
Determines whether the data model is empty.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.GetValue(System.Int32,System.Int32)">
<summary>
Gets the value from the cell in the group.
</summary>
<param name="row">Row index of the cell</param>
<param name="col">Column index of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.SetValue(System.Int32,System.Int32,System.Object)">
<summary>
Sets the value of the cell in the group.
</summary>
<param name="row">Row index of the cell</param>
<param name="col">Column index of the cell</param>
<param name="value">Value to assign to the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.GetNote(System.Int32,System.Int32)">
<summary>
Gets a user-defined note value for the cell of the specified row and column.
</summary>
<param name="row">Row index of the cell in the model</param>
<param name="column">Column index of the cell in the model</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.SetNote(System.Int32,System.Int32,System.String)">
<summary>
Sets a user-defined note value for the cell at the specified row and column.
</summary>
<param name="row">Row index of the cell in the model</param>
<param name="column">Column index of the cell in the model</param>
<param name="value">Note value to set</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.GetTag(System.Int32,System.Int32)">
<summary>
Gets an application-defined tag value for the cell of the specified row and column.
</summary>
<param name="row">Row index of the cell in the model</param>
<param name="column">Column index of the cell in the model</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.SetTag(System.Int32,System.Int32,System.Object)">
<summary>
Sets an application-defined tag value for the cell of the specified row and column.
</summary>
<param name="row">Row index of the cell in the model</param>
<param name="column">Column index of the cell in the model</param>
<param name="value">Tag value to set</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.SetCellAggregationType(System.Int32,System.Int32,FarPoint.Win.Spread.Model.AggregationType)">
<summary>
Sets the formula for the cell of the specified row and column.
</summary>
<param name="row">Row index of cell</param>
<param name="col">Column index of cell</param>
<param name="aggType">Formula type</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.SetCellAggregationFormat(System.Int32,System.Int32,System.String)">
<summary>
Set format for the cell of the specified row and column.
</summary>
<param name="row">Row index of the cell in the model</param>
<param name="col">Column index of the cell in the model</param>
<param name="format">Format of cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.GetCelAggregationType(System.Int32,System.Int32)">
<summary>
Gets the formula of the cell of the specified row and column.
</summary>
<param name="row">Row index of the cell in the model</param>
<param name="col">Column index of the cell in the model</param>
<returns>Formula of cell</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.GetCellAggregationFormat(System.Int32,System.Int32)">
<summary>
Sets the format of the cell of the specified row and column.
</summary>
<param name="row">Row index of the cell in the model</param>
<param name="col">Column index of the cell in the model</param>
<returns>Format of cell</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.AddRows(System.Int32,System.Int32)">
<summary>
Adds rows to the data model at the specified position.
</summary>
<param name="row">Row index at which to add new rows</param>
<param name="rowCount">Number of rows to add</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.AddColumns(System.Int32,System.Int32)">
<summary>
Adds one or more columns to the data model at the specified position.
</summary>
<param name="column">Index of column at which to add new column</param>
<param name="columnCount">Number of columns to add</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.RemoveRows(System.Int32,System.Int32)">
<summary>
Removes one or more rows, starting with the specified row.
</summary>
<param name="row">Index of first row to remove</param>
<param name="rowCount">Number of rows to remove</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.RemoveColumns(System.Int32,System.Int32)">
<summary>
Removes one or more columns starting with the column at the specified position.
</summary>
<param name="column">Index of first column to remove</param>
<param name="columnCount">Number of columns to remove</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.Clear(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Removes all the data and formulas from the specified range of cells.
</summary>
<param name="row">Row index of start of range to clear</param>
<param name="column">Column index of start of range to clear</param>
<param name="rowCount">Number of rows to clear</param>
<param name="columnCount">Number of columns to clear</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.Copy(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Copies the data from a range of cells to a specified range of cells.
</summary>
<param name="fromRow">Row index of start of range from which to copy</param>
<param name="fromColumn">Column index of start of range from which to copy</param>
<param name="toRow">Row index of start of range to which to copy</param>
<param name="toColumn">Column index of start of range to which to copy</param>
<param name="rowCount">Number of rows to copy</param>
<param name="columnCount">Number of columns to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.Move(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Moves the data from a range of cells to the specified location.
</summary>
<param name="fromRow">Row index of starting position of range to move</param>
<param name="fromColumn">Column index of starting position of range to move</param>
<param name="toRow">Row index of starting position of destination</param>
<param name="toColumn">Column index of starting position of destination</param>
<param name="rowCount">Number of rows in range</param>
<param name="columnCount">Number of columns in range</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.Swap(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Swaps the specified ranges of cells.
</summary>
<param name="fromRow">Row index of starting position of range to move</param>
<param name="fromColumn">Column index of starting position of range to move</param>
<param name="toRow">Row index of starting position of destination</param>
<param name="toColumn">Column index of starting position of destination</param>
<param name="rowCount">Number of rows in range</param>
<param name="columnCount">Number of columns in range</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.GetFormula(System.Int32,System.Int32)">
<summary>
Gets the formula, as a string value, for the cell of the specified row and column.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.SetFormula(System.Int32,System.Int32,System.String)">
<summary>
Sets the formula, as a string value, for the cell of the specified row and column.
If you pass null, it will clear the expression from that cell.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<param name="value">Formula to be set, as a string</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.LoadFormulas">
<summary>
Loads formulas that are deserialized but not parsed yet,
to be used after all sheets have been created and deserialized or sharing calculation controller
</summary>
<remarks>This method will enable formula parsing if it is not already enabled.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.GetExpression(System.Int32,System.Int32)">
<summary>
Gets the formula, as an expression value, for the cell of the specified row and column.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.SetExpression(System.Int32,System.Int32,FarPoint.CalcEngine.Expression)">
<summary>
Sets the formula, as an expression value, for the cell of the specified row and column.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<param name="value">Formula to be set as an expression</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.SuspendFormulaParsing">
<summary>
Suspends parsing of formulas.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.ResumeFormulaParsing">
<summary>
Resumes parsing of formulas and parses all formulas set while parsing was suspended.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the settings to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregationDataModel.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the settings from XML.
</summary>
<param name="r">XmlNodeReader from which to read the settings</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="P:FarPoint.Win.Spread.Model.AggregationDataModel.TargetModel">
<summary>
Gets the sheet data model for the aggregation target.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.AggregationDataModel.RowCount">
<summary>
Gets and set the number of rows in the group.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.AggregationDataModel.NonEmptyColumnCount">
<summary>
Gets the number of columns in the model containing data (bound or unbound).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.AggregationDataModel.NonEmptyRowCount">
<summary>
Gets the number of rows in the model containing data (bound or unbound).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.AggregationDataModel.ColumnCount">
<summary>
Gets the number of columns in the group.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.AggregationDataModel.ReferenceStyle">
<summary>
Gets or sets the cell reference style
for cells with formulas.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.AggregationDataModel.CanSerializeXml">
<summary>
Gets a value indicates whether the specified <see cref="T:FarPoint.Win.Spread.Model.AggregationDataModel"/> object can serialize to xml.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Chart.ArraySegmentData">
<summary>
Represents a segment which contains an array of double value.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Chart.ISegmentData">
<summary>
Represents a segment data which is used as chart's data source.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ISegmentData.GetValue(System.Int32)">
<summary>
Gets the value.
</summary>
<param name="index">The index.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ISegmentData.ContainStringValue">
<summary>
Indicates that whether the segment contains a string value.
</summary>
<returns></returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ISegmentData.Count">
<summary>
Gets the count.
</summary>
<value>The count.</value>
</member>
<member name="E:FarPoint.Win.Spread.Chart.ISegmentData.DataChanged">
<summary>
Occurs when data is changed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Chart.ISupportDynamicDataSegment">
<summary>
Support receiving differnt type of data from one segment.
In FpChart model, series' data must be double, category's data must be string.
So, some special segment (such as CellRangeSegmentData) must be able to provide different data base on specified data type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ArraySegmentData.#ctor(System.Collections.IList)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.ArraySegmentData"/> class.
</summary>
<param name="array">The array.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ArraySegmentData.#ctor(FarPoint.CalcEngine.CalcArray)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.ArraySegmentData"/> class.
</summary>
<param name="calcArray">The calc array.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ArraySegmentData.GetValue(System.Int32)">
<summary>
Gets the value.
</summary>
<param name="index">The index.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ArraySegmentData.ContainStringValue">
<summary>
Indicates that whether the segment contains a string value.
</summary>
<returns></returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ArraySegmentData.Count">
<summary>
Gets the count.
</summary>
<value>The count.</value>
</member>
<member name="E:FarPoint.Win.Spread.Chart.ArraySegmentData.DataChanged">
<summary>
Occurs when data is changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ArraySegmentData.DataType">
<summary>
Gets or sets the type of the data.
</summary>
<value>The type of the data.</value>
</member>
<member name="T:FarPoint.Win.Spread.CellInfoRange">
<summary>
Represents a two-dimensional collection of cell information objects.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellInfoRange.#ctor(System.Int32,System.Int32)">
<summary>
Creates a new collection of cell information objects for the cell at the specified row and column.
</summary>
<param name="row"></param>
<param name="column"></param>
</member>
<member name="M:FarPoint.Win.Spread.CellInfoRange.FromCellRange(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.Model.CellRange,FarPoint.Win.Spread.RowClipInfoRange@,FarPoint.Win.Spread.ColumnClipInfoRange@)">
<summary>
Creates a cell information for the specified range in the specified sheet.
</summary>
<param name="sheetView">Sheet from which to build the cell information</param>
<param name="cellRange">Range from which to build the cell information, or null to use the current selection (if there is a selection) or active cell instead</param>
<param name="rowClipInfo">Row Clipboard information</param>
<param name="columnClipInfo">Column Clipboard information</param>
<returns></returns>
</member>
<member name="P:FarPoint.Win.Spread.CellInfoRange.DefaultStyle">
<summary>
Gets or sets the StyleInfo for the default style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfoRange.ColumnFooterSheetCornerStyleInfo">
<summary>
Gets or sets styleInfo for for footer corner
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfoRange.Item(System.Int32,System.Int32)">
<summary>
Gets or sets a cell information object for the cell at the specified row and column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfoRange.ReferenceStyle">
<summary>
Gets or sets the reference style for the formulas in the cell information object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfoRange.RowCount">
<summary>
Gets the number of rows in the two-dimensional collection of cell information objects.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfoRange.ColumnCount">
<summary>
Gets the number of columns in the two-dimensional collection of cell information objects.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfoRange.SheetCorner">
<summary>
Gets or sets the sheet corner for the the cell information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfoRange.ColumnHeader">
<summary>
Gets or sets the column header for the the cell information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfoRange.ColumnFooter">
<summary>
Gets or sets the column footer for the the cell information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfoRange.RowHeader">
<summary>
Gets or sets the row header for the the cell information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfoRange.RowSettings">
<summary>
Gets or sets the row settings for the the cell information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfoRange.AltRowStyles">
<summary>
Gets or sets the alternating row styles.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfoRange.ColumnSettings">
<summary>
Gets or sets the column settings for the the cell information.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellInfo">
<summary>
Represents the value and formatting for a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellInfo.#ctor(System.Object,FarPoint.Win.Spread.StyleInfo,System.String,System.String,System.Object,System.Int32,System.Int32,System.String,System.IFormatProvider,FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,FarPoint.Win.Spread.ConditionalFormat[])">
<summary>
Creates a new a set of cell information (CellInfo object).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellInfo.#ctor(System.Object,FarPoint.Win.Spread.StyleInfo,System.String,System.String,System.Object,System.Int32,System.Int32,System.String,System.IFormatProvider,FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,FarPoint.Win.Spread.ConditionalFormat[],FarPoint.Win.Spread.Model.AggregationType,System.String)">
<summary>
Creates a new a set of cell information (CellInfo object).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellInfo.#ctor(System.Object,FarPoint.Win.Spread.StyleInfo,System.String,System.String,System.Object,System.Int32,System.Int32,System.String,System.IFormatProvider,FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,FarPoint.Win.Spread.ConditionalFormat[],FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo)">
<summary>
Creates a new a set of cell information (CellInfo object).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellInfo.#ctor(System.Object,FarPoint.Win.Spread.StyleInfo,System.String,System.String,System.Object,System.Int32,System.Int32,System.String,System.IFormatProvider,FarPoint.Win.Spread.SheetView,System.Int32,System.Int32)">
<summary>
Creates a new a set of cell information (CellInfo object).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellInfo.#ctor(System.Object,FarPoint.Win.Spread.StyleInfo,System.String,System.String,System.Object,System.Int32,System.Int32,System.String,System.IFormatProvider,FarPoint.Win.Spread.SheetView)">
<summary>
Creates a new a set of cell information (CellInfo object).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellInfo.#ctor(System.Object)">
<summary>
Creates a new a set of cell information (CellInfo object) with a value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellInfo.#ctor(System.Object,FarPoint.Win.Spread.StyleInfo)">
<summary>
Creates a new a set of cell information (CellInfo object) with a value and style information.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellInfo.#ctor(System.Object,FarPoint.Win.Spread.StyleInfo,System.String)">
<summary>
Creates a new a set of cell information (CellInfo object) with a value, style information,
and a formula.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellInfo.#ctor(System.Object,FarPoint.Win.Spread.StyleInfo,System.String,System.String)">
<summary>
Creates a new a set of cell information (CellInfo object) with a value, style information,
a formula, and a note.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellInfo.#ctor(System.Object,FarPoint.Win.Spread.StyleInfo,System.String,System.String,System.Object)">
<summary>
Creates a new a set of cell information (CellInfo object) with a value, style information,
a formula, a note and a tag.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellInfo.#ctor(System.Object,FarPoint.Win.Spread.StyleInfo,System.String,System.String,System.Object,System.Int32,System.Int32)">
<summary>
Creates a new a set of cell information (CellInfo object) with a value, style information,
a formula, a note, a tag, a row index and a column index.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellInfo.GetLinkString">
<summary>
Gets the reference as a string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfo.SheetName">
<summary>
Gets or sets the name of the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfo.FormatString">
<summary>
Gets or sets the format string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfo.AggregationType">
<summary>
Gets or sets aggregation type
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfo.AggregationFormatString">
<summary>
Gets or sets aggregation format string
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfo.FormatInfo">
<summary>
Gets or sets the format information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfo.Note">
<summary>
Gets or sets the note.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfo.NoteStyle">
<summary>
Gets or sets the style of the note.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfo.NoteStyleInfo">
<summary>
Gets or sets the note style info for the note shape.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfo.Tag">
<summary>
Gets or sets the tag.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfo.ConditionalFormats">
<summary>
Gets or sets the conditional formats.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfo.Style">
<summary>
Gets or sets the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfo.Formula">
<summary>
Gets or sets the formula.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfo.FormattedValue">
<summary>
Gets or sets the value formatted.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfo.Value">
<summary>
Gets or sets the value unformatted.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfo.LinkRow">
<summary>
Gets or sets the row of the reference.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfo.LinkColumn">
<summary>
Gets or sets the column of the reference.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfo.RowSpan">
<summary>
Gets or sets the number of rows spanned.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellInfo.ColumnSpan">
<summary>
Gets or sets the number of columns spanned.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Cells">
<summary>
Represents a two-dimensional collection of Cell objects.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cells.#ctor(FarPoint.Win.Spread.SheetView,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Creates a collection of cells (a Cells object).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cells.GetDataModel">
<summary>
Gets the data model for a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cells.Get(System.Int32,System.Int32)">
<summary>
Gets a new Cell object for the specified row and column.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified row index is not valid; must be between zero and the total number of rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified column index is not valid; must be between zero and the total number of columns
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified row index is not valid; must be between zero and the total number of column header rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified column index is not valid; must be between zero and the total number of row header columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Cells.Get(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets a new Cell object for the range of cells of the specified rows and columns.
</summary>
<exception cref="T:System.IndexOutOfRangeException">
Specified row or column index is less than 0 or greater than or equal to the row count or column count.
</exception>
<param name="row">Starting row index of range of cells</param>
<param name="column">Starting column index of range of cells</param>
<param name="row2">Ending row index of range of cells</param>
<param name="column2">Ending column index of range of cells</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified starting row index is not valid; must be between zero and the total number of rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified starting column index is not valid; must be between zero and the total number of columns
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified starting row index is not valid; must be between zero and the total number of column header rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified starting column index is not valid; must be between zero and the total number of row header columns
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified ending row index is not valid; must be between zero and the total number of rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified ending column index is not valid; must be between zero and the total number of columns
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified ending row index is not valid; must be between zero and the total number of column header rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified ending column index is not valid; must be between zero and the total number of row header columns
</exception>
</member>
<member name="P:FarPoint.Win.Spread.Cells.Parent">
<summary>
Gets the parent object containing this collection of cells.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cells.Item(System.String)">
<summary>
Gets a new cell with a specified tag, or returns null if there is no cell with the specified tag.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cells.Item(System.Int32,System.Int32)">
<summary>
Gets a new cell for the specified row and column.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified row index is not valid; must be between zero and the total number of rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified column index is not valid; must be between zero and the total number of columns
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified column header row index is not valid; must be between zero and the total number of column header rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified row header column index is not valid; must be between zero and the total number of row header columns
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified sheet corner row index is not valid; must be between zero and the total number of sheet corner rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified sheet corner column index is not valid; must be between zero and the total number of sheet corner columns
</exception>
</member>
<member name="P:FarPoint.Win.Spread.Cells.Item(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets a new cell for the range of cells of the specified rows and columns.
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="row2">Ending row index</param>
<param name="column2">Ending column index</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified starting row index is not valid; must be between zero and the total number of rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified starting column index is not valid; must be between zero and the total number of columns
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified starting column header row index is not valid; must be between zero and the total number of column header rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified starting row header column index is not valid; must be between zero and the total number of row header columns
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified starting sheet corner row index is not valid; must be between zero and the total number of sheet corner rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified starting sheet corner column index is not valid; must be between zero and the total number of sheet corner columns
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified ending row index is not valid; must be between zero and the total number of rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified ending column index is not valid; must be between zero and the total number of columns
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified ending column header row index is not valid; must be between zero and the total number of column header rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified ending row header column index is not valid; must be between zero and the total number of row header columns
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified ending sheet corner row index is not valid; must be between zero and the total number of sheet corner rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified ending sheet corner column index is not valid; must be between zero and the total number of sheet corner columns
</exception>
</member>
<member name="T:FarPoint.Win.Spread.CellFooter">
<summary>
Represents a footer cell.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Cell">
<summary>
Represents a cell in the FarPoint Spread component.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Cell.viewrow">
<summary>
Gets or sets row start index
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Cell.viewcolumn">
<summary>
Gets or sets column start index
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Cell.row">
<summary>
Gets or sets model row index
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Cell.column">
<summary>
Gets or sets model column index
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Creates a new cell for the specified sheet and location.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Creates a new cell for the specified sheet and range location.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.Invalidate">
<summary>
Invalidates the displayed cells and sends the message to repaint them.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.GetDataModel">
<summary>
Gets the data model for a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.GetStyleModel">
<summary>
Gets the style model for a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.GetSpanModel">
<summary>
Gets the span model for a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.IsValid(System.Int32,System.Int32)">
<summary>
Checks whether the specified view row and column indexes
are valid coordinates in the sheet's data model, and if so
sets the row and column fields to the model row and column indexes.
</summary>
<param name="viewrow">Row index (in the view)</param>
<param name="viewcolumn">Column index (in the view)</param>
<returns>
True if view row and view column are defined in the data model
for the sheet; false otherwise
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Cell.GetStyleInfo">
<summary>
Fills the style information with the current style properties for a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.SetStyleInfo">
<summary>
Sets the style information into the style model for a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetTabStop">
<summary>
Resets to its default value whether the user can set focus to the cell using the Tab key.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.UpdateNoteAppearance">
<summary>
Updates the note appearance based on style being set or note containing text.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.Equals(System.Object)">
<summary>
Determines whether the specified object is equivalent to this cell.
</summary>
<param name="o">Object to compare</param>
</member>
<member name="M:FarPoint.Win.Spread.Cell.GetHashCode">
<summary>
Gets the hash code of an object.
</summary>
<returns>Hash code of the object</returns>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ToString">
<summary>
Gets a string containing an absolute reference to this
cell in the current reference style.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ToString(FarPoint.Win.Spread.Model.ReferenceStyle)">
<summary>
Gets a string containing an absolute reference to this
cell in the specified reference style.
</summary>
<param name="referenceStyle">Style of cell reference</param>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ToString(FarPoint.Win.Spread.Cell)">
<summary>
Gets a string containing a relative reference to this
cell in the current reference style.
</summary>
<param name="relativeTo">Cell to use for computing the relative reference</param>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ToString(FarPoint.Win.Spread.Cell,FarPoint.Win.Spread.Model.ReferenceStyle)">
<summary>
Gets a string containing a relative reference to this
cell in the specified reference style.
</summary>
<param name="relativeTo">Cell to use for computing the relative reference</param>
<param name="referenceStyle">Style of cell reference</param>
<exception cref="T:System.ArgumentNullException">
No cell specified or specified cell (for relative reference) is not valid
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetNoteIndicatorColor">
<summary>
Resets the color of the cell note indicator to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetNoteIndicatorSize">
<summary>
Resets the size of the note indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetTextIndent">
<summary>
Resets the size of the note indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetNoteIndicatorPosition">
<summary>
Resets the position of the note indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetCanFocus">
<summary>
Resets to its default value whether the cell can receive focus.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetNoteStyle">
<summary>
Resets the note style for the cell and makes the cell inherit
the note style from the default cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetParentStyleName">
<summary>
Resets the ParentStyleName for the cell to an empty string.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetVisualStyles">
<summary>
Resets the setting of visual styles (XP themes) for the cell to the default setting.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetCellPadding">
<summary>
Resets the cell padding.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetBackColor">
<summary>
Resets the background color for the cell and makes the cell inherit the background color
from the default cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetForeColor">
<summary>
Resets the text (foreground) color for the cell and makes the cell inherit the text color
from the default cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetBorder">
<summary>
Resets the cell border for the cell and makes the cell inherit the cell border
from the default cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetCellType">
<summary>
Resets the cell type for the cell and makes the cell inherit
the cell type from the default cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetLocked">
<summary>
Resets the locked state for the cell and makes the cell inherit
the locked state from the default cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetFormula">
<summary>
Resets the formula for the cell to empty.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetTag">
<summary>
Resets the tag for the cell to empty.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetNote">
<summary>
Resets the note for the cell to empty.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetText">
<summary>
Resets the text for the cell to empty.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetValue">
<summary>
Resets the value for the cell to empty.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetFont">
<summary>
Resets the font for the cell and makes the cell inherit the font from the default cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetHorizontalAlignment">
<summary>
Resets the horizontal alignment for the cell and makes the cell inherit
the horizontal alignment from the default cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Cell.ResetVerticalAlignment">
<summary>
Resets the vertical alignment for the cell and makes the cell inherit
the vertical alignment from the default cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.SheetView">
<summary>
Internal use only. Used by Formula Editor.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.Column">
<summary>
Gets the column that contains this cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.Row">
<summary>
Gets the row that contains this cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.Parent">
<summary>
Gets the parent for this cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.Value">
<summary>
Gets or sets the value in a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.Text">
<summary>
Gets or sets the formatted text in a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.Formula">
<summary>
Gets or sets the formula in a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.Tag">
<summary>
Gets or sets an application-defined tag value for a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.Note">
<summary>
Gets or sets the note for a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.ColumnSpan">
<summary>
Gets or sets the number of columns spanned by this cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.RowSpan">
<summary>
Gets or sets the number of rows spanned by a cell.
</summary>
<remarks>
If this cell represents a range of cells, then this property returns and sets the
upper-left cell in the range.
</remarks>
</member>
<member name="P:FarPoint.Win.Spread.Cell.StyleName">
<summary>
Gets or sets the name of the custom style for a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.ParentStyleName">
<summary>
Gets or sets the name of the parent style for a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.NoteIndicatorColor">
<summary>
Gets or sets the color for the note indicator for a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.NoteIndicatorSize">
<summary>
Gets or sets the size for the note indicator for a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.NoteIndicatorPosition">
<summary>
Gets or sets the cell note indicator position for the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.CanFocus">
<summary>
Gets or sets whether the user can set focus to the cell using the keyboard or mouse.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.TabStop">
<summary>
Gets or sets whether the user can set focus to the cell using the Tab key.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.VisualStyles">
<summary>
Gets or sets the setting of visual styles (XP themes) for the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.BackColor">
<summary>
Gets or sets the background color for a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.TextIndent">
<summary>
Gets or sets the amount to indent the text in a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.CellPadding">
<summary>
Gets or sets the amount of spaces to pad the cell(s) in pixels.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.ForeColor">
<summary>
Gets or sets the text (foreground) color for a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.Border">
<summary>
Gets or sets the border for a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.Font">
<summary>
Gets or sets the font for text in a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.HorizontalAlignment">
<summary>
Gets or sets the horizontal alignment of contents for a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.VerticalAlignment">
<summary>
Gets or sets the vertical alignment of contents for a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.NoteStyle">
<summary>
Gets or sets the note style for a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.Editor">
<summary>
Gets or sets the editor for a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.Renderer">
<summary>
Gets or sets the renderer for a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.Formatter">
<summary>
Gets or sets the formatter for a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.Locked">
<summary>
Gets or sets whether a cell is marked as locked from editing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.CellType">
<summary>
Gets or sets the type of cell for a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.ParseFormatString">
<summary>
Gets or sets the parsed formatting string for the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Cell.ParseFormatInfo">
<summary>
Gets or sets the parsed formatting for the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellFooter.Formula">
<summary>
Gets or sets the formula in a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellFooter.AggregationType">
<summary>
Gets or sets the aggregation type at this cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellFooter.AggregationFormatString">
<summary>
Gets or sets the aggregation format string at this cell.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.CellCalc">
<summary>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.CellCalc.CellListeners">
<summary>
Gets the cell listeners.
</summary>
<value>The cell listeners.</value>
</member>
<member name="T:FarPoint.Win.Spread.Chart.CellRangeSegmentData">
<summary>
Represent a segmetn which get data from a cell range in SheetView.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SheetCellRange">
<summary>
Represent a cell range in a specified SheetView.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.CellRange">
<summary>
Represents a selected range of cells for a sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a range of cells.
</summary>
<param name="row">Row index of first cell in the range</param>
<param name="column">Column index of first cell in the range</param>
<param name="rowCount">Number of rows in the range</param>
<param name="columnCount">Number of columns in the range</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new range of cells from serialization.
</summary>
<param name="info">SerializationInfo</param>
<param name="c">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates the SerializationInfo class with information about
the settings of the range of cells.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contextual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.Contains(System.Int32,System.Int32)">
<summary>
Determines whether the range of cells contains the cell at the specified row and column.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.Contains(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Determines whether the range of cells contains another specified range of cells.
</summary>
<param name="row">Row index of the first cell in the range</param>
<param name="column">Column index of the first cell in the range</param>
<param name="rowCount">Number of rows in the range</param>
<param name="columnCount">Number of columns in the range</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.Contains(FarPoint.Win.Spread.Model.CellRange)">
<summary>
Determines whether the range of cells contains another specified range of cells.
</summary>
<param name="range">CellRange object that contains the other range of cells</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.IntersectRow(System.Int32)">
<summary>
Determines whether the range of cells intersects the specified row.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.IntersectColumn(System.Int32)">
<summary>
Determines whether the range of cells intersects the specified column.
</summary>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.Inflate(System.Int32,System.Int32)">
<summary>
Inflates the specified cell range.
</summary>
<param name="row">The row.</param>
<param name="column">The column.</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.Intersects(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Determines whether the range of cells intersects the specified range.
</summary>
<param name="row">Row index at beginning of range</param>
<param name="column">Column index at beginning of range</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.IntersectWith(FarPoint.Win.Spread.Model.CellRange)">
<summary>
Intersects with the new cell range.
</summary>
<param name="newCellRange">The new cell range.</param>
<returns>CellRange after intersect</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.op_Equality(FarPoint.Win.Spread.Model.CellRange,FarPoint.Win.Spread.Model.CellRange)">
<summary>
Determines whether two specified instances of <see cref="T:FarPoint.Win.Spread.Model.CellRange"/> are equal.
</summary>
<param name="obj1">The first cell range object</param>
<param name="obj2">The second cell range object</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.op_Inequality(FarPoint.Win.Spread.Model.CellRange,FarPoint.Win.Spread.Model.CellRange)">
<summary>
Determines whether two specified instances of <see cref="T:FarPoint.Win.Spread.Model.CellRange"/> are not equal.
</summary>
<param name="obj1">The first cell range object</param>
<param name="obj2">The second cell range object</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.Equals(System.Object)">
<summary>
Determines whether the range of cells is the same as another specified range of cells.
</summary>
<param name="item">Object containing range of cells to compare</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.Equals(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Determines whether the range of cells is the same as another specified range of cells.
</summary>
<param name="row">Row index of first cell in the range</param>
<param name="column">Column index of first cell in the range</param>
<param name="rowCount">Number of rows in the range</param>
<param name="columnCount">Number of columns in the range</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.GetHashCode">
<summary>
Gets the hash code of this object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.ToString">
<summary>
Returns the string representation of the cell range.
</summary>
<returns>String that represents cell range</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.Parse(System.String)">
<summary>
Converts a string to a cell range.
</summary>
<param name="s">String to be parsed</param>
<exception cref="T:System.ArgumentNullException">s is a null reference (Nothing in Visual Basic).</exception>
<exception cref="T:System.FormatException">s does not represent a cell range.</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.TryParse(System.String,FarPoint.Win.Spread.Model.CellRange@)">
<summary>
Converts a string to a cell range.
</summary>
<param name="s">String to be parsed</param>
<param name="result">Cell range represented by the string. If the return value is false then result is set to null.</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.TryParseCell(System.String,FarPoint.Win.Spread.Model.CellRange@)">
<summary>
Converts a string to a cell range that consists of a single cell.
</summary>
<param name="s">String to be parsed</param>
<param name="result">Cell represented by the string</param>
<returns>True if the string is converted successfully; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.IsValidRange(FarPoint.Win.Spread.SheetView)">
<summary>
Determines whether this cell range is valid in the specified sheet.
</summary>
<param name="sheetView">SheetView object with the sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRange.IsValidRange(FarPoint.Win.Spread.SheetView,System.Boolean)">
<summary>
Determines whether this cell range is valid in the specified sheet and
whether to treat as a span.
</summary>
<param name="sheetView">SheetView object with the sheet</param>
<param name="isSpan">Whether to treat the cell range as span (or else selection)</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.CellRange.Row">
<summary>
Gets the row index of the first cell in the range.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.CellRange.Column">
<summary>
Gets the column index of the first cell in the range.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.CellRange.RowCount">
<summary>
Gets the number of rows in the range.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.CellRange.ColumnCount">
<summary>
Gets the number of columns in the range.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRange.Combine(FarPoint.Win.Spread.Chart.SheetCellRange)">
<summary>
Combines the specified cell range.
</summary>
<param name="cellRange">The cell range.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRange.op_Equality(FarPoint.Win.Spread.Chart.SheetCellRange,FarPoint.Win.Spread.Chart.SheetCellRange)">
<summary>
Implements the operator ==.
</summary>
<param name="obj1">The obj1.</param>
<param name="obj2">The obj2.</param>
<returns>The result of the operator.</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRange.op_Inequality(FarPoint.Win.Spread.Chart.SheetCellRange,FarPoint.Win.Spread.Chart.SheetCellRange)">
<summary>
Implements the operator !=.
</summary>
<param name="obj1">The obj1.</param>
<param name="obj2">The obj2.</param>
<returns>The result of the operator.</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRange.Equals(System.Object)">
<summary>
Determines whether the range of cells is the same as another specified range of cells.
</summary>
<param name="item">Object containing range of cells to compare</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRange.GetHashCode">
<summary>
Gets the hash code of this object.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRange.ToString">
<summary>
Returns the string representation of the cell range.
</summary>
<returns>String that represents cell range</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRange.Clone">
<summary>
Clones this instance.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRange.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SheetCellRange"/> class.
</summary>
<remarks>This constructor need by XML deserialization. You should not call it directly from code.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRange.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SheetCellRange"/> class.
</summary>
<param name="sheetView">The sheet view.</param>
<param name="row">The row.</param>
<param name="column">The column.</param>
<param name="rowCount">The row count.</param>
<param name="columnCount">The column count.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRange.#ctor(System.String,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SheetCellRange"/> class.
</summary>
<param name="sheetName">Name of the sheet.</param>
<param name="row">The row.</param>
<param name="column">The column.</param>
<param name="rowCount">The row count.</param>
<param name="columnCount">The column count.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRange.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SheetCellRange"/> class.
</summary>
<param name="info">The info.</param>
<param name="context">The context.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRange.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates the SerializationInfo class with information about
the settings of the range of cells.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contextual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRange.Adjust(FarPoint.Win.Spread.Model.CellRange)">
<summary>
Adjusts the specified cell range.
</summary>
<param name="cellRange">The cell range.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRange.GetRealSheetCellRange">
<summary>
Gets the real sheet cell range which doesn't contain Column/Row/ColumnCount/RowCount are equals to -1.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRange.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRange.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SheetCellRange.SheetName">
<summary>
Gets or sets the name of the sheet.
</summary>
<value>The name of the sheet.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SheetCellRange.SheetView">
<summary>
Gets or sets the sheet view.
</summary>
<value>The sheet view.</value>
</member>
<member name="T:FarPoint.Win.Spread.Chart.ISupportChartDataSetting">
<summary>
Represent a class which support Chart data setting concept.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ISupportChartDataSetting.DataSetting">
<summary>
Gets or sets the data setting.
</summary>
<value>The data setting.</value>
</member>
<member name="M:FarPoint.Win.Spread.Chart.CellRangeSegmentData.#ctor(System.String,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.Chart.ChartDataSetting)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.CellRangeSegmentData"/> class.
</summary>
<param name="sheetName">Name of the sheet.</param>
<param name="row">The row.</param>
<param name="column">The column.</param>
<param name="rowCount">The row count.</param>
<param name="columnCount">The column count.</param>
<param name="dataSetting">The data setting.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.CellRangeSegmentData.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.Chart.ChartDataSetting)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.CellRangeSegmentData"/> class.
</summary>
<param name="sheetView">The sheet view.</param>
<param name="row">The row.</param>
<param name="column">The column.</param>
<param name="rowCount">The row count.</param>
<param name="columnCount">The column count.</param>
<param name="dataSetting">The data setting.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.CellRangeSegmentData.Finalize">
<summary>
Releases unmanaged resources and performs other cleanup operations before the
<see cref="T:FarPoint.Win.Spread.Chart.CellRangeSegmentData"/> is reclaimed by garbage collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.CellRangeSegmentData.DetachEvents">
<summary>
Detaches the events.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.CellRangeSegmentData.SheetView_RemovedFromSpread(System.Object,System.EventArgs)">
<summary>
Handles the RemovedFromSpread event of the SheetView control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.CellRangeSegmentData.RowAxisModel_Changing(System.Object,FarPoint.Win.Spread.Model.SheetAxisModelChangingEventArgs)">
<summary>
Handles the Changing event of the RowAxisModel control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:FarPoint.Win.Spread.Model.SheetAxisModelChangingEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.CellRangeSegmentData.ColumnAxisModel_Changing(System.Object,FarPoint.Win.Spread.Model.SheetAxisModelChangingEventArgs)">
<summary>
Handles the Changing event of the ColumnAxisModel control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:FarPoint.Win.Spread.Model.SheetAxisModelChangingEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.CellRangeSegmentData.ColumnAxisModel_Changed(System.Object,FarPoint.Win.Spread.Model.SheetAxisModelEventArgs)">
<summary>
Handles the Changed event of the ColumnAxisModel control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:FarPoint.Win.Spread.Model.SheetAxisModelEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.CellRangeSegmentData.DataModel_Changed(System.Object,FarPoint.Win.Spread.Model.SheetDataModelEventArgs)">
<summary>
Handles the Changed event of the DataModel control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:FarPoint.Win.Spread.Model.SheetDataModelEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.CellRangeSegmentData.GetValues">
<summary>
Gets the values.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.CellRangeSegmentData.RefreshData">
<summary>
Refreshes the data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.CellRangeSegmentData.GetValue(System.Int32)">
<summary>
Gets the value.
</summary>
<param name="index">The index.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.CellRangeSegmentData.ContainStringValue">
<summary>
Indicates that whether the segment contains a string value.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.CellRangeSegmentData.OnDataChanged(FarPoint.Win.Spread.Chart.SegmentDataChangedEventArgs)">
<summary>
Fires DataChanged event.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.CellRangeSegmentData.dataSetting_PropertyChanged(System.Object,System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Handles the PropertyChanged event of the dataSetting control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.ComponentModel.PropertyChangedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.CellRangeSegmentData.Dispose(System.Boolean)">
<summary>
Releases unmanaged and - optionally - managed resources
</summary>
<param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.CellRangeSegmentData.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Chart.CellRangeSegmentData.DataType">
<summary>
Gets or sets the type of the data.
</summary>
<value>The type of the data.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.CellRangeSegmentData.ReferenceError">
<summary>
Gets a value indicating whether the current cell range is an invalid reference.
</summary>
<value><c>true</c> if the current cell range is an invalid reference; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.CellRangeSegmentData.Vertical">
<summary>
Gets a value indicating whether this <see cref="T:FarPoint.Win.Spread.Chart.CellRangeSegmentData"/> is vertical.
</summary>
<value><c>true</c> if vertical; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.CellRangeSegmentData.Count">
<summary>
Gets the number of items in this instance.
</summary>
<value>The count.</value>
</member>
<member name="E:FarPoint.Win.Spread.Chart.CellRangeSegmentData.DataChanged">
<summary>
Occurs when data of one cell in cell range is changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Chart.CellRangeSegmentData.SheetName">
<summary>
Gets or sets the name of the sheet.
</summary>
<value>The name of the sheet.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.CellRangeSegmentData.SheetView">
<summary>
Gets or sets the sheet view.
</summary>
<value>The sheet view.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.CellRangeSegmentData.FarPoint#Win#Spread#Chart#ISupportChartDataSetting#DataSetting">
<summary>
Gets or sets the data setting.
</summary>
<value>The data setting.</value>
</member>
<member name="T:FarPoint.Win.Spread.CellType.CellTypeConverter">
<summary>
Provides a drop-down list of cell types for a property of type ICellType in the property grid.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CellTypeConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])">
<summary>
Retrieves the set of properties for this type.
</summary>
<param name="context">Type descriptor context</param>
<param name="value">Object</param>
<param name="attributes">Array of properties (attributes)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CellTypeConverter.GetPluginCellTypeByName(System.String,System.ComponentModel.ITypeDescriptorContext)">
<summary>
Returns the plug-in cell type by its name for the specified context.
</summary>
<param name="name">Name</param>
<param name="context">Type descriptor context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CellTypeConverter.GetAssemblyNames">
<summary>
Returns assembly plug-in names.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CellTypeConverter.GetPluginSettingControls(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Returns all plug-in setting controls for the specified context.
</summary>
<param name="context">Type descriptor context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CellTypeConverter.GetPluginCellTypes(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Returns the list of plug-in cell types for the specified context.
</summary>
<param name="context">Type descriptor context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CellTypeConverter.GetPluginSettingControlByCellType(System.Object,System.ComponentModel.ITypeDescriptorContext)">
<summary>
Returns plug-in setting control by cell type.
</summary>
<param name="celltype">Cell type</param>
<param name="context">Type descriptor context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CellTypeConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Retrieves the set of standard values for this type for the specified context.
</summary>
<param name="context">Type descriptor context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CellTypeConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Determines whether this object supports properties.
</summary>
<param name="context">Type descriptor context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CellTypeConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Determines whether this object supports standard values.
</summary>
<param name="context">Type descriptor context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CellTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns whether the specified type can be converted to a cell type object.
</summary>
<param name="context">Type descriptor context</param>
<param name="sourceType">Type</param>
<returns>True if sourceType is String, false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CellTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Converts a string to a new cell type object.
</summary>
<param name="context">Type descriptor context</param>
<param name="culture">CultureInfo</param>
<param name="value">object</param>
<returns>A new border object.</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CellTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns a value indicating whether a cell type object can be converted to the specified type.
</summary>
<param name="context">Type descriptor context</param>
<param name="destinationType">Type</param>
<returns>True if a border object can be converted to the specified type, and false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CellTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the cell type object to a string.
</summary>
<param name="context">Type descriptor context</param>
<param name="culture">CultureInfo</param>
<param name="value">object</param>
<param name="destinationType">Type</param>
<returns>String representation of a border object.</returns>
</member>
<member name="T:FarPoint.Win.Spread.CellType.DesignTimeCellTypeConverter">
<summary>
Provides a drop-down list of cell types for a property of type ICellType in the property grid.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DesignTimeCellTypeConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)">
<summary>
Creates an object of this type by using a specified set of property values for the object.
</summary>
<param name="context">Type descriptor context</param>
<param name="propertyValues">Dictionary of property values</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DesignTimeCellTypeConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Determines whether changing a value on this object should
require a call to the CreateInstance method to create a new value.
</summary>
<param name="context">Type descriptor context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendarConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns whether this converter can convert the object to the specified type, using the specified context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="destinationType">A <see cref="T:System.Type"/> that represents the type you want to convert to.</param>
<returns>
true if this converter can perform the conversion; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendarConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the given value object to the specified type, using the specified context and culture information.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="culture">A <see cref="T:System.Globalization.CultureInfo"/>. If null is passed, the current culture is assumed.</param>
<param name="value">The <see cref="T:System.Object"/> to convert.</param>
<param name="destinationType">The <see cref="T:System.Type"/> to convert the <paramref name="value"/> parameter to.</param>
<returns>
An <see cref="T:System.Object"/> that represents the converted value.
</returns>
<exception cref="T:System.ArgumentNullException">
The <paramref name="destinationType"/> parameter is null.
</exception>
<exception cref="T:System.NotSupportedException">
The conversion cannot be performed.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadMonthCalendarConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns whether this converter can convert the object to the specified type, using the specified context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="destinationType">A <see cref="T:System.Type"/> that represents the type you want to convert to.</param>
<returns>
true if this converter can perform the conversion; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadMonthCalendarConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the given value object to the specified type, using the specified context and culture information.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="culture">A <see cref="T:System.Globalization.CultureInfo"/>. If null is passed, the current culture is assumed.</param>
<param name="value">The <see cref="T:System.Object"/> to convert.</param>
<param name="destinationType">The <see cref="T:System.Type"/> to convert the <paramref name="value"/> parameter to.</param>
<returns>
An <see cref="T:System.Object"/> that represents the converted value.
</returns>
<exception cref="T:System.ArgumentNullException">
The <paramref name="destinationType"/> parameter is null.
</exception>
<exception cref="T:System.NotSupportedException">
The conversion cannot be performed.
</exception>
</member>
<member name="T:FarPoint.Win.Spread.Chart.ChartDataSetting">
<summary>
Represents the data settings for SpreadChart
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartDataSetting.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.ChartDataSetting"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartDataSetting.#ctor(FarPoint.Win.Spread.Chart.EmptyValueStyle,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.ChartDataSetting"/> class.
</summary>
<param name="emptyValueStyle">The empty value style.</param>
<param name="showHiddenData">if set to <c>true</c> [show hidden data].</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartDataSetting.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Raises the <see cref="E:PropertyChanged"/> event.
</summary>
<param name="e">The <see cref="T:System.ComponentModel.PropertyChangedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartDataSetting.OnPropertyChanging(System.ComponentModel.PropertyChangingEventArgs)">
<summary>
Raises the <see cref="E:PropertyChanging"/> event.
</summary>
<param name="e">The <see cref="T:System.ComponentModel.PropertyChangingEventArgs"/> instance containing the event data.</param>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartDataSetting.EmptyValueStyle">
<summary>
Gets or sets the empty value style.
</summary>
<value>The empty value style.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartDataSetting.ShowHiddenData">
<summary>
Gets or sets a value indicating whether chart display all hidden data.
</summary>
<value><c>true</c> if [show hidden data]; otherwise, <c>false</c>.</value>
</member>
<member name="E:FarPoint.Win.Spread.Chart.ChartDataSetting.PropertyChanged">
<summary>
Occurs when a property value changes.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Chart.ChartDataSetting.PropertyChanging">
<summary>
Occurs when a property value is changing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartDataSettingTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns whether this converter can convert the object to the specified type, using the specified context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="destinationType">A <see cref="T:System.Type"/> that represents the type you want to convert to.</param>
<returns>
true if this converter can perform the conversion; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartDataSettingTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the given value object to the specified type, using the specified context and culture information.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="culture">A <see cref="T:System.Globalization.CultureInfo"/>. If null is passed, the current culture is assumed.</param>
<param name="value">The <see cref="T:System.Object"/> to convert.</param>
<param name="destinationType">The <see cref="T:System.Type"/> to convert the <paramref name="value"/> parameter to.</param>
<returns>
An <see cref="T:System.Object"/> that represents the converted value.
</returns>
<exception cref="T:System.ArgumentNullException">
The <paramref name="destinationType"/> parameter is null.
</exception>
<exception cref="T:System.NotSupportedException">
The conversion cannot be performed.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartDataSettingTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns whether this converter can convert an object of the given type to the type of this converter, using the specified context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="sourceType">A <see cref="T:System.Type"/> that represents the type you want to convert from.</param>
<returns>
true if this converter can perform the conversion; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartDataSettingTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Converts the given object to the type of this converter, using the specified context and culture information.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="culture">The <see cref="T:System.Globalization.CultureInfo"/> to use as the current culture.</param>
<param name="value">The <see cref="T:System.Object"/> to convert.</param>
<returns>
An <see cref="T:System.Object"/> that represents the converted value.
</returns>
<exception cref="T:System.NotSupportedException">
The conversion cannot be performed.
</exception>
</member>
<member name="T:FarPoint.Win.Spread.Chart.IndicatorChangeType">
<summary>
Represents which is the behavior and which part of indicator is changed.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.IndicatorChangeType.Move">
<summary>
Moving behavior
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.IndicatorChangeType.Resize">
<summary>
Resizing behavior
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.IndicatorChangeType.Category">
<summary>
Category is changed
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.IndicatorChangeType.SeriesName">
<summary>
SeriesName is changed
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.IndicatorChangeType.Data">
<summary>
Data is changed
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Chart.IndicatorChangedEventArgs">
<summary>
Represents event data for IndicatorChanged event.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.IndicatorChangedEventArgs.#ctor(FarPoint.Win.Spread.Chart.IIndicator,FarPoint.Win.Spread.Chart.IndicatorChangeType)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.IndicatorChangedEventArgs"/> class.
</summary>
<param name="indicator">The indicator.</param>
<param name="changeType">Type of the change.</param>
</member>
<member name="P:FarPoint.Win.Spread.Chart.IndicatorChangedEventArgs.Category">
<summary>
Gets the category.
</summary>
<value>The category.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.IndicatorChangedEventArgs.SeriesName">
<summary>
Gets the name of the series.
</summary>
<value>The name of the series.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.IndicatorChangedEventArgs.Data">
<summary>
Gets the data.
</summary>
<value>The data.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.IndicatorChangedEventArgs.ChangeType">
<summary>
Gets the type of the change.
</summary>
<value>The type of the change.</value>
</member>
<member name="T:FarPoint.Win.Spread.Chart.IndicatorChangedEventHandler">
<summary>
Represents event handler for IndicatorChanged event.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Chart.IIndicator">
<summary>
Represents a chart indicator which is displayed when a chart is activated.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.IIndicator.Intersects(FarPoint.Win.Spread.Chart.SheetCellRange)">
<summary>
Intersectses the specified cell range.
</summary>
<param name="cellRange">The cell range.</param>
<returns></returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.IIndicator.Category">
<summary>
Gets or sets the category.
</summary>
<value>The category.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.IIndicator.SeriesName">
<summary>
Gets or sets the name of the series.
</summary>
<value>The name of the series.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.IIndicator.Data">
<summary>
Gets the data.
</summary>
<value>The data.</value>
</member>
<member name="E:FarPoint.Win.Spread.Chart.IIndicator.IndicatorChanged">
<summary>
Occurs when indicator is changed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Chart.ChartIndicator">
<summary>
Represents indicator for SpreadChart
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartIndicator.#ctor(FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.ChartIndicator"/> class.
</summary>
<param name="chart">The chart.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartIndicator.FireIndicatorChanged(FarPoint.Win.Spread.Chart.IndicatorChangedEventArgs)">
<summary>
Fires the indicator changed.
</summary>
<param name="e">The <see cref="T:FarPoint.Win.Spread.Chart.IndicatorChangedEventArgs"/> instance containing the event data.</param>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SeriesIndicator">
<summary>
Represetns indicator for Series
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesIndicator.FireIndicatorChanged(FarPoint.Win.Spread.FpSpread,FarPoint.Win.Spread.Chart.IndicatorChangedEventArgs)">
<summary>
Fires the indicator changed.
</summary>
<param name="e">The <see cref="T:FarPoint.Win.Spread.Chart.IndicatorChangedEventArgs"/> instance containing the event data.</param>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesIndicator.ReferenceError">
<summary>
Gets a value indicating whether [reference error].
</summary>
<value><c>true</c> if [reference error]; otherwise, <c>false</c>.</value>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartIndicatorAdapter.CreateSeriesIndicatorsAndAdapters(FarPoint.Win.Spread.Chart.SpreadChart,System.Collections.Generic.List{FarPoint.Win.Spread.Chart.SeriesIndicatorAdapter}@,System.Collections.Generic.List{FarPoint.Win.Spread.Chart.IIndicator}@,System.Boolean)">
<summary>
Creates the series indicators and adapters.
</summary>
<param name="chart">The chart.</param>
<param name="list">The list.</param>
<param name="listIndicator">The list indicator.</param>
<param name="ignoreCheckingArray">if set to <c>true</c> ignore checking ArraySegmentData's count.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartIndicatorAdapter.IsEmbedded(FarPoint.Win.Spread.SheetView)">
<summary>
Determines whether the specified chart is embedded in the specified sheet view.
</summary>
<param name="sheetView">The sheet view.</param>
<returns>
<c>true</c> if the specified chart is embedded in the specified sheet view; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartIndicatorAdapter.CreateIndicator">
<summary>
Creates the indicator.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartIndicatorAdapter.CanCombine(System.Boolean)">
<summary>
Rescans the data indicators.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartIndicatorAdapter.CombineData">
<summary>
Combines the data.
</summary>
<returns></returns>
</member>
<member name="T:FarPoint.Win.Spread.ColumnClipInfoRange">
<summary>
Represents a one-dimensional collection of ColumnClipInfo objects.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ColumnClipInfoRange.#ctor(System.Int32)">
<summary>
Creates a ColumnClipInfo object for the specified number of columns.
</summary>
<param name="columnCount">Number of columns</param>
</member>
<member name="P:FarPoint.Win.Spread.ColumnClipInfoRange.Item(System.Int32)">
<summary>
Gets or sets a ColumnClipInfo object for the column specified.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnClipInfoRange.ColumnCount">
<summary>
Gets the number of columns in the one-dimensional collection.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ColumnClipInfo">
<summary>
Represents the information for a column (not including the value or style information).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ColumnClipInfo.#ctor">
<summary>
Creates a new a set of column information (ColumnClipInfo object).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnClipInfo.AutoSortIndex">
<summary>
Gets or sets the column header row index of the auto sort indicator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnClipInfo.AutoFilterIndex">
<summary>
Gets or sets the column header row index of the auto filter indicator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnClipInfo.Collapsed">
<summary>
Gets or sets whether the column is collapsed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnClipInfo.SortIndicator">
<summary>
Gets or sets the sort indicator of this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnClipInfo.Width">
<summary>
Gets or sets the width of cells in this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnClipInfo.Visible">
<summary>
Gets or sets whether the column is visible.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnClipInfo.ShowSortIndicator">
<summary>
Gets or sets whether the column shows a sort indicator when automatically sorted.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnClipInfo.Resizable">
<summary>
Gets or sets whether this column can be resized.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnClipInfo.PageBreak">
<summary>
Gets or sets whether a page break is inserted before this column when printing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnClipInfo.MergePolicy">
<summary>
Gets or sets the whether to automatically merge adjacent identical cells in this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnClipInfo.AllowAutoFilter">
<summary>
Gets or sets whether the column allows automatic filtering.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnClipInfo.AllowAutoSort">
<summary>
Gets or sets whether the column allows automatic sorting.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnClipInfo.SheetName">
<summary>
Gets or sets the name of the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnClipInfo.DataField">
<summary>
Gets or sets the name of the data field.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Columns">
<summary>
Represents a one-dimensional collection of Column objects.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Columns.#ctor(FarPoint.Win.Spread.SheetView,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Creates a new set of columns for the specified sheet and whether they are in the headers.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Columns.GetDataModel">
<summary>
Gets the data model for this column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Columns.GetAxisModel">
<summary>
Gets the axis model for this column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Columns.Add(System.Int32,System.Int32)">
<summary>
Adds a new column or range of columns.
</summary>
<param name="index">Column index at which to start</param>
<param name="count">Number of columns to add</param>
</member>
<member name="M:FarPoint.Win.Spread.Columns.Remove(System.Int32,System.Int32)">
<summary>
Removes a column or range of columns.
</summary>
<param name="index">Column index at which to start</param>
<param name="count">Number of columns to remove</param>
</member>
<member name="M:FarPoint.Win.Spread.Columns.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
<summary>
Copies the elements of the collection to the array.
</summary>
<param name="array">Array</param>
<param name="index">int</param>
</member>
<member name="M:FarPoint.Win.Spread.Columns.System#Collections#IList#Add(System.Object)">
<summary>
Not supported (throws InvalidOperationException).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Columns.AddRange(System.Collections.ICollection)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Columns.Clear">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Columns.System#Collections#IList#Contains(System.Object)">
<summary>
Determines whether the collection contains the specified object.
</summary>
<param name="value">
Object to check for in the collection.
</param>
<returns>
True if the object is found in the collection; false otherwise.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Columns.System#Collections#IList#IndexOf(System.Object)">
<summary>
Returns the index of the specified object.
</summary>
<param name="value">
Object for which to search.
</param>
<returns>
Index of the object in the collection, or -1 if the object was not found.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Columns.System#Collections#IList#Insert(System.Int32,System.Object)">
<summary>
Not supported (throws InvalidOperationException).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Columns.System#Collections#IList#Remove(System.Object)">
<summary>
Not supported (throws InvalidOperationException).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Columns.System#Collections#IList#RemoveAt(System.Int32)">
<summary>
Not supported (throws InvalidOperationException).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Columns.Get(System.Int32)">
<summary>
Gets the specified column.
</summary>
<exception cref="T:System.IndexOutOfRangeException">
Specified column index is out of range. It must be less than -1 or greater than or equal to the column count.
</exception>
<param name="column">Index of column</param>
</member>
<member name="M:FarPoint.Win.Spread.Columns.Get(System.Int32,System.Int32)">
<summary>
Gets the specified range of columns.
</summary>
<exception cref="T:System.IndexOutOfRangeException">
Specified column index is out of range. It must less than the column count or -1 for all.
</exception>
<param name="column">Starting column index</param>
<param name="column2">Ending column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Columns.AddRangeGroup(System.Int32,System.Int32)">
<summary>
Groups all the columns from the specified start index by the specified amount to an outline (range group).
</summary>
<param name="column">Starting column index</param>
<param name="count">Number of columns to group</param>
</member>
<member name="M:FarPoint.Win.Spread.Columns.RemoveRangeGroup(System.Int32,System.Int32)">
<summary>
Removes columns from the outline (range group) from the specified index and count,
and returns them to individual columns.
</summary>
<param name="column">Starting column index</param>
<param name="count">Number of rows to ungroup</param>
</member>
<member name="M:FarPoint.Win.Spread.Columns.ExpandRangeGroup(FarPoint.Win.Spread.RangeGroupInfo,System.Boolean)">
<summary>
Expands or collapses a specified outline (range group) of columns.
</summary>
<param name="group">Outline (range group) to expand or collapse</param>
<param name="expand">Whether the action is to expand the outline</param>
</member>
<member name="M:FarPoint.Win.Spread.Columns.GetRangeGroupInfo(System.Int32)">
<summary>
Gets the outlines (range groups) by level.
</summary>
<param name="level">Level of the associated outline (range group)</param>
<returns>The collection of groups with specified level.</returns>
</member>
<member name="P:FarPoint.Win.Spread.Columns.Item(System.String)">
<summary>
Gets the column for the specified tag.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.Item(System.Int32)">
<summary>
Gets a new column for the specified column.
</summary>
<param name="column">Index of column</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified column index is out of range. It must less than the column count or -1 for all.
</exception>
</member>
<member name="P:FarPoint.Win.Spread.Columns.Item(System.Int32,System.Int32)">
<summary>
Gets a new column for the specified range of columns.
</summary>
<param name="column">Starting column index</param>
<param name="column2">Ending column index</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified column index is out of range. It must less than the column count or -1 for all.
</exception>
</member>
<member name="P:FarPoint.Win.Spread.Columns.Count">
<summary>
Gets or sets the number of columns in the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.Default">
<summary>
Gets a DefaultColumn object for the default column (-1).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.Parent">
<summary>
Gets the parent object containing this collection of columns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.System#Collections#ICollection#Count">
<summary>
Returns the number of elements in the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.System#Collections#ICollection#IsSynchronized">
<summary>
Gets whether access to the collection is synchronized.
(This implementation always returns false.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.System#Collections#ICollection#SyncRoot">
<summary>
Gets an object that can be used to synchronize access to the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.System#Collections#IList#IsFixedSize">
<summary>
Gets whether the collection has a fixed size.
(This implementation always returns true.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.System#Collections#IList#IsReadOnly">
<summary>
Gets whether the collection is read-only.
(This implementation always returns true.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.RangeGroupLevels">
<summary>
Gets the number of levels of columns in the outline (range group).
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Columns.DefaultColumn">
<summary>
Represents the default column in the component.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Column">
<summary>
Represents a column in the component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Creates a new column for the specified sheet and viewport and whether it is in the header.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Creates a range of new columns for the specified sheet and viewport
and whether they are in the headers.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.Invalidate">
<summary>
Invalidates the displayed cells and sends the message to repaint them.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.GetAxisModel">
<summary>
Gets the sheet axis model for this column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.GetDataModel">
<summary>
Gets the sheet data model for this column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.GetStyleModel">
<summary>
Gets the sheet style model for this column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.IsValid(System.Int32)">
<summary>
Determines whether the specified view column index is valid
in the sheet's data model, and if so sets the column field
to the model column index.
</summary>
<param name="viewcolumn">View column index</param>
<returns>True if viewcolumn is defined in the data model; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.Column.GetStyleInfo">
<summary>
Fills the styleInfo field with the current style properties for the column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.SetStyleInfo">
<summary>
Sets the styleInfo field into the style model for the column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.GetPreferredWidth">
<summary>
Gets the minimum width necessary to display all the text within the specified column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.Equals(System.Object)">
<summary>
Determines whether the specified object is equivalent to this column.
</summary>
<param name="o">Object to compare</param>
</member>
<member name="M:FarPoint.Win.Spread.Column.GetHashCode">
<summary>
Gets the hash code of this object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.Add">
<summary>
Adds a new column or range of columns before this column or range of columns.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.Remove">
<summary>
Removes this column or range of columns.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ToString">
<summary>
Gets a string containing an absolute reference to this
column in the current reference style.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ToString(FarPoint.Win.Spread.Model.ReferenceStyle)">
<summary>
Gets a string containing a reference to this
column in the specified reference style.
</summary>
<param name="referenceStyle">
Reference style
</param>
</member>
<member name="M:FarPoint.Win.Spread.Column.ToString(FarPoint.Win.Spread.Column)">
<summary>
Gets a string containing a relative reference to this
column in the current reference style.
</summary>
<param name="relativeTo">
Column to use for computing the relative reference
</param>
<exception cref="T:System.ArgumentNullException">
Column is not specified or is not valid; must provide a valid Column object
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Column.ToString(FarPoint.Win.Spread.Column,FarPoint.Win.Spread.Model.ReferenceStyle)">
<summary>
Gets a string containing a relative reference to this
column in the specified reference style.
</summary>
<param name="relativeTo">
Column to use for computing the relative reference
</param>
<param name="referenceStyle">
Reference style
</param>
<exception cref="T:System.ArgumentNullException">
Column is not specified or is not valid; must provide a valid Column object
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetNoteIndicatorColor">
<summary>
Resets the color of the cell note indicator for the column to the default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetNoteIndicatorSize">
<summary>
Resets the size of the cell note indicator for the column to the default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetNoteIndicatorPosition">
<summary>
Resets the position of the cell note indicator for the column to the default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetCanFocus">
<summary>
Resets to its default value whether the cells in the column can receive focus.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetTabStop">
<summary>
Resets to its default value whether the user can set focus
to the cells in this column using the Tab key.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetVisualStyles">
<summary>
Resets the setting of visual styles (XP themes) for the column
to the default setting.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetSortIndicator">
<summary>
Resets the sort indicator for the column and makes the column inherit
the sort indicator from the default column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetVisible">
<summary>
Resets the visiblity for the column and makes the column inherit
the visibility from the default column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetResizable">
<summary>
Resets the resizability for the column and makes the column inherit
the resizability from the default column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetParentStyleName">
<summary>
Resets the ParentStyleName for the column to an empty string.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetLabel">
<summary>
Resets the label for the column and makes the column
use the automatic text.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetMergePolicy">
<summary>
Resets the merge policy for the column and makes the column inherit
the merge policy from the default column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetTextIndent">
<summary>
Resets the amount of indenting of the text.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetCellPadding">
<summary>
Resets the cell padding of the column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetBackColor">
<summary>
Resets the background color for the column and makes the column inherit
the background color from the default column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetForeColor">
<summary>
Resets the foreground color for the column and makes the column inherit
the foreground color from the default column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetBorder">
<summary>
Resets the cell border for the column and makes the column inherit
the cell border from the default column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetCellType">
<summary>
Resets the cell type for the column and makes the column inherit
the cell type from the default column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetLocked">
<summary>
Resets the locked state for the column and makes the column inherit
the locked state from the default column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetFont">
<summary>
Resets the font for the column and makes the column inherit the font
from the default column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetHorizontalAlignment">
<summary>
Resets the horizontal alignment for the column and makes the column inherit
the horizontal alignment from the default column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetVerticalAlignment">
<summary>
Resets the vertical alignment for the column and makes the column inherit
the vertical alignment from the default column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetWidth">
<summary>
Resets the width for the column and makes the column inherit the width
from the default column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetAutoFilterIndex">
<summary>
Resets the auto filter index for the column and makes the column inherit the auto filter index
from the default column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Column.ResetAutoSortIndex">
<summary>
Resets the auto sortr index for the column and makes the column inherit the auto sort index
from the default column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.SheetView">
<summary>
Internal use only. used by Formula Editor.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.DataField">
<summary>
Gets or sets the data field for this column in the data source.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.Index">
<summary>
Gets the index of this column, or the starting index for this range of columns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.Index2">
<summary>
Gets the ending index for this range of columns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.Tag">
<summary>
Gets or sets the application-defined tag value associated with the cells in this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.Formula">
<summary>
Gets or sets the formula for cells in this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.Label">
<summary>
Gets or sets the header label for this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.Parent">
<summary>
Gets the collection of columns (Columns object) containing this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.Width">
<summary>
Gets or sets the width of cells in this column.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified width is out of range; must be between -1 and 9,999,999 pixels
</exception>
</member>
<member name="P:FarPoint.Win.Spread.Column.Resizable">
<summary>
Gets or sets whether this column can be resized.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.SortIndicator">
<summary>
Gets or sets the sort indicator for this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.Visible">
<summary>
Gets or sets whether this column is visible.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.StyleName">
<summary>
Gets or sets the name of the custom style for cells in this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.ParentStyleName">
<summary>
Gets or sets the name of the parent style
from which style properties are inherited for this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.NoteIndicatorColor">
<summary>
Gets or sets the default note indicator color for cells in this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.NoteIndicatorSize">
<summary>
Gets or sets the default note indicator size for cells in this column.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified size is out of range; width and height must be between 0 and 9,999,999 pixels
</exception>
</member>
<member name="P:FarPoint.Win.Spread.Column.NoteIndicatorPosition">
<summary>
Gets or sets the note indicator position for cells in this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.CanFocus">
<summary>
Gets or sets whether the user can set focus to the cell using the keyboard
or mouse for cells in this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.TabStop">
<summary>
Gets or sets whether the user can set focus to cells in this column using the Tab key.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.VisualStyles">
<summary>
Gets or sets the setting of visual styles (XP themes) for the column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.BackColor">
<summary>
Gets or sets the default background color for cells in this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.ForeColor">
<summary>
Gets or sets the default text color for cells in this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.Border">
<summary>
Gets or sets the default border for cells in this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.Font">
<summary>
Gets or sets the default font for text in cells in this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.TextIndent">
<summary>
Gets or sets the amount of space, in pixels, to indent text in cells of the column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.CellPadding">
<summary>
Gets or sets the amount of space, in pixels, to cell padding in cells of the column(s).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.HorizontalAlignment">
<summary>
Gets or sets the default horizontal alignment for cells in this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.VerticalAlignment">
<summary>
Gets or sets the default vertical alignment for cells in this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.PageBreak">
<summary>
Gets or sets whether a page break is inserted before this column when printing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.AllowAutoSort">
<summary>
Gets or sets whether this column allows automatic sorting.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.ShowSortIndicator">
<summary>
Gets or sets whether the column shows a sort indicator when automatically sorted.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.AllowAutoFilter">
<summary>
Gets or sets whether this column allows automatic filtering.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.Editor">
<summary>
Gets or sets the default editor for cells in this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.Renderer">
<summary>
Gets or sets the default renderer for cells in this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.Formatter">
<summary>
Gets or sets the default formatter for cells in this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.Locked">
<summary>
Gets or sets whether cells in this column are marked as locked.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.MergePolicy">
<summary>
Gets or sets the whether to automatically merge adjacent identical cells in this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.CellType">
<summary>
Gets or sets the default cell type for cells in this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.AutoFilterIndex">
<summary>
Gets or sets the auto filter index for the column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Column.AutoSortIndex">
<summary>
Gets or sets the sort sort index for the column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Columns.DefaultColumn.ToString">
<summary>
Gets a string containing a reference to the default column in the current reference style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.DefaultColumn.AllowAutoSort">
<summary>
This property is not applicable. It cannot be set for a default column.
</summary>
Gets or sets whether the default for columns allows automatic sorting.
</member>
<member name="P:FarPoint.Win.Spread.Columns.DefaultColumn.ShowSortIndicator">
<summary>
This property is not applicable. It cannot be set for a default column.
</summary>
Gets or sets whether the default for columns show a sort indicator when automatically sorted.
</member>
<member name="P:FarPoint.Win.Spread.Columns.DefaultColumn.AllowAutoFilter">
<summary>
This property is not applicable. It cannot be set for a default column.
</summary>
Gets or sets whether the default for columns allows automatic filtering.
</member>
<member name="P:FarPoint.Win.Spread.Columns.DefaultColumn.Formula">
<summary>
This property is not applicable. It cannot be set for a default column.
</summary>
Gets or sets the formula for the default column.
</member>
<member name="P:FarPoint.Win.Spread.Columns.DefaultColumn.Label">
<summary>
This property is not applicable. It cannot be set for a default column.
</summary>
Gets or sets the label for the default column.
</member>
<member name="P:FarPoint.Win.Spread.Columns.DefaultColumn.DataField">
<summary>
This property is not applicable. It cannot be set for a default column.
</summary>
Gets or sets the data field for the default column in the data source.
</member>
<member name="P:FarPoint.Win.Spread.Columns.DefaultColumn.BackColor">
<summary>
Gets or sets the default background color for cells in the default column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.DefaultColumn.Border">
<summary>
Gets or sets the default border for cells in the default column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.DefaultColumn.CellType">
<summary>
Gets or sets the default cell type for cells in the default column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.DefaultColumn.Editor">
<summary>
Gets or sets the default editor for cells in the default column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.DefaultColumn.Font">
<summary>
Gets or sets the default font for cells in the default column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.DefaultColumn.ForeColor">
<summary>
Gets or sets the default text color for cells in the default column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.DefaultColumn.Formatter">
<summary>
Gets or sets the default formatter for cells in the default column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.DefaultColumn.HorizontalAlignment">
<summary>
Gets or sets the default horizontal alignment for cells in this column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.DefaultColumn.Locked">
<summary>
Gets or sets whether cells in the default column are marked as locked.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.DefaultColumn.ParentStyleName">
<summary>
Gets or sets the name of the parent style (NamedStyle) from which
style properties are inherited for the default column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.DefaultColumn.Renderer">
<summary>
Gets or sets the default renderer for cells in the default column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.DefaultColumn.StyleName">
<summary>
Gets or sets the custom style (NamedStyle object) for cells in the default column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Columns.DefaultColumn.VerticalAlignment">
<summary>
Gets or sets the default vertical alignment for cells in the default column
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.ColumnCalc">
<summary>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.ColumnCalc.CellListeners">
<summary>
Gets the cell listeners.
</summary>
<value>The cell listeners.</value>
</member>
<member name="T:FarPoint.Win.Spread.ColumnFooter">
<summary>
Represents the column footer portion of the control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ColumnFooter.GetClip(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets a tab-delimited string containing the formatted text in a range.
</summary>
<param name="row">Starting column footer row index, or -1 for all column footer rows</param>
<param name="column">Starting column index, or -1 for all columns</param>
<param name="rowCount">Number of column footer rows, or -1 for all column footer rows</param>
<param name="columnCount">Number of columns, or -1 for all columns</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between -1 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.ColumnFooter.SetAggregationType(System.Int32,System.Int32,FarPoint.Win.Spread.Model.AggregationType)">
<summary>
Sets formula for the cell of the specified row and column in column footer.
</summary>
<param name="row">Row index of cell in column footer</param>
<param name="column">Column index of cell in column footer</param>
<param name="aggType">Formula type</param>
</member>
<member name="M:FarPoint.Win.Spread.ColumnFooter.SetAggregationFormat(System.Int32,System.Int32,System.String)">
<summary>
Sets the format for the cell with the specified row and column in the column footer.
</summary>
<param name="row">Row index of cell in column footer</param>
<param name="column">Column index of cell in column footer</param>
<param name="aggFormat">Format string, like String.Format expects</param>
</member>
<member name="M:FarPoint.Win.Spread.ColumnFooter.GetClipValue(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets a tab-delimited string containing the unformatted text in a range.
</summary>
<param name="row">Starting column footer row index, or -1 for all column footer rows</param>
<param name="column">Starting column index, or -1 for all columns</param>
<param name="rowCount">Number of column footer rows, or -1 for all column footer rows</param>
<param name="columnCount">Number of columns, or -1 for all columns</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between -1 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.ColumnFooter.SetClip(System.Int32,System.Int32,System.Int32,System.Int32,System.String)">
<summary>
Sets a tab-delimited string containing the formatted text in a range.
</summary>
<param name="row">Starting column footer row index, or -1 for all column footer rows</param>
<param name="column">Starting column index, or -1 for all columns</param>
<param name="rowCount">Number of column footer rows, or -1 for all column footer rows (may create new column footer rows as needed)</param>
<param name="columnCount">Number of columns, or -1 for all columns</param>
<param name="value">Tab-delimited string to set into the range</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between -1 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.ColumnFooter.SetClipValue(System.Int32,System.Int32,System.Int32,System.Int32,System.String)">
<summary>
Sets a tab-delimited string containing the unformatted text in a range.
</summary>
<param name="row">Starting column footer row index, or -1 for all column footer rows</param>
<param name="column">Starting column index, or -1 for all columns</param>
<param name="rowCount">Number of column footer rows, or -1 for all column footer rows (may create new column footer rows as needed)</param>
<param name="columnCount">Number of columns, or -1 for all columns</param>
<param name="value">Tab-delimited string to set into the range</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between -1 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.ColumnFooter.ToString">
<summary>
Gets a string containing a reference to the column footer. (Always returns null.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnFooter.Cells">
<summary>
Gets a Cells object for the cells in the column footer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnFooter.Columns">
<summary>
Gets a Columns object for the columns in the column footer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnFooter.Rows">
<summary>
Gets a Rows object for the rows in the column footer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnFooter.AlternatingRows">
<summary>
Gets the alternating rows information for the column footer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnFooter.DefaultStyle">
<summary>
Gets or sets the default style information for the cells in the column footer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnFooter.DefaultStyleName">
<summary>
Gets or sets the name of the default style for the column footer.
</summary>
<exception cref="T:System.ArgumentException">Specified style (NamedStyle object) could not be found in the collection</exception>
</member>
<member name="P:FarPoint.Win.Spread.ColumnFooter.Visible">
<summary>
Gets or sets whether the column footer is visible.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnFooter.HorizontalGridLine">
<summary>
Gets or sets the horizontal grid line in the column header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnFooter.VerticalGridLine">
<summary>
Gets or sets the vertical grid line in the column header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnFooter.RowCount">
<summary>
Gets or sets the number of rows in the column footer.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row count is less than 0 or greater than 256.
</exception>
</member>
<member name="T:FarPoint.Win.Spread.ColumnHeader">
<summary>
Represents the column header portion of the control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ColumnHeader.GetClip(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets a tab-delimited string containing the formatted text in a range.
</summary>
<param name="row">Starting column header row index, or -1 for all column header rows</param>
<param name="column">Starting column index, or -1 for all columns</param>
<param name="rowCount">Number of column header rows, or -1 for all column header rows</param>
<param name="columnCount">Number of columns, or -1 for all columns</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between -1 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.ColumnHeader.GetClipValue(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets a tab-delimited string containing the unformatted text in a range.
</summary>
<param name="row">Starting column header row index, or -1 for all column header rows</param>
<param name="column">Starting column index, or -1 for all columns</param>
<param name="rowCount">Number of column header rows, or -1 for all column header rows</param>
<param name="columnCount">Number of columns, or -1 for all columns</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between -1 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.ColumnHeader.SetClip(System.Int32,System.Int32,System.Int32,System.Int32,System.String)">
<summary>
Sets a tab-delimited string containing the formatted text in a range.
</summary>
<param name="row">Starting column header row index, or -1 for all column header rows</param>
<param name="column">Starting column index, or -1 for all columns</param>
<param name="rowCount">Number of column header rows, or -1 for all column header rows (may create new column header rows as needed)</param>
<param name="columnCount">Number of columns, or -1 for all columns</param>
<param name="value">Tab-delimited string to set into the range</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between -1 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.ColumnHeader.SetClipValue(System.Int32,System.Int32,System.Int32,System.Int32,System.String)">
<summary>
Sets a tab-delimited string containing the unformatted text in a range.
</summary>
<param name="row">Starting column header row index, or -1 for all column header rows</param>
<param name="column">Starting column index, or -1 for all columns</param>
<param name="rowCount">Number of column header rows, or -1 for all column header rows (may create new column header rows as needed)</param>
<param name="columnCount">Number of columns, or -1 for all columns</param>
<param name="value">Tab-delimited string to set into the range</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between -1 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.ColumnHeader.ToString">
<summary>
Gets a string containing a reference to the column header. (Always returns null.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnHeader.Cells">
<summary>
Gets a Cells object for the cells in the column header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnHeader.Columns">
<summary>
Gets a Columns object for the columns in the column header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnHeader.Rows">
<summary>
Gets a Rows object for the rows in the column header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnHeader.AlternatingRows">
<summary>
Gets the alternating rows information for the column header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnHeader.DefaultStyle">
<summary>
Gets or sets the default style information for the cells in the column header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnHeader.DefaultStyleName">
<summary>
Gets or sets the name of the default style for the column header.
</summary>
<exception cref="T:System.ArgumentException">Specified style (NamedStyle object) could not be found in the collection</exception>
</member>
<member name="P:FarPoint.Win.Spread.ColumnHeader.AutoSortIndex">
<summary>
Gets or sets which column header row displays the
sort indicator when there are multiple column header rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnHeader.HorizontalGridLine">
<summary>
Gets or sets the horizontal grid line in the column header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnHeader.VerticalGridLine">
<summary>
Gets or sets the vertical grid line in the column header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnHeader.AutoText">
<summary>
Gets or sets whether the column header displays letters or numbers
or is blank.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnHeader.AutoTextIndex">
<summary>
Gets or sets which column header row displays the automatic text
when there are multiple column header rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnHeader.AutoFilterIndex">
<summary>
Gets or sets which column header row displays the
row filter indicator when there are multiple column header rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnHeader.Visible">
<summary>
Gets or sets whether the column header is visible.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnHeader.RowCount">
<summary>
Gets or sets the number of rows in the column header.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row count is less than 0 or greater than 256.
</exception>
</member>
<member name="T:FarPoint.Win.Spread.ComparisonOperator">
<summary>
Specifies the operator for conditional formats.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ComparisonOperator.IsTrue">
<summary>
Determines whether a formula evaluates to true
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ComparisonOperator.IsFalse">
<summary>
Determines whether a formula evaluates to false
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ComparisonOperator.Between">
<summary>
Determines whether a cell value is between the two parameter values
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ComparisonOperator.NotBetween">
<summary>
Determines whether a cell value is not between the two parameter values
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ComparisonOperator.EqualTo">
<summary>
Determines whether a cell value is equal to the parameter value
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ComparisonOperator.NotEqualTo">
<summary>
Determines whether a cell value is not equal to the parameter value
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ComparisonOperator.GreaterThan">
<summary>
Determines whether a cell value is greater than the parameter value
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ComparisonOperator.LessThan">
<summary>
Determines whether a cell value is less than the parameter value
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ComparisonOperator.GreaterThanOrEqualTo">
<summary>
Determines whether a cell value is greater than or equal to the parameter value
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ComparisonOperator.LessThanOrEqualTo">
<summary>
Determines whether a cell value is less than or equal to the parameter value
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ComparisonOperator.IsEmpty">
<summary>
Determines whether a cell is empty
</summary>
</member>
<member name="T:FarPoint.Win.Spread.IConditionalFormatSupport">
<summary>
Interface that supports conditional formatting of cells on a sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IConditionalFormatSupport.SetConditionalFormat(System.Int32,System.Int32,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.ComparisonOperator,System.String)">
<summary>
Sets a parameterized conditional format for the cell at the specified row and column.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
<param name="style">Style to be applied to the cell if the condition is satisfied</param>
<param name="op">Comparison operator to apply to the cell value and the parameter value</param>
<param name="value">Parameter value</param>
</member>
<member name="M:FarPoint.Win.Spread.IConditionalFormatSupport.SetConditionalFormat(System.Int32,System.Int32,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.ComparisonOperator,System.String,System.String)">
<summary>
Sets a parameterized conditional format for the cell at the specified row and column.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
<param name="style">Style to be applied to the cell if the condition is satisfied</param>
<param name="op">Comparison operator to apply to the cell value and the parameter values</param>
<param name="firstCondition">First parameter value</param>
<param name="lastCondition">Last parameter value</param>
</member>
<member name="M:FarPoint.Win.Spread.IConditionalFormatSupport.SetConditionalFormat(System.Int32,System.Int32,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.ComparisonOperator,FarPoint.CalcEngine.Expression,FarPoint.CalcEngine.Expression)">
<summary>
Sets a parameterized conditional format for the cell at the specified row and column.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
<param name="style">Style to be applied to the cell if the condition is satisfied</param>
<param name="op">Comparison operator to apply to the cell value and the parameter values</param>
<param name="firstCondition">First parameter value</param>
<param name="lastCondition">Last parameter value</param>
</member>
<member name="M:FarPoint.Win.Spread.IConditionalFormatSupport.SetFormulaConditionalFormat(System.Int32,System.Int32,FarPoint.Win.Spread.NamedStyle,System.String)">
<summary>
Sets a formula conditional format for the cell at the specified row and column.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
<param name="style">Style to be applied to the cell if the formula evaluates to true</param>
<param name="formula">Formula for the condition</param>
</member>
<member name="M:FarPoint.Win.Spread.IConditionalFormatSupport.GetConditionalFormats(System.Int32,System.Int32)">
<summary>
Gets a conditional format from the cell at the specified row and column.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
</member>
<member name="M:FarPoint.Win.Spread.IConditionalFormatSupport.GetConditionalFormats(System.Int32@,System.Int32@,System.Boolean)">
<summary>
Gets a conditional format for the next cell after the cell at the specified row and column.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
<param name="findNext">Whether to find the next cell</param>
</member>
<member name="M:FarPoint.Win.Spread.IConditionalFormatSupport.GetCellConditionalFormats(System.Int32@,System.Int32@,System.Boolean)">
<summary>
Gets a conditional format for the next cell after the cell at the specified row and column.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
<param name="findNext">Whether to find the next cell</param>
</member>
<member name="M:FarPoint.Win.Spread.IConditionalFormatSupport.GetRowConditionalFormats(System.Int32@,System.Boolean)">
<summary>
Gets a conditional format for the next row after the specified row.
</summary>
<param name="row">Row index</param>
<param name="findNext">Whether to find the next cell</param>
</member>
<member name="M:FarPoint.Win.Spread.IConditionalFormatSupport.GetColumnConditionalFormats(System.Int32@,System.Boolean)">
<summary>
Gets a conditional format for the next column after the specified column.
</summary>
<param name="column">Column index</param>
<param name="findNext">Whether to find the next cell</param>
</member>
<member name="M:FarPoint.Win.Spread.IConditionalFormatSupport.ClearConditionalFormats(System.Int32,System.Int32)">
<summary>
Removes all of the conditional formats from the cell at the specified row and column.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
</member>
<member name="M:FarPoint.Win.Spread.IConditionalFormatSupport.GetValidConditionalFormat(System.Int32,System.Int32,System.Object,FarPoint.Win.Spread.Model.ISheetDataModel)">
<summary>
Gets the style for the first condition that is satisfied
from the list of conditional formats for the cell at the specified row and column.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
<param name="value">Cell value</param>
<param name="dm">Data model</param>
</member>
<member name="M:FarPoint.Win.Spread.IConditionalFormatSupport.ConditionalFormatIsRowUsed(System.Int32)">
<summary>
Determines whether the specified row has a conditional format set.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.IConditionalFormatSupport.ConditionalFormatNextNonEmptyColumnInRow(System.Int32,System.Int32)">
<summary>
Gets the next non-empty column in the specified row after the specified column
that contains a conditional format.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.IConditionalFormatSupport.ConditionalFormatInvalidateCell(System.Int32,System.Int32)">
<summary>
Invalidates the conditional format cell specified.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
</member>
<member name="M:FarPoint.Win.Spread.IConditionalFormatSupport.ConditionalFormatInvalidateRow(System.Int32)">
<summary>
Invalidates the conditional format cell specified.
</summary>
<param name="row">Row index of cell</param>
</member>
<member name="M:FarPoint.Win.Spread.IConditionalFormatSupport.ConditionalFormatInvalidateColumn(System.Int32)">
<summary>
Invalidates the conditional format cell specified.
</summary>
<param name="column">Column index of cell</param>
</member>
<member name="T:FarPoint.Win.Spread.IConditionalFormatSupport2">
<summary>
Interface that supports conditional formatting of cells on a sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IConditionalFormatSupport2.SetConditionalFormat(System.Int32,System.Int32,FarPoint.Win.Spread.ConditionalFormat[])">
<summary>
Sets conditional format(s) for the cell at the specified row and column.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
<param name="conditionalFormats">Conditional format(s)</param>
<returns>Does the conditional formate set.</returns>
</member>
<member name="M:FarPoint.Win.Spread.IConditionalFormatSupport2.GetConditionalFormats">
<summary>
Return all conditional formats.
</summary>
<returns>return all conditional formats</returns>
</member>
<member name="T:FarPoint.Win.Spread.ConditionalFormatCollection">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormatCollection.#ctor">
<summary>
Default Constructor
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormatCollection.#ctor(FarPoint.Win.Spread.ConditionalFormatCollection)">
<summary>
Clone Constructor
</summary>
<param name="cfc"></param>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormatCollection.Add(FarPoint.Win.Spread.ConditionalFormat)">
<summary>
Adds a conditional format to the collection.
</summary>
<param name="conditionalFormat">Conditional format to add</param>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormatCollection.Add(FarPoint.Win.Spread.ConditionalFormatCollection)">
<summary>
Appends a collection of conditional formats to the collection.
</summary>
<param name="conditionalFormats">Collection of conditional formats</param>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormatCollection.ToArray">
<summary>
Creates array for counting through the collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormatCollection.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormatCollection.Serialize(System.Xml.XmlTextWriter,System.Int32,System.Int32)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormatCollection.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XmlNodeReader.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormatCollection.Deserialize(System.Xml.XmlNodeReader,System.Int32,System.Int32)">
<summary>
Loads the object from XmlNodeReader.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="P:FarPoint.Win.Spread.ConditionalFormatCollection.Item(System.Int32)">
<summary>
Gets the conditional formats. (Indexer property to retrieve custom format items from the collection.)
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ConditionalFormat">
<summary>
Represents a conditional format.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormat.ShowConditionalFormatDialog(System.Windows.Forms.Form,FarPoint.Win.Spread.FpSpread,FarPoint.Win.Spread.ComparisonOperator,FarPoint.Win.Spread.Model.CellRange[])">
<summary>
Show ConditionalFormat Dialog.
</summary>
<param name="parent">Parent object.</param>
<param name="spread">Spread object.</param>
<param name="comparisonOperator">comparisonOperator object</param>
<param name="cellRanges">cellRanges object</param>
<returns>return the form of ConditionalFormat</returns>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormat.ShowConditionalFormatDialog(System.Windows.Forms.Form,FarPoint.Win.Spread.FpSpread,FarPoint.Win.Spread.ComparisonOperator,FarPoint.Win.Spread.Model.CellRange)">
<summary>
Show ConditionalFormat Dialog.
</summary>
<param name="parent">Parent object.</param>
<param name="spread">Spread object.</param>
<param name="comparisonOperator">comparisonOperator object</param>
<param name="cellRange">cellRange object</param>
<returns>return the form of ConditionalFormat</returns>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormat.#ctor">
<summary>
Creates a new conditional format.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormat.#ctor(FarPoint.Win.Spread.NamedStyle)">
<summary>
Creates a new conditional format with the specified style.
</summary>
<param name="style">Style</param>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormat.#ctor(System.String,System.String,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.ComparisonOperator)">
<summary>
Create a new ConditionalFormat object
</summary>
<param name="firstCondition">firstCondition object</param>
<param name="lastCondition">lastCondition object</param>
<param name="style">style object</param>
<param name="comparisonOperator">comparisonOperator object</param>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormat.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new conditional format from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormat.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Gets the object data.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormat.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the conditional format object to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormat.Serialize(System.Xml.XmlTextWriter,System.Int32,System.Int32)">
<summary>
Saves the conditional format object to XML at a cell at a specified row and column.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormat.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the conditional format object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormat.Clone">
<summary>
Creates and returns a copy of the conditional format.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ConditionalFormat.Style">
<summary>
Gets or sets a style for the conditional format.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ConditionalFormat.FirstCondition">
<summary>
Gets or sets the first condition.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ConditionalFormat.LastCondition">
<summary>
Gets or sets the last condition.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ConditionalFormat.FirstConditionExpression">
<summary>
Gets or sets the first condition as an expression.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ConditionalFormat.LastConditionExpression">
<summary>
Gets or sets the last condition as an expression.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ConditionalFormat.ComparisonOperator">
<summary>
Gets or sets the comparison operator for the conditional format.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ConditionalFormatInfo">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormatInfo.#ctor">
<summary>
Create a new ConditionalFormatInfo object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormatInfo.#ctor(System.Int32,System.Int32,FarPoint.Win.Spread.ConditionalFormatCollection)">
<summary>
Create a new ConditionalFormatInfo object.
</summary>
<param name="row">row index</param>
<param name="column">column index</param>
<param name="conditionalFormats">conditionalFormats object</param>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormatInfo.#ctor(System.Int32,System.Int32,FarPoint.Win.Spread.ConditionalFormat[])">
<summary>
Create a new ConditionalFormatInfo object.
</summary>
<param name="row">row index</param>
<param name="column">column index</param>
<param name="conditionalFormats">conditionalFormats object</param>
</member>
<member name="P:FarPoint.Win.Spread.ConditionalFormatInfo.ConditionalFormat">
<summary>
Get the ConditionalFormat object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ConditionalFormatInfo.Row">
<summary>
Get the Row object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ConditionalFormatInfo.Column">
<summary>
Get the Column object.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DataFieldConverter">
<summary>
Represents a type converter for the data field of a column.
</summary>
<remarks>
This object provides a drop-down list in the Properties window
of data fields for the DataField property of a Column object.
</remarks>
</member>
<member name="M:FarPoint.Win.Spread.DataFieldConverter.GetDataSource(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Returns the data source object to display field names
</summary>
<param name="context">Type descriptor context</param>
</member>
<member name="M:FarPoint.Win.Spread.DataFieldConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Retrieves the set of standard values for this type.
</summary>
<param name="context">Context information, such as column or container</param>
<returns>Set of standard values</returns>
</member>
<member name="M:FarPoint.Win.Spread.DataFieldConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Determines whether this object supports standard values.
</summary>
<param name="context">Context information</param>
<returns>True if this object supports standard values; false otherwise</returns>
</member>
<member name="T:FarPoint.Win.Spread.Model.ReferenceStyle">
<summary>
Specifies the reference style in formulas and custom names in the sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.ReferenceStyle.A1">
<summary>
Uses letters and numbers for column and row coordinates;
uses dollar sign ($) for absolute coordinates
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.ReferenceStyle.R1C1">
<summary>
Uses "R" and number for row, "C" and number for column coordinates;
uses brackets [ ] for relative coordinates
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.IUnboundRowSupport">
<summary>
Interface that supports unbound rows when the model is bound to a data source.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IUnboundRowSupport.AddUnboundRows(System.Int32,System.Int32)">
<summary>
Adds unbound rows to the data model.
</summary>
<param name="row">Start index to add the new rows</param>
<param name="count">Number of rows to add</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IUnboundRowSupport.AddRowToDataSource(System.Int32,System.Boolean)">
<summary>
Adds the unbound row to the data source.
</summary>
<param name="row">Index of unbound row</param>
<param name="autoFillData">Whether to automatically fill the row with data </param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IUnboundRowSupport.GetUnboundValue(System.Int32,System.Int32)">
<summary>
Gets the unbound value for the cell.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IUnboundRowSupport.IsRowBound(System.Int32)">
<summary>
Determines whether the row is bound.
</summary>
<param name="row">Row to check</param>
</member>
<member name="T:FarPoint.Win.Spread.Model.IUnboundRowAddNewRowSupport">
<summary>
Support operation on DataAddNew Unbound row
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.IDataSourceSupport">
<summary>
Interface that supports data binding and data relations in the data model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IDataSourceSupport.GetDataColumnName(System.Int32)">
<summary>
Gets the column name at the specified position.
</summary>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IDataSourceSupport.GetDataView(System.Boolean)">
<summary>
Gets the DataView object.
</summary>
<param name="create">Whether to re-create the DataView</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IDataSourceSupport.SetModelDataColumn(System.Int32,System.String)">
<summary>
Binds the model column with the data source column.
</summary>
<param name="column">Model column to be bounded</param>
<param name="columnName">Data source column name of the column to which to bind</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IDataSourceSupport.GetDataRowFromModelRow(System.Int32)">
<summary>
Converts the model row index to the data source row index.
</summary>
<param name="row">Model row index to be converted</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IDataSourceSupport.GetModelRowFromDataRow(System.Int32)">
<summary>
Converts the data source row index to the model row index.
</summary>
<param name="row">Data source row index to be converted</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IDataSourceSupport.GetDataColumnFromModelColumn(System.Int32)">
<summary>
Converts the model column index to the data source column index.
</summary>
<param name="column">Model column index to be converted</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IDataSourceSupport.GetModelColumnFromDataColumn(System.Int32)">
<summary>
Converts the data source column index to the model column index.
</summary>
<param name="column">Data source column index to be converted</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IDataSourceSupport.IsColumnBound(System.Int32)">
<summary>
Determines whether the column is bound to a data source column.
</summary>
<param name="column">Index of a column in the model for which to return the status </param>
</member>
<member name="P:FarPoint.Win.Spread.Model.IDataSourceSupport.DataSource">
<summary>
Gets or sets the data source.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.IDataSourceSupport.DataMember">
<summary>
Gets or sets the data member (table name).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.IDataSourceSupport.AutoGenerateColumns">
<summary>
Gets or sets whether to generate the columns automatically based on the data source.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.IItemTypeSupport">
<summary>
Interface that supports data binding to collections.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.IItemTypeSupport.ItemType">
<summary>
Gets or sets the type of the object in the list for the list data source.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.IChildModelSupport">
<summary>
Interface that supports a child data model in the data model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IChildModelSupport.GetChildRelation(System.Int32)">
<summary>
Gets the name of the child data relation at the specified position.
</summary>
<param name="index">Index to the child relation</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IChildModelSupport.GetChildDataModel(System.Int32,System.String)">
<summary>
Gets the child data model for the specified row and data relation.
</summary>
<param name="row">Row whose child data model is to be returned</param>
<param name="relation">Data relation name</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.IChildModelSupport.ParentRowIndex">
<summary>
Gets or sets the index of the parent row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.IChildModelSupport.ParentRelationName">
<summary>
Gets or sets the name of the data relation.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.IChildModelSupport.ChildRelationCount">
<summary>
Gets the number of child data relations.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.IChildModelSupport.Parent">
<summary>
Gets or sets the parent data source.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.IEditableObjectSupport">
<summary>
Defines the interface for objects that are editable data rows in a data set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IEditableObjectSupport.GetItem(System.Int32)">
<summary>
Gets an editable data row item at the specified row.
</summary>
<param name="row">Row index</param>
</member>
<member name="T:FarPoint.Win.Spread.Model.DefaultSheetDataModel">
<summary>
Represents the full (concrete) implementation of the ISheetDataModel interface
for a data model for a sheet, which represents tabular data on a sheet.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.IArraySupport">
<summary>
Interface that supports arrays of values in a range of cells
in the data model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IArraySupport.GetArray(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets an object array from a specified range of cells.
</summary>
<param name="row">
Starting model row index
</param>
<param name="column">
Starting model column index
</param>
<param name="rowCount">
Number of rows to copy
</param>
<param name="columnCount">
Number of columns to copy
</param>
<returns>
Two-dimensional object array[row,column] containing tabular data
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.IArraySupport.SetArray(System.Int32,System.Int32,System.Object[0:,0:])">
<summary>
Sets an object array into a specified range of cells.
</summary>
<param name="row">
Starting model row index
</param>
<param name="column">
Starting model column index
</param>
<param name="value">
Two-dimensional object array[row,column] containing tabular data
</param>
</member>
<member name="T:FarPoint.Win.Spread.Model.IExpressionSupport2">
<summary>
Interface that supports additional formula functionality
in the data model including conditional cell formats.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IExpressionSupport2.ParseFormula(System.Int32,System.Int32,System.String)">
<summary>
Parses the string value and returns the expression
for the cell at the specified row and column.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<param name="value">Formula to be parsed to a string</param>
<exception cref="T:FarPoint.Win.Spread.Model.ParseException">
Value is not a valid formula.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.IExpressionSupport2.UnparseFormula(System.Int32,System.Int32,FarPoint.CalcEngine.Expression)">
<summary>
Gets the formula, as a string value, for the specified expression
for the cell at the specified row and column.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<param name="expression">Expression to be unparsed</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IExpressionSupport2.EvaluateExpression(System.Int32,System.Int32,FarPoint.CalcEngine.Expression)">
<summary>
Evaluates the expression and returns the resulting object
for the cell at the specified row and column.
</summary>
<param name="row">Row index of the base cell</param>
<param name="column">Column index of the base cell</param>
<param name="expression">Expression to be evaluated</param>
</member>
<member name="T:FarPoint.Win.Spread.Model.ICalculationSupport">
<summary>
Interface that supports recalculation of formulas in the cells
in the data model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.ICalculationSupport.Recalculate">
<summary>
Evaluates the formulas in the sheet that have changed since the last calculation cycle.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.ICalculationSupport.RecalculateAll">
<summary>
Evaluates all the formulas in the sheet (including those that have not changed
since the last calculation cycle).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.ICalculationSupport.AutoCalculation">
<summary>
Gets or sets whether the control automatically recalculates each
formula in the sheet when the contents of dependent cells change.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.IIterationSupport">
<summary>
Interface that supports recursive formulas (with circular references)
in the data model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.IIterationSupport.Iteration">
<summary>
Gets or sets whether circular references are evaluated.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.IIterationSupport.MaximumIterations">
<summary>
Gets or sets the maximum number of iterations.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.IIterationSupport.MaximumChange">
<summary>
Gets or sets the maximum amount of change below which
iterations stop.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.ICustomFunctionSupport">
<summary>
Interface that supports user-defined functions in formulas
in the data model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.ICustomFunctionSupport.AddCustomFunction(FarPoint.CalcEngine.FunctionInfo)">
<summary>
Adds a new user-defined function to the model for use in formulas.
</summary>
<param name="functionInfo">Function to add</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ICustomFunctionSupport.RemoveCustomFunction(System.String)">
<summary>
Removes a user-defined function from the model.
</summary>
<param name="name">Name of function to remove</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ICustomFunctionSupport.GetCustomFunction(System.String)">
<summary>
Gets a user-defined function from the model.
</summary>
<param name="name">Name of function</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ICustomFunctionSupport.GetCustomFunctionEnumerator">
<summary>
Gets an IEnumerator that enumerates through the names of the user-defined functions in the model.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.ICustomFunctionSupport2">
<summary>
Interface that supports user-defined functions in formulas
in the data model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.ICustomFunctionSupport2.ClearCustomFunctions">
<summary>
Removes all user-defined functions from the model.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.ICustomNameSupport">
<summary>
Interface that supports user-defined names in formulas
in the data model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.ICustomNameSupport.AddCustomName(System.String,System.String,System.Int32,System.Int32)">
<summary>
Adds a new user-defined name for the specified value, as string, to the model.
</summary>
<param name="name">Name to add</param>
<param name="value">Value for name, as string</param>
<param name="baseRow">Base row index for calculating relative row references in the value</param>
<param name="baseColumn">Base column index for calculating relative column references in the value</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ICustomNameSupport.AddCustomName(System.String,FarPoint.CalcEngine.Expression)">
<summary>
Adds a new user-defined name for the specified value, as expression, to the model.
</summary>
<param name="name">Name to add</param>
<param name="value">Value for name, as expression</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ICustomNameSupport.RemoveCustomName(System.String)">
<summary>
Removes a user-defined name from the model.
</summary>
<param name="name">Name to remove</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ICustomNameSupport.GetCustomName(System.String,System.Int32,System.Int32)">
<summary>
Gets the user-defined name, as a string, from the model.
</summary>
<param name="name">Name, as a string</param>
<param name="baseRow">Base row index for calculating relative row references in the value</param>
<param name="baseColumn">Base column index for calculating relative column references in the value</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ICustomNameSupport.GetCustomName(System.String)">
<summary>
Gets the user-defined name, as an expression, in the model.
</summary>
<param name="name">Name, as an expression</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ICustomNameSupport.GetCustomNameEnumerator">
<summary>
Gets an IEnumerator that enumerates through the custom names defined in the model.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.ICustomNameSupport2">
<summary>
Interface that supports user-defined names in formulas
in the data model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.ICustomNameSupport2.ClearCustomNames">
<summary>
Removes all user-defined names from the model.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.INameSupport">
<summary>
Interface that supports a name of a data model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.INameSupport.Name">
<summary>
Gets or sets the name of the data model.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Model.INameSupport.NameChanged">
<summary>
Occurs when the name of the data model changes.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.INameSupport2">
<summary>
Interface that supports a name of a data model.
Including notify NameChanging event
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Model.INameSupport2.NameChanging">
<summary>
Occurs when the name of the data model is changing.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.IOptimizedEnumerationSupport3">
<summary>
Interface that supports additional optimization for retrieval of data
in the data model beyond IOptimizedEnumerationSupport2.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.IOptimizedEnumerationSupport3.IgnoreFormula">
<summary>
Gets or sets a value indicates whether to ignore formula.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.IClearDataSupport">
<summary>
Interface that supports clearing data from the specified range.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IClearDataSupport.ClearData(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Clears the data from the specified range.
</summary>
<param name="row">row</param>
<param name="column">column</param>
<param name="rowCount">rowCount</param>
<param name="columnCount">columnCount</param>
</member>
<member name="T:FarPoint.Win.Spread.Model.IClearFormulasSupport">
<summary>
Interface that supports clearing formulas from the specified range.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IClearFormulasSupport.ClearFormulas(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Clears the formulas from the specified range.
</summary>
<param name="row">row</param>
<param name="column">column</param>
<param name="rowCount">rowCount</param>
<param name="columnCount">columnCount</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.#ctor">
<summary>
Creates a default data model with zero rows and columns.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.#ctor(System.Int32,System.Int32)">
<summary>
Creates a default data model with the specified number of rows and columns.
</summary>
<param name="columnCount">Number of columns in the model</param>
<param name="rowCount">Number of rows in the model</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new DefaultSheetDataModel from the SerializationInfo.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.LoadFormulas(System.Boolean)">
Loads formulas that are deserialized during deserialization. But, not parsing yet.
This method is called after all the sheets has been created and deserialized.
<summary>
Loads formulas that are deserialized but not parsed yet,
to be used after all sheets have been created and deserialized.
</summary>
<param name="recalculate">Whether to recalculate all the formulas in cells that have changed</param>
<remarks>This method will enable formula parsing if it is not already enabled.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the DefaultSheetDataModel to the SerializationInfo.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.FireChanged(System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.Model.SheetDataModelEventType)">
<summary>
Raises the Changed event.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="type">Type of event raised</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.FireChanged(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Raises the Changed event.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.FireChanged(System.Int32,System.Int32)">
<summary>
Raises the Changed event.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.OnChanged(FarPoint.Win.Spread.Model.SheetDataModelEventArgs)">
<summary>
Raises the Changed event, and permits derived classes to handle
the event without attaching a delegate.
</summary>
<param name="e">SheetSpanModelEventArgs object that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetColumnIndex(System.String)">
<summary>
Gets the index of the column specified by name.
</summary>
<param name="columnName">Column name</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.#ctor(System.Data.DataTable)">
<summary>
Creates a default data model with the specified data table.
</summary>
<param name="dataSource">Data source to be used for this model</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.#ctor(System.Data.DataSet)">
<summary>
Creates a default data model with the specified data set.
</summary>
<param name="dataSource">Data source to be used for this model</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.#ctor(System.Data.DataSet,System.String)">
<summary>
Creates a default data model with the specified data set.
</summary>
<param name="dataSource">Data source to be used for this model</param>
<param name="dataMember">Data table name</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.#ctor(System.ComponentModel.IListSource,System.Type)">
<summary>
Creates a default data model with the specified data set (IListSource object).
</summary>
<param name="dataSource">Data source to be used</param>
<param name="itemType">Element type in the data source</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.#ctor(System.Collections.IList,System.Type)">
<summary>
Creates a default data model with the specified data set (IList object).
</summary>
<param name="dataSource">Data source to be used</param>
<param name="itemType">Element type in the data source</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetChildDataModel(System.Int32,System.String)">
<summary>
Gets the data model (ISheetDataModel object) for the specified row and data relation.
</summary>
<param name="row">Row whose child data model is to be returned</param>
<param name="relation">Data relation name</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetChildRelation(System.Int32)">
<summary>
Gets the name of the child data relation at the specified position.
</summary>
<param name="index">Index of the child data relation</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetDataRowFromModelRow(System.Int32)">
<summary>
Gets the data source row index for the specified row in the model.
</summary>
<param name="row">Index of row in the model</param>
Converts the model row index to the data source row index.
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetModelRowFromDataRow(System.Int32)">
<summary>
Gets the row in the model for the specified data source row.
</summary>
<param name="row">Row index of data source</param>
Converts the data source row index to the model row index.
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetDataView">
<summary>
Gets the DataView object associated with this model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetDataView(System.Boolean)">
<summary>
Gets the DataView object associated with this model.
</summary>
<param name="create">Whether to re-create the DataView</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetDataTable">
<summary>
Gets the data table associated with this model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetDataColumnType(System.Int32)">
<summary>
Gets the column data type at the specified position.
</summary>
<param name="column">Column index for which type is requested</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified index is out of range; must be between 0 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetDataColumnName(System.Int32)">
<summary>
Gets the column name at the specified position.
</summary>
<param name="column">Column index for which name is requested</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified index is out of range; must be between 0 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetDataColumnCaption(System.Int32)">
<summary>
Gets the column caption at the specified position.
</summary>
<param name="column">Column index for which caption is requested</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified index is out of range; must be between 0 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetListSource">
<summary>
Returns the IList data source for this model or null if the data source is not an IList.
</summary>
<returns>IList object</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.IsEmpty">
<summary>
Determines whether the data model is empty.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.IsEditable(System.Int32,System.Int32)">
<summary>
Determines whether the value in the cell of the specified row and column can be edited.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetValue(System.Int32,System.Int32)">
<summary>
Gets the value of the cell for the specified row and column.
</summary>
<param name="row">Row index of the cell in the model</param>
<param name="column">Column index of the cell in the model</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.SetValue(System.Int32,System.Int32,System.Object)">
<summary>
Sets the value for the cell of the specified row and column.
</summary>
<param name="row">Row index of cell in model</param>
<param name="column">Column index of cell in model</param>
<param name="value">Value to set</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetTag(System.Int32,System.Int32)">
<summary>
Gets an application-defined tag value for the cell of the specified row and column.
</summary>
<param name="row">Row index of cell in model</param>
<param name="column">Column index of cell in model</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.SetTag(System.Int32,System.Int32,System.Object)">
<summary>
Sets an application-defined tag value for the cell of the specified row and column.
</summary>
<param name="row">Row index of cell in model</param>
<param name="column">Column index of cell in model</param>
<param name="value">Value to set</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetNonEmptyNotesRowCount">
<summary>
Gets a count of rows containing notes.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetNonEmptyNotesColumnCount">
<summary>
Gets a count of columns containing notes.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetNote(System.Int32,System.Int32)">
<summary>
Gets a user-defined note value for the cell of the specified row and column.
</summary>
<param name="row">Row index of cell (in model)</param>
<param name="column">Column index of cell (in model)</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.SetNote(System.Int32,System.Int32,System.String)">
<summary>
Sets a user-defined note value for the cell at the specified row and column.
</summary>
<param name="row">Row index of cell in the model</param>
<param name="column">Column index of cell in the model</param>
<param name="value">Note value to set</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetArray(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets an object array from a specified range of cells.
</summary>
<param name="row">Row index of the cell from which to read into the array</param>
<param name="column">Column index of the cell from which to read into the array</param>
<param name="rowCount">Number of rows in the array</param>
<param name="columnCount">Number of columns in the array</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetArray(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
Gets an object array from a specified range of cells.
</summary>
<param name="row">Row index of the cell from which to read into the array</param>
<param name="column">Column index of the cell from which to read into the array</param>
<param name="rowCount">Number of rows in the array</param>
<param name="columnCount">Number of columns in the array</param>
<param name="formula">If true, return formulas. Otherwise, return values.</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.SetArray(System.Int32,System.Int32,System.Object[0:,0:])">
<summary>
Sets an object array into a specified range of cells.
</summary>
<param name="row">Row index of the start of the range of cells</param>
<param name="column">Column index of the start of the range of cells</param>
<param name="value">Two-dimensional object array[row,column] containing the values</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.SetArray(System.Int32,System.Int32,System.Object[0:,0:],System.Boolean)">
<summary>
Sets an object array into a specified range of cells.
</summary>
<param name="row">Row index of the start of the range of cells</param>
<param name="column">Column index of the start of the range of cells</param>
<param name="value">Two-dimensional object array[row,column] containing the values</param>
<param name="formula">IF true, set formulas. Otherwise, set values.</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.ParseFormula(System.Int32,System.Int32,System.String)">
<summary>
Parses the string value and returns the expression for the cell at the specified row and column.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<param name="value">Formula to be parsed to a string</param>
<exception cref="T:FarPoint.Win.Spread.Model.ParseException">
Specified value is not a valid formula
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.UnparseFormula(System.Int32,System.Int32,FarPoint.CalcEngine.Expression)">
<summary>
Gets the formula, as a string value, from the specified expression for the cell at the specified row and column.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<param name="expression">Expression to be unparsed</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.EvaluateExpression(System.Int32,System.Int32,FarPoint.CalcEngine.Expression)">
<summary>
Evaluates the expression in the cell at the specified row and column and returns the resulting object.
</summary>
<param name="row">Row index of the base cell</param>
<param name="column">Column index of the base cell</param>
<param name="expression">Expression to be evaluated</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetFormula(System.Int32,System.Int32)">
<summary>
Gets the formula, as a string value, for the cell of the specified row and column.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.SetFormula(System.Int32,System.Int32,System.String)">
<summary>
Sets the formula, as a string value, for the cell of the specified row and column.
If you pass null, it will clear the expression from that cell.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<param name="value">Formula to be set, as a string</param>
<exception cref="T:FarPoint.Win.Spread.Model.ParseException">
Specified value is not a valid formula
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetExpression(System.Int32,System.Int32)">
<summary>
Gets the formula, as an expression value, for the cell of the specified row and column.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.SetExpression(System.Int32,System.Int32,FarPoint.CalcEngine.Expression)">
<summary>
Sets the formula, as an expression value, for the cell of the specified row and column.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<param name="value">Formula to be set as an expression</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.SetCellExpression(System.Int32,System.Int32,FarPoint.CalcEngine.Expression)">
<summary>
Internal method to set cell expression without triggering auto calculation.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.SetRowExpression(System.Int32,FarPoint.CalcEngine.Expression)">
<summary>
Internal method to set row expression without triggering auto calculation.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.SetColumnExpression(System.Int32,FarPoint.CalcEngine.Expression)">
<summary>
Internal method to set column expression without triggering auto calculation.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.DefaultSheetDataModel.nameChanged">
<summary>
Occurs when the name of the data model changes.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.DefaultSheetDataModel.nameChanging">
<summary>
Occurs when the name of the data model is changing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.AddColumn">
<summary>
Adds a column to the data model after the last column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.AddColumn(System.Int32)">
<summary>
Adds a column to the data model at the specified position.
</summary>
<param name="column">Index of column at which to add new column</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.AddColumns(System.Int32,System.Int32)">
<summary>
Adds one or more columns to the data model at the specified position.
</summary>
<param name="column">Index of column at which to add new column</param>
<param name="count">Number of columns to add</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified index of column is out of range; must be between zero and the number of columns
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified number of columns is out of range; must be greater than zero
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetDataRow(System.Int32)">
<summary>
Gets the view of a specified row of data.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetItem(System.Int32)">
<summary>
Returns the IEditableObject from a row that is data bound to a DataView or ListSource.
</summary>
<param name="row">Row in the data model to query</param>
<returns>The IEditable object, if data bound</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.AddUnboundRows(System.Int32,System.Int32)">
<summary>
Adds unbound rows to the data model.
</summary>
<param name="row">Row index at which to add the new rows</param>
<param name="count">Number of rows to add</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.AddRowToDataSource(System.Int32,System.Boolean)">
<summary>
Adds the unbound row to the data source.
</summary>
<param name="row">Row index at which to add row</param>
<param name="autoFillData">Whether to automatically fill the row with data</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetUnboundValue(System.Int32,System.Int32)">
<summary>
Gets the unbound value for the cell for the specified row and column.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.IsRowBound(System.Int32)">
<summary>
Determines whether the specified row is bound to a data source row.
</summary>
<param name="row">Index of row to check</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.AddRow">
<summary>
Adds a row to the data model after the last row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.AddRow(System.Int32)">
<summary>
Adds a row to the data model at the specified position.
</summary>
<param name="row">Row index at which to add new row</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.AddRows(System.Int32,System.Int32)">
<summary>
Adds rows to the data model at the specified position.
</summary>
<param name="row">Row index at which to add new rows</param>
<param name="count">Number of rows to add</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified index of row is out of range; must be between zero and the number of columns
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified number of rows is out of range; must be greater than zero
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.RemoveRow(System.Int32)">
<summary>
Removes a row at the specified position.
</summary>
<param name="row">Index of row to remove</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row is out of range; must be between 0 and total number of rows
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.RemoveRows(System.Int32,System.Int32)">
<summary>
Removes one or more rows, starting with the specified row.
</summary>
<param name="row">Index of first row to remove</param>
<param name="count">Number of rows to remove</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row is out of range; must be between 0 and total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified number of rows is out of range; must be between 1 and total number of rows beyond the specified starting row
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.RemoveRows(System.Int32,System.Int32,System.Boolean)">
<summary>
Removes the rows from the specified position and updates the data source if so specified.
</summary>
<param name="row">Index of first row to remove</param>
<param name="count">Number of rows to remove</param>
<param name="updateDataSource">Whether to update the data source</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.RemoveColumn(System.Int32)">
<summary>
Removes a column at the specified position.
</summary>
<param name="column">Index of column to remove</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column is out of range; must be between 0 and total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.RemoveColumns(System.Int32,System.Int32)">
<summary>
Removes one or more columns starting with the column at the specified position.
</summary>
<param name="column">Index of first column to remove</param>
<param name="count">Number of columns to remove</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column is out of range; must be between 0 and total number of columns
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified number of columns is out of range; must be between 1 and total number of columns beyond the specified starting column
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.ClearModelData(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Removes all the data and formulas from the specified range of cells only in the data model, not the datasource.
</summary>
<param name="row">Row index of start of range to clear</param>
<param name="column">Column index of start of range to clear</param>
<param name="rowCount">Number of rows to clear</param>
<param name="columnCount">Number of columns to clear</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.Clear(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Removes all the data and formulas from the specified range of cells.
</summary>
<param name="row">Row index of start of range to clear</param>
<param name="column">Column index of start of range to clear</param>
<param name="rowCount">Number of rows to clear</param>
<param name="columnCount">Number of columns to clear</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.ClearData(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Removes all the data from the specified range of cells.
</summary>
<param name="row">Row index of start of range to clear</param>
<param name="column">Column index of start of range to clear</param>
<param name="rowCount">Number of rows to clear</param>
<param name="columnCount">Number of columns to clear</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.ClearFormulas(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Removes all of the formulas from the specified range of cells.
</summary>
<param name="row">Row index of start of range to clear</param>
<param name="column">Column index of start of range to clear</param>
<param name="rowCount">Number of rows to clear</param>
<param name="columnCount">Number of columns to clear</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.Copy(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Copies the data from a range of cells to a specified range of cells.
</summary>
<param name="fromRow">Row index of start of range from which to copy</param>
<param name="fromColumn">Column index of start of range from which to copy</param>
<param name="toRow">Row index of start of range to which to copy</param>
<param name="toColumn">Column index of start of range to which to copy</param>
<param name="rowCount">Number of rows to copy</param>
<param name="columnCount">Number of columns to copy</param>
<exception cref="T:System.ArgumentException">
Specified starting and ending row or row count is not valid
</exception>
<exception cref="T:System.ArgumentException">
Specified starting and ending column or column count is not valid
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.Move(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Moves the data from a range of cells to the specified location.
</summary>
<param name="fromRow">Row index of starting position of range to move</param>
<param name="fromColumn">Column index of starting position of range to move</param>
<param name="toRow">Row index of starting position of destination</param>
<param name="toColumn">Column index of starting position of destination</param>
<param name="rowCount">Number of rows in range</param>
<param name="columnCount">Number of columns in range</param>
<exception cref="T:System.ArgumentException">
Specified starting and ending row or row count is not valid
</exception>
<exception cref="T:System.ArgumentException">
Specified starting and ending column or column count is not valid
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.Swap(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Swaps the specified ranges of cells.
</summary>
<param name="fromRow">Row index of starting position of range to move</param>
<param name="fromColumn">Column index of starting position of range to move</param>
<param name="toRow">Row index of starting position of destination</param>
<param name="toColumn">Column index of starting position of destination</param>
<param name="rowCount">Number of rows in range</param>
<param name="columnCount">Number of columns in range</param>
<exception cref="T:System.ArgumentException">
Specified starting and ending row or row count is not valid
</exception>
<exception cref="T:System.ArgumentException">
Specified starting and ending column or column count is not valid
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.IsRowUsed(System.Int32)">
<summary>
Determines whether the specified row is not empty.
</summary>
<param name="row">Index of row to check</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.NextNonEmptyRow(System.Int32)">
<summary>
Gets the index of the next non-empty row after the specified row index.
</summary>
<param name="row">Row index to start searching after (-1 to start at row 0)</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.NextNonEmptyColumnInRow(System.Int32,System.Int32)">
<summary>
Gets the index of the next column in a specified row that contains data.
</summary>
<param name="row">Row index to search</param>
<param name="column">Column index before the column to start searching (-1 to start at column 0)</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.Serialize(System.Xml.XmlTextWriter,System.Boolean)">
<summary>
Saves the object to XML and
specifies whether to save the data source and bound data.
</summary>
<param name="w">XmlTextWriter object to which to save the object</param>
<param name="saveDataSource">Whether to save the data source and bound data</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetDataColumnFromModelColumn(System.Int32)">
<summary>
Gets the data source column index for the specified column in the model.
</summary>
<param name="column">Index of the column in the model</param>
Converts the model column index to the data source column index.
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetModelColumnFromDataColumn(System.Int32)">
<summary>
Gets the column in the model for the specified data source column.
</summary>
<param name="datacolumn">Index of the column in the data source</param>
Converts the data source column index to the model column index.
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.IsColumnBound(System.Int32)">
<summary>
Determines whether the specified column is bound to a data source column.
</summary>
<param name="column">Column index to check</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.SetModelDataColumn(System.Int32,System.String)">
<summary>
Binds a model column to a specified data source column.
</summary>
<param name="column">Index of column in the model</param>
<param name="columnName">Name of the data source column</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.SetModelDataColumn(System.Int32,System.Int32)">
<summary>
Binds the model column to a specified data source column.
</summary>
<param name="column">Column index in the model</param>
<param name="value">Data source column</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.RecalculateCell(System.Int32,System.Int32)">
<summary>
Recalculates an individual cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.Recalculate">
<summary>
Evaluates the formulas in the sheet that have changed since the last calculation cycle.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.RecalculateAll">
<summary>
Evaluates all the formulas in the entire sheet
(including those that have not changed since the last calculation cycle).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.AddCustomFunction(FarPoint.CalcEngine.FunctionInfo)">
<summary>
Adds a new user-defined custom function to the model for use in formulas.
</summary>
<param name="functionInfo">FunctionInfo object containing the user-defined function to add</param>
<exception cref="T:System.ArgumentNullException">
No function specified; function is a null reference (Nothing in Visual Basic)
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.RemoveCustomFunction(System.String)">
<summary>
Removes a user-defined custom function from the model.
</summary>
<param name="name">Name of the user-defined custom function to remove</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.ClearCustomFunctions">
<summary>
Removes all user-defined custom functions from the model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetCustomFunction(System.String)">
<summary>
Gets a user-defined custom function from the model.
</summary>
<param name="name">Name of the user-defined custom function to get</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetCustomFunctionEnumerator">
<summary>
Gets an IEnumerator that enumerates through the names of the custom functions in the model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.AddCustomName(System.String,System.String,System.Int32,System.Int32)">
<summary>
Adds a named expression to the model for use in formulas.
</summary>
<param name="name">Name of the expression to add (used in formulas to reference the value)</param>
<param name="value">Value of the expression (used in formulas for evaluation)</param>
<param name="baseRow">Base row index for computing relative cell references</param>
<param name="baseColumn">Base column index for computing relative cell references</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.AddCustomName(System.String,FarPoint.CalcEngine.Expression)">
<summary>
Adds a named expression to the model for use in formulas.
</summary>
<param name="name">Name of the expression to add (used in formulas to reference the value)</param>
<param name="value">Expression object to add</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.RemoveCustomName(System.String)">
<summary>
Removes a named expression from the model.
</summary>
<param name="name">User-defined custom name to remove</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.ClearCustomNames">
<summary>
Removes all named expressions from the model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetCustomName(System.String,System.Int32,System.Int32)">
<summary>
Gets a named expression from the model with the specified base index for relative cell references.
</summary>
<param name="name">Custom name to get</param>
<param name="baseRow">Base row index for computing relative cell references</param>
<param name="baseColumn">Base column index for computing relative cell references</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetCustomName(System.String)">
<summary>
Gets a named expression from the model.
</summary>
<param name="name">Custom name to get</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetCustomNameEnumerator">
<summary>
Gets an IEnumerator that enumerates through the names of the named expressions in the model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.SuspendFormulaParsing">
<summary>
Suspends parsing of formulas.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.ResumeFormulaParsing">
<summary>
Resumes parsing of formulas and parses all formulas set while parsing was suspended.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.IsNumber(System.Object)">
<summary>
Determines whether the specified value is a numeric data type.
</summary>
<param name="value">Value of which to determine data type</param>
<returns>True if the value is numeric; otherwise false</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GoalSeek(System.Int32,System.Int32,FarPoint.Win.Spread.Model.DefaultSheetDataModel,System.Int32,System.Int32,System.Double)">
<summary>
Attempt to find value for one cell that produces the desired formula result
in another cell.
</summary>
<param name="variableRow">Row index of cell that contains value to adjust</param>
<param name="variableColumn">Column index of cell that contains value to adjust</param>
<param name="formulaDataModel">Data model of cell that contains formula</param>
<param name="formulaRow">Row index of cell that contains formula</param>
<param name="formulaColumn">Column index of cell that contains formula</param>
<param name="desiredResult">Formula result you wish to achieve</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetAggregationResult(System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.Model.AggregationType,System.String)">
<summary>
Calculates value based on aggregation type and forms value with aggregation format
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="aggType">Aggregation type</param>
<param name="aggformula">Aggregation formula</param>
<returns>The calculated value in form of aggregation format</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.GetAggregationType(System.Int32)">
<summary>
Gets the AggregationType, as a string value, at the specified column.
</summary>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.SetAggregationType(System.Int32,FarPoint.Win.Spread.Model.AggregationType)">
<summary>
Sets the AggregationType, as a enum value, at the specified column.
If you pass null, it will clear the AggregationType from that column.
</summary>
<param name="column">Column index</param>
<param name="value">AggregationType to be set, as a enum value</param>
<exception cref="T:FarPoint.Win.Spread.Model.ParseException">
Specified value is not a valid AggregationType
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.OnAggregate(FarPoint.Win.Spread.Model.AggregateArgs)">
<summary>
Raises the Changed event, and permits derived classes to handle
the event without attaching a delegate.
</summary>
<param name="e">AggregateArgs object that contains event data</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.Parent">
<summary>
Gets or sets the parent data source support object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.ParentRowIndex">
<summary>
Gets the index of the row in the parent data model associated with this child data model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.ParentRelationName">
<summary>
Gets the name of the data relation being used for a hierarchical display of data.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.ChildRelationCount">
<summary>
Gets the number of the child data relations for a hierarchical display of data.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.DataSource">
<summary>
Gets or sets the data source.
</summary>
<exception cref="T:System.ArgumentException">Data source is empty</exception>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.DataMember">
<summary>
Gets or sets the data member (table name) to use for data.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.ItemType">
<summary>
Gets or sets the type of the object in the list for the list data source.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.RowCount">
<summary>
Gets or sets the number of rows in the model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.ColumnCount">
<summary>
Gets or sets the number of columns in the model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.NonEmptyColumnCount">
<summary>
Gets the number of columns in the model containing data (bound or unbound).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.NonEmptyRowCount">
<summary>
Gets the number of rows in the model containing data (bound or unbound).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.Name">
<summary>
Gets or sets the name of the data model.
</summary>
<exception cref="T:System.ArgumentNullException">
No name is specified; name is a null reference (Nothing in Visual Basic)
</exception>
</member>
<member name="E:FarPoint.Win.Spread.Model.DefaultSheetDataModel.NameChanged">
<summary>
Occurs when the name of the data model changes.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Model.DefaultSheetDataModel.NameChanging">
<summary>
Occurs when the name of the data model is changing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.ReferenceStyle">
<summary>
Gets or sets the cell reference style
for cells with formulas.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.AutoCalculation">
<summary>
Gets or sets whether the control automatically recalculates each formula in the sheet
when the contents of dependent cells change.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.Iteration">
<summary>
Gets or sets whether circular references are evaluated.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.MaximumIterations">
<summary>
Gets or sets the maximum number of iterations for calculations with circular references.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified number of iterations is out of range; must be an integer between 1 and 32767
</exception>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.MaximumChange">
<summary>
Gets or sets the maximum amount of change below which to stop iterating
for caclulations with circular references.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified amount is out of range; must be zero or more
</exception>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CanSerializeXml">
<summary>
Gets whether the object in its entirety can be rendered with XML without losing any information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.AutoGenerateColumns">
<summary>
Gets or sets whether to generate the columns automatically based on the data source.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.EnumValues">
<summary>
Internal use only. Specifies the enum values.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.EnumFormulas">
<summary>
Internal use only. Specifies the enum formulas.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.EnumRowFormulas">
<summary>
Internal use only. Specifies the enum row formulas.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.EnumNotes">
<summary>
Internal use only. Specifies the enum notes.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.EnumTags">
<summary>
Internal use only. Specifies the enum tags.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Model.DefaultSheetDataModel.Aggregate">
<summary>
Occurs when the data model aggregate.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.IsDirtyCell(FarPoint.Win.Spread.Model.CellCalc)">
<summary>
Determines whether the given cell is on the list of cells
that need to be recalculated.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.AddDirtyCell(FarPoint.Win.Spread.Model.CellCalc)">
<summary>
Adds the specified cell to the list of cells that
need to be recalculated.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.RemoveDirtyCell(FarPoint.Win.Spread.Model.CellCalc)">
<summary>
Removes the specified cell from the list of cells to be recalculated.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.IsDirtyRow(FarPoint.Win.Spread.Model.RowCalc)">
<summary>
Determines whether the specified row is on the list of rows
that need to be recalculated.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.AddDirtyRow(FarPoint.Win.Spread.Model.RowCalc)">
<summary>
Adds the specified row to the list of rows that
need to be recalculated.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.RemoveDirtyRow(FarPoint.Win.Spread.Model.RowCalc)">
<summary>
Removes the specified row from the list of rows to be recalculated.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.IsDirtyColumn(FarPoint.Win.Spread.Model.ColumnCalc)">
<summary>
Determines whether the specified column is on the list of columns
that need to be recalculated.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.AddDirtyColumn(FarPoint.Win.Spread.Model.ColumnCalc)">
<summary>
Adds the specified column to the list of columns that
need to be recalculated.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.RemoveDirtyColumn(FarPoint.Win.Spread.Model.ColumnCalc)">
<summary>
Removes the specified column from the list of columns to be recalculated.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.IsAdjustCell(FarPoint.Win.Spread.Model.CellCalc)">
<summary>
Determines whether the given cell is on the list of cells
that need to be adjusted.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.AddAdjustCell(FarPoint.Win.Spread.Model.CellCalc)">
<summary>
Adds the specified cell to the list of cells that
need to be adjusted.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.RemoveAdjustCell(FarPoint.Win.Spread.Model.CellCalc)">
<summary>
Removes the specified cell from the list of cells to be adjusted.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.IsAdjustRow(FarPoint.Win.Spread.Model.RowCalc)">
<summary>
Determines whether the specified row is on the list of rows
that need to be adjusted.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.AddAdjustRow(FarPoint.Win.Spread.Model.RowCalc)">
<summary>
Adds the specified row to the list of rows that
need to be adjusted.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.RemoveAdjustRow(FarPoint.Win.Spread.Model.RowCalc)">
<summary>
Removes the specified row from the list of rows to be adjusted.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.IsAdjustColumn(FarPoint.Win.Spread.Model.ColumnCalc)">
<summary>
Determines whether the specified column is on the list of columns
that need to be adjusted.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.AddAdjustColumn(FarPoint.Win.Spread.Model.ColumnCalc)">
<summary>
Adds the specified column to the list of columns that
need to be adjusted.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.RemoveAdjustColumn(FarPoint.Win.Spread.Model.ColumnCalc)">
<summary>
Removes the specified column from the list of columns to be adjusted.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.IsVolatileCell(FarPoint.Win.Spread.Model.CellCalc)">
<summary>
Determines whether the given cell is on the list of cells
that need to be recalculated.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.AddVolatileCell(FarPoint.Win.Spread.Model.CellCalc)">
<summary>
Adds the specified cell to the list of cells that
need to be recalculated.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.RemoveVolatileCell(FarPoint.Win.Spread.Model.CellCalc)">
<summary>
Removes the specified cell from the list of cells to be recalculated.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.IterationChange(System.Object,System.Object)">
<summary>
Determines the amount of change during an iteration.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.Recalculate">
<summary>
Evaluates the formulas in the sheet that have changed since the last calculation cycle.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.AddCustomFunction(FarPoint.CalcEngine.FunctionInfo)">
<summary>
Adds a new user-defined custom function to the model for use in formulas.
</summary>
<param name="functionInfo">Specifies the user-defined Function object to add</param>
<remarks>User-defined Function class must be marked with the Serializable attribute
or an exception occurs if the data model is saved to view state, a file, or otherwise serialized.</remarks>
<exception cref="T:System.ArgumentNullException">
No function is specified; function is a null reference (Nothing in Visual Basic)
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.RemoveCustomFunction(System.String)">
<summary>
Removes a user-defined custom function from the model.
</summary>
<param name="name">Name of the user-defined custom function to remove</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.ClearCustomFunctions">
<summary>
Removes all user-defined custom functions from the model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.GetCustomFunction(System.String)">
<summary>
Gets a user-defined custom function from the model.
</summary>
<param name="name">Name of the user-defined custom function to get</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.GetCustomFunctionEnumerator">
<summary>
Gets an IEnumerator that enumerates through the names of the custom functions in the model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.AddCustomName(System.String,System.String,System.Int32,System.Int32)">
<summary>
Adds a named expression to the model for use in formulas.
</summary>
<param name="name">Name of the expression to add (used in formulas to reference the value)</param>
<param name="value">Value of the expression (used in formulas for evaluation)</param>
<param name="baseRow">Base row index for computing relative cell references</param>
<param name="baseColumn">Base column index for computing relative cell references</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.AddCustomName(System.String,FarPoint.CalcEngine.Expression)">
<summary>
Adds a named expression to the model for use in formulas.
</summary>
<param name="name">Name of the expression to add (used in formulas to reference the value)</param>
<param name="value">Expression object to add</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.RemoveCustomName(System.String)">
<summary>
Removes a named expression from the model.
</summary>
<param name="name">User-defined custom name to remove</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.ClearCustomNames">
<summary>
Removes all named expressions from the model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.GetCustomName(System.String,System.Int32,System.Int32)">
<summary>
Gets a named expression from the model with the specified base index for relative cell references.
</summary>
<param name="name">Custom name to get</param>
<param name="baseRow">Base row index for computing relative cell references</param>
<param name="baseColumn">Base column index for computing relative cell references</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.GetCustomName(System.String)">
<summary>
Gets a named expression from the model.
</summary>
<param name="name">Custom name to get</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.GetCustomNameEnumerator">
<summary>
Gets an IEnumerator that enumerates through the names of the named expressions in the model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.ReferenceStyle">
<summary>
Gets or sets the cell reference style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.AutoCalculation">
<summary>
Gets or sets whether the sheet recalculates each
formula when the contents of dependent cells change.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.Iteration">
<summary>
Gets or sets whether circular references are evaluated.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.MaximumIterations">
<summary>
Gets or sets the maximum number of iterations.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified number of iterations is out of range; must be between 1 and 32767
</exception>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetDataModel.CalculationController.MaximumChange">
<summary>
Gets or sets the maximum amount of change below which
iterations stop.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified amount is out of range; must be zero or more
</exception>
</member>
<member name="T:FarPoint.Win.Spread.Model.DefaultSheetDataModel.DataModelEnumeratorType">
<summary>
Internal use only. Specifies the type of data model enumerator.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.DefaultSheetDataModel.DataModelEnumeratorType.Values">
<summary>
Enumerate values.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.DefaultSheetDataModel.DataModelEnumeratorType.Formulas">
<summary>
Enumerate formulas.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.DefaultSheetDataModel.DataModelEnumeratorType.RowFormulas">
<summary>
Enumerate row formulas.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.DefaultSheetDataModel.DataModelEnumeratorType.Notes">
<summary>
Enumerate cell notes.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.DefaultSheetDataModel.DataModelEnumeratorType.Tags">
<summary>
Enumerate application tags.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.DefaultSheetDataModel.DefaultSheetDataModelEnumerator">
<summary>
Internal use only. Represents the object enumerator for the default sheet data model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.DefaultSheetDataModelEnumerator.#ctor(FarPoint.Win.Spread.Model.DefaultSheetDataModel,FarPoint.Win.Spread.Model.DefaultSheetDataModel.DataModelEnumeratorType)">
<summary>
Internal use only. Creates a new default sheet data model enumerator.
</summary>
<param name="model">Sheet data model</param>
<param name="type">Enumerator type</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.DefaultSheetDataModelEnumerator.IsRowUsed(System.Int32)">
<summary>
Determines whether the specified row is not empty.
</summary>
<param name="row">Index of row to check</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.DefaultSheetDataModelEnumerator.NextNonEmptyRow(System.Int32)">
<summary>
Gets the index of the next non-empty row after the specified row index.
</summary>
<param name="row">Row index to start searching after (-1 to start at row 0)</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetDataModel.DefaultSheetDataModelEnumerator.NextNonEmptyColumnInRow(System.Int32,System.Int32)">
<summary>
Gets the index of the next column in a specified row that contains data.
</summary>
<param name="row">Row index to search</param>
<param name="column">Column index before the column to start searching (-1 to start at column 0)</param>
</member>
<member name="T:FarPoint.Win.Spread.Model.ColumnInfo">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.ColumnInfo.#ctor(System.String,System.Type)">
<summary>
Internal use only. Creates a ColumnInfo object.
</summary>
<param name="columnName"></param>
<param name="dataType"></param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ColumnInfo.#ctor(System.String,System.Type,System.Int32)">
<summary>
Internal use only. Creates a ColumnInfo object.
</summary>
<param name="columnName"></param>
<param name="dataType"></param>
<param name="index"></param>
</member>
<member name="P:FarPoint.Win.Spread.Model.ColumnInfo.ColumnName">
<summary>
Internal use only. Gets or sets the column name.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.ColumnInfo.DataType">
<summary>
Internal use only. Gets or sets the type of data.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.ColumnInfo.Index">
<summary>
Internal use only. Gets or sets the index of the column.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.RangesCalc">
<summary>
Internal use only. Represents table of ranges that have listeners.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.RangesCalc.CellListenerEntry">
<summary>
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.RangesCalc.RowListenerEntry">
<summary>
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.RangesCalc.ColumnListenerEntry">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFileOperations.VerifyFile(System.String)">
<summary>
Verify the file exists and can be opened.
</summary>
<param name="fileName">Path and name of file</param>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFileOperations.IsExcelFile(System.String,FarPoint.Excel.ExcelWorkbookType@,System.Boolean@)">
<param name="isEncrypt">Is the file encrypted?</param>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFileOperations.OpenExcel(System.String,System.IO.Stream,System.Int32,System.String,System.Int32,System.String,FarPoint.Excel.ExcelOpenFlags,FarPoint.Excel.ExcelWarningList,System.String)">
<summary>
Internal use only. Open an Excel file.
</summary>
<param name="fileName"></param>
<param name="stream"></param>
<param name="spreadSheetIndex"></param>
<param name="spreadSheetName"></param>
<param name="excelSheetIndex"></param>
<param name="excelSheetName"></param>
<param name="openFlags"></param>
<param name="warningList"></param>
<exception cref="T:FarPoint.Excel.ExcelException">Spreadsheet name not found</exception>
<exception cref="T:FarPoint.Excel.ExcelException">Spreadsheet index out of range</exception>
<exception cref="T:FarPoint.Excel.ExcelException">Excel sheet index out of range</exception>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFileOperations.GetExcelSheetNames(System.String,System.String)">
<summary>
Gets an array of sheet names from the specified Excel file.
</summary>
<param name="fileName">Path and filename of Excel file.</param>
<returns>Returns a string array containing the names of the Excel sheets in the specified Excel file.</returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFileOperations.SaveExcel(System.String,FarPoint.Win.Spread.Model.IncludeHeaders,FarPoint.Excel.ExcelWarningList)">
<summary>
Saves the contents of the FarPoint Spread component to the specified Excel file.
</summary>
<param name="fileName">Path and file name of file to save</param>
<param name="includeHeaders">Specifies the headers to be exported as data</param>
<param name="warningList">Warning messages</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFileOperations.SaveExcel(System.String,System.IO.Stream,FarPoint.Win.Spread.Model.IncludeHeaders,FarPoint.Excel.ExcelWarningList)">
<summary>
Saves the contents of the FarPoint Spread component to the specified Excel file.
</summary>
<param name="fileName">Path and name of file</param>
<param name="stream">Stream</param>
<param name="includeHeaders">Whether to include headers</param>
<param name="warningList">List of Excel warnings</param>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFileOperations.SaveExcel(System.String,FarPoint.Excel.ExcelSaveFlags,FarPoint.Excel.ExcelWarningList,System.String)">
<summary>
Saves the contents of the FarPoint Spread component to the specified Excel file.
</summary>
<param name="fileName">Path and file name of file to save</param>
<param name="saveFlags">Flags to specify Spread elements to include or exlude from the save</param>
<param name="warningList">Warning messages</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFileOperations.SaveExcel(System.String,System.IO.Stream,FarPoint.Excel.ExcelSaveFlags,FarPoint.Excel.ExcelWarningList,System.String)">
<summary>
Saves the contents of the FarPoint Spread component to the specified Excel file.
</summary>
<param name="fileName">Path and file name of file to save</param>
<param name="stream">Stream to save</param>
<param name="saveFlags">Flags to specify Spread elements to include or exlude from the save</param>
<param name="warningList">Warning messages</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFileOperations.IsExcelStream(System.IO.Stream,FarPoint.Excel.ExcelWorkbookType@,System.Boolean@)">
<summary>
Determines if the specified stream and workbook is an Excel stream.
</summary>
<param name="stream">Stream</param>
<param name="workbookType">Workbook type</param>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFileOperations.GetExcelSheetNames(System.IO.Stream,System.String)">
<summary>
Gets an array of sheet names from the specified Excel file.
</summary>
<param name="stream">Stream to get the sheet names from</param>
<returns>Returns a string array containing the names of the Excel sheets in the specified Excel file.</returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFileOperations.SaveExcel(System.IO.Stream,FarPoint.Excel.ExcelSaveFlags,FarPoint.Excel.ExcelWarningList,System.String)">
<summary>
Saves the contents of the FarPoint Spread component to the specified Excel file.
</summary>
<param name="stream">Stream</param>
<param name="saveFlags">Excel save flags</param>
<param name="warningList">List of Excel warnings</param>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFileOperations.CopyOpeningExcelFilesFrom(FarPoint.Win.Spread.ExcelFileOperations)">
<summary>
Copies the opening excel files from source excel file operations.
</summary>
<param name="excelFileOperations">The excel file operation.</param>
</member>
<member name="T:FarPoint.Win.Spread.DrawingUtils">
<summary>
format converter class
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DrawingUtils.GetFloat(System.Int32)">
<summary>
Gets the float value from fixed-point 16.16 number.
</summary>
<param name="number16Point16">The fixed-point 16.16 number.</param>
<returns>the real value</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingUtils.Get16Point16Number(System.Single)">
<summary>
Get 16.16 number from float number.
</summary>
<param name="value">The float number.</param>
<returns>the 16.16 number.</returns>
</member>
<member name="M:FarPoint.Win.Spread.DrawingUtils.GetColor(System.Int32)">
<summary>
Gets the color.
</summary>
<param name="fourByteLong">Four-byte long</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingUtils.GetPaletteIndex(System.Int32)">
<summary>
Gets the index of the color in the palette.
</summary>
<param name="fourByteLong">Four-byte long</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingUtils.GetRotateRec(System.Single,System.Drawing.RectangleF@)">
<summary>
Gets the rotation rectangle.
</summary>
<param name="angle">Angle</param>
<param name="m_Rec">Rectangle</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingUtils.GetRotateRecAt(System.Single,System.Drawing.PointF,System.Drawing.RectangleF@)">
<summary>
Gets the rotation rectangle at a point.
</summary>
<param name="angle">Angle</param>
<param name="rotatePoint">Rotate point</param>
<param name="m_Rec">Rectangle</param>
</member>
<member name="M:FarPoint.Win.Spread.DrawingUtils.TrigonometricAngleIIorIV(System.Single)">
<summary>
Specifies whether the angle belongs to trigonometric II or IV.
</summary>
<param name="angle">Angle</param>
</member>
<member name="T:FarPoint.Win.Spread.Excel">
<summary>
Excel class
</summary>
</member>
<member name="T:FarPoint.Win.Spread.IParseFormatHandler">
<summary>
Interface that supports handling the parsing of a format.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.#ctor(FarPoint.Win.Spread.FpSpread)">
<summary>
Excel - constructor
</summary>
<param name="spread"></param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.#ctor(FarPoint.Win.Spread.SheetView)">
<summary>
Excel - constructor
</summary>
<param name="sheet">Sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.IndexMap(System.Int32)">
<summary>
Map to a real sheetView when Spread opens Excel File with API OpenExcel which contains params spreadSheetIndex and excelSheetIndex
</summary>
<param name="sheet">Sheet Index</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Excel.Finish">
<summary>
Finish - called from the Excel namespace after completion of the Load or Save.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.IsExcelFile(System.String,FarPoint.Excel.ExcelWorkbookType@,System.Boolean@)">
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Excel.Open(System.String,System.Int32,System.Int32,FarPoint.Excel.ExcelOpenFlags)">
<summary>
Opens the specified parts of the spreadsheet in the specified file at the specified sheet.
</summary>
<param name="fileName">File name</param>
<param name="spreadSheetIndex">Sheet index of Spread sheet</param>
<param name="excelSheetIndex">Sheet index of Excel BIFF formatted file</param>
<param name="openFlags">Flags specifying which parts to load</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.Open(System.String,System.Int32,System.Int32,FarPoint.Excel.ExcelOpenFlags,System.String)">
<param name="password">password</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.GetSheetNames(System.String,System.String)">
<summary>
Gets the names of the sheets in the Excel BIFF formatted file.
</summary>
<param name="fileName">File name</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.Save(System.String)">
<summary>
Saves to an Excel BIFF formatted file.
</summary>
<param name="fileName">File name</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.Save(System.String,FarPoint.Excel.ExcelSaveFlags)">
<summary>
Saves to an Excel BIFF formatted file the specified parts.
</summary>
<param name="fileName">File name</param>
<param name="saveFlags">Which parts of the spreadsheet to save</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.Save(System.String,FarPoint.Excel.ExcelSaveFlags,System.String)">
<summary>
Saves to an Excel BIFF formatted file the specified parts.
</summary>
<param name="fileName">File name</param>
<param name="password">password</param>
<param name="saveFlags">Which parts of the spreadsheet to save</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.IsExcelStream(System.IO.Stream,FarPoint.Excel.ExcelWorkbookType@,System.Boolean@)">
<summary>
Determines whether the stream is Excel BIFF formatted.
</summary>
<param name="stream">Stream</param>
<param name="workbookType">Workbook type</param>
<param name="isEncrypt">isEncrypt</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.Open(System.IO.Stream,System.Int32,System.Int32,FarPoint.Excel.ExcelOpenFlags,System.String)">
<summary>
Opens the specified stream.
</summary>
<param name="stream">Stream</param>
<param name="spreadSheetIndex">Sheet index of Spread sheet</param>
<param name="excelSheetIndex">Sheet index of Excel BIFF formatted file</param>
<param name="openFlags">Flags specifying which parts to load</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.GetSheetNames(System.IO.Stream,System.String)">
<summary>
Gets the names of the sheets from the specified stream.
</summary>
<param name="stream">Specified stream</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.Save(System.IO.Stream)">
<summary>
Saves to an Excel BIFF formatted stream.
</summary>
<param name="stream">Stream</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.Save(System.IO.Stream,FarPoint.Excel.ExcelSaveFlags)">
<summary>
Saves to an Excel BIFF formatted stream the specified parts.
</summary>
<param name="stream">Stream</param>
<param name="saveFlags">Specified parts to save</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.Save(System.IO.Stream,FarPoint.Excel.ExcelSaveFlags,System.String)">
<summary>
Saves to an Excel BIFF formatted stream the specified parts.
</summary>
<param name="stream">Stream</param>
<param name="saveFlags">Specified parts to save</param>
<param name="password">password</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSet1904(System.Boolean)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetExternName(System.String)">
<summary>
Internal use only.
</summary>
<param name="name">Name</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetConditionalFormat(System.Int16,System.Int32[],System.Int32[],System.Int32[],System.Int32[],System.Byte,FarPoint.Excel.IExcelXF,System.Boolean,System.Drawing.FontStyle,System.Int32,System.Int32,System.Byte[],System.Byte[])">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="firstRows">Array list of first rows</param>
<param name="lastRows">Array list of last rows</param>
<param name="firstCols">Array list of first columns</param>
<param name="lastCols">Array list of last columns</param>
<param name="comparisonOperator">Comparison operator</param>
<param name="xf">Excel format (XF)</param>
<param name="isFontSet">Whether the font is set</param>
<param name="fontStyle">Style of the font</param>
<param name="fontHeight">Height of the font</param>
<param name="patternStyle">Pattern style</param>
<param name="firstCondition">First condition</param>
<param name="lastCondition">Last condition</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetCustomNames(System.Int16,System.Collections.ArrayList)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="customNameList">Array list of custom names</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetSaveExtLinks(System.Boolean)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelAddSheet(System.String,System.Byte)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetCalcCount(System.Int16,System.Int32)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetCalcMode(System.Int16,System.Int16)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetHeader(System.Int16,System.String)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="header">Header</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetFooter(System.Int16,System.String)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="footer">Footer</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetRowPageBreaks(System.Int16,System.Int32[])">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="pageBreaks">Array of page breaks</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetColumnPageBreaks(System.Int16,System.Int32[])">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="pageBreaks">Array of page breaks</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetLeftMargin(System.Int16,System.Double)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="margin">Margin</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetTopMargin(System.Int16,System.Double)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="margin">Margin</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetRightMargin(System.Int16,System.Double)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="margin">Margin</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetBottomMargin(System.Int16,System.Double)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="margin">Margin</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetPrintGridlines(System.Int16,System.Boolean)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="printGridlines">Whether to print grid lines</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetPrintHeaders(System.Int16,System.Boolean)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="printHeaders">Whether to print headers</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetPageSetup(System.Int16,System.Int16,System.Int16,System.Int16,System.Int16,System.Int16,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Byte,System.Boolean,System.Boolean,System.Int16,System.Int16,System.Double,System.Double,System.Int16,System.Boolean)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetPageSetup(System.Int16,System.Int16,System.Int16,System.Int16,System.Int16,System.Int16,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Int16,System.Int16,System.Double,System.Double,System.Int16,System.Boolean)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetCommentObjId">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetCommentObjId(System.Int16)">
<summary>
Internal use only.
</summary>
<param name="objId">Object identifier</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetProtect(System.Int16,System.Boolean)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetWindow(System.Int16,System.Int16,System.Int16,System.Int16,System.Boolean,System.Boolean)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetTabs(System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetScroll(System.Boolean,System.Boolean)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelBof(System.Int16)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetCellFormat(System.Int16,System.Int32,System.Int32,System.Int32,System.Type)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetCellNote(System.Int16,System.Int32,System.Int32,System.Boolean,System.String)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetCellValue(System.Int16,System.Int32,System.Int32,System.Object)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetCellFormula(System.Int16,System.Int32,System.Int32,System.IO.BinaryReader,System.IO.BinaryReader,System.Int32,System.Int32)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="row">Row index</param>
<param name="col">Column index</param>
<param name="rdr">Binary reader</param>
<param name="rdrExtra">Extra binary reader</param>
<param name="rowFirst">First row index</param>
<param name="colFirst">First column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetColInfo(System.Int16,System.Int16,System.Int16,System.Int16,System.Int32,System.Boolean,System.Byte,System.Boolean,System.Boolean)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetDefColWidth(System.Int16,System.Int16)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetDefaultRowHeight(System.Int16,System.Int16)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetDelta(System.Int16,System.Double)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="delta">Delta</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetDimensions(System.Int16,System.Int32,System.Int32,System.Int16,System.Int16)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetDisplayElements(System.Int16,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetIteration(System.Int16,System.Int16)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="iteration">Iteration</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetMergeCells(System.Int16,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetPageSetup(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Int32,System.Double,System.Double,System.Int32)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetRefMode(System.Int16,System.Int32)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetRowColGridColor(System.Int16,System.Drawing.Color)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetRowInfo(System.Int16,System.Int32,System.Int32,System.Int32,System.Int16,System.Int32,System.Byte,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetSelection(System.Int16,System.Byte,System.Int32,System.Int32,System.Int32,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetTopLeft(System.Int16,System.Int32,System.Int32)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetWindow(System.Drawing.Rectangle,System.Boolean,System.Boolean)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetXF(FarPoint.Excel.IExcelXF)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetAutoFilter(System.Int16,System.Int32,System.Int32,System.Int32,System.Int32,System.Collections.ArrayList)">
<summary>
Excels the set auto filter.
</summary>
<param name="sheet">Sheet</param>
<param name="startColumn">Start column</param>
<param name="endColumn">End column</param>
<param name="startRow">Starting row index</param>
<param name="endRow">Ending row index</param>
<param name="filterString">Filter string</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetAutoFilter(System.Int16,System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Collections.ArrayList@,System.Collections.Hashtable@)">
<summary>
Excels the get auto filter.
</summary>
<param name="sheet">Sheet</param>
<param name="startColumn">Starting column</param>
<param name="endColumn">Ending column</param>
<param name="startRow">Starting row</param>
<param name="endRow">Ending row</param>
<param name="filterStringList">List of filter strings</param>
<param name="filterOutRows">Filtererd-out rows</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetConditionalFormat(System.Int16,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,System.Byte,FarPoint.Excel.IExcelXF,System.Boolean,System.Drawing.FontStyle,System.Int32,System.String,System.String)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="firstRows">Array list of first rows</param>
<param name="lastRows">Array list of last rows</param>
<param name="firstCols">Array list of first columns</param>
<param name="lastCols">Array list of last columns</param>
<param name="comparisonOperator">Comparison operator</param>
<param name="xf">Excel format (XF)</param>
<param name="isFontSet">Whether the font is set</param>
<param name="fontStyle">Style of the font</param>
<param name="fontHeight">Height of the font</param>
<param name="firstCondition">First condition</param>
<param name="lastCondition">Last condition</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetDefColWidthXML(System.Int16,System.Int16@)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetStyle(FarPoint.Excel.ExcelXMLStyle,System.String,System.Int32)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.CreateComplexBorderSide(System.Drawing.Color,System.Int32,System.Int32)">
<summary>
Creates the complex border side.
</summary>
<param name="color">Border side color</param>
<param name="width">Width</param>
<param name="index">Index</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetDefaultRowHeight(System.Int16,System.Double@)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetDefaultRowHeight(System.Int16,System.Double)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetDefColWidth(System.Int16,System.Double@)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetDefColWidth(System.Int16,System.Double)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetAxisInfoXml(System.Int16,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,System.Boolean)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetColInfo(System.Int16,System.Int32,System.Int32,System.Int32,System.Double,System.Boolean,System.Byte,System.Boolean,System.Boolean)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetRowInfo(System.Int16,System.Int32,System.Int32,System.Int32,System.Int32,System.Double,System.Boolean,System.Byte,System.Boolean)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetCellFormat(System.Int16,System.Int32,System.Int32,System.Int32)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetVisible(System.Int16,System.Boolean)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="isSheetVisible">Whether the sheet is visible</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetCustomNames(System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList)">
<summary>
Internal use only.
</summary>
<param name="sheetIndexList">Array list of sheet indexes</param>
<param name="customNameList">List of custom names</param>
<param name="customNameDefinitionList">List of custom name definitions</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetColumnHeaderRowCount(System.Int16)">
<summary>
Excels the get column header row count.
</summary>
<param name="sheet">Sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetRowHeaderColumnCount(System.Int16)">
<summary>
Excels the get row header column count.
</summary>
<param name="sheet">Sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetValidationData(System.Int16,System.Collections.ArrayList,System.String,System.Boolean)">
<summary>
Excels the set validation data.
</summary>
<param name="sheet">Sheet</param>
<param name="cellRgnList">Array list of cell ranges</param>
<param name="formula">Formula</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetCellFormula(System.Int16,System.Int32,System.Int32,System.String,System.Collections.ArrayList)">
<summary>
Excels the set cell formula.
</summary>
<param name="sheet">Sheet</param>
<param name="row">Row index</param>
<param name="col">Column index</param>
<param name="formula">Formula</param>
<param name="sharedList">Shared list</param>
</member>
<member name="F:FarPoint.Win.Spread.Excel.externSources">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetExternSheetInfo(System.Collections.ArrayList)">
<summary>
Internal use only.
</summary>
<param name="sheetList">Array list of sheets</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetCalcMode(System.Int16,System.Int16@)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="autoRecalc">Auto recalc</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetCellInfo(System.Int16,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="cellCoord">Array list of cell coordinates</param>
<param name="cellValue">Array list of cell values</param>
<param name="cellFormula">Array list of cell formulas</param>
<param name="formatIndex">Array list of format indexes</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetAxisInfo(System.Int16,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,System.Boolean,System.Int32@)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetConditionalFormats(System.Int16,System.Int32[]@,System.Int32[]@,System.Collections.ArrayList[]@,System.Collections.ArrayList[]@,System.Collections.ArrayList[]@,System.Collections.ArrayList[]@)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="rows">Array of row indexes</param>
<param name="columns">Array of column indexes</param>
<param name="xfLists">Array list of Excel formats</param>
<param name="firstConditionLists">Array list of first conditions</param>
<param name="lastConditionLists">Array list of second conditions</param>
<param name="opLists">Array list of operators</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetCalcCount(System.Int16,System.Int16@)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetDelta(System.Int16,System.Double@)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetDefaultRowHeight(System.Int16,System.Int16@)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetDefColWidth(System.Int16,System.Int16@)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetDimensions(System.Int16,System.Int32@,System.Int32@)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetDisplayElements(System.Int16,System.Boolean@,System.Boolean@,System.Boolean@,System.Boolean@,System.Boolean@)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetExternNames(System.Collections.ArrayList)">
<summary>
Internal use only.
</summary>
<param name="externNames">Array list of external names</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetFontInfo(System.Boolean@)">
<summary>
Internal use only.
</summary>
<param name="getDefaultFontNameFromResource">Whether to get the default font name from the resource</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetFormats(System.Collections.ArrayList)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetIteration(System.Int16,System.Int16@)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="iteration">Iteration</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetIterationCount(System.Int16,System.Int32@)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="iterCount">Number of iterations</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.FindModifiedCells(FarPoint.Win.Spread.Model.ISheetStyleModel,FarPoint.Win.Spread.Model.ISheetDataModel,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Internal use only.
</summary>
<param name="styleModel"></param>
<param name="dataModel"></param>
<param name="sheetIndex"></param>
<param name="modelsRowCount"></param>
<param name="modelsColCount"></param>
<param name="startingRow"></param>
<param name="startingColumn"></param>
<param name="firstRowToWrite"></param>
<param name="firstColToWrite"></param>
<param name="isRowHeader"></param>
<param name="isColumnHeader"></param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetMergeCells(System.Int16,System.Int32@,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList)">
<summary>
Internal use only.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="count">Number of sheet</param>
<param name="rowFirsts">Array list of first rows</param>
<param name="rowLasts">Array list of last rows</param>
<param name="colFirsts">Array list of first columns</param>
<param name="colLasts">Array list of last columns</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.GetAutoMergeCellSpanModel(FarPoint.Win.Spread.SheetView)">
<summary>
Get AutoMerge Cell SpanModel from View Point
</summary>
<param name="sheet"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Excel.GetMergeCells(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.Model.ISheetSpanModel,System.Collections.Hashtable,System.Int32@,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList)">
<summary>
Get MergeCells from SpanModel
</summary>
<param name="spanModel">SpanModel</param>
<param name="spanCells"></param>
<param name="count"></param>
<param name="rowFirsts"></param>
<param name="rowLasts"></param>
<param name="colFirsts"></param>
<param name="colLasts"></param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.GetCustomNames">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetNames(System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,System.Boolean)">
<summary>
Internal use only.
</summary>
<param name="names">Array list of names</param>
<param name="definitions">Array list of definitions</param>
<param name="uniqueSheets">Array list of unique sheets</param>
<param name="haveExternNames">Whether to have external names</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetRefMode(System.Int16,System.Int32@)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetGutters(System.Int16,System.Int32@,System.Int32@)">
<summary>
Gets the row and column gutter for exporting to an Excel file.
</summary>
<param name="sheet">Sheet to get gutter</param>
<param name="iLevelRwMac">Maximum level of row gutter</param>
<param name="iLevelColMac">Maximum level of column gutter</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetRowColGridColor(System.Int16)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetSelectionList(System.Int16,System.Collections.ArrayList,System.Drawing.Point@,System.Byte@)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="selectionList">Array list of selections</param>
<param name="activeCell">Location of active cell</param>
<param name="paneIndex">Pane (viewport) index</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetProtect(System.Int16,System.Boolean@)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetSheetCount(System.Int16@)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetSheetInfo(System.Int16,System.Boolean@)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetTopLeft(System.Int16,System.Int32@,System.Int32@)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetWindow(System.Drawing.Rectangle,System.Boolean@,System.Boolean@)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetTabs(System.Boolean@,System.Int32@,System.Int32@,System.Int32@,System.Int32@)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetScroll(System.Boolean@,System.Boolean@)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetFooter(System.Int16,System.Text.StringBuilder)">
<summary>
Internal use only. ExcelGetFooter.
</summary>
<param name="sheet">Sheet</param>
<param name="footer">Footer</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetHeader(System.Int16,System.Text.StringBuilder)">
<summary>
ExcelGetHeader: Internal Use Only.
</summary>
<param name="sheet">Sheet</param>
<param name="header">Header</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetRowPageBreaks(System.Int16,System.Collections.ArrayList)">
<summary>
Internal use only. ExcelGetRowPageBreaks.
</summary>
<param name="sheet">Sheet</param>
<param name="pageBreaks">Page breaks</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetColumnPageBreaks(System.Int16,System.Collections.ArrayList)">
<summary>
Internal use only. ExcelGetColumnPageBreaks.
</summary>
<param name="sheet">Sheet</param>
<param name="pageBreaks">Page breaks</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetLeftMargin(System.Int16,System.Double@)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="margin">Margin</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetTopMargin(System.Int16,System.Double@)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="margin">Margin</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetRightMargin(System.Int16,System.Double@)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="margin">Margin</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetBottomMargin(System.Int16,System.Double@)">
<summary>
Internal use only.
</summary>
<param name="sheet">Sheet</param>
<param name="margin">Margin</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetPrintGridlines(System.Int16,System.Boolean@)">
<summary>
Internal use only. ExcelGetPrintGridlines.
</summary>
<param name="sheet">Sheet</param>
<param name="print">Whether to print grid lines</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetPrintHeaders(System.Int16,System.Boolean@)">
<summary>
Internal use only. ExcelGetPrintHeaders.
</summary>
<param name="sheet">Sheet</param>
<param name="print">Whether to print headers</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetPageSetup(System.Int16,System.Int16@,System.Int16@,System.Int16@,System.Int16@,System.Int16@,System.Boolean@,System.Boolean@,System.Boolean@,System.Boolean@,System.Boolean@,System.Byte@,System.Boolean@,System.Boolean@,System.Int16@,System.Int16@,System.Double@,System.Double@,System.Int16@,System.Boolean@)">
<summary>
Internal use only. ExcelGetPageSetup.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetPageSetup(System.Int16,System.Int16@,System.Int16@,System.Int16@,System.Int16@,System.Int16@,System.Boolean@,System.Boolean@,System.Boolean@,System.Boolean@,System.Boolean@,System.Boolean@,System.Boolean@,System.Boolean@,System.Boolean@,System.Int16@,System.Int16@,System.Double@,System.Double@,System.Int16@,System.Boolean@)">
<summary>
Internal use only. ExcelGetPageSetup.
</summary>
<param name="sheet">Sheet</param>
<param name="paperSize">Paper size</param>
<param name="scale">Scaling factor</param>
<param name="pageStart">Starting page</param>
<param name="fitWidth">Fit width</param>
<param name="fitHeight">Fit height</param>
<param name="leftToRight">Left-to-right orientation</param>
<param name="isPortrait">Whether using portrait layout</param>
<param name="noPls">Whether no pls</param>
<param name="noColor">Whether no color</param>
<param name="draft">Whether draft</param>
<param name="notes">Whether notes</param>
<param name="noOrient">Whether no orientation</param>
<param name="usePage">Whether to use page</param>
<param name="endNotes">whether the comments are printed at the end of the sheet.</param>
<param name="printRes">Print resolution</param>
<param name="vertPrintRes">Vertical print resolution</param>
<param name="numHdr">Header number</param>
<param name="numFtr">Footer number</param>
<param name="copies">Copies number</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.SetFormatType(FarPoint.Excel.FormatType,System.Object)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetCell(System.Int16,System.Int32,System.Int32,System.Object)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.FindStyleInList(System.Collections.ArrayList,FarPoint.Win.Spread.StyleInfo)">
<summary>
Find a style is a list of styles.
</summary>
<param name="styleList">Array (list) of styles</param>
<param name="style">Style information</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.AreStylesEqual(FarPoint.Win.Spread.StyleInfo,FarPoint.Win.Spread.StyleInfo,System.Boolean,System.Drawing.Color,System.Drawing.Color,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String)">
<summary>
Determines whether the style settings of this object are equivalent to the object specified.
</summary>
<param name="s1">First style information to compare</param>
<param name="s2">Second style information to compare</param>
<param name="isParentSet">Whether the parent is set</param>
<param name="backColor">Background color</param>
<param name="foreColor">Text (foreground) color</param>
<param name="isHorizontalAlignmentSet">Whether the horizontal alignment is set</param>
<param name="isVerticalAlignmentSet">Whether the vertical alignment is set</param>
<param name="isFontSet">Whether the font is set</param>
<param name="isBorderSet">Whether the border is set</param>
<param name="isLockedSet">Whether the locked setting is set</param>
<param name="fontName">Name of the font</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetValidationData(System.Int32,System.Int32,System.Collections.ArrayList,System.String[],System.Collections.ArrayList,System.Boolean)">
<summary>
Sets the validation data for a range of cell in the specified sheet.
</summary>
<param name="valSheet">Index of the sheet that contains the validation list cell</param>
<param name="inputSheet">Index of sheet that contains the validation list data</param>
<param name="inputRgn">Input cell range</param>
<param name="valItems">Validation data if data is direct; null otherwise</param>
<param name="valRgnList">Validation cell range list</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetValidationData(System.Int32,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList)">
<summary>
Get validation data from specified sheet.
</summary>
<param name="sheet">Sheet</param>
<param name="m_dvStringArr">The collection of validation data.</param>
<param name="m_dvRowArr">The collection of row for cell validation data.</param>
<param name="m_dvColumnArr">The collection of column for cell validation data.</param>
<param name="m_dvIsEditable">An indicator of whether each cell validation combo is editable.</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetNoteAsShape(System.Int32)">
<summary>
Excels the get excel note as text shape.
</summary>
<param name="sheet">Sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetNoteAsShapeOfCell(FarPoint.Win.Spread.SheetView,System.Collections.ArrayList,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Excels the get note as shape of cell.
Tan added when change to use IOptimizedEnumerationSupport2
</summary>
<param name="sheetView">The sheet view.</param>
<param name="excelNotesAsShapeList">The excel notes as shape list.</param>
<param name="vr">The view row index.</param>
<param name="vc">The view column index.</param>
<param name="mr">The model row index</param>
<param name="mc">The model col index</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetImageCellAsShape(System.Int32)">
<summary>
Gets shape from image cell type.
</summary>
<param name="sheet">The sheet.</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetExcelShape(System.Int32)">
<summary>
Gets excel shape
</summary>
<param name="sheet">the sheet</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetShapeList(System.Int32,FarPoint.Excel.ExcelShape[])">
<summary>
Sets the list of Excel shapes for the specified sheet.
</summary>
<param name="sheet">Sheet</param>
<param name="excelShapeList">Excel shape list</param>
<returns>true if successful; otherwise false.</returns>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetSheetTabColor(System.Int16,System.Drawing.Color)">
<summary>
Sets the Sheet Tab Color
</summary>
<param name="sheet">Sheet index</param>
<param name="backColor">SheetTab BackColor</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetSheetTabColor(System.Int16,System.Drawing.Color@)">
<summary>
Gets the Sheet Tab Color
</summary>
<param name="sheet">Sheet index</param>
<param name="backColor">SheetTab BackColor</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetDrawingObjetsVisible(System.Boolean)">
<summary>
if set hide all in Excel, hide all shapes and charts.
</summary>
<param name="visible"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetDrawingObjectVisble">
<summary>
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelSetShapes(System.Int16,FarPoint.Excel.EntityClassLibrary.DrawingML.CT_OfficeStyleSheet,FarPoint.Excel.EntityClassLibrary.DrawingML.CT_Drawing1,System.Collections.Generic.List{FarPoint.Excel.Blip})">
<summary>
Gets the Excel xml shapes.
</summary>
<param name="sheet">The sheet index.</param>
<param name="themes">The themems.</param>
<param name="drawing">The drawing objects.</param>
<param name="blips">The blips.</param>
<returns>
<c>true</c> if successfully; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetShapes(System.Int16,System.Collections.Generic.List{FarPoint.Excel.EntityClassLibrary.DrawingML.CT_AbsoluteAnchor},System.Collections.Generic.List{FarPoint.Excel.EntityClassLibrary.DrawingML.CT_OneCellAnchor},System.Collections.Generic.List{FarPoint.Excel.EntityClassLibrary.DrawingML.CT_TwoCellAnchor},System.Collections.Generic.List{FarPoint.Excel.Blip})">
<summary>
Sets the Excel xml shapes.
</summary>
<param name="sheet">The sheet index.</param>
<param name="absoluteAnchorList">The absolute anchor list.</param>
<param name="oneCellAnchorList">The one cell anchor list.</param>
<param name="twoCellAnchorList">The two cell anchor list.</param>
<param name="blips">The blips.</param>
<returns>
<c>true</c> if successfully; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Excel.AddExportWarningMessage(System.Int16,System.Int32,System.Int32,System.String,FarPoint.Excel.ExcelWarningCode)">
<summary>
Add warning list when export to excel file
</summary>
<param name="sheet">sheet index</param>
<param name="rowIndex">row index</param>
<param name="colIndex">column index</param>
<param name="message">message</param>
<param name="warningCode">warning code</param>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ExcelGetOffset(System.Int16,System.Double,System.Boolean)">
<summary>
Offset Value for Note Anchor
</summary>
<param name="sheet"></param>
<param name="index"></param>
<param name="isRowOffset"></param>
<returns>Offset Value</returns>
</member>
<member name="P:FarPoint.Win.Spread.Excel.SaveFlags">
<summary>
Gets or sets the flags for specifying what parts of the spreadsheet to save to a file.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Excel.OpenFlags">
<summary>
Gets or sets the flags for specifying what parts of the spreadsheet to open.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Excel.ColInfo.#ctor(System.Int16,System.Int16,System.Int16,System.Int32,System.Boolean,System.Byte,System.Boolean)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ExcelChart.ExcelSetChartName(FarPoint.Win.Spread.SheetView,System.Int16,System.Int32,System.String)">
<summary>
Check Chart Name from Excel Chart
</summary>
<param name="sheetView">SheetView</param>
<param name="chartIndex">Index of Excel Chart</param>
<param name="chartName">Name of Excel Chart</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelChart.ExcelSetPlotAreaLayout(System.Int16,System.Int32,System.Drawing.PointF,System.Drawing.SizeF,System.Boolean,System.Boolean,FarPoint.Excel.PlotAreaType)">
<summary>
</summary>
<param name="sheet"></param>
<param name="chartIndex"></param>
<param name="location"></param>
<param name="size"></param>
<param name="vertical"></param>
<param name="is3DView"></param>
<param name="plotAreaTypes"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelChart.ExcelSetPlotAreaArea(System.Int16,System.Int32,FarPoint.Excel.FillInfo)">
<summary>
Excels the set plot area area.
</summary>
<param name="sheet">The sheet.</param>
<param name="chartIndex">Index of the chart.</param>
<param name="fill">The fill.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelChart.GetDefaulBorder">
<summary>
Excel2003 Automatic Border
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelChart.Init">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ExcelChart.ExcelGetFrame(System.Int32,System.String,System.Boolean)">
<summary>
</summary>
<param name="chartIndex"></param>
<param name="chartName"></param>
<param name="visible"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelChart.GetBiffRotationFromOrthognalOrPerspectiveProjection(System.Single)">
<summary>
Get Rotation for Excel2003 Chart from Orthognal or Perspective Projection Rotation in FpChart
</summary>
<param name="rotation">Roation of PlotArea</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelChart.GetBiffRotationFromObliqueProjection(System.Single)">
<summary>
Get Rotation for Excel2003 Chart from ObliqueProjection Rotation in FpChart
</summary>
<param name="rotation">Roation of PlotArea</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelChart.CheckYPlotArea3DView(FarPoint.Win.Chart.YPlotArea)">
<summary>
It will downgrade 3DView to 2DView in specifal case.
</summary>
<param name="plotArea"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelChart.CheckCurrencySymbol(System.String)">
<summary>
Check the currenct symbol whether it needs use "" to enclose.
</summary>
<param name="currencyString">Currency String</param>
<returns></returns>
</member>
<member name="T:FarPoint.Win.Spread.RangeGroupButtonStyle">
<summary>
Specifies the button style for an outline (range group) of rows or columns.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.RangeGroupButtonStyle.Standard">
<summary>
Displays the standard window button style
</summary>
</member>
<member name="F:FarPoint.Win.Spread.RangeGroupButtonStyle.System">
<summary>
Displays the System button style
</summary>
</member>
<member name="F:FarPoint.Win.Spread.RangeGroupButtonStyle.Enhanced">
<summary>
Displays an enhanced outline (range group) button style
</summary>
</member>
<member name="T:FarPoint.Win.Spread.GroupState">
<summary>
Specifies the status of an outline (range group).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.GroupState.Expanded">
<summary>
Expanded status with the minus sign
</summary>
</member>
<member name="F:FarPoint.Win.Spread.GroupState.Collapsed">
<summary>
Collapsed status with the plus sign
</summary>
</member>
<member name="F:FarPoint.Win.Spread.GroupState.PartCollapsed">
<summary>
Internal use only: Ambiguous (or undetermined) status with the plus sign
</summary>
</member>
<member name="T:FarPoint.Win.Spread.LineSegment">
<summary>
Represents a line segment of an outline (range group).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.LineSegment.#ctor">
<summary>
Represents a line segment of an outline (range group).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.LineSegment.#ctor(System.Int32,System.Int32)">
<summary>
Creates a new line segment with the specified numbers of a given level.
</summary>
<param name="start">Integer value of the start index of this line segment</param>
<param name="end">Integer value of the end index of this line segment</param>
</member>
<member name="M:FarPoint.Win.Spread.LineSegment.#ctor(FarPoint.Win.Spread.LineSegment)">
<summary>
Creates a new line segment with a line segment.
</summary>
<param name="lineSegment">Line segment structure that indicates this line segment</param>
</member>
<member name="M:FarPoint.Win.Spread.LineSegment.Contains(System.Int32)">
<summary>
Checks if the point lies in the line segment.
</summary>
<param name="point">Point for checking</param>
<returns>true if the point lies in the line segment,false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.LineSegment.Contains(FarPoint.Win.Spread.LineSegment)">
<summary>
Checks if the line segment lies in this line segments.
</summary>
<param name="other">Line that is needed to check</param>
<returns>true if the line lies in the line segment,false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.LineSegment.IntersectWith(System.Int32,System.Int32)">
<summary>
Checks if this line intersects with a specified line.
</summary>
<param name="start">Start of the line segment</param>
<param name="end">End of the line segment</param>
<returns>Boolean: true if this line intersects a specified line; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.LineSegment.OffSet(System.Int32)">
<summary>
Adjusts the start and end index of this line segment by the specified value.
</summary>
<param name="value">Amount to offset</param>
</member>
<member name="M:FarPoint.Win.Spread.LineSegment.ToString">
<summary>
Gets the string that represents the line segment.
</summary>
<returns>String that represents the line segment</returns>
</member>
<member name="M:FarPoint.Win.Spread.LineSegment.Equals(System.Object)">
<summary>
Checks if two line segments have the same index.
</summary>
<param name="obj">Other line</param>
<returns>Boolean: true if two lines have the same indexes; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.LineSegment.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<returns>A hash code for the LineSegment</returns>
</member>
<member name="M:FarPoint.Win.Spread.LineSegment.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a serialization information object with the data needed to serialize the Line segment.
</summary>
<param name="info">A System.Runtime.Serialization.SerializationInfo that holds the serialized
data associated with the LineSegment</param>
<param name="context">A System.Runtime.Serialization.StreamingContext that contains the source
and destination of the serialized stream associated with the Linesegment</param>
</member>
<member name="M:FarPoint.Win.Spread.LineSegment.CompareTo(System.Object)">
<summary>
Compares this instance to a specified line segment and returns an indication of their relative values.
</summary>
<param name="obj">Line segment to compare</param>
<returns>A signed number indicating the relative values of this instance and value.
Return Value Description Less than zero This instance is less than value. Zero This
instance is equal to value. Greater than zero This instance is greater than value.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.LineSegment.StartIndex">
<summary>
Gets or sets the start index of this line segment of an outline (range group).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.LineSegment.EndIndex">
<summary>
Gets or sets the end index of this line segment of an outline (range group).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.LineSegment.Length">
<summary>
Gets the length of the line segment of an outline (range group).
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Square">
<summary>
Represents a square for an outline (range group).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Square.#ctor(System.Int32,System.Int32,FarPoint.Win.Spread.RangeGroupButtonStyle)">
<summary>
Initializes a new instance of an outline (range group) square with x-coordinate and y-coordinate.
</summary>
<param name="xc">X-coordinate of the upper-left corner of the square</param>
<param name="yc">Y-coordinate of the upper-left corner of the square</param>
<param name="style">Outline (range group) button style</param>
</member>
<member name="M:FarPoint.Win.Spread.Square.DrawBackground(System.Drawing.Graphics,System.Drawing.Pen,System.Drawing.Brush)">
<summary>
Draws an outline (range group) square.
</summary>
<param name="g">Graphics device for drawing</param>
<param name="pen">Pen for drawing</param>
<param name="brush">Brush for drawing</param>
</member>
<member name="P:FarPoint.Win.Spread.Square.Dimension">
<summary>
Gets or sets the dimension of this outline (range group) square.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Square.X">
<summary>
Gets or sets the x-coordinate of the upper-left corner of this outline (range group) square.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Square.Y">
<summary>
Gets or sets the y-coordinate of the upper-left corner of this outline (range group) square.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.GroupSquare">
<summary>
Represents an outline (range group) square inside the outline area.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GroupSquare.#ctor(System.Int32,System.Int32,FarPoint.Win.Spread.GroupState,FarPoint.Win.Spread.RangeGroupButtonStyle)">
<summary>
Initializes a new instance of an outline (range group) square class with x-coordinate, y-coordinate, and group status.
</summary>
<param name="x">X-coordinate of an outline (range group)</param>
<param name="y">Y-coordinate of an outline (range group)</param>
<param name="groupState">Status of an outline (range group)</param>
<param name="buttonStyle">Button style of an outline (range group)</param>
</member>
<member name="M:FarPoint.Win.Spread.GroupSquare.DrawContent(System.Drawing.Graphics,System.Drawing.Pen)">
<summary>
Draws the content of an outline (range group).
</summary>
<param name="g">Graphics device for drawing</param>
<param name="pen">Pen for drawing</param>
</member>
<member name="P:FarPoint.Win.Spread.GroupSquare.LineDimension">
<summary>
Gets or sets line dimension of an outline (range group).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupSquare.State">
<summary>
Gets or sets status of an outline (range group).
</summary>
</member>
<member name="T:FarPoint.Win.Spread.NumberSquare">
<summary>
Represents an outline (range group) square inside the title area.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NumberSquare.#ctor(System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.RangeGroupButtonStyle)">
<summary>
Creates a new title square with the x-coordinate, y-coordinate, and title number.
</summary>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="titleNumber">Title number</param>
<param name="buttonStyle">Button style</param>
</member>
<member name="M:FarPoint.Win.Spread.NumberSquare.DrawContent(System.Drawing.Graphics,System.Drawing.Brush,System.Drawing.Font)">
<summary>
Draws the content of the title group.
</summary>
<param name="g">Graphics device for drawing</param>
<param name="brush">Brush for drawing</param>
<param name="font">Font for drawing</param>
</member>
<member name="P:FarPoint.Win.Spread.NumberSquare.Number">
<summary>
Gets of sets the number of the title group.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.RangeGroupInfoEventType">
<summary>
Specifies the type of Change event that has occurred for the outline (range group) model for the sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.RangeGroupInfoEventType.StateChange">
<summary>
Indicates that the state of the outline (range group) is changed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.RangeGroupInfoEventArgs">
<summary>
Represents the event data for the Changed event of the outline (range group) model for the sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfoEventArgs.#ctor(FarPoint.Win.Spread.RangeGroupInfo,FarPoint.Win.Spread.RangeGroupInfoEventType)">
<summary>
Creates an outline (range group) information event arguments object.
</summary>
<param name="group">Outline (range group)</param>
<param name="type">Type of event</param>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupInfoEventArgs.Group">
<summary>
Gets the outline (range group) to expand or collapse.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupInfoEventArgs.Type">
<summary>
Gets the event type.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.RangeGroupInfo">
<summary>
Represents the relevant information of an outline (range group) of rows or columns.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.GetParent">
<summary>
Gets the parent of this outline (range group).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a RangeGroupInfo(RangeGroupInfo object) from serialization.
</summary>
<param name="si">SerializationInfo</param>
<param name="ctx">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.#ctor">
<summary>
Initializes a new instance of the RangeGroupInfo class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.#ctor(System.Int32,System.Int32,FarPoint.Win.Spread.RangeGroupInfo)">
<summary>
Initializes a new instance of the RangeGroupInfo class with the start index, end index, and parent group.
</summary>
<param name="startIndex">Start index</param>
<param name="endIndex">End index</param>
<param name="parent">Parent group</param>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.#ctor(System.Int32,System.Int32)">
<summary>
Initializes a new instance of the RangeGroupInfo class with the start index and end index.
</summary>
<param name="startIndex"></param>
<param name="endIndex"></param>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.#ctor(FarPoint.Win.Spread.LineSegment)">
<summary>
Initializes a new instance of the RangeGroupInfo class with the line segment.
</summary>
<param name="lineSegment"></param>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.#ctor(FarPoint.Win.Spread.LineSegment,FarPoint.Win.Spread.RangeGroupInfo)">
<summary>
Initializes a new instance of the RangeGroupInfo class with the line segment and parent group.
</summary>
<param name="lineSegment">Line segment</param>
<param name="parent">Parent group</param>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.#ctor(FarPoint.Win.Spread.LineSegment,FarPoint.Win.Spread.RangeGroupInfo,FarPoint.Win.Spread.GroupState)">
<summary>
Initializes a new instance of the RangeGroupInfo class with the line segment, parent group, and group status.
</summary>
<param name="lineSegment">Line segment</param>
<param name="parent">Parent group</param>
<param name="groupStatus">Group status</param>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.ToString">
<summary>
Converts the attributes of this outline (range group) to a human-readable string.
</summary>
<returns>String that contains an outline (range group) of this RangeGroupInfo structure</returns>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.ExceedMaxLevelIfAdd(System.Int32,System.Int32)">
<summary>
Determines whether the maximum level of an outline (range group) is exceeded
if a specified outline (range group) is added.
</summary>
<param name="startIndex">Start index of an outline (range group) to add</param>
<param name="endIndex">End index of an outline (range group) to add</param>
<returns>Boolean: true if the maximum level is exceeded; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.AddIndexes(System.Int32,System.Int32)">
<summary>
Adds indexes of an outline (range group).
</summary>
<param name="index">Index</param>
<param name="count">Number to add</param>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.RemoveIndexes(System.Int32,System.Int32)">
<summary>
Removes outline (range group) indexes that belong to a specified segment.
</summary>
<param name="index">Start index of the segment</param>
<param name="count">Length of the segment</param>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.Add(System.Int32,System.Int32)">
<summary>
Adds an outline (range group) with start index and end index to this outline (range group).
</summary>
<param name="startIndex">Start index</param>
<param name="endIndex">End index</param>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.Add(FarPoint.Win.Spread.LineSegment)">
<summary>
Adds a new outline (range group) with line segment to this outline (range group).
</summary>
<param name="lnSegment">Line segment</param>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.Remove(System.Int32,System.Int32)">
<summary>
Removes an outline (range group) with the start index and end index from this outline (range group).
</summary>
<param name="startIndex">Start index</param>
<param name="endIndex">End index</param>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.Remove(FarPoint.Win.Spread.LineSegment)">
<summary>
Removes an outline (range group) with the line segment from this outline (range group).
</summary>
<param name="lnSegment">Line segment</param>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.GetCopy(System.Int32,System.Int32)">
<summary>
Copies all outlines (range groups) between two indexes.
</summary>
<param name="startIndex">Start index</param>
<param name="endIndex">End index</param>
<returns>New outline (range group)</returns>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.GetCopy(FarPoint.Win.Spread.LineSegment)">
<summary>
Copies all outlines (range groups) inside the line segment from this outline (range group).
</summary>
<param name="lineSegment">Line segment</param>
<returns>Copied outline (range group)</returns>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.Paste(System.Int32,FarPoint.Win.Spread.RangeGroupInfo)">
<summary>
Pastes an outline (range group) to the segment starting with the specified index.
</summary>
<param name="startIndex">Start index</param>
<param name="rootGroup">Outline (range group) for pasting</param>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.SetState(FarPoint.Win.Spread.GroupState,System.Boolean)">
<summary>
Sets the state of an outline (range group).
</summary>
<param name="value">State of an outline (range group)</param>
<param name="updateCollapsedIndexes">Whether to update the collapsed indexes</param>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.GetDirectIndexes(System.Boolean)">
<summary>
Gets all indexes of an outline (range group) that does not belong to any child outline (range group).
</summary>
<returns>Collection of indexes</returns>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.HasNoChildren">
<summary>
Detemines whether this outline (range group) has any child or not.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.Find(System.Int32,System.Int32)">
<summary>
Finds the child outline (range group) with the corresponding level and end index.
</summary>
<param name="level">Level</param>
<param name="endIndex">End index</param>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.GetInfo(System.Int32)">
<summary>
Gets all outlines (range groups) by level.
</summary>
<param name="level">Level to get the associated outline (range group)</param>
<returns>Collection of outlines (range groups) with specified level</returns>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.Cut(System.Int32,System.Int32)">
<summary>
Cuts all outlines (range groups) between two indexes.
</summary>
<param name="startIndex">Start index</param>
<param name="endIndex">End index</param>
<returns>Cut outline (range group)</returns>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a serialization information object with the data needed to serialize an outline (range group).
</summary>c
<param name="info">A System.Runtime.Serialization.SerializationInfo that holds the serialized
data associated with the RangeGroupInfo</param>
<param name="context">A System.Runtime.Serialization.StreamingContext that contains the source
and destination of the serialized stream associated with the RangeGroupInfo</param>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves an outline (range group) to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the RangeGroupInfo object</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.Deserialize(System.Xml.XmlNodeReader,System.Boolean)">
<summary>
Loads the contents of an outline (range group) from XML.
</summary>
<param name="r">XmlNodeReader from which to load the contents</param>
<param name="firstElementIsRead">Whether the first element has been read</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object of an outline (range group) from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.CompareTo(System.Object)">
<summary>
Compares this instance to a specified RangeGroupInfo and returns an indication of their relative values.
</summary>
<param name="obj">RangeGroupInfo to compare</param>
<returns>Signed number indicating the relative values of this instance and value:
Less than zero, this instance is less than value; Zero, this
instance is equal to value; Greater than zero, this instance is greater than value.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupInfo.Clone">
<summary>
Clones the outline (range group).
</summary>
</member>
<member name="E:FarPoint.Win.Spread.RangeGroupInfo.Changed">
<summary>
Occurs when the status of this outline (range group) is changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupInfo.State">
<summary>
Gets the state of this outline (range group).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupInfo.Parent">
<summary>
Gets the parent of this outline (range group).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupInfo.Start">
<summary>
Gets the start index of this outline (range group).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupInfo.End">
<summary>
Gets the end index of this outline (range group).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupInfo.Level">
<summary>
Gets or sets the level of this outline (range group).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupInfo.Children">
<summary>
Gets the child groups of this outline (range group).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupInfo.ChildGroups">
<summary>
Gets the child groups of this outline (range group).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupInfo.LayerCount">
<summary>
Gets the amount of layer of this outline (range group).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupInfo.Length">
<summary>
Gets the length of this outline (range group).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupInfo.LineSegment">
<summary>
Gets or sets the line segment of this outline (range group).
</summary>
</member>
<member name="T:FarPoint.Win.Spread.RangeGroupInfo.RangeGroupInfoEventHander">
<summary>
Represents a defined method that handles the OnUpdateStatus event.
</summary>
<param name="sender">Source of event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.IRangeGroupModel2">
<summary>
Interface that supports creating a model that represents an outline (range group) of rows or columns.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.IRangeGroupModel">
<summary>
Interface that supports creating a model that represents an outline (range group) of rows or columns.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupModel.IsCollapsed(System.Int32,System.Boolean)">
<summary>
Determines if a row or column belongs to any collapsed (closed) outline (range group).
</summary>
<param name="index">Row or column index</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
<returns>Boolean: true if the row or column belongs to a closed range group; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupModel.Expands(System.Int32,System.Boolean,System.Boolean)">
<summary>
Expands an outline (range group) at a specified index.
</summary>
<param name="index">Index to expand or collapse</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
<param name="expand">Whether the action is to expand</param>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupModel.Expands(System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Expands an outline (range group) at the specified indexes.
</summary>
<param name="startIndex">Start index to expand or collapse</param>
<param name="count">Number of rows or columns to expand or collapse</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
<param name="expand">Whether the action is to expand</param>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupModel.AddGroup(System.Int32,System.Int32,System.Boolean)">
<summary>
Groups rows or columns into an outline (range group) from a specified start index by a specified amount.
</summary>
<param name="startIndex">Start index</param>
<param name="count">Amount of the row or column to group</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupModel.ClearRangeGroup(System.Boolean)">
<summary>
Removes all the outlines (range groups) of rows or columns.
</summary>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupModel.RemoveGroup(System.Int32,System.Int32,System.Boolean)">
<summary>
Removes an outline (range group) of rows or columns from a specified start index by a specified amount.
</summary>
<param name="startIndex">Start index</param>
<param name="count">Number of rows or columns</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupModel.GetCopy(System.Int32,System.Int32,System.Boolean)">
<summary>
Gets a copy of all the outlines (range groups) from the specified index with the specified count.
</summary>
<param name="startIndex">Start index</param>
<param name="copyCount">Copy count</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
<returns>Copy of the outlines (range groups)</returns>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupModel.PasteGroup(FarPoint.Win.Spread.RangeGroupInfo,System.Int32,System.Boolean)">
<summary>
Pastes an outline (range group) into some segment starting with a specified index.
</summary>
<param name="group">Outline (range group) to paste</param>
<param name="pasteIndex">Index of row or column at which to paste the range group</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupModel.RemoveIndexes(System.Int32,System.Int32,System.Boolean)">
<summary>
Removes the specified outline (range group) starting with a specified index and moving up indexes below that.
</summary>
<param name="startIndex">Start index</param>
<param name="removeCount">Number of rows or columns to remove</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupModel.AddIndexes(System.Int32,System.Int32,System.Boolean)">
<summary>
Adds a specified amount of outline (range group) indexes starting with a specified index in a group.
</summary>
<param name="startIndex">Start index</param>
<param name="addCount">Number of rows or columns to add</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupModel.Move(System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
Moves an outline (range group) and pastes it into an outline (range group) at the specified location, by indexes.
</summary>
<param name="fromIndex">Index from which to begin the move</param>
<param name="toIndex">Index at which to paste the range group</param>
<param name="moveCount">Number of rows or columns to move</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupModel.ExpandGroup(System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Expands an outline (range group) of rows or columns.
</summary>
<param name="level">Level of the outline (range group) to expand or collapse</param>
<param name="endIndex">End index of the outline (range group) to expand</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
<param name="expand">Whether the action is to expand</param>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupModel.GetRangeGroupInfo(System.Int32,System.Boolean)">
<summary>
Gets an outline (range group) of rows or columns by level.
</summary>
<param name="level">Level to get the associated outline (range group)</param>
<returns>Collection of outlines (range groups) with the specified level</returns>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupModel.GetGroupLevels(System.Boolean)">
<summary>
Gets the amount of the level of an outline (range group).
</summary>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupModel.GetOutLineLevel(System.Boolean,System.Int32)">
<summary>
Gets outline level of the specified index of the outline (range group).
</summary>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
<param name="index">Index</param>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupModel.FindGroup(System.Int32,System.Int32,System.Boolean)">
<summary>
Finds an outline (range group) with a specified level and end index.
</summary>
<param name="level">Level of the outline (range group)</param>
<param name="end">End index of the outline (range group)</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
<returns>Outline (range group)</returns>
</member>
<member name="E:FarPoint.Win.Spread.IRangeGroupModel.Changed">
<summary>
Occurs when an outline (range group) has changed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.IRangeGroupModel2.Changing">
<summary>
Occurs when an outline (range group) is changing.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DefaultRangeGroupModel">
<summary>
Represents the relevant default information about an outline (range group) of rows and columns.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultRangeGroupModel.ROWGROUP_SERIALIZATIONSTRING">
<summary>
Represents the const serialization string for RowGroup.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultRangeGroupModel.COLUMNGROUP_SERIALIZATIONSTRING">
<summary>
Represents the const serialization string for ColumnGroup.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.#ctor">
<summary>
Creates a new default outline (range group) model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new default outline (range group) model from serialization.
</summary>
<param name="si">SerializationInfo</param>
<param name="ctx">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.IsCollapsed(System.Int32,System.Boolean)">
<summary>
Determines if a row or column belongs to any closed outline (range group).
<param name="index">Row or column index</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
<returns>Boolean: true if the row or column belongs to a closed range group; otherwise false</returns>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.FarPoint#Win#Spread#IRangeGroupModel#Expands(System.Int32,System.Boolean,System.Boolean)">
<summary>
Expands an outline (range group) of the specified index.
</summary>
<param name="index">Row or column index</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
<param name="expand">Whether the action is to expand</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.FarPoint#Win#Spread#IRangeGroupModel#Expands(System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Expands or collapses the outline (range group) by the specified amount.
</summary>
<param name="startIndex">Starting index of the outline (range group) to expand</param>
<param name="count">Number of indexes to expand or collapse</param>
<param name="isRowGroup">Whether the outline (range group) is of rows (or else columns)</param>
<param name="expand">Whether the action is to expand (or else collapse)</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.AddGroup(System.Int32,System.Int32,System.Boolean)">
<summary>
Groups all the rows or columns from the specified start index by the specified amount to an outline (range group).
</summary>
<param name="startIndex">Start index</param>
<param name="count">Number of the rows or columns to add</param>
<param name="isRowGroup">Whether the outline (range group) is of rows (or else columns)</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.ClearRangeGroup(System.Boolean)">
<summary>
Removes all the outlines (range groups) of rows or columns.
</summary>
<param name="isRowGroup">Whether the outline (range group) is of rows (or else columns)</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.RemoveGroup(System.Int32,System.Int32,System.Boolean)">
<summary>
Removes rows or columns from the outline (range group) from the specified index and count,
and returns them to individual rows and columns.
</summary>
<param name="startIndex">Starting row or column index</param>
<param name="count">Number of the rows or columns to remove</param>
<param name="isRowGroup">Whether the outline (range group) is of rows (or else columns)</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.GetCopy(System.Int32,System.Int32,System.Boolean)">
<summary>
Gets a copy of outlines (range groups) from the specified index with the specified count.
</summary>
<param name="startIndex">Start index</param>
<param name="copyCount">Copy count</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
<returns>Copy of the outlines (range groups)</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.PasteGroup(FarPoint.Win.Spread.RangeGroupInfo,System.Int32,System.Boolean)">
<summary>
Pastes an outline (range group) into a segment starting with the paste index.
</summary>
<param name="group">Outline (range group) to paste</param>
<param name="pasteIndex">Index for pasting</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.RemoveIndexes(System.Int32,System.Int32,System.Boolean)">
<summary>
Removes indexes of an outline (range group) starting with the specified index and moving up indexes below that.
</summary>
<param name="startIndex">Start index</param>
<param name="removeCount">Number of to remove</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.AddIndexes(System.Int32,System.Int32,System.Boolean)">
<summary>
Adds a specified amount of indexes starting with a specified index in an outline (range group).
</summary>
<param name="startIndex">Start index</param>
<param name="addCount">Number of indexes to add</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.Move(System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
Moves an outline (range group) by the specified indexes.
</summary>
<param name="fromIndex">Index from which to begin the move</param>
<param name="toIndex">Index at which to paste the range</param>
<param name="moveCount">Number to move</param>
<param name="isRowGroup">Whether the outline (range group) is of rows (or else columns)</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.ExpandGroup(System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Expands an outline (range group) of rows or columns.
</summary>
<param name="level">Level of the outline (range group) to expand</param>
<param name="endIndex">End index of the outline (range group) to expand</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
<param name="expand">Whether the action is to expand</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.ExceedMaxLevelIfAdd(System.Int32,System.Int32,System.Boolean)">
<summary>
Determines whether the maximum level of an outline (range group) is exceeded if a specified range is added.
</summary>
<param name="startIndex">Start index of the outline (range group) to add</param>
<param name="addCount">Amount of rows or column to add</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
<returns>Boolean: true if the maximum level is exceeded; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.GetRangeGroupInfo(System.Int32,System.Boolean)">
<summary>
Gets an outline (range group) by level.
</summary>
<param name="level">Level to get the associated outline (range group)</param>
<returns>Collection of outlines (range groups) with the specified level</returns>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.GetGroupLevels(System.Boolean)">
<summary>
Gets the level of an outline (range group) of rows or columns.
</summary>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a serialization information object with the data needed to serialize the an outline (range group).
</summary>
<param name="info">A System.Runtime.Serialization.SerializationInfo that holds the serialized
data associated with the RangeGroupModel</param>
<param name="context">A System.Runtime.Serialization.StreamingContext that contains the source
and destination of the serialized stream associated with the RangeGroupModel</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the contents of an outline (range group) to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the RangeGroupModel contents</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the contents of an outline (range group) from XML.
</summary>
<param name="r">XmlNodeReader from which to load the contents</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.FindGroup(System.Int32,System.Int32,System.Boolean)">
<summary>
Finds an outline (range group) with the specified level and end index.
</summary>
<param name="level">Level of the outline (range group)</param>
<param name="end">End index an outline (range group)</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
<returns>Outline (range group)</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRangeGroupModel.GetOutLineLevel(System.Boolean,System.Int32)">
<summary>
Gets outline level of specified index of the range row or column group.
</summary>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
<param name="index">Index of the row or column of interest</param>
<returns>Level of the outline (range group)</returns>
</member>
<member name="E:FarPoint.Win.Spread.DefaultRangeGroupModel.Changed">
<summary>
Occurs when the outline (range group) model has changed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.DefaultRangeGroupModel.Changing">
<summary>
Occurs when the outline (range group) model is changing.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.RangeGroupModelEventType">
<summary>
Specifies the type of change that has occurred for an outline (range group) for the sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.RangeGroupModelEventType.Add">
<summary>
Indicates that an outline (range group) is added
</summary>
</member>
<member name="F:FarPoint.Win.Spread.RangeGroupModelEventType.Clear">
<summary>
Indicates that all outlines (range groups) are removed, cleared
</summary>
</member>
<member name="F:FarPoint.Win.Spread.RangeGroupModelEventType.Remove">
<summary>
Indicates that an outline (range group) is removed
</summary>
</member>
<member name="F:FarPoint.Win.Spread.RangeGroupModelEventType.Expand">
<summary>
Indicates that an outline (range group) is expanded or collapsed
</summary>
</member>
<member name="F:FarPoint.Win.Spread.RangeGroupModelEventType.Move">
<summary>
Indicates that an range of indexes is moved
</summary>
</member>
<member name="F:FarPoint.Win.Spread.RangeGroupModelEventType.Pasted">
<summary>
Indicates that an range of indexes is pasted
</summary>
</member>
<member name="T:FarPoint.Win.Spread.RangeGroupModelEventArgs">
<summary>
Represents the event data for the Changed event of the outline (range group) for the sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupModelEventArgs.#ctor(System.Boolean,FarPoint.Win.Spread.RangeGroupModelEventType)">
<summary>
Creates a new outline (range group) model event arguments object.
</summary>
<param name="isRowGroup">Whether the outline (range group) is of rows (or else columns)</param>
<param name="type">Type of outline (range group) model event</param>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupModelEventArgs.#ctor(System.Int32,System.Int32,System.Boolean,FarPoint.Win.Spread.RangeGroupModelEventType)">
<summary>
Creates a new outline (range group) model event arguments object.
</summary>
<param name="startIndex">Start index of row or column</param>
<param name="count">Number of rows or columns</param>
<param name="isRowGroup">Whether the outline (range group) is of rows (or columns)</param>
<param name="type">Type of outline (range group) model event</param>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupModelEventArgs.#ctor(System.Collections.ArrayList,System.Boolean,System.Boolean,System.Int32[],FarPoint.Win.Spread.RangeGroupModelEventType)">
<summary>
Creates a new outline (range group) model event arguments object.
</summary>
<param name="groupsToExpand">Outline (range group) to expand or collapse</param>
<param name="expand">Whether to expand the outline (range group) (or collapse)</param>
<param name="isRowGroup">Whether the outline (range group) is of rows (or columns)</param>
<param name="changedIndexes">Array of changed indexes</param>
<param name="type">Type of outline (range group) model</param>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupModelEventArgs.Count">
<summary>
Gets the number of rows or columns in the outline (range group).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupModelEventArgs.StartIndex">
<summary>
Gets the starting index of rows or columns of the outline (range group).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupModelEventArgs.IsRowGroup">
<summary>
Gets whether the outline (range group) is of rows (or else columns).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupModelEventArgs.Expand">
<summary>
Gets whether the outline (range group) is expanded (or else collapsed).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupModelEventArgs.GroupsToExpand">
<summary>
Gets the outline (range group) to expand (or collapse).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupModelEventArgs.Type">
<summary>
Gets the type of outline (range group) event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupModelEventArgs.ChangedIndexes">
<summary>
Gets the indexes of changed rows or columns of the outline (range group).
</summary>
</member>
<member name="T:FarPoint.Win.Spread.RangeGroupModelEventHandler">
<summary>
Handles the Changed event for the outline (range group) model for the sheet.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.IRangeGroupSupport">
<summary>
Interface that supports the outline (range group) of rows or columns.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupSupport.AddRangeGroup(System.Int32,System.Int32,System.Boolean)">
<summary>
Groups a range of rows or columns into an outline from a specified start index by a specified amount.
</summary>
<param name="startIndex">Start index</param>
<param name="count">Number of rows or columns to group</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupSupport.RemoveRangeGroup(System.Int32,System.Int32,System.Boolean)">
<summary>
Removes a range of rows or columns from the outline (range group) at the specified start index by a specified amount.
</summary>
<param name="startIndex">Start index</param>
<param name="count">Number of rows or columns to remove</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupSupport.ExpandRangeGroup(FarPoint.Win.Spread.RangeGroupInfo,System.Boolean,System.Boolean)">
<summary>
Expands or collapses an outline (range group) of rows or columns, by specified group.
</summary>
<param name="group">Outline (range group) to expand or collapse</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
<param name="expand">Whether the action is to expand</param>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupSupport.ExpandRangeGroup(System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Expands or collapses an outline (range group) of rows or columns, by specified level and index.
</summary>
<param name="level">Level of the outline (range group) to expand or collapse</param>
<param name="endIndex">End index of the outline (range group) to expand or collapse</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
<param name="expand">Whether the action is to expand</param>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupSupport.GetRangeGroupInfo(System.Int32,System.Boolean)">
<summary>
Gets all the outlines (range groups) in a specified level.
</summary>
<param name="level">Level of outline (range group)</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
<returns>Collection of outlines (range groups) in the level</returns>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupSupport.GetRangeGroupLevels(System.Boolean)">
<summary>
Gets the amount of the level of an outline (range group).
</summary>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.IRangeGroupSupport.ClearRangeGroup(System.Boolean)">
<summary>
Removes an outline (range group).
</summary>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
</member>
<member name="T:FarPoint.Win.Spread.Ptg">
<summary>
Excel Parsed Thing (ptg) defines.
These values are used as tokens for parsing Excel Formula buffers.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Xlf">
<summary>
Excel Function (XLF) defines.
These values are unique identifiers used when parsing Excel Formula buffers to determine the current function being referenced.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.ExternCustom">
<summary>
[0xFF] External or custom function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Count">
<summary>
[0] COUNT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.If">
<summary>
[1] IF function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Isna">
<summary>
[2] ISNA function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Iserror">
<summary>
[3] ISERROR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Sum">
<summary>
[4] SUM function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Average">
<summary>
[5] AVERAGE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Min">
<summary>
[6] MIN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Max">
<summary>
[7] MAX function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Row">
<summary>
[8] ROW function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Column">
<summary>
[9] COLUMN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Na">
<summary>
[10] NA function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Npv">
<summary>
[11] NPV function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Stdev">
<summary>
[12] STDEV function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Dollar">
<summary>
[13] DOLLAR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Fixed">
<summary>
[14] FIXED function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Sin">
<summary>
[15] SIN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Cos">
<summary>
[16] COS function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Tan">
<summary>
[17] TAN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Atan">
<summary>
[18] ATAN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Pi">
<summary>
[19] PI function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Sqrt">
<summary>
[20] SQRT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Exp">
<summary>
[21] EXP function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Ln">
<summary>
[22] LN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Log10">
<summary>
[23] LOG10 function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Abs">
<summary>
[24] ABS function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Int">
<summary>
[25] INT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Sign">
<summary>
[26] SIGN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Round">
<summary>
[27] ROUND function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Lookup">
<summary>
[28] LOOKUP function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Index">
<summary>
[29] INDEX function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Rept">
<summary>
[30] REPT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Mid">
<summary>
[31] MID function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Len">
<summary>
[32] LEN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Value">
<summary>
[33] VALUE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.True">
<summary>
[34] TRUE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.False">
<summary>
[35] FALSE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.And">
<summary>
[36] AND function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Or">
<summary>
[37] OR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Not">
<summary>
[38] NOT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Mod">
<summary>
[39] MOD function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Dcount">
<summary>
[40] DCOUNT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Dsum">
<summary>
[41] DSUM function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Daverage">
<summary>
[42] DAVERAGE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Dmin">
<summary>
[43] DMIN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Dmax">
<summary>
[44] DMAX function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Dstdev">
<summary>
[45] DSTDEV function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Var">
<summary>
[46] VAR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Dvar">
<summary>
[47] DVAR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Text">
<summary>
[48] TEST function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Linest">
<summary>
[49] LINEST function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Trend">
<summary>
[50] TREND function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Logest">
<summary>
[51] LOGEST function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Growth">
<summary>
[52] GROWTH function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Goto">
<summary>
[53] GOTO function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Halt">
<summary>
[54] HALT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Pv">
<summary>
[56] PV function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Fv">
<summary>
[57] FV function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Nper">
<summary>
[58] NPER function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Pmt">
<summary>
[59] PMT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Rate">
<summary>
[60] RATE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Mirr">
<summary>
[61] MIRR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Irr">
<summary>
[62] IRR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Rand">
<summary>
[63] RAND function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Match">
<summary>
[64] MATCH function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Date">
<summary>
[65] DATE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Time">
<summary>
[66] TIME function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Day">
<summary>
[67] DAY function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Month">
<summary>
[68] MONTH function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Year">
<summary>
[69] YEAR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Weekday">
<summary>
[70] WEEKDAY function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Hour">
<summary>
[71] HOUR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Minute">
<summary>
[72] MINUTE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Second">
<summary>
[73] SECOND function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Now">
<summary>
[74] NOW function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Areas">
<summary>
[75] AREAS function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Rows">
<summary>
[76] ROWS function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Columns">
<summary>
[77] COLUMNS function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Offset">
<summary>
[78] OFFSET function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Absref">
<summary>
[79] ABSREF function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Relref">
<summary>
[80] RELREF function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Argument">
<summary>
[81] ARGUMENT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Search">
<summary>
[82] SEARCH function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Transpose">
<summary>
[83] TRANSPOSE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Error">
<summary>
[84] ERROR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Step">
<summary>
[85] STEP function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Type">
<summary>
[86] TYPE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Echo">
<summary>
[87] ECHO function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.SetName">
<summary>
[88] SETNAME function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Caller">
<summary>
[89] CALLER function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Deref">
<summary>
[90] DEREF function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Windows">
<summary>
[91] WINDOWS function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Series">
<summary>
[92] SERIES function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Documents">
<summary>
[93] DOCUMENTS function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.ActiveCell">
<summary>
[94] ACTIVECELL function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Selection">
<summary>
[95] SELECTION function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Result">
<summary>
[96] RESULT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Atan2">
<summary>
[97] ATAN2 function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Asin">
<summary>
[98] ASIN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Acos">
<summary>
[99] ACOS function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Choose">
<summary>
[100] CHOOSE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Hlookup">
<summary>
[101] HLOOKUP function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Vlookup">
<summary>
[102] VLOOKUP function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Links">
<summary>
[103] LINKS function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Input">
<summary>
[104] INPUT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Isref">
<summary>
[105] ISREF function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.GetFormula">
<summary>
[106] GETFORMULA function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.GetName">
<summary>
[107] GETNAME function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.SetValue">
<summary>
[108] SETVALUE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Log">
<summary>
[109] LOG function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Exec">
<summary>
[110] EXEC function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Char">
<summary>
[111] CHAR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Lower">
<summary>
[112] LOWER function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Upper">
<summary>
[113] UPPER function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Proper">
<summary>
[114] PROPER function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Left">
<summary>
[115] LEFT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Right">
<summary>
[116] RIGHT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Exact">
<summary>
[117] EXACT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Trim">
<summary>
[118] TRIM function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Replace">
<summary>
[119] REPLACE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Substitute">
<summary>
[120] SUBSTITUTE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Code">
<summary>
[121] CODE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Names">
<summary>
[122] NAMES function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Directory">
<summary>
[123] DIRECTORY function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Find">
<summary>
[124] FIND function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Cell">
<summary>
[125] CELL function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Iserr">
<summary>
[126] ISERR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Istext">
<summary>
[127] ISTEXT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Isnumber">
<summary>
[128] ISNUMBER function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Isblank">
<summary>
[129] ISBLANK function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.T">
<summary>
[130] T function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.N">
<summary>
[131] N function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Fopen">
<summary>
[132] FOPEN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Fclose">
<summary>
[133] FCLOSE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Fsize">
<summary>
[134] FSIZE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Freadln">
<summary>
[135] FREADIN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Fread">
<summary>
[136] FREAD function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Fwriteln">
<summary>
[137] FWRITEIN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Fwrite">
<summary>
[138] FWRITE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Fpos">
<summary>
[139] FPOS function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Datevalue">
<summary>
[140] DATEVALUE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Timevalue">
<summary>
[141] TIMEVALUE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Sln">
<summary>
[142] SLN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Syd">
<summary>
[143] SYD function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Ddb">
<summary>
[14] DBD function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.GetDef">
<summary>
[145] GETDEF function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Reftext">
<summary>
[146] REFTEXT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Textref">
<summary>
[147] TEXTREF function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Indirect">
<summary>
[148] INDIRECT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Register">
<summary>
[149] REGISTER function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Call">
<summary>
[150] CALL function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.AddBar">
<summary>
[151] ADDBAR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.AddMenu">
<summary>
[152] ADDMENU function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.AddCommand">
<summary>
[153] ADDCOMMAND function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.EnableCommand">
<summary>
[154] ENABLECOMMAND function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.CheckCommand">
<summary>
[155] CHECKCOMMAND function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.RenameCommand">
<summary>
[156] RENAMECOMMAND function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.ShowBar">
<summary>
[157] SHOWBAR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.DeleteMenu">
<summary>
[158] DELETEMENU function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.DeleteCommand">
<summary>
[159] DELETECOMMAND function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.GetChartItem">
<summary>
[160] GETCHARTITEM function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.DialogBox">
<summary>
[161] DIALOGBOX function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Clean">
<summary>
[162] CLEAN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Mdeterm">
<summary>
[163] MDETERM function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Minverse">
<summary>
[164] MINVERSE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Mmult">
<summary>
[165] MMULT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Files">
<summary>
[166] FILES function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Ipmt">
<summary>
[167] IPMT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Ppmt">
<summary>
[168] PPMT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Counta">
<summary>
[169] COUNTA function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.CancelKey">
<summary>
[170] CANCELKEY function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Initiate">
<summary>
[175] INITIATE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Request">
<summary>
[176] REQUEST function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Poke">
<summary>
[177] POKE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Execute">
<summary>
[178] EXECUTE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Terminate">
<summary>
[179] TERMINATE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Restart">
<summary>
[180] RESTART function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Help">
<summary>
[181] HELP function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.GetBar">
<summary>
[182] GETBAR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Product">
<summary>
[183] PRODUCT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Fact">
<summary>
[184] FACT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.GetCell">
<summary>
[185] GETCELL function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.GetWorkspace">
<summary>
[186] GETWORKSPACE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.GetWindow">
<summary>
[187] GETWINDOW function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.GetDocument">
<summary>
[188] GETDOCUMENT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Dproduct">
<summary>
[189] DPRODUCT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Isnontext">
<summary>
[190] ISNONTEXT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.GetNote">
<summary>
[191] GETNOTE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Note">
<summary>
[192] NOTE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Stdevp">
<summary>
[193] STDEVP function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Varp">
<summary>
[194] VARP function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Dstdevp">
<summary>
[195] DSTDEVP function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Dvarp">
<summary>
[196] DVARP function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Trunc">
<summary>
[197] TRUNC function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Islogical">
<summary>
[198] ISLOGICAL function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Dcounta">
<summary>
[199] DCOUNTA function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.DeleteBar">
<summary>
[200] DELETEBAR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Unregister">
<summary>
[201] UNREGISTER function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Usdollar">
<summary>
[204] USDOLLAR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Findb">
<summary>
[205] FINDB function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Searchb">
<summary>
[206] SEARCHB function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Replaceb">
<summary>
[207] REPLACEB function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Leftb">
<summary>
[208] LEFTB function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Rightb">
<summary>
[209] RIGHTB function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Midb">
<summary>
[210] MIDB function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Lenb">
<summary>
[211] LENB function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Roundup">
<summary>
[212] ROUNDUP function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Rounddown">
<summary>
[213] ROUNDDOWN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Asc">
<summary>
[214] ASC function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Dbcs">
<summary>
[215] DBCS function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Rank">
<summary>
[216] RANK function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Address">
<summary>
[219] ADDRESS function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Days360">
<summary>
[220] DAYS360 function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Today">
<summary>
[221] TODAY function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Vdb">
<summary>
[222] VDB function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Median">
<summary>
[227] MEDIAN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Sumproduct">
<summary>
[228] SUMPRODUCT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Sinh">
<summary>
[229] SINH function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Cosh">
<summary>
[230] COSH function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Tanh">
<summary>
[231] TANH function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Asinh">
<summary>
[232] ASINH function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Acosh">
<summary>
[233] ACOSH function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Atanh">
<summary>
[234] ATANH function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Dget">
<summary>
[235] DGET function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.CreateObject">
<summary>
[236] CREATEOBJECT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Volatile">
<summary>
[111] VOLATILE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.LastError">
<summary>
[238] LASTERROR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.CustomUndo">
<summary>
[239] CUSTOMUNDO function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.CustomRepeat">
<summary>
[240] CUSTOMREPEAT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.FormulaConvert">
<summary>
[241] FORMULACONVERT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.GetLinkInfo">
<summary>
[242] GETLINKINFO function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.TextBox">
<summary>
[243] TEXTBOX function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Info">
<summary>
[244] INFO function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Group">
<summary>
[245] GROUP function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.GetObject">
<summary>
[246] GETOBJECT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Db">
<summary>
[247] DB function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Pause">
<summary>
[248] PAUSE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Resume">
<summary>
[251] RESUME function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Frequency">
<summary>
[252] FREQUENCY function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.AddToolbar">
<summary>
[253] ADDTOOLBAR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.DeleteToolbar">
<summary>
[254] DELETETOOLBAR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.ResetToolbar">
<summary>
[256] RESETTOOLBAR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Evaluate">
<summary>
[257] EVALUATE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.GetToolbar">
<summary>
[258] GETTOOLBAR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.GetTool">
<summary>
[259] GETTOOL function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.SpellingCheck">
<summary>
[260] SPELLINGCHECK function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.ErrorType">
<summary>
[261] ERRORTYPE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.AppTitle">
<summary>
[262] APPTITLE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.WindowTitle">
<summary>
[263] WINDOWTITLE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.SaveToolbar">
<summary>
[264] SAVETOOLBAR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.EnableTool">
<summary>
[265] ENABLETOOL function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.PressTool">
<summary>
[266] PRESSTOOL function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.RegisterId">
<summary>
[267] REGISTERID function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.GetWorkbook">
<summary>
[268] GETWORKBOOK function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Avedev">
<summary>
[269] AVEDEV function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Betadist">
<summary>
[270] BETADIST function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Gammaln">
<summary>
[271] GAMMALN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Betainv">
<summary>
[272] BETAINV function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Binomdist">
<summary>
[273] BINOMDIST function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Chidist">
<summary>
[274] CHIDIST function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Chiinv">
<summary>
[275] CHIINV function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Combin">
<summary>
[276] COMBIN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Confidence">
<summary>
[277] CONFIDENCE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Critbinom">
<summary>
[278] CRITBINOM function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Even">
<summary>
[279] EVEN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Expondist">
<summary>
[280] EXPONDIST function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Fdist">
<summary>
[281] FDIST function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Finv">
<summary>
[282] FINV function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Fisher">
<summary>
[283] FISHER function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Fisherinv">
<summary>
[284] FISHERINV function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Floor">
<summary>
[285] FLOOR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Gammadist">
<summary>
[286] GAMMADIST function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Gammainv">
<summary>
[287] GAMMAINV function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Ceiling">
<summary>
[288] CEILING function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Hypgeomdist">
<summary>
[289] HYPGEOMDIST function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Lognormdist">
<summary>
[290] LOGNORMDIST function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Loginv">
<summary>
[291] LOGINV function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Negbinomdist">
<summary>
[292] NEGBINOMDIST function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Normdist">
<summary>
[293] NORMDIST function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Normsdist">
<summary>
[294] NORMSDIST function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Norminv">
<summary>
[295] NORMINV function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Normsinv">
<summary>
[296] NORMSINV function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Standardize">
<summary>
[297] STANDARDIZE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Odd">
<summary>
[298] ODD function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Permut">
<summary>
[299] PERMUT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Poisson">
<summary>
[300] POISSON function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Tdist">
<summary>
[301] TDIST function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Weibull">
<summary>
[302] WEIBULL function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Sumxmy2">
<summary>
[303] SUMXMY2 function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Sumx2my2">
<summary>
[304] SUMX2MY2 function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Sumx2py2">
<summary>
[305] SUMX2PY2 function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Chitest">
<summary>
[306] CHITEST function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Correl">
<summary>
[307] CORREL function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Covar">
<summary>
[308] COVAR function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Forecast">
<summary>
[309] FORECAST function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Ftest">
<summary>
[310] FTEST function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Intercept">
<summary>
[311] INTERCEPT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Pearson">
<summary>
[312] PEARSON function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Rsq">
<summary>
[313] RSQ function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Steyx">
<summary>
[314] STEYX function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Slope">
<summary>
[315] SLOPE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Ttest">
<summary>
[316] TTEST function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Prob">
<summary>
[317] PROB function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Devsq">
<summary>
[318] DEVSQ function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Geomean">
<summary>
[319] GEOMEAN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Harmean">
<summary>
[320] HARMEAN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Sumsq">
<summary>
[321] SUMSQ function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Kurt">
<summary>
[322] KURT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Skew">
<summary>
[323] SKEW function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Ztest">
<summary>
[324] ZTEST function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Large">
<summary>
[325] LARGE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Small">
<summary>
[326] SMALL function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Quartile">
<summary>
[327] QUARTILE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Percentile">
<summary>
[328] PERCENTILE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Percentrank">
<summary>
[329] PERCENTRANK function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Mode">
<summary>
[330] MODE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Trimmean">
<summary>
[331] TRIMMEAN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Tinv">
<summary>
[332] TINV function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.MovieCommand">
<summary>
[334] MOVIECOMMAND function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.GetMovie">
<summary>
[335] GETMOVIE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Concatenate">
<summary>
[336] CONCATENATE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Power">
<summary>
[337] POWER function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.PivotAddData">
<summary>
[338] PIVOTADDDATA function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.GetPivotTable">
<summary>
[339] GETPIVOTTABLE function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.GetPivotField">
<summary>
[340] GETPIVOTFIELD function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.GetPivotItem">
<summary>
[341] GETPIVOTITEM function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Radians">
<summary>
[342] RADIANS function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Degrees">
<summary>
[343] DEGREES function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Subtotal">
<summary>
[344] SUBTOTAL function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Sumif">
<summary>
[345] SUMIF function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Countif">
<summary>
[346] COUNTIF function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Countblank">
<summary>
[347] COUNTBLANK function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.ScenarioGet">
<summary>
[348] SCENARIOGET function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.OptionsListsGet">
<summary>
[349] OPTIONSLISTSGET function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Ispmt">
<summary>
[350] ISPMT function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Datedif">
<summary>
[351] DATEDIF function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Datestring">
<summary>
[352] DATESTRING function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Numberstring">
<summary>
[353] NUMBERSTRING function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Roman">
<summary>
[354] ROMAN function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.OpenDialog">
<summary>
[355] OPENDIALOG function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.SaveDialog">
<summary>
[356] SAVEDIALOG function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.ViewGet">
<summary>
[357] VIEWGET function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.GetPivotData">
<summary>
[358] GETPIVOTDATA function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Hyperlink">
<summary>
[359] HYPERLINK function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.Phonetic">
<summary>
[360] PHONETIC function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.AverageA">
<summary>
[361] AVERAGEA function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.MaxA">
<summary>
[362] MAXA function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.MinA">
<summary>
[363] MINA function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.StDevPA">
<summary>
[364] STDEVPA function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.VarPA">
<summary>
[365] VARPA function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.StDevA">
<summary>
[366] STDEVA function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Xlf.VarA">
<summary>
[367] VARA function
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.#ctor">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.#ctor(System.Int32,System.Int32,System.Int32,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.#ctor(System.IO.BinaryReader)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.#ctor(System.IO.BinaryReader,System.IO.BinaryReader,System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.ToString(System.Collections.ArrayList,System.Collections.ArrayList,FarPoint.Win.Spread.SharedFormulaList,System.Collections.ArrayList,FarPoint.CalcEngine.CalcError@)">
<summary>
Internal use only.
Convert the Excel Parsed Thing (Ptg) stream into a formula string
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.ToString(System.Collections.ArrayList,System.Collections.ArrayList,FarPoint.Win.Spread.SharedFormulaList,System.Collections.ArrayList,FarPoint.CalcEngine.CalcError@,System.Int32@)">
<summary>
Internal use only.
Convert the Excel Parsed Thing (Ptg) stream into a formula string
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.AddParsedElement(System.Collections.ArrayList,System.Byte[]@)">
<summary>
internal use
</summary>
<param name="list"></param>
<param name="b"></param>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.ToExcelParsedFormula(System.Int16,FarPoint.CalcEngine.Expression,System.Collections.ArrayList,System.Collections.ArrayList,FarPoint.Win.Spread.ExcelFormula.TokenClass)">
<summary>
</summary>
<param name="sheetIndex"></param>
<param name="expr"></param>
<param name="externNames"></param>
<param name="externSheetSources"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.ToParsedFormula(FarPoint.CalcEngine.Expression,System.Collections.ArrayList,System.Collections.ArrayList,FarPoint.Win.Spread.ExcelFormula.TokenClass)">
<summary>
Convert the Calc Engine expression tree into an Excel parsed formula.
</summary>
<param name="expr"></param>
<param name="externNames"></param>
<param name="externSheetSources"></param>
<param name="tokenClass"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.ParseFormulaElement(System.Object,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,FarPoint.Win.Spread.ExcelFormula.TokenClass)">
<summary>
ParseFormulaElement
</summary>
<param name="exprItem"></param>
<param name="fnParams"></param>
<param name="externNames"></param>
<param name="externSheetSources"></param>
<param name="tokenClass"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.ParseFormulaElement(System.Object,System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,FarPoint.Win.Spread.ExcelFormula.TokenClass,System.Boolean@)">
<summary>
ParseFormulaElement
</summary>
<param name="exprItem"></param>
<param name="fnParams"></param>
<param name="externNames"></param>
<param name="externSheetSources"></param>
<param name="tokenClass"></param>
<param name="isRef"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.ReadBiffStr(System.IO.BinaryReader,System.String@,System.Boolean)">
<summary>
ReadBiffStr
</summary>
<param name="reader"></param>
<param name="stringOut"></param>
<param name="isOneByteCharCount"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.ReadFormulaString(System.IO.BinaryReader,System.Int32)">
<summary>
ReadFormulaString
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.BuildFunctionExpression(System.Collections.ArrayList,FarPoint.Win.Spread.Ptg,System.Collections.ArrayList,System.Collections.ArrayList,FarPoint.CalcEngine.CalcError@)">
<summary>
ReadFuncV
</summary>
<param name="stack"></param>
<param name="ptg"></param>
<param name="externNames"></param>
<param name="customNames"></param>
<param name="error"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.ReadFuncV(System.Collections.ArrayList,FarPoint.CalcEngine.CalcError@)">
<summary>
ReadFuncV
</summary>
<param name="stack"></param>
<param name="error"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.ReadFuncVar(System.Collections.ArrayList,System.Collections.ArrayList,System.Collections.ArrayList,FarPoint.CalcEngine.CalcError@)">
<summary>
ReadFuncVar
</summary>
<param name="stack"></param>
<param name="externNames"></param>
<param name="customNames"></param>
<param name="error"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.BuildUnsupportedFunction(System.Collections.ArrayList,FarPoint.Win.Spread.Xlf,System.Int32)">
<summary>
BuildUnsupportedFunction
</summary>
<param name="stack"></param>
<param name="fn"></param>
<param name="argCount"></param>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.SetValue(System.Collections.ArrayList,FarPoint.CalcEngine.ConstantExpression)">
<summary>
SetValue
</summary>
<param name="xlFormulaElement"></param>
<param name="val"></param>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.SetFn(System.Collections.ArrayList,FarPoint.Win.Spread.Xlf,System.Int32,FarPoint.Win.Spread.ExcelFormula.TokenClass)">
<summary>
SetFn
</summary>
<param name="xlFormulaElement"></param>
<param name="fn"></param>
<param name="args"></param>
<param name="tokenClass"></param>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.SetIfFn(System.Collections.ArrayList,System.Collections.ArrayList)">
<summary>
SetIFFn
</summary>
<param name="ifParams"></param>
<param name="xlFormulaElement"></param>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.SetChooseFn(System.Collections.ArrayList,System.Collections.ArrayList)">
<summary>
SetChooseFn
</summary>
<param name="chooseParams"></param>
<param name="xlFormulaElement"></param>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.SetSumFn(FarPoint.CalcEngine.FunctionExpression,System.Collections.ArrayList)">
<summary>
SetSumFn
</summary>
<param name="fn"></param>
<param name="xlFormulaElement"></param>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.SetOp(System.Collections.ArrayList,FarPoint.Win.Spread.Ptg)">
<summary>
SetOp
</summary>
<param name="xlFormulaElement"></param>
<param name="op"></param>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.SetParen(System.Collections.ArrayList)">
<summary>
SetParen
</summary>
<param name="xlFormulaElement"></param>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.SetExternalReference(System.Collections.ArrayList,FarPoint.CalcEngine.ExternalReferenceExpression,System.Collections.ArrayList,FarPoint.Win.Spread.ExcelFormula.TokenClass)">
<summary>
SetExternalReference
</summary>
<param name="xlFormulaElement"></param>
<param name="externExpr"></param>
<param name="externSheetSources"></param>
<param name="tokenClass"></param>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.SetReference(System.Collections.ArrayList,FarPoint.CalcEngine.ReferenceExpression,System.Collections.ArrayList,FarPoint.Win.Spread.ExcelFormula.TokenClass)">
<summary>
SetReference
</summary>
<param name="xlFormulaElement"></param>
<param name="refExpr"></param>
<param name="externSheetSources"></param>
<param name="tokenClass"></param>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.SetArray(System.Collections.ArrayList,System.Int32,System.Int32)">
<summary>
SetArray
</summary>
<param name="xlFormulaElement"></param>
<param name="rows"></param>
<param name="columns"></param>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.BuildInfix(System.Collections.ArrayList,System.String)">
<summary>
BuildInfix
</summary>
<param name="stack"></param>
<param name="op"></param>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.BuildInfixFn(System.Collections.ArrayList,System.String,System.Int32)">
<summary>
BuildInfixFn
</summary>
<param name="stack"></param>
<param name="op"></param>
<param name="argCount"></param>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.GetCoord(System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
GetCoord
</summary>
<param name="row"></param>
<param name="col"></param>
<param name="isRowRel"></param>
<param name="isColRel"></param>
<param name="isA1"></param>
<param name="isWholeRow"></param>
<param name="isWholeCol"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.ParseIFParams(System.Collections.ArrayList,System.Int32,System.Collections.ArrayList,System.Collections.ArrayList,FarPoint.Win.Spread.SharedFormulaList,System.Collections.ArrayList,FarPoint.CalcEngine.CalcError@)">
<summary>
ParseIFParams
</summary>
<param name="stack"></param>
<param name="trueArgLen"></param>
<param name="externNames"></param>
<param name="customNames"></param>
<param name="sharedFormulaList"></param>
<param name="sources"></param>
<param name="error"></param>
</member>
<member name="M:FarPoint.Win.Spread.ExcelFormula.ByteArrayToReader(System.Byte[])">
<summary>
ByteArrayToReader
</summary>
<param name="byteBuffer"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ParseSpreadFormat.#ctor">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ParseSpreadFormat.ParseDateTimeFormat(FarPoint.Win.Spread.CellType.ICellType,System.Int16@)">
<summary>
Parses the date-time format.
</summary>
<param name="cellType">Cell type</param>
<param name="excelFormatID">Excel format identifier</param>
</member>
<member name="M:FarPoint.Win.Spread.ParseSpreadFormat.ParseNumberFormat(System.Globalization.NumberFormatInfo,FarPoint.Win.Spread.ParseSpreadFormat.NumberFormatType,System.Boolean,System.Boolean,System.Boolean,FarPoint.Win.Spread.CellType.LeadingZero,System.Int16@)">
<summary>
ParseNumberFormat
</summary>
<param name="format"></param>
<param name="numberType"></param>
<param name="isNegRed"></param>
<param name="isFixedPoint"></param>
<param name="leadingZero"></param>
<param name="excelFormatID"></param>
<param name="useFixedPoint"></param>
</member>
<member name="M:FarPoint.Win.Spread.ParseSpreadFormat.ParseNumberFormat(FarPoint.Win.Spread.CellType.ICellType,System.Int16@)">
<summary>
Parses the number format.
</summary>
<param name="cellType">Cell type</param>
<param name="excelFormatID">Excel format identifier</param>
</member>
<member name="M:FarPoint.Win.Spread.ParseExcelFormat.#ctor">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ParseExcelFormat.#ctor(FarPoint.Win.Spread.IParseFormatHandler)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ParseExcelFormat.#ctor(FarPoint.Win.Spread.IParseFormatHandler,System.Object)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ParseExcelFormat.#ctor(FarPoint.Win.Spread.IParseFormatHandler,FarPoint.Excel.ExcelWarningList)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ParseExcelFormat.#ctor(FarPoint.Win.Spread.IParseFormatHandler,System.Object,FarPoint.Excel.ExcelWarningList)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ParseExcelFormat.Parse(FarPoint.Excel.IExcelXF)">
<summary>
Internal use only.
</summary>
<param name="xf"></param>
</member>
<member name="M:FarPoint.Win.Spread.ParseExcelFormat.Parse(FarPoint.Excel.IExcelXF,System.Object)">
<summary>
Internal use only.
</summary>
<param name="xf"></param>
<param name="o"></param>
</member>
<member name="P:FarPoint.Win.Spread.ParseExcelFormat.Handler">
<summary>
Internal use only.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ParseExcelFormat.PassThruObject">
<summary>
Internal use only.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.IFilterSupport">
<summary>
Interface that supports row filters for filtering rows on a sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IFilterSupport.SetFilteredColumn(System.Int32,System.String)">
<summary>
Internal Use: Sets a column as filtered, and passes the selected drop-down list string by which to filter.
</summary>
<param name="columnIndex">Column index</param>
<param name="filterBy">String containing what to filter by</param>
</member>
<member name="M:FarPoint.Win.Spread.IFilterSupport.ResetFilteredColumn(System.Int32)">
<summary>
Internal Use: Resets a column to be unfiltered.
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.IFilterSupport.InvalidateRowFilter(System.Boolean,System.Boolean)">
<summary>
Invalidates the row filter and causes the columns to be re-painted.
</summary>
<param name="clear">Whether to clear</param>
<param name="forceInvalidate">Whether to force the invalidate</param>
</member>
<member name="M:FarPoint.Win.Spread.IFilterSupport.GetDropDownFilterItems(System.Int32)">
<summary>
Gets the list of items to display in the filter drop-down list.
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="T:FarPoint.Win.Spread.IFilteredRowSupport">
<summary>
Interface that supports style filters in the style model for filtering rows on a sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IFilteredRowSupport.SetFilteredRowFormat(System.Int32,FarPoint.Win.Spread.StyleInfo)">
<summary>
Sets the format for the specified row into the style model.
</summary>
<param name="rowIndex">Row index</param>
<param name="style">StyleInfo object containing style</param>
</member>
<member name="M:FarPoint.Win.Spread.IFilteredRowSupport.ClearFilterRowFormats">
<summary>
Removes all the filtered row formats from the style model.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.FilterListBehavior">
<summary>
Specifies how the row filter behaves.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FilterListBehavior.Custom">
<summary>
[0] Uses the custom filter
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FilterListBehavior.Blank">
<summary>
[2] Displays the "(Blanks)" item in the drop-down list when appropriate
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FilterListBehavior.NonBlank">
<summary>
[4] Displays the "(NonBlanks)" item in the drop-down list when appropriate
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FilterListBehavior.DefaultFilter">
<summary>
[1024] Includes in the drop-down list the DefaultFilterItem implementation of IFilterItem
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FilterListBehavior.SortAlphabetically">
<summary>
[1025] Uses the default filter behavior and sorts the drop-down list alphabetically
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FilterListBehavior.Default">
<summary>
[1031] Uses the default filter behavior, including Blank, NonBlank, and SortAlphabetically
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FilterListBehavior.SortByMostOccurrences">
<summary>
[1032] Sorts the drop-down list by the number of times an item occurs from most to least
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FilterListBehavior.SortByLeastOccurrences">
<summary>
[1040] Sorts the drop-down list by the number of times an item occurs from least to most
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FilterListBehavior.SortNoSort">
<summary>
[1056] Uses the default filter behavoir and does not perform a sort on the drop-down list.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FilterListBehavior.SortNumerically">
<summary>
[1088] Uses the default filter behavior and sorts the drop-down list numerically
</summary>
</member>
<member name="T:FarPoint.Win.Spread.FilterColumnDefinitionCollection">
<summary>
Represents a collection of filter column definitions.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FilterColumnDefinitionCollection.#ctor">
<summary>
Creates a new collection of filter column definitions.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FilterColumnDefinitionCollection.FireChanged(System.ComponentModel.CollectionChangeAction,System.Object)">
<summary>
Internal use only.
</summary>
<param name="action"></param>
<param name="element"></param>
</member>
<member name="F:FarPoint.Win.Spread.FilterColumnDefinitionCollection.changed">
<summary>
Occurs when a filter column definition is added, removed, or changed in the collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FilterColumnDefinitionCollection.RemoveDupeOnAdd(FarPoint.Win.Spread.FilterColumnDefinition)">
<summary>
Internal use only.
</summary>
<param name="fcd"></param>
</member>
<member name="M:FarPoint.Win.Spread.FilterColumnDefinitionCollection.Contains(FarPoint.Win.Spread.FilterColumnDefinition)">
<summary>
Specifies whether the collection contains the specified filter column definition.
</summary>
<param name="fcd">Filter column definition for which to check the collection</param>
<returns>true if the sheet is found in the collection; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FilterColumnDefinitionCollection.IndexOf(FarPoint.Win.Spread.FilterColumnDefinition)">
<summary>
Returns the index of the specified filter column definition in the collection.
</summary>
<param name="fcd">Filter column definition for which to return the index</param>
<returns>Zero-based index of the filter column definition in the collection, or -1 if the filter column definition was not found</returns>
</member>
<member name="M:FarPoint.Win.Spread.FilterColumnDefinitionCollection.Insert(System.Int32,FarPoint.Win.Spread.FilterColumnDefinition)">
<summary>
Inserts a filter column definition into the collection at the specified index.
</summary>
<param name="index">Zero-based index at which to insert the filter column definition</param>
<param name="fcd">Filter column definition to insert into the collection</param>
<exception cref="T:System.ArgumentNullException">
Filter column definition is not specified or is null
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FilterColumnDefinitionCollection.Remove(FarPoint.Win.Spread.FilterColumnDefinition)">
<summary>
Removes the specified filter column definition from the collection.
</summary>
<param name="fcd">Filter column definition to remove from the collection</param>
</member>
<member name="M:FarPoint.Win.Spread.FilterColumnDefinitionCollection.RemoveAt(System.Int32)">
<summary>
Removes a filter column definition from the collection at the specified index.
</summary>
<param name="index">Zero-based index of the filter column definition to remove from the collection</param>
<exception cref="T:System.IndexOutOfRangeException">
Filter column definition index out of range; must be between 0 and the total number of filter column definitions in the collection
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FilterColumnDefinitionCollection.Add(FarPoint.Win.Spread.FilterColumnDefinition)">
<summary>
Adds a filter column definition to the collection.
</summary>
<param name="fcd">Filter column definition to add to the collection</param>
</member>
<member name="M:FarPoint.Win.Spread.FilterColumnDefinitionCollection.Clear">
<summary>
Removes all the filter column definitions from the collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FilterColumnDefinitionCollection.CopyTo(System.Array,System.Int32)">
<summary>
Copies the filter column definition in the collection to an array.
</summary>
<param name="array">Array to which to copy the filter column definitions</param>
<param name="arrayIndex">Array index at which to start pasting the filter column definitions</param>
</member>
<member name="M:FarPoint.Win.Spread.FilterColumnDefinitionCollection.GetColumnDefinitionIndexFromColumnIndex(System.Int32)">
<summary>
Gets the index of a filter column definition in the collection based on the specified column index.
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.FilterColumnDefinitionCollection.GetColumnIndexes">
<summary>
Gets an array of column indexes where filter column definitions exist.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FilterColumnDefinitionCollection.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FilterColumnDefinitionCollection.Deserialize(System.Xml.XmlNodeReader,FarPoint.Win.Spread.SheetView)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<param name="sheetView">SheetView object containing the sheet</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="P:FarPoint.Win.Spread.FilterColumnDefinitionCollection.IsFixedSize">
<summary>
Gets whether the collection has a fixed size.
(This implementation always returns false.)
</summary>
<returns>Always returns false</returns>
</member>
<member name="P:FarPoint.Win.Spread.FilterColumnDefinitionCollection.IsReadOnly">
<summary>
Gets whether the collection is read-only.
(This implementation always returns false.)
</summary>
<returns>Always returns false</returns>
</member>
<member name="E:FarPoint.Win.Spread.FilterColumnDefinitionCollection.Changed">
<summary>
Occurs when a sheet is added, removed, or changed in the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FilterColumnDefinitionCollection.Count">
<summary>
Gets or sets the number of filter column definitions in the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FilterColumnDefinitionCollection.Item(System.Int32)">
<summary>
Gets or sets the filter column definition at the specified position in the collection.
</summary>
<param name="index">Zero-based index of the filter column definition in the collection</param>
<exception cref="T:System.Exception">
Specified index is not valid; must be between 0 and total number in the collection
</exception>
<exception cref="T:System.ArgumentNullException">
Index not specified or specified index is null
</exception>
</member>
<member name="T:FarPoint.Win.Spread.FilterItemCollection">
<summary>
Represents a collection of custom filters.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FilterItemCollection.#ctor">
<summary>
Creates a custom filter collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FilterItemCollection.Add(FarPoint.Win.Spread.IFilterItem)">
<summary>
Adds a filter item to the collection.
</summary>
<param name="filterItem">Custom filter item to add</param>
<exception cref="T:System.ArgumentException">
No display name or length of the display name of the specified filter is zero
</exception>
<exception cref="T:System.ArgumentException">
No specified custom filter or specified custom filter is null
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FilterItemCollection.Insert(System.Int32,FarPoint.Win.Spread.IFilterItem)">
<summary>
Inserts a filter item into the collection at a specified location.
</summary>
<param name="index">Index in the collection at which to add the filter</param>
<param name="filterItem">Custom filter item to add</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified index is out of range; must be between 0 and the total number of filters in the collection
</exception>
<exception cref="T:System.ArgumentException">
No display name or length of the display name of the specified custom filter is zero
</exception>
<exception cref="T:System.ArgumentException">
No specified custom filter or specified custom filter is null
</exception>
<exception cref="T:System.ArgumentException">
Specified custom filter display name already exists in the collection; the name must be unique
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FilterItemCollection.Clear">
<summary>
Removes the custom filter items from the filter item list.
This method does not remove the DefaultFilterItem from the list if it exists.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FilterItemCollection.RemoveAt(System.Int32)">
<summary>
Removes the specified custom filter item from the filter item list.
This method does not remove the DefaultfilterItem from the list if it exists.
</summary>
<param name="index">Zero-based index of the custom filter item to remove from the collection</param>
</member>
<member name="M:FarPoint.Win.Spread.FilterItemCollection.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.FilterItemCollection.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Internal implementation of ISerializeSupport interface method. Internal use only.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FilterItemCollection.Deserialize(System.Xml.XmlNodeReader,FarPoint.Win.Spread.SheetView)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<param name="sheetView">SheetView object containing the sheet</param>
</member>
<member name="P:FarPoint.Win.Spread.FilterItemCollection.Item(System.Int32)">
<summary>
Gets a custom filter item from the collection.
</summary>
<param name="index">Zero-based index of the filter item in the collection</param>
</member>
<member name="T:FarPoint.Win.Spread.FilterColumnDefinition">
<summary>
Represents a filter column definition.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FilterColumnDefinition.#ctor">
<summary>
Creates a new filter column definition with default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FilterColumnDefinition.#ctor(System.Int32)">
<summary>
Creates a filter column definition.
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.FilterColumnDefinition.#ctor(System.Int32,FarPoint.Win.Spread.FilterListBehavior)">
<summary>
Creates a filter column definition with the specified list behavior.
</summary>
<param name="columnIndex">Column index</param>
<param name="listBehavior">List behavior</param>
</member>
<member name="M:FarPoint.Win.Spread.FilterColumnDefinition.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.FilterColumnDefinition.Deserialize(System.Xml.XmlNodeReader,FarPoint.Win.Spread.SheetView)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<param name="sheetView">SheetView object containing the sheet</param>
</member>
<member name="P:FarPoint.Win.Spread.FilterColumnDefinition.ColumnIndex">
<summary>
Gets the column index.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FilterColumnDefinition.ListBehavior">
<summary>
Gets the list behavior.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FilterColumnDefinition.Filters">
<summary>
Gets the filter item collection from this filter column definition.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FilterColumnDefinition.CanSerializeXml">
<summary>
Gets whether the object in its entirety can be rendered with XML without losing any information.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.IRowFilter">
<summary>
Interface that supports row filters for filtering rows on a sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.GetFilteredColumnIndexes">
<summary>
Gets an array of column indexes where row filters exist.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.GetColumnFilterIndexFromColumnIndex(System.Int32)">
<summary>
Gets the column filter index for the specified column.
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.GetFilterColumnDefinition(System.Int32)">
<summary>
Gets the filter column definition for the specified column.
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.SetFilteredInRowList(System.Int32,System.Int32[])">
<summary>
Internal use only.
Sets the list of rows currently filtered in for a specified column containing a filter definition.
</summary>
<param name="columnIndex">Column index</param>
<param name="rowList">Integer array or list of row indexes</param>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.AddFilteredOutRow(System.Int32)">
<summary>
Adds a row to the filtered-out row list, which is the list of rows currently filtered-out
by the combined settings of the filtered columns.
</summary>
<param name="rowIndex">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.IsRowFilteredOut(System.Int32)">
<summary>
Determines whether the specified row is filtered out.
</summary>
<param name="rowIndex">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.ClearFilteredRows">
<summary>
Internal use only.
Removes all temporary filter settings including the filtered-in list and filtered-out list.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.ClearFilteredRows(System.Int32)">
<summary>
Internal use only.
Removes all temporary filter settings for a specified column including the filtered-in list
and the filtered-out list.
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.OnDataModelChanged(System.Object,FarPoint.Win.Spread.Model.SheetDataModelEventArgs)">
<summary>
Internal use only.
Event handler for when the sheet data model changes.
</summary>
<param name="sender">Sender object</param>
<param name="e">Sheet data model event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.ResetFilter">
<summary>
Resets the temporary filter settings for all columns.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.ResetFilter(System.Int32)">
<summary>
Resets the temporary filter settings for the specified column.
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.IsFiltered(System.Int32)">
<summary>
Determines whether the specified column is filtered.
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.SetIsFiltered(System.Int32,System.Boolean)">
<summary>
Internal use only.
Sets the isFiltered flag for the existing column filter
</summary>
<param name="columnIndex">Column index</param>
<param name="isFiltered">Whether the column is filtered</param>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.GetColumnFilterBy(System.Int32)">
<summary>
Gets the string selected in the drop-down list of filters for the specified column.
</summary>
<param name="modelColumnIndex">Columnn index</param>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.SetColumnFilterBy(System.Int32,System.String)">
<summary>
Internal use only.
Sets the string selected in the drop-down list of filters for the specified column.
</summary>
<param name="modelColumnIndex">Columnn index</param>
<param name="filterBy">String containing the filter selection</param>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.GetFilteredOutRowList">
<summary>
Gets the list of rows that are filtered out.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.GetIntersectedFilteredInRows">
<summary>
Gets the intersection of the filtered-in rows for all the filtered columns.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.GetIntersectedFilteredInRows(System.Int32)">
<summary>
Gets the intersection of the filtered-in rows for all the filtered columns except
the specified column.
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.GetFilteredInRows(System.Int32)">
<summary>
Internal use only.
Gets the the filtered-in rows for the specified column.
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.AddColumn(FarPoint.Win.Spread.FilterColumnDefinition)">
<summary>
Adds a filter column definition to the row filter.
</summary>
<param name="fcd">FilterColumnDefinition object containing the filter column definition</param>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.RemoveColumn(System.Int32)">
<summary>
Removes a filter column definition from the row filter
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.AddColumn(System.Int32)">
<summary>
Adds a filter column definition to the row filter.
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.AddColumn(System.Int32,FarPoint.Win.Spread.FilterListBehavior)">
<summary>
Adds a filter column definition to the row filter.
</summary>
<param name="columnIndex">Column index</param>
<param name="listBehavior">FilterListBehvior object containing the list behavior</param>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.MoveFilters(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Moves the filter column(s) to another location.
</summary>
<param name="fromRow">Row index from which to move</param>
<param name="fromColumn">Column index from which to move</param>
<param name="toRow">Destination row index</param>
<param name="toColumn">Destination column index</param>
<param name="rowCount">Number of rows to move</param>
<param name="columnCount">Number of columns to move</param>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.MoveFilters(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
Internal use only.
Moves the filter column(s) to another location.
</summary>
<param name="fromRow">Row index from which to move</param>
<param name="fromColumn">Column index from which to move</param>
<param name="toRow">Destination row index</param>
<param name="toColumn">Destination column index</param>
<param name="rowCount">Number of rows to move</param>
<param name="columnCount">Number of columns to move</param>
<param name="ignoreUpdate">Whether to ignore resetting the column indexes in the filter column definitions</param>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.SetupEventHandlers">
<summary>
Sets up the event handlers to listen to the SheetView object.
Intended for internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IRowFilter.ResetCachedIntersectedFilteredInRowIndexes">
<summary>
Internal use only.
Resets the cached array of filtered in row indexes.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.IRowFilter.ColumnDefinitions">
<summary>
Gets the collection of filter column definitions for the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.IRowFilter.DropDownBorderStyle">
<summary>
Gets the style for the border around the drop-down list of filter items.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.IRowFilter.ShowFilterIndicator">
<summary>
Gets or sets whether the filter indicator is displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.IRowFilter.AllString">
<summary>
Gets or sets the "(All)" filter item string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.IRowFilter.BlanksString">
<summary>
Gets or sets the "(Blanks)" filter item string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.IRowFilter.NonBlanksString">
<summary>
Gets or sets the "(NonBlanks)" filter item string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.IRowFilter.SheetView">
<summary>
Gets or sets the sheet for this row filter.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.IRowFilter.UnfilteredRows">
<summary>
Gets or sets rows that are not to be filtered.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.IRowFilterFrozenSupport">
<summary>
Interface for supporting optional filtering of frozen rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.IRowFilterFrozenSupport.FilterFrozenRows">
<summary>
Gets or sets whether frozen rows should be included in the filter operation.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DefaultRowFilter">
<summary>
Represents a default row filter that extends to implement the supported row filters.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.#ctor(FarPoint.Win.Spread.SheetView)">
<summary>
Creates a new default row filter for the specified sheet.
</summary>
<param name="sheetView">SheetView object containing the sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.SetupEventHandlers">
<summary>
Internal use only. Sets up the event handlers.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.OnSheetViewPropertyChanged(System.Object,FarPoint.Win.Spread.SheetViewPropertyChangeEventArgs)">
<summary>
Occurs when any of the sheet properties have changed.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.OnDataModelChanged(System.Object,FarPoint.Win.Spread.Model.SheetDataModelEventArgs)">
<summary>
Occurs when the data model has changed.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.Init">
<summary>
Internal use only. Initializes the default row filter.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.RemoveColumn(System.Int32)">
<summary>
Removes a filter column definition from the row filter.
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.AddColumn(FarPoint.Win.Spread.FilterColumnDefinition)">
<summary>
Adds a filter column definition to the row filter.
</summary>
<param name="fcd">FilterColumnDefinition object containing the filter column definition</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.AddColumn(System.Int32)">
<summary>
Adds a filter column definition to the row filter.
</summary>
<param name="viewColumnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.AddColumn(System.Int32,FarPoint.Win.Spread.FilterListBehavior)">
<summary>
Adds a filter column definition to the row filter with the specified list behavior.
</summary>
<param name="viewColumnIndex">Column index</param>
<param name="listBehavior">FilterListBehavior object containing the list behavior</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.OnFilterColumnDefinitionCollectionChanged(System.Object,System.ComponentModel.CollectionChangeEventArgs)">
<summary>
Occurs when the filter column definition collection has changed.
</summary>
<param name="o">Object that raises the event</param>
<param name="e">CollectionChangeEventArgs object that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.GetFilteredColumnIndexes">
<summary>
Gets an array of column indexes where row filters exist.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.GetColumnFilterIndexFromColumnIndex(System.Int32)">
<summary>
Gets the column filter index from the specified column.
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.GetFilterColumnDefinition(System.Int32)">
<summary>
Gets the filter column definition from the specified column.
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.SetFilteredInRowList(System.Int32,System.Int32[])">
<summary>
Internal use only.
Sets the list of rows currently filtered-in for a specified column containing a filter definition.
</summary>
<param name="columnIndex">Column index</param>
<param name="rowList">List of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.AddFilteredOutRow(System.Int32)">
<summary>
Internal use only.
Adds a row to the list of rows currently filtered-out
by the combined settings of the filtered columns.
</summary>
<param name="rowIndex">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.IsRowFilteredOut(System.Int32)">
<summary>
Determines whether the specified row is filtered out.
</summary>
<param name="rowIndex">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.ClearFilteredRows">
<summary>
Internal use only.
Removes all temporary filter settings, including the filtered-in list and filtered-out list.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.ClearFilteredRows(System.Int32)">
<summary>
Internal use only.
Removes all temporary filter settings for a specified column,
including the filtered-in list and the filtered-out list.
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.ResetFilter">
<summary>
Resets the filter settings for the entire row filter.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.ResetFilter(System.Int32)">
<summary>
Resets the filter settings for the specified column.
</summary>
<param name="modelColumn">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.IsFiltered(System.Int32)">
<summary>
Internal use only.
Gets whether the specified column is filtered.
</summary>
<param name="modelColumn">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.SetIsFiltered(System.Int32,System.Boolean)">
<summary>
Internal use only.
Sets whether the specified column is filtered.
</summary>
<param name="columnIndex">Column index</param>
<param name="isFiltered">Whether the column is filtered</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.GetColumnFilterBy(System.Int32)">
<summary>
Internal use only.
Gets the string selected in the filter drop-down list for the specified column.
</summary>
<param name="modelColumnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.SetColumnFilterBy(System.Int32,System.String)">
<summary>
Internal use only.
Sets the string selected in the filter drop-down list for the specified column.
</summary>
<param name="modelColumnIndex">Column index</param>
<param name="filterBy">Selected filter item</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.GetFilteredOutRowList">
<summary>
Internal use only.
Gets the list of indexes of the filtered-out rows.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.GetIntersectedFilteredInRows">
<summary>
Internal use only.
Gets the intersection of the filtered-in rows for all the filtered columns.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.GetIntersectedFilteredInRows(System.Int32)">
<summary>
Internal use only.
Gets the intersection of the filtered-in rows for all the filtered columns
except the specified column.
</summary>
<param name="modelColumnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.ResetCachedIntersectedFilteredInRowIndexes">
<summary>
Internal use only. Resets the cached intersected filtered-in row indexes.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.MoveFilters(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Moves the filter column(s) to another location.
</summary>
<param name="fromRow">Row index from which to move</param>
<param name="fromColumn">Column index from which to move</param>
<param name="toRow">Destination row index</param>
<param name="toColumn">Destination column index</param>
<param name="rowCount">Number of rows to move</param>
<param name="columnCount">Number of columns to move</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.MoveFilters(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
Internal use only.
Moves the filter column(s) to another location.
Intended for internal use only.
</summary>
<param name="fromRow">Row index from which to move</param>
<param name="fromColumn">Column index from which to move</param>
<param name="toRow">Destination row index</param>
<param name="toColumn">Destination column index</param>
<param name="rowCount">Number of rows to move</param>
<param name="columnCount">Number of columns to move</param>
<param name="ignoreUpdate">Whether to ignore resetting the column indexes in the filter column definitions</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultRowFilter.GetFilteredInRows(System.Int32)">
<summary>
Internal use only.
Gets the rows that are filtered in for the specified column.
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="P:FarPoint.Win.Spread.DefaultRowFilter.DropDownBorderStyle">
<summary>
Gets or sets the style for the drop-down list of filter items.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultRowFilter.ShowFilterIndicator">
<summary>
Gets or sets whether the filter indicator should be displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultRowFilter.AllString">
<summary>
Gets or sets the all filter items string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultRowFilter.BlanksString">
<summary>
Gets or sets the blanks (empty cells) string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultRowFilter.NonBlanksString">
<summary>
Gets or sets the non-blanks (non-empty cells) string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultRowFilter.UnfilteredRows">
<summary>
Gets or sets unfiltered rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultRowFilter.ColumnDefinitions">
<summary>
Gets the collection of filter column definitions.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultRowFilter.SheetView">
<summary>
Gets or sets the sheet associated with this row filter.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.HideRowFilter">
<summary>
Represents the filter that hides rows based on certain criteria.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.HideRowFilter.#ctor(FarPoint.Win.Spread.SheetView)">
<summary>
Creates a new row filter for the specified sheet that hides rows that match the criteria.
</summary>
<param name="sheetView">SheetView object containing the sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.HideRowFilter.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.HideRowFilter.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="T:FarPoint.Win.Spread.StyleRowFilter">
<summary>
Represents the filter that sets the styles of rows based on certain criteria.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleRowFilter.#ctor(FarPoint.Win.Spread.SheetView)">
<summary>
Creates a new style row filter for the specified sheet.
</summary>
<param name="sheetView">SheetView object containing the sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleRowFilter.#ctor(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.NamedStyle)">
<summary>
Creates a new style row filter for the specified sheet with specified styles.
</summary>
<param name="sheetView">SheetView object containing the sheet</param>
<param name="inStyle">Style for items filtered in</param>
<param name="outStyle">Style for items filtered out</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleRowFilter.Init">
<summary>
Internal use only. Initializes the style row filter.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleRowFilter.OnNamedStyleChanged(System.Object,System.EventArgs)">
<summary>
Occurs when the style has changed.
</summary>
<param name="o">Object that raises the event</param>
<param name="e">Event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleRowFilter.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.StyleRowFilter.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="P:FarPoint.Win.Spread.StyleRowFilter.InStyle">
<summary>
Gets the style that is applied to rows that satisfy the filter.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleRowFilter.OutStyle">
<summary>
Gets the style that is applied to rows that do not satisfy the filter.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.FilterGadget">
<summary>
Represents a filter gadget. Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FilterGadget.#ctor(FarPoint.Win.Spread.SpreadView)">
<summary>
Creates a new filter gadget.
</summary>
<param name="spreadView">SpreadView object containing the view</param>
</member>
<member name="M:FarPoint.Win.Spread.FilterGadget.RemoveList">
<summary>
Removes the drop-down list.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FilterGadget.ShowList(System.Int32,System.String,System.Drawing.Point,System.Int32,System.Boolean,FarPoint.Win.Spread.FilterListBehavior)">
<summary>
Shows or removes the drop-down list.
</summary>
<param name="columnIndex">Column index</param>
<param name="filterByString">Selected filter item in list</param>
<param name="location">Point where the drop-down list displays</param>
<param name="columnWidth">Width of column</param>
<param name="show">Whether to display the drop-down list</param>
<param name="listBehavior">Behavior of filter list</param>
</member>
<member name="M:FarPoint.Win.Spread.FilterGadget.OnFilter_CloseUp(System.Object,FarPoint.Win.Spread.EditModeStartingEventArgs)">
<summary>
Handles the filter close up event.
</summary>
<param name="o">Object that raises the event</param>
<param name="e">Event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FilterGadget.OnFilter_CloseUp(System.Object,System.EventArgs)">
<summary>
Handles the filter close up event.
</summary>
<param name="o">Object that raises the event</param>
<param name="e">Event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FilterGadget.OnFilter_LostFocus(System.Object,System.EventArgs)">
<summary>
Handles the filter lost focus event.
</summary>
<param name="o">Object that raises the event</param>
<param name="e">Event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FilterGadget.OnFilter_SelectedIndexChanged(System.Object,System.EventArgs)">
<summary>
Handles the filter selected index changed event.
</summary>
<param name="o">Object that raises the event</param>
<param name="e">Event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FilterGadget.Invalidate(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Boolean,System.Int32)">
<summary>
Repositions and repaints the filter gadget button.
</summary>
<param name="g">Graphics device interface for painting</param>
<param name="x">X coordinate of the button</param>
<param name="y">Y coordinate of the button</param>
<param name="width">Width of the button</param>
<param name="height">Height of the button</param>
<param name="zoomFactor">Numeric value for zoom factor for scaling when painting </param>
<param name="isSelected">Whether the button is selected </param>
<param name="column">Column index</param>
</member>
<member name="P:FarPoint.Win.Spread.FilterGadget.ButtonWidth">
<summary>
Gets the static width of the filter button.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FilterGadget.List">
<summary>
Sets the drop-down list string array.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FilterGadget.IsListVisible">
<summary>
Gets whether the drop-down list is displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FilterGadget.GadgetColumn">
<summary>
Gets the column for this filter gadget.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.IFilterItem">
<summary>
Interface that supports the creation of custom row filters for filtering rows on a sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IFilterItem.ShowInDropDown(System.Int32,System.Int32[])">
This method is called prior to displaying the filter drop-down to determine whether this
filter should be displayed in the filter drop-down based on the currently filtered-in rows.
<summary>
Determines whether this filter should be displayed in the filter drop-down list
based on the currently filtered-in rows.
</summary>
<param name="columnIndex">Column index</param>
<param name="filteredInRowList">List of rows filtered in</param>
</member>
<member name="M:FarPoint.Win.Spread.IFilterItem.Filter(System.Int32)">
This method is called when the custom filter is invoked by selecting it from the
filter drop-down list
<summary>
Selects a filter from the filter drop-down list.
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="P:FarPoint.Win.Spread.IFilterItem.DisplayName">
<summary>
Gets the display name.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.IFilterItem.SheetView">
<summary>
Sets the sheet to filter.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.IFilterItem.DisplayAtTopOfList">
<summary>
Gets whether the display name should be added to the top of the filter drop-down list.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.BaseFilterItem">
<summary>
Represents the basis for a custom filter.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.BaseFilterItem.#ctor">
<summary>
Creates a new base custom filter.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.BaseFilterItem.ShowInDropDown(System.Int32,System.Int32[])">
<summary>
Determines whether the name is displayed in the filter drop-down list.
</summary>
<param name="columnIndex">Column index</param>
<param name="filteredInRowList">List of rows filtered in</param>
</member>
<member name="M:FarPoint.Win.Spread.BaseFilterItem.Filter(System.Int32)">
<summary>
Filters the specified column of the sheet.
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.BaseFilterItem.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.BaseFilterItem.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="P:FarPoint.Win.Spread.BaseFilterItem.DisplayName">
<summary>
Gets the display name of the filter.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.BaseFilterItem.SheetView">
<summary>
Sets the sheet to filter.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.BaseFilterItem.DisplayAtTopOfList">
<summary>
Gets or sets whether the display name is added to the top of the filter drop-down list.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DefaultFilterItem">
The DefaultFilter implementation of the ICustomFilterItem interface. This class performs
Excel-like filtering by hiding rows that do not meet the filter criteria. In addition,
the DefaultFilter can filter by applying a filtered-in style or filtered-out style to each
row based on whether the row item satisfies the filter criteria.
<summary>
Represents the default filtering of rows based on specified criteria.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultFilterItem.#ctor">
<summary>
Creates a default filter.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultFilterItem.#ctor(FarPoint.Win.Spread.SheetView)">
<summary>
Creates a default filter for the specified sheet.
</summary>
<param name="sheetView">SheetView object containing the sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultFilterItem.IsFilteredIn(System.String)">
<summary>
Gets whether the value satisfies the filter criteria.
</summary>
<param name="value">String with the value</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultFilterItem.ShowInDropDown(System.Int32,System.Int32[])">
<summary>
Determines whether the filter item name should be displayed in the filter drop-down list.
</summary>
<param name="columnIndex">Column index</param>
<param name="filteredInRowList">List</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultFilterItem.Filter(System.Int32)">
<summary>
Filters the specified column of the sheet.
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultFilterItem.BlanksFilterItem(System.Int32)">
<summary>
Filters item for the specified column to filter in blanks (empty cells).
</summary>
<param name="viewColumn">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultFilterItem.NonBlanksFilterItem(System.Int32)">
<summary>
Filters item for the specified column to filter in non-blanks (non-empty cells).
</summary>
<param name="viewColumn">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultFilterItem.Serialize(System.Xml.XmlTextWriter)">
<summary>
Internal use only. Internal implementation of ISerializeSupport interface method. Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultFilterItem.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Internal use only. Internal implementation of ISerializeSupport interface method.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="P:FarPoint.Win.Spread.DefaultFilterItem.SheetView">
<summary>
Sets the sheet to filter.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultFilterItem.DisplayName">
<summary>
Gets the display name of the filter.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultFilterItem.DisplayAtTopOfList">
<summary>
Gets whether the display name should be added to the top of the filter drop-down list.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultFilterItem.FilterByString">
<summary>
Gets or sets the string by which to filter.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.UserSpecifiedFilterItem">
<summary>
Represents a user specified filter item
</summary>
<remarks>This class is used to add a custom filter item when SheetView.AutoFilterColumn
is called with a string that is not present in the column and -1 for the list item index.
</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UserSpecifiedFilterItem.#ctor(FarPoint.Win.Spread.SheetView,System.String)">
<summary>
Creates a new instance of UserSpecifiedFilterItem.
</summary>
<param name="sheet">SheetView</param>
<param name="filterBy">string</param>
</member>
<member name="M:FarPoint.Win.Spread.UserSpecifiedFilterItem.ShowInDropDown(System.Int32,System.Int32[])">
<summary>
Returns whether the item should be shown in the drop down list.
</summary>
<param name="columnIndex">int</param>
<param name="filteredInRowList">int[]</param>
<returns>True if the item should be shown, and false otherwise.</returns>
</member>
<member name="P:FarPoint.Win.Spread.UserSpecifiedFilterItem.DisplayName">
<summary>
Gets the display name for the filter item.
</summary>
</member>
<member name="T:FarPoint.PDF.PdfGraphics">
<summary>
Represents the drawing functions on a PDF page object.
</summary>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.#ctor(System.Object)">
<summary>
Creates a new PDF page object.
</summary>
<param name="obj">PDF page object</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawArc(System.Drawing.Pen,System.Drawing.Rectangle,System.Single,System.Single)">
<summary>
Draws an arc representing a portion of an ellipse specified by a Rectangle structure.
</summary>
<param name="pen">Pen object that determines the color, width, and style of the arc</param>
<param name="rectangle">Rectangle structure that defines the boundaries of the arc. </param>
<param name="startAngle">Angle in degrees measured clockwise from the x-axis to the starting point of the arc</param>
<param name="sweepAngle">Angle in degrees measured clockwise from the startAngle parameter to ending point of the arc</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawArc(System.Drawing.Pen,System.Drawing.RectangleF,System.Single,System.Single)">
<summary>
Draws an arc representing a portion of an ellipse specified by a Rectangle structure.
</summary>
<param name="pen">Pen object that determines the color, width, and style of the arc</param>
<param name="rectangle">RectangleF structure that defines the boundaries of the arc. </param>
<param name="startAngle">Angle in degrees measured clockwise from the x-axis to the starting point of the arc</param>
<param name="sweepAngle">Angle in degrees measured clockwise from the startAngle parameter to ending point of the arc</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawArc(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Single)">
<summary>
Draws an arc representing a portion of an ellipse specified by a pair of coordinates, a width, and a height.
</summary>
<param name="pen">Pen object that determines the color, width, and style of the arc</param>
<param name="x">x-coordinate of the upper-left corner of the rectangle that defines the arc. </param>
<param name="y">y-coordinate of the upper-left corner of the rectangle that defines the arc. </param>
<param name="width">Width of the rectangle that defines the arc</param>
<param name="height">Height of the rectangle that defines the arc</param>
<param name="startAngle">Angle in degrees measured clockwise from the x-axis to the starting point of the arc</param>
<param name="sweepAngle">Angle in degrees measured clockwise from the startAngle parameter to ending point of the arc</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawArc(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
<summary>
Draws an arc representing a portion of an ellipse specified by a pair of coordinates, a width, and a height.
</summary>
<param name="pen">Pen object that determines the color, width, and style of the arc</param>
<param name="x">x-coordinate of the upper-left corner of the rectangle that defines the arc. </param>
<param name="y">y-coordinate of the upper-left corner of the rectangle that defines the arc. </param>
<param name="width">Width of the rectangle that defines the arc</param>
<param name="height">Height of the rectangle that defines the arc</param>
<param name="startAngle">Angle in degrees measured clockwise from the x-axis to the starting point of the arc</param>
<param name="sweepAngle">Angle in degrees measured clockwise from the startAngle parameter to ending point of the arc</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawBezier(System.Drawing.Pen,System.Drawing.Point,System.Drawing.Point,System.Drawing.Point,System.Drawing.Point)">
<summary>
Draws a Bézier spline defined by four Point structures.
</summary>
<param name="pen">Pen structure that determines the color, width, and style of the curve</param>
<param name="pt1">Point structure that represents the starting point of the curve</param>
<param name="pt2">Point structure that represents the first control point for the curve</param>
<param name="pt3">Point structure that represents the second control point for the curve</param>
<param name="pt4">Point structure that represents the ending point of the curve</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawBezier(System.Drawing.Pen,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF)">
<summary>
Draws a Bézier spline defined by four Point structures.
</summary>
<param name="pen">Pen structure that determines the color, width, and style of the curve</param>
<param name="pt1">PointF structure that represents the starting point of the curve</param>
<param name="pt2">PointF structure that represents the first control point for the curve</param>
<param name="pt3">PointF structure that represents the second control point for the curve</param>
<param name="pt4">PointF structure that represents the ending point of the curve</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawBezier(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
<summary>
Draws a Bézier spline defined by four ordered pairs of coordinates that represent points.
</summary>
<param name="pen">Pen object that determines the color, width, and style of the curve</param>
<param name="x1">x-coordinate of the starting point of the curve. </param>
<param name="y1">y-coordinate of the starting point of the curve. </param>
<param name="x2">x-coordinate of the first control point of the curve. </param>
<param name="y2">y-coordinate of the first control point of the curve. </param>
<param name="x3">x-coordinate of the second control point of the curve. </param>
<param name="y3">y-coordinate of the second control point of the curve. </param>
<param name="x4">x-coordinate of the ending point of the curve</param>
<param name="y4">y-coordinate of the ending point of the curve</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.Point[])">
<summary>
Draws a closed cardinal spline defined by an array of Point structures.
</summary>
<param name="pen">Pen object that determines the color, width, and height of the curve</param>
<param name="points">Array of Point structures that define the spline</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.PointF[])">
<summary>
Draws a closed cardinal spline defined by an array of PointF structures.
</summary>
<param name="pen">Pen object that determines the color, width, and height of the curve</param>
<param name="points">Array of PointF structures that define the spline</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.Point[],System.Single,System.Drawing.Drawing2D.FillMode)">
<summary>
Draws a closed cardinal spline defined by an array of Point structures using a specified tension.
</summary>
<param name="pen">Pen object that determines the color, width, and height of the curve. </param>
<param name="points">Array of Point structures that define the spline. </param>
<param name="tension">Value greater than or equal to 0.0F that specifies the tension of the curve</param>
<param name="fillmode">Member of the FillMode enumeration that determines how the curve is filled. This parameter is required but ignored</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Single,System.Drawing.Drawing2D.FillMode)">
<summary>
Draws a closed cardinal spline defined by an array of PointF structures using a specified tension.
</summary>
<param name="pen">Pen object that determines the color, width, and height of the curve. </param>
<param name="points">Array of PointF structures that define the spline. </param>
<param name="tension">Value greater than or equal to 0.0F that specifies the tension of the curve</param>
<param name="fillmode">Member of the FillMode enumeration that determines how the curve is filled. This parameter is required but ignored</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawCurve(System.Drawing.Pen,System.Drawing.Point[])">
<summary>
Draws a cardinal spline through a specified array of Point structures.
</summary>
<param name="pen">Pen object that determines the color, width, and height of the curve</param>
<param name="points">Array of Point structures that define the spline</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[])">
<summary>
Draws a cardinal spline through a specified array of PointF structures.
</summary>
<param name="pen">Pen object that determines the color, width, and height of the curve</param>
<param name="points">Array of PointF structures that define the spline</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawCurve(System.Drawing.Pen,System.Drawing.Point[],System.Single)">
<summary>
Draws a cardinal spline through a specified array of Point structures using a specified tension.
</summary>
<param name="pen">Pen object that determines the color, width, and height of the curve</param>
<param name="points">Array of Point structures that define the spline</param>
<param name="tension">Value greater than or equal to 0.0F that specifies the tension of the curve. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Single)">
<summary>
Draws a cardinal spline through a specified array of PointF structures using a specified tension.
</summary>
<param name="pen">Pen object that determines the color, width, and height of the curve</param>
<param name="points">Array of PointF structures that define the spline</param>
<param name="tension">Value greater than or equal to 0.0F that specifies the tension of the curve. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Int32,System.Int32)">
<summary>
Draws a cardinal spline through a specified array of PointF structure. The drawing begins offset from the beginning of the array.
</summary>
<param name="pen">Pen object that determines the color, width, and height of the curve</param>
<param name="points">Array of PointF structures that define the spline. </param>
<param name="offset">Offset from the first element in the array of the points parameter to the starting point in the curve</param>
<param name="numberOfSegments">Number of segments after the starting point to include in the curve. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawCurve(System.Drawing.Pen,System.Drawing.Point[],System.Int32,System.Int32,System.Single)">
<summary>
Draws a cardinal spline through a specified array of Point structures using a specified tension. The drawing begins offset from the beginning of the array.
</summary>
<param name="pen">Pen object that determines the color, width, and height of the curve</param>
<param name="points">Array of Point structures that define the spline. </param>
<param name="offset">Offset from the first element in the array of the points parameter to the starting point in the curve</param>
<param name="numberOfSegments">Number of segments after the starting point to include in the curve. </param>
<param name="tension">Value greater than or equal to 0.0F that specifies the tension of the curve. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Int32,System.Int32,System.Single)">
<summary>
Draws a cardinal spline through a specified array of PointF structures using a specified tension. The drawing begins offset from the beginning of the array.
</summary>
<param name="pen">Pen object that determines the color, width, and height of the curve</param>
<param name="points">Array of PointF structures that define the spline. </param>
<param name="offset">Offset from the first element in the array of the points parameter to the starting point in the curve</param>
<param name="numberOfSegments">Number of segments after the starting point to include in the curve. </param>
<param name="tension">Value greater than or equal to 0.0F that specifies the tension of the curve. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawEllipse(System.Drawing.Pen,System.Drawing.Rectangle)">
<summary>
Draws an ellipse defined by a bounding rectangle specified by a pair of coordinates, a height, and a width.
</summary>
<param name="pen">Pen object that determines the color, width, and style of the ellipse. </param>
<param name="rectangle">Rectangle structure that defines the boundaries of the ellipse. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawEllipse(System.Drawing.Pen,System.Drawing.RectangleF)">
<summary>
Draws an ellipse defined by a bounding rectangle specified by a pair of coordinates, a height, and a width.
</summary>
<param name="pen">Pen object that determines the color, width, and style of the ellipse. </param>
<param name="rectangle">RectangleF structure that defines the boundaries of the ellipse. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawEllipse(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Draws an ellipse defined by a bounding rectangle specified by a pair of coordinates, a height, and a width.
</summary>
<param name="pen">Pen object that determines the color, width, and style of the ellipse. </param>
<param name="x">x-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse</param>
<param name="y">y-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse. </param>
<param name="width">Width of the bounding rectangle that defines the ellipse</param>
<param name="height">Height of the bounding rectangle that defines the ellipse</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawEllipse(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)">
<summary>
Draws an ellipse defined by a bounding rectangle specified by a pair of coordinates, a height, and a width.
</summary>
<param name="pen">Pen object that determines the color, width, and style of the ellipse. </param>
<param name="x">x-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse</param>
<param name="y">y-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse. </param>
<param name="width">Width of the bounding rectangle that defines the ellipse</param>
<param name="height">Height of the bounding rectangle that defines the ellipse</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawLine(System.Drawing.Pen,System.Drawing.Point,System.Drawing.Point)">
<summary>
Draws a line connecting the two points specified by coordinate pairs.
</summary>
<param name="pen">Pen object that determines the color, width, and style of the line</param>
<param name="pt1">Point structure that represents the first point to connect. </param>
<param name="pt2">Point structure that represents the second point to connect. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawLine(System.Drawing.Pen,System.Drawing.PointF,System.Drawing.PointF)">
<summary>
Draws a line connecting the two points specified by coordinate pairs.
</summary>
<param name="pen">Pen object that determines the color, width, and style of the line</param>
<param name="pt1">PointF structure that represents the first point to connect. </param>
<param name="pt2">PointF structure that represents the second point to connect. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawLine(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Draws a line connecting the two points specified by coordinate pairs.
</summary>
<param name="pen">Pen object that determines the color, width, and style of the line. </param>
<param name="x1">x-coordinate of the first point</param>
<param name="y1">y-coordinate of the first point. </param>
<param name="x2">x-coordinate of the second point. </param>
<param name="y2">y-coordinate of the second point. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawLine(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)">
<summary>
Draws a line connecting the two points specified by coordinate pairs.
</summary>
<param name="pen">Pen object that determines the color, width, and style of the line. </param>
<param name="x1">x-coordinate of the first point</param>
<param name="y1">y-coordinate of the first point. </param>
<param name="x2">x-coordinate of the second point. </param>
<param name="y2">y-coordinate of the second point. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawPath(System.Drawing.Pen,System.Drawing.Drawing2D.GraphicsPath)">
<summary>
Draws a GraphicsPath object.
</summary>
<param name="pen">Pen object that determines the color, width, and style of the path</param>
<param name="path">GraphicsPath object to draw</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawPie(System.Drawing.Pen,System.Drawing.Rectangle,System.Single,System.Single)">
<summary>
Draws a pie shape defined by an ellipse specified by a Rectangle structure and two radial lines.
</summary>
<param name="pen">Pen object that determines the color, width, and style of the pie shape</param>
<param name="rectangle">Rectangle structure that represents the bounding rectangle that defines the ellipse from which the pie shape comes</param>
<param name="startAngle">Angle measured in degrees clockwise from the x-axis to the first side of the pie shape</param>
<param name="sweepAngle">Angle measured in degrees clockwise from the startAngle parameter to the second side of the pie shape</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawPie(System.Drawing.Pen,System.Drawing.RectangleF,System.Single,System.Single)">
<summary>
Draws a pie shape defined by an ellipse specified by a RectangleF structure and two radial lines.
</summary>
<param name="pen">Pen object that determines the color, width, and style of the pie shape</param>
<param name="rectangle">RectangleF structure that represents the bounding rectangle that defines the ellipse from which the pie shape comes</param>
<param name="startAngle">Angle measured in degrees clockwise from the x-axis to the first side of the pie shape</param>
<param name="sweepAngle">Angle measured in degrees clockwise from the startAngle parameter to the second side of the pie shape</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawPie(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Single)">
<summary>
Draws a pie shape defined by an ellipse specified by a coordinate pair, a width, and a height and two radial lines.
</summary>
<param name="pen">Pen object that determines the color, width, and style of the pie shape</param>
<param name="x">x-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse from which the pie shape comes. </param>
<param name="y">y-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse from which the pie shape comes. </param>
<param name="width">Width of the bounding rectangle that defines the ellipse from which the pie shape comes</param>
<param name="height">Height of the bounding rectangle that defines the ellipse from which the pie shape comes</param>
<param name="startAngle">Angle measured in degrees clockwise from the x-axis to the first side of the pie shape</param>
<param name="sweepAngle">Angle measured in degrees clockwise from the startAngle parameter to the second side of the pie shape</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawPie(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
<summary>
Draws a pie shape defined by an ellipse specified by a coordinate pair, a width, and a height and two radial lines.
</summary>
<param name="pen">Pen object that determines the color, width, and style of the pie shape</param>
<param name="x">x-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse from which the pie shape comes. </param>
<param name="y">y-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse from which the pie shape comes. </param>
<param name="width">Width of the bounding rectangle that defines the ellipse from which the pie shape comes</param>
<param name="height">Height of the bounding rectangle that defines the ellipse from which the pie shape comes</param>
<param name="startAngle">Angle measured in degrees clockwise from the x-axis to the first side of the pie shape</param>
<param name="sweepAngle">Angle measured in degrees clockwise from the startAngle parameter to the second side of the pie shape</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawRectangle(System.Drawing.Pen,System.Drawing.Rectangle)">
<summary>
Draws a rectangle specified by a coordinate pair, a width, and a height.
</summary>
<param name="pen">Draws a rectangle specified by a coordinate pair, a width, and a height</param>
<param name="rectangle">A Rectangle structure that represents the rectangle to draw. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawRectangle(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Draws a rectangle specified by a coordinate pair, a width, and a height.
</summary>
<param name="pen">Draws a rectangle specified by a coordinate pair, a width, and a height</param>
<param name="x">x-coordinate of the upper-left corner of the rectangle to draw</param>
<param name="y">y-coordinate of the upper-left corner of the rectangle to draw. </param>
<param name="width">Width of the rectangle to draw. </param>
<param name="height">Height of the rectangle to draw. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawRectangle(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)">
<summary>
Draws a rectangle specified by a coordinate pair, a width, and a height.
</summary>
<param name="pen">Draws a rectangle specified by a coordinate pair, a width, and a height</param>
<param name="x">x-coordinate of the upper-left corner of the rectangle to draw</param>
<param name="y">y-coordinate of the upper-left corner of the rectangle to draw. </param>
<param name="width">Width of the rectangle to draw. </param>
<param name="height">Height of the rectangle to draw. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawPolygon(System.Drawing.Pen,System.Drawing.Point[])">
<summary>
Draws a polygon defined by an array of Point structures.
</summary>
<param name="pen">Pen object that determines the color, width, and style of the polygon. </param>
<param name="points">Array of Point structures that represent the vertices of the polygon</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawPolygon(System.Drawing.Pen,System.Drawing.PointF[])">
<summary>
Draws a polygon defined by an array of Point structures.
</summary>
<param name="pen">Pen object that determines the color, width, and style of the polygon. </param>
<param name="points">Array of PointF structures that represent the vertices of the polygon</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.PointF)">
<summary>
Draws the specified text string at the specified location with the specified Brush and Font objects.
</summary>
<param name="s">String to draw</param>
<param name="font">Font object that defines the text format of the string</param>
<param name="brush">Brush object that determines the color and texture of the drawn text</param>
<param name="point">PointF structure that specifies the upper-left corner of the drawn text</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.RectangleF)">
<summary>
Draws the specified text string in the specified rectangle with the specified Brush and Font objects.
</summary>
<param name="s">String to draw</param>
<param name="font">Font object that defines the text format of the string</param>
<param name="brush">Brush object that determines the color and texture of the drawn text</param>
<param name="rectangle">RectangleF structure that specifies the location of the drawn text</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.PointF,System.Drawing.StringFormat)">
<summary>
Draws the specified text string at the specified location with the specified Brush and Font objects using the formatting attributes of the specified StringFormat object.
</summary>
<param name="s">String to draw</param>
<param name="font">Font object that defines the text format of the string</param>
<param name="brush">Brush object that determines the color and texture of the drawn text</param>
<param name="point">PointF structure that specifies the upper-left corner of the drawn text</param>
<param name="format">StringFormat object that specifies formatting attributes, such as line spacing and alignment, that are applied to the drawn text</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.RectangleF,System.Drawing.StringFormat)">
<summary>
Draws the specified text string in the specified rectangle with the specified Brush and Font objects using the formatting attributes of the specified StringFormat object.
</summary>
<param name="s">String to draw</param>
<param name="font">Font object that defines the text format of the string</param>
<param name="brush">Brush object that determines the color and texture of the drawn text</param>
<param name="rectangle">RectangleF structure that specifies the location of the drawn text</param>
<param name="format">StringFormat object that specifies formatting attributes, such as line spacing and alignment, that are applied to the drawn text</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Single,System.Single)">
<summary>
Draws the specified text string at the specified location with the specified Brush and Font objects.
</summary>
<param name="s">String to draw</param>
<param name="font">Font object that defines the text format of the string</param>
<param name="brush">Brush object that determines the color and texture of the drawn text</param>
<param name="x">x coordinate of the upper-left corner of the drawn text. </param>
<param name="y">y coordinate of the upper-left corner of the drawn text. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Single,System.Single,System.Drawing.StringFormat)">
<summary>
Draws the specified text string at the specified location with the specified Brush and Font objects using the formatting attributes of the specified StringFormat object.
</summary>
<param name="s">String to draw</param>
<param name="font">Font object that defines the text format of the string</param>
<param name="brush">Brush object that determines the color and texture of the drawn text</param>
<param name="x">x coordinate of the upper-left corner of the drawn text. </param>
<param name="y">y coordinate of the upper-left corner of the drawn text. </param>
<param name="format">StringFormat object that specifies formatting attributes, such as line spacing and alignment, that are applied to the drawn text</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawImage(System.Drawing.Image,System.Int32,System.Int32)">
<summary>
Draws the specified Image object, using its original physical size, at the specified location.
</summary>
<param name="image">Image object to draw. </param>
<param name="x">x-coordinate of the upper-left corner of the drawn image</param>
<param name="y">Y-coordinate of the upper-left corner of the drawn image</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawImage(System.Drawing.Image,System.Drawing.Point)">
<summary>
Draws the specified Image object, using its original physical size, at the specified location.
</summary>
<param name="image">Image object to draw. </param>
<param name="point">Point structure that represents the location of the upper-left corner of the drawn image</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle)">
<summary>
Draws the specified Image object at the specified location and with the specified size.
</summary>
<param name="image">Image object to draw. </param>
<param name="rectangle">Rectangle structure that specifies the location and size of the drawn image. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawImage(System.Drawing.Image,System.Drawing.RectangleF)">
<summary>
Draws the specified Image object at the specified location and with the specified size.
</summary>
<param name="image">Image object to draw.</param>
<param name="rectangle">Rectangle structure that specifies the location and size of the drawn image.</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawImage(System.Drawing.Image,System.Drawing.PointF)">
<summary>
Draws the specified Image object, using its original physical size, at the specified location.
</summary>
<param name="image">Image object to draw. </param>
<param name="point">Point structure that represents the location of the upper-left corner of the drawn image</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.DrawImage(System.Drawing.Image,System.Single,System.Single)">
<summary>
Draws the specified Image object, using its original physical size, at the specified location.
</summary>
<param name="image">Image object to draw. </param>
<param name="x">x-coordinate of the upper-left corner of the drawn image</param>
<param name="y">Y-coordinate of the upper-left corner of the drawn image</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.Point[])">
<summary>
Fills the interior a closed cardinal spline curve defined by an array of Point structures.
</summary>
<param name="brush">Brush object that determines the characteristics of the fill. </param>
<param name="points">Array of Point structures that define the spline</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.PointF[])">
<summary>
Fills the interior a closed cardinal spline curve defined by an array of PointF structures.
</summary>
<param name="brush">Brush object that determines the characteristics of the fill. </param>
<param name="points">Array of PointF structures that define the spline</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.Point[],System.Drawing.Drawing2D.FillMode)">
<summary>
Fills the interior a closed cardinal spline curve defined by an array of Point structures using the specified fill mode.
</summary>
<param name="brush">Brush object that determines the characteristics of the fill. </param>
<param name="points">Array of Point structures that define the spline</param>
<param name="fillmode">Member of the FillMode enumeration that determines how the curve is filled. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.PointF[],System.Drawing.Drawing2D.FillMode)">
<summary>
Fills the interior a closed cardinal spline curve defined by an array of PointF structures using the specified fill mode.
</summary>
<param name="brush">Brush object that determines the characteristics of the fill. </param>
<param name="points">Array of PointF structures that define the spline</param>
<param name="fillmode">Member of the FillMode enumeration that determines how the curve is filled. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.Point[],System.Drawing.Drawing2D.FillMode,System.Single)">
<summary>
Fills the interior a closed cardinal spline curve defined by an array of Point structures using the specified fill mode and tension.
</summary>
<param name="brush">Brush object that determines the characteristics of the fill. </param>
<param name="points">Array of Point structures that define the spline</param>
<param name="fillmode">Member of the FillMode enumeration that determines how the curve is filled</param>
<param name="tension">Value greater than or equal to 0.0F that specifies the tension of the curve</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.PointF[],System.Drawing.Drawing2D.FillMode,System.Single)">
<summary>
Fills the interior a closed cardinal spline curve defined by an array of PointF structures using the specified fill mode and tension.
</summary>
<param name="brush">Brush object that determines the characteristics of the fill. </param>
<param name="points">Array of PointF structures that define the spline</param>
<param name="fillmode">Member of the FillMode enumeration that determines how the curve is filled</param>
<param name="tension">Value greater than or equal to 0.0F that specifies the tension of the curve</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FillEllipse(System.Drawing.Brush,System.Drawing.Rectangle)">
<summary>
Fills the interior of an ellipse defined by a bounding rectangle specified by a pair of coordinates, a width, and a height.
</summary>
<param name="brush">Brush object that determines the characteristics of the fill. </param>
<param name="rectangle">Rectangle structure that represents the bounding rectangle that defines the ellipse</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FillEllipse(System.Drawing.Brush,System.Drawing.RectangleF)">
<summary>
Fills the interior of an ellipse defined by a bounding rectangle specified by a pair of coordinates, a width, and a height.
</summary>
<param name="brush">Brush object that determines the characteristics of the fill. </param>
<param name="rectangle">RectangleF structure that represents the bounding rectangle that defines the ellipse</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FillEllipse(System.Drawing.Brush,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Fills the interior of an ellipse defined by a bounding rectangle specified by a pair of coordinates, a width, and a height.
</summary>
<param name="brush">Brush object that determines the characteristics of the fill. </param>
<param name="x">x-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse</param>
<param name="y">y-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse</param>
<param name="width">Width of the bounding rectangle that defines the ellipse</param>
<param name="height">Height of the bounding rectangle that defines the ellipse</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FillEllipse(System.Drawing.Brush,System.Single,System.Single,System.Single,System.Single)">
<summary>
Fills the interior of an ellipse defined by a bounding rectangle specified by a pair of coordinates, a width, and a height.
</summary>
<param name="brush">Brush object that determines the characteristics of the fill. </param>
<param name="x">x-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse</param>
<param name="y">y-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse</param>
<param name="width">Width of the bounding rectangle that defines the ellipse</param>
<param name="height">Height of the bounding rectangle that defines the ellipse</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FillPie(System.Drawing.Brush,System.Drawing.Rectangle,System.Single,System.Single)">
<summary>
Fills the interior of a pie section defined by an ellipse specified by a Rectangle structure and two radial lines.
</summary>
<param name="brush">Brush object that determines the characteristics of the fill. </param>
<param name="rectangle">Rectangle structure that represents the bounding rectangle that defines the ellipse from which the pie section comes</param>
<param name="startAngle">Angle in degrees measured clockwise from the x-axis to the first side of the pie section</param>
<param name="sweepAngle">Angle in degrees measured clockwise from the startAngle parameter to the second side of the pie section</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FillPie(System.Drawing.Brush,System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Single)">
<summary>
Fills the interior of a pie section defined by an ellipse specified by a pair of coordinates, a width, and a height and two radial lines.
</summary>
<param name="brush">Brush object that determines the color, width, and style of the pie shape</param>
<param name="x">x-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse from which the pie shape comes. </param>
<param name="y">y-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse from which the pie shape comes. </param>
<param name="width">Width of the bounding rectangle that defines the ellipse from which the pie shape comes</param>
<param name="height">Height of the bounding rectangle that defines the ellipse from which the pie shape comes</param>
<param name="startAngle">Angle measured in degrees clockwise from the x-axis to the first side of the pie shape</param>
<param name="sweepAngle">Angle measured in degrees clockwise from the startAngle parameter to the second side of the pie shape</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FillPie(System.Drawing.Brush,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
<summary>
Fills the interior of a pie section defined by an ellipse specified by a pair of coordinates, a width, and a height and two radial lines.
</summary>
<param name="brush">Brush object that determines the color, width, and style of the pie shape</param>
<param name="x">x-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse from which the pie shape comes. </param>
<param name="y">y-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse from which the pie shape comes. </param>
<param name="width">Width of the bounding rectangle that defines the ellipse from which the pie shape comes</param>
<param name="height">Height of the bounding rectangle that defines the ellipse from which the pie shape comes</param>
<param name="startAngle">Angle measured in degrees clockwise from the x-axis to the first side of the pie shape</param>
<param name="sweepAngle">Angle measured in degrees clockwise from the startAngle parameter to the second side of the pie shape</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FillRectangle(System.Drawing.Brush,System.Drawing.Rectangle)">
<summary>
Fills the interior of a rectangle specified by a Rectangle structure.Filled area determined by FillMode.Alternate
</summary>
<param name="brush">Brush object that determines the characteristics of the fill. </param>
<param name="rectangle">Rectangle structure that represents the rectangle to fill. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FillRectangle(System.Drawing.Brush,System.Drawing.RectangleF)">
<summary>
Fills the interior of a rectangle specified by a Rectangle structure.Filled area determined by FillMode.Alternate
</summary>
<param name="brush">Brush object that determines the characteristics of the fill. </param>
<param name="rectangle">RectangleF structure that represents the rectangle to fill. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FillRectangle(System.Drawing.Brush,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Fills the interior of a rectangle specified by a pair of coordinates, a width, and a height.
</summary>
<param name="brush">Brush object that determines the characteristics of the fill. </param>
<param name="x">x-coordinate of the upper-left corner of the rectangle to fill. </param>
<param name="y">y-coordinate of the upper-left corner of the rectangle to fill. </param>
<param name="width">Width of the rectangle to fill. </param>
<param name="height">Height of the rectangle to fill. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FillRectangle(System.Drawing.Brush,System.Single,System.Single,System.Single,System.Single)">
<summary>
Fills the interior of a rectangle specified by a pair of coordinates, a width, and a height.
</summary>
<param name="brush">Brush object that determines the characteristics of the fill. </param>
<param name="x">x-coordinate of the upper-left corner of the rectangle to fill. </param>
<param name="y">y-coordinate of the upper-left corner of the rectangle to fill. </param>
<param name="width">Width of the rectangle to fill. </param>
<param name="height">Height of the rectangle to fill. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FillPolygon(System.Drawing.Brush,System.Drawing.Point[])">
<summary>
Fills the interior of a polygon defined by an array of points specified by Point structures.
</summary>
<param name="brush">Brush object that determines the characteristics of the fill</param>
<param name="points">Array of Point structures that represent the vertices of the polygon to fill. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FillPolygon(System.Drawing.Brush,System.Drawing.PointF[])">
<summary>
Fills the interior of a polygon defined by an array of points specified by Point structures.
</summary>
<param name="brush">Brush object that determines the characteristics of the fill</param>
<param name="points">Array of PointF structures that represent the vertices of the polygon to fill. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FillPolygon(System.Drawing.Brush,System.Drawing.Point[],System.Drawing.Drawing2D.FillMode)">
<summary>
Fills the interior of a polygon defined by an array of points specified by Point structures using the specified fill mode.
</summary>
<param name="brush">Brush object that determines the characteristics of the fill</param>
<param name="points">Array of Point structures that represent the vertices of the polygon to fill. </param>
<param name="fillmode">Member of the FillMode enumeration that determines the style of the fill. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FillPolygon(System.Drawing.Brush,System.Drawing.PointF[],System.Drawing.Drawing2D.FillMode)">
<summary>
Fills the interior of a polygon defined by an array of points specified by Point structures using the specified fill mode.
</summary>
<param name="brush">Brush object that determines the characteristics of the fill</param>
<param name="points">Array of Point structures that represent the vertices of the polygon to fill. </param>
<param name="fillmode">Member of the FillMode enumeration that determines the style of the fill. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.SetClip(System.Drawing.Drawing2D.GraphicsPath)">
<summary>
Sets the clipping region of this Graphics object to the specified GraphicsPath object.
</summary>
<param name="path">GraphicsPath object that represents the new clip region. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.SetClip(System.Drawing.Rectangle)">
<summary>
Sets the clipping region of this Graphics object to the rectangle specified by a Rectangle structure.
</summary>
<param name="rectangle">Rectangle structure that represents the new clip region. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.SetClip(System.Drawing.RectangleF)">
<summary>
Sets the clipping region of this Graphics object to the rectangle specified by a RectangleFSS structure.
</summary>
<param name="rectangle">RectangleF structure that represents the new clip region. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.SetClip(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.CombineMode)">
<summary>
Sets the clipping region of this Graphics object to the result of the specified operation combining the current clip region and the specified GraphicsPath object.
</summary>
<param name="path">GraphicsPath object that represents the new clip region. </param>
<param name="mode">Member of the CombineMode enumeration that specifies the combining operation to use. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.SetClip(System.Drawing.Rectangle,System.Drawing.Drawing2D.CombineMode)">
<summary>
Sets the clipping region of this Graphics object to the result of the specified operation combining the current clip region and the rectangle specified by a Rectangle structure.
</summary>
<param name="rectangle">Rectangle structure to combine. </param>
<param name="mode">Member of the CombineMode enumeration that specifies the combining operation to use. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.SetClip(System.Drawing.RectangleF,System.Drawing.Drawing2D.CombineMode)">
<summary>
Sets the clipping region of this Graphics object to the result of the specified operation combining the current clip region and the rectangle specified by a RectangleF structure.
</summary>
<param name="rectangle">RectangleF structure to combine. </param>
<param name="mode">Member of the CombineMode enumeration that specifies the combining operation to use. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.SetClip(System.Drawing.Region,System.Drawing.Drawing2D.CombineMode)">
<summary>
Sets the clipping region of this Graphics object to the result of the specified operation combining the current clip region and the specified Region object.
</summary>
<param name="region">Region object to combine. </param>
<param name="mode">Member of the CombineMode enumeration that specifies the combining operation to use. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.MultiplyTransform(System.Drawing.Drawing2D.Matrix)">
<summary>
Multiplies the world transformation of this Graphics object and specified the Matrix object.
</summary>
<param name="matrix">3x3 Matrix object that multiplies the world transformation</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)">
<summary>
Multiplies the world transformation of this Graphics object and specified the Matrix object in the specified order.
</summary>
<param name="matrix">3x3 Matrix object that multiplies the world transformation</param>
<param name="order">Member of the MatrixOrder enumeration that determines the order of the multiplication. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.RotateTransform(System.Single)">
<summary>
Applies the specified rotation to the transformation matrix of this Graphics object.
</summary>
<param name="angle">Angle of rotation in degrees. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)">
<summary>
Applies the specified rotation to the transformation matrix of this Graphics object in the specified order.
</summary>
<param name="angle">Angle of rotation in degrees. </param>
<param name="order">Member of the MatrixOrder enumeration that determines the order of the multiplication. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.ScaleTransform(System.Single,System.Single)">
<summary>
Applies the specified scaling operation to the transformation matrix of this Graphics object by prepending it to the object's transformation matrix.
</summary>
<param name="sx">Scale factor in the x direction. </param>
<param name="sy">Scale factor in the y direction. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)">
<summary>
Applies the specified scaling operation to the transformation matrix of this Graphics object in the specified order.
</summary>
<param name="sx">Scale factor in the x direction. </param>
<param name="sy">Scale factor in the y direction. </param>
<param name="order">Member of the MatrixOrder enumeration that determines the order of the multiplication. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.TranslateTransform(System.Single,System.Single)">
<summary>
Prepends the specified translation to the transformation matrix of this Graphics object.
</summary>
<param name="dx">x component of the translation. </param>
<param name="dy">y component of the translation. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)">
<summary>
Applies the specified translation to the transformation matrix of this Graphics object in the specified order.
</summary>
<param name="dx">x component of the translation. </param>
<param name="dy">y component of the translation. </param>
<param name="order">Member of the MatrixOrder enumeration that determines the order of the multiplication. </param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.ResetTransform">
<summary>
Resets the world transformation matrix of this Graphics object to the identity matrix.
</summary>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.ResetClip">
<summary>
Resets the clip.
</summary>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.Commit">
<summary>
Clears all the saved state.
</summary>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FarPoint#Win#IBorderGraphics#DrawArc(System.Drawing.Pen,System.Single,System.Single,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Draws the arc.
</summary>
<param name="cornerPen">Corner pen</param>
<param name="x">Start x-coordinate of the arc</param>
<param name="y">Start y-coordinate of the arc</param>
<param name="width">Width of the arc</param>
<param name="height">Height of the arc</param>
<param name="startAngle">Start angle of the arc</param>
<param name="sweepAngle">Sweep angle of the arc</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FarPoint#Win#IBorderGraphics#DrawLine(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)">
<summary>
Draws the line.
</summary>
<param name="pen">Pen for drawing the line</param>
<param name="x1">Start x-coordinate of the line</param>
<param name="y1">Start y-coordinate of the line</param>
<param name="x2">End x-coordinate of the line</param>
<param name="y2">End y-coordinate of the line</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FarPoint#Win#IBorderGraphics#IntersectClip(System.Drawing.Region)">
<summary>
Intersects the clip.
</summary>
<param name="region">Region</param>
</member>
<member name="M:FarPoint.PDF.PdfGraphics.FarPoint#Win#IBorderGraphics#Save">
<summary>
Saves this instance.
</summary>
<returns></returns>
</member>
<member name="P:FarPoint.PDF.PdfGraphics.pdfGraphics">
<summary>
Gets the PDF graphics device.
</summary>
<value>PDF graphics device</value>
</member>
<member name="P:FarPoint.PDF.PdfGraphics.ShowColor">
<summary>
Gets or sets a value indicating whether [show color].
</summary>
<value><c>true</c> if [show color]; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.PDF.PdfGraphics.IsEmpty">
<summary>
Gets a whether this instance is empty.
</summary>
<value>Boolean: <c>true</c> if this instance is empty; otherwise, <c>false</c></value>
</member>
<member name="P:FarPoint.PDF.PdfGraphics.Clip">
<summary>
Gets or sets the clip.
</summary>
<value>Clip</value>
</member>
<member name="P:FarPoint.PDF.PdfGraphics.Transform">
<summary>
Gets or sets the world transformation for this Graphics object.
</summary>
</member>
<member name="P:FarPoint.PDF.PdfGraphics.PageUnit">
<summary>
Gets or sets the unit of measure used for page coordinates in this Graphics object.
</summary>
</member>
<member name="P:FarPoint.PDF.PdfGraphics.Dpi">
<summary>
Gets or sets the resolution (or DPI) in pixels per inch.
</summary>
</member>
<member name="T:FarPoint.PDF.PdfPrintDocument">
<summary>
Defines a reusable object that sends output to a PDF file.
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument._pageSettings">
<summary>
Indicates the default settings.
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument._title">
<summary>
Indicates the title info.
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument._author">
<summary>
Indicates the author info.
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument._subject">
<summary>
Indicates the subject info.
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument._creator">
<summary>
Indicates the creator info.
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument._producer">
<summary>
Indicates the producer info.
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument._creationDate">
<summary>
Indicates the creation date info.
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument._originAtMargins">
<summary>
Indicates how to set the start position for PDF graphics object.
</summary>
</member>
<member name="M:FarPoint.PDF.PdfPrintDocument.OnPrintPage(FarPoint.PDF.PdfPrintPageEventArgs)">
<summary>
Raises the System.Drawing.Printing.PrintDocument.PrintPage event. It is called before a page prints.
</summary>
<param name="e">
A System.Drawing.Printing.PrintPageEventArgs that contains the event data.
</param>
</member>
<member name="M:FarPoint.PDF.PdfPrintDocument.OnBeginPrint(System.Drawing.Printing.PrintEventArgs)">
<summary>
Raises the BeginPrint event.
</summary>
<param name="e">PrintEventArgs instance containing the event data</param>
</member>
<member name="M:FarPoint.PDF.PdfPrintDocument.OnEndPrint(System.Drawing.Printing.PrintEventArgs)">
<summary>
Raises the EndPrint event.
</summary>
<param name="e">PrintEventArgs instance containing the event data</param>
</member>
<member name="M:FarPoint.PDF.PdfPrintDocument.OnQueryPageSettings(FarPoint.PDF.PdfQueryPageSettingsEventArgs)">
<summary>
Raises the QueryPageSettings event. It is called immediately before each PrintPage event.
</summary>
<param name="e">
A System.Drawing.Printing.PdfQueryPageSettingsEventArgs that contains the event data.
</param>
</member>
<member name="M:FarPoint.PDF.PdfPrintDocument.Print(System.String)">
<summary>
Starts the document printing process.
</summary>
<param name="filename"><b>String</b> containing the export PDF file name.</param>
</member>
<member name="M:FarPoint.PDF.PdfPrintDocument.Print(System.IO.Stream)">
<summary>
Starts the document printing process.
</summary>
<param name="stream"><see cref="T:System.IO.Stream"/> containing the export PDF file.</param>
</member>
<member name="M:FarPoint.PDF.PdfPrintDocument.Print(System.IO.MemoryStream)">
<summary>
Prints the PDF content to memory.
</summary>
<param name="stream"><see cref="T:System.IO.MemoryStream"/> containing the PDF output</param>
<returns>
Boolean: <b>true</b> if the print is complete; <b>false</b> if the print is canceled.
</returns>
</member>
<member name="M:FarPoint.PDF.PdfPrintDocument.PrintAllInOne">
<summary>
Prints all in one.
</summary>
</member>
<member name="M:FarPoint.PDF.PdfPrintDocument.BeforePrintAllInOne">
<summary>
Determines whether before the print all in one.
</summary>
<returns>Boolean: true if before; false otherwise</returns>
</member>
<member name="M:FarPoint.PDF.PdfPrintDocument.AfterPrintAllInOne">
<summary>
Determines whether after the print all in one.
</summary>
<returns>Boolean: true if before; false otherwise</returns>
</member>
<member name="M:FarPoint.PDF.PdfPrintDocument.FinishPrintAllInOne(System.IO.Stream)">
<summary>
Finishes the print all in one.
</summary>
<param name="stream">Stream</param>
</member>
<member name="M:FarPoint.PDF.PdfPrintDocument.FinishPrintAllInOne(System.IO.Stream,System.Boolean,System.Boolean)">
<summary>
Finishes the print all in one.
</summary>
<param name="stream">Stream</param>
<param name="closeDocument">Whether to close the document</param>
<param name="closeStream">Whether to close the stream</param>
</member>
<member name="M:FarPoint.PDF.PdfPrintDocument.DisposeAllInOneDocument">
<summary>
Disposes of the all-in-one document when done.
</summary>
</member>
<member name="P:FarPoint.PDF.PdfPrintDocument.DefaultPageSettings">
<summary>
Gets or sets page settings that are used as defaults for all pages to be printed.
</summary>
</member>
<member name="P:FarPoint.PDF.PdfPrintDocument.Title">
<summary>
Gets or sets the title of the PDF file.
</summary>
</member>
<member name="P:FarPoint.PDF.PdfPrintDocument.Author">
<summary>
Gets or sets the author of the PDF file.
</summary>
</member>
<member name="P:FarPoint.PDF.PdfPrintDocument.Subject">
<summary>
Gets or sets the subject of the PDF file.
</summary>
</member>
<member name="P:FarPoint.PDF.PdfPrintDocument.Creator">
<summary>
Gets or sets the creator of the PDF file.
</summary>
</member>
<member name="P:FarPoint.PDF.PdfPrintDocument.Producer">
<summary>
Gets or sets the producer of the PDF file.
</summary>
</member>
<member name="P:FarPoint.PDF.PdfPrintDocument.CreationDate">
<summary>
Gets or sets the creation date for the PDF file.
</summary>
</member>
<member name="P:FarPoint.PDF.PdfPrintDocument.OriginAtMargins">
<summary>
Gets or sets whether the position of a graphics object associated with a page
is located at the top-left corner of the printable area of the page (origin) or
just inside the user-specified margins.
</summary>
</member>
<member name="E:FarPoint.PDF.PdfPrintDocument.PrintPage">
<summary>
Occurs when the output to print for the current page is needed.
</summary>
</member>
<member name="E:FarPoint.PDF.PdfPrintDocument.BeginPrint">
<summary>
Occurs when the Print method is called and before the first page of the document prints.
</summary>
</member>
<member name="E:FarPoint.PDF.PdfPrintDocument.EndPrint">
<summary>
Occurs when the last page of the document has printed.
</summary>
</member>
<member name="E:FarPoint.PDF.PdfPrintDocument.QueryPageSettings">
<summary>
Occurs immediately before each PrintPage event.
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.DRIVERVERSION">
<summary>
Device driver version
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.TECHNOLOGY">
<summary>
Device classification
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.HORZSIZE">
<summary>
Horizontal size in millimeters
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.VERTSIZE">
<summary>
Vertical size in millimeters
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.HORZRES">
<summary>
Horizontal width in pixels
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.VERTRES">
<summary>
Vertical height in pixels
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.BITSPIXEL">
<summary>
Number of bits per pixel
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.PLANES">
<summary>
Number of planes
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.NUMBRUSHES">
<summary>
Number of brushes the device has
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.NUMPENS">
<summary>
Number of pens the device has
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.NUMMARKERS">
<summary>
Number of markers the device has
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.NUMFONTS">
<summary>
Number of fonts the device has
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.NUMCOLORS">
<summary>
Number of colors the device supports
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.PDEVICESIZE">
<summary>
Size required for device descriptor
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.CURVECAPS">
<summary>
Curve capabilities
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.LINECAPS">
<summary>
Line capabilities
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.POLYGONALCAPS">
<summary>
Polygonal capabilities
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.TEXTCAPS">
<summary>
Text capabilities
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.CLIPCAPS">
<summary>
Clipping capabilities
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.RASTERCAPS">
<summary>
Bitblt capabilities
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.ASPECTX">
<summary>
Length of the X leg
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.ASPECTY">
<summary>
Length of the Y leg
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.ASPECTXY">
<summary>
Length of the hypotenuse
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.SHADEBLENDCAPS">
<summary>
Shading and Blending caps
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.LOGPIXELSX">
<summary>
Logical pixels inch in X
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.LOGPIXELSY">
<summary>
Logical pixels inch in Y
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.SIZEPALETTE">
<summary>
Number of entries in physical palette
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.NUMRESERVED">
<summary>
Number of reserved entries in palette
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.COLORRES">
<summary>
Actual color resolution
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.PHYSICALWIDTH">
<summary>
Physical Width in device units
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.PHYSICALHEIGHT">
<summary>
Physical Height in device units
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.PHYSICALOFFSETX">
<summary>
Physical Printable Area x margin
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.PHYSICALOFFSETY">
<summary>
Physical Printable Area y margin
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.SCALINGFACTORX">
<summary>
Scaling factor x
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.SCALINGFACTORY">
<summary>
Scaling factor y
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.VREFRESH">
<summary>
Current vertical refresh rate of the display device (for displays only) in Hz
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.DESKTOPVERTRES">
<summary>
Horizontal width of entire desktop in pixels
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.DESKTOPHORZRES">
<summary>
Vertical height of entire desktop in pixels
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintDocument.DeviceCap.BLTALIGNMENT">
<summary>
Preferred blt alignment
</summary>
</member>
<member name="T:FarPoint.PDF.PdfPrintPageEventHandler">
<summary>
Represents the method that will handle the <see cref="E:FarPoint.PDF.PdfPrintDocument.PrintPage"/> event
of a <see cref="T:FarPoint.PDF.PdfPrintDocument"/>.
</summary>
<param name="sender">Source of the event</param>
<param name="e"><see cref="T:FarPoint.PDF.PdfPrintPageEventArgs"/> that contains the event data</param>
</member>
<member name="T:FarPoint.PDF.PdfPrintPageEventArgs">
<summary>
Provides data for the System.Drawing.Printing.PrintDocument.PrintPage event.
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintPageEventArgs._graphics">
<summary>
Indicates the PDF graphics device for printing the page.
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintPageEventArgs._mBounds">
<summary>
Indicates the rectangular area that represents the portion of the page inside the margins.
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintPageEventArgs._pageBounds">
<summary>
Indicates the rectangular area that represents the total area of the page.
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintPageEventArgs._settings">
<summary>
Indicates the page settings for the current page.
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintPageEventArgs._cancel">
<summary>
Indicates the print job should be canceled.
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPrintPageEventArgs._hasMorePage">
<summary>
Indicates whether an additional page should be printed.
</summary>
</member>
<member name="M:FarPoint.PDF.PdfPrintPageEventArgs.#ctor(FarPoint.PDF.PdfGraphics,System.Drawing.Rectangle,System.Drawing.Rectangle,FarPoint.PDF.PdfPageSettings)">
<summary>
Creates a new PDF print page event arguments object.
</summary>
<param name="graphics">PDF graphics device for painting the item</param>
<param name="marginBounds">Area between the margins</param>
<param name="pageBounds">Total area of the paper</param>
<param name="pageSettings"><see cref="T:FarPoint.PDF.PdfPageSettings"/> for the page</param>
</member>
<member name="P:FarPoint.PDF.PdfPrintPageEventArgs.Cancel">
<summary>
Gets or sets whether the print job should be canceled.
</summary>
<value>Boolean: <b>true</b> if the print job should be canceled; otherwise, <b>false</b></value>
</member>
<member name="P:FarPoint.PDF.PdfPrintPageEventArgs.HasMorePages">
<summary>
Gets or sets whether an additional page should be printed.
</summary>
<value>Boolean: <b>true</b> if an additional page should be printed; otherwise, <b>false</b>.</value>
The default is <b>false</b>.
</member>
<member name="P:FarPoint.PDF.PdfPrintPageEventArgs.Graphics">
<summary>
Gets the PDF graphics device for painting the page.
</summary>
</member>
<member name="P:FarPoint.PDF.PdfPrintPageEventArgs.MarginBounds">
<summary>
Gets the rectangular area that represents the portion of the page inside the margins.
</summary>
<value>Rectangular area that represents the portion of the page inside the margins, in hundredths of an inch</value>
</member>
<member name="P:FarPoint.PDF.PdfPrintPageEventArgs.PageBounds">
<summary>
Gets the rectangular area that represents the total area of the page.
</summary>
<value>Rectangular area that represents the total area of the page</value>
</member>
<member name="P:FarPoint.PDF.PdfPrintPageEventArgs.PageSettings">
<summary>
Gets the page settings for the current page.
</summary>
</member>
<member name="T:FarPoint.PDF.PdfQueryPageSettingsEventHandler">
<summary>
Represents the method that will handle the <see cref="E:FarPoint.PDF.PdfPrintDocument.QueryPageSettings"/> event
of a <see cref="T:FarPoint.PDF.PdfPrintDocument"/>.
</summary>
<param name="sender">Source of the event</param>
<param name="e"><see cref="T:FarPoint.PDF.PdfQueryPageSettingsEventArgs"/> that contains the event data</param>
</member>
<member name="T:FarPoint.PDF.PdfQueryPageSettingsEventArgs">
<summary>
Provides data for the System.Drawing.Printing.PrintDocument.QueryPageSettings event.
</summary>
</member>
<member name="M:FarPoint.PDF.PdfQueryPageSettingsEventArgs.#ctor(FarPoint.PDF.PdfPageSettings)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.PDF.PdfQueryPageSettingsEventArgs"/> class.
</summary>
<param name="settings"><see cref="T:FarPoint.PDF.PdfPageSettings"/> for the page</param>
</member>
<member name="F:FarPoint.PDF.PdfQueryPageSettingsEventArgs._settings">
<summary>
Indicates the page settings for the current page.
</summary>
</member>
<member name="P:FarPoint.PDF.PdfQueryPageSettingsEventArgs.PageSettings">
<summary>
Gets or sets the page settings for the current page.
</summary>
</member>
<member name="T:FarPoint.PDF.PdfPageSettings">
<summary>
Specifies settings that apply to a single, printed page for PDF document.
</summary>
</member>
<member name="M:FarPoint.PDF.PdfPageSettings.#ctor(System.Drawing.Printing.PageSettings)">
<summary>
Initializes a new instance of the <see cref="T:PdfPageSettings"/> class.
</summary>
<param name="pageSettings">The page settings</param>
</member>
<member name="M:FarPoint.PDF.PdfPageSettings.#ctor">
<summary>
Initializes a new instance of the <see cref="T:PdfPageSettings"/> class.
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPageSettings._landscape">
<summary>
Indicates whether the page is printed in landscape or portrait orientation.
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPageSettings._paperSize">
<summary>
Indicates the size of the pager.
</summary>
</member>
<member name="F:FarPoint.PDF.PdfPageSettings._margins">
<summary>
Indicates the margins of this page.
</summary>
</member>
<member name="M:FarPoint.PDF.PdfPageSettings.Clone">
<summary>
Creates a copy of this <see cref="T:FarPoint.PDF.PdfPageSettings"/> object.
</summary>
<returns>Copy of this object</returns>
</member>
<member name="M:FarPoint.PDF.PdfPageSettings.ToString">
<summary>
Provides some interesting information about the PageSettings in String form.
</summary>
<returns>String</returns>
</member>
<member name="M:FarPoint.PDF.PdfPageSettings.CreatePaperSizeByInch(System.Drawing.Printing.PaperKind,System.Int32,System.Int32)">
<summary>
Creates a paper size in units of hundreths of an inch.
</summary>
<param name="kind">Kind of paper</param>
<param name="width">Width of paper, in hundreths of an inch</param>
<param name="height">Height of paper, in hundreths of an inch</param>
<returns>Created PaperSize object</returns>
</member>
<member name="M:FarPoint.PDF.PdfPageSettings.CreatePaperSizeByMM(System.Drawing.Printing.PaperKind,System.Int32,System.Int32)">
<summary>
Creates a paper size in units of millimeters.
</summary>
<param name="kind">Kind of paper</param>
<param name="width">Width of paper in millimeters</param>
<param name="height">Height of paper in millimeters</param>
<returns>Created PaperSize object</returns>
</member>
<member name="P:FarPoint.PDF.PdfPageSettings.Bounds">
<summary>
Gets the size of the page, taking into account the page orientation
specified by the System.Drawing.Printing.PageSettings.Landscape property.
</summary>
<value>
A System.Drawing.Rectangle that represents the length and width (in hundredths of an inch) of the page.
</value>
</member>
<member name="P:FarPoint.PDF.PdfPageSettings.Landscape">
<summary>
Gets or sets a value indicating whether the page is printed in landscape or portrait orientation.
</summary>
</member>
<member name="P:FarPoint.PDF.PdfPageSettings.PaperSize">
<summary>
Gets or sets the paper size for the page.
</summary>
</member>
<member name="P:FarPoint.PDF.PdfPageSettings.Margins">
<summary>
Gets or sets the margins for this page.
</summary>
</member>
<member name="P:FarPoint.PDF.PdfPageSettings.DefaultPaperSize">
<summary>
Gets the default page size object.
</summary>
</member>
<member name="T:FarPoint.PDF.PaintHelper">
<summary>
drawing method for paint.
</summary>
</member>
<member name="F:FarPoint.PDF.PaintHelper.IgnoredDirection">
<summary>
Does the unit conversion without considering direction.
</summary>
</member>
<member name="F:FarPoint.PDF.PaintHelper.VerticalDirection">
<summary>
Does the unit conversion along the vertical direction.
</summary>
</member>
<member name="F:FarPoint.PDF.PaintHelper.HorizontalDirection">
<summary>
Does the unit conversion along the horizontal direction.
</summary>
</member>
<member name="M:FarPoint.PDF.PaintHelper.FillMergeRectangle(FarPoint.PDF.PdfGraphics,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color)">
<summary>
Fills the rectangle by merge color.
</summary>
<param name="g">PDF graphics device</param>
<param name="rect">Rectangle bounding the area to fill</param>
<param name="color1">First color to merge</param>
<param name="color2">Second color to merge</param>
</member>
<member name="M:FarPoint.PDF.PaintHelper.FillRectangle(FarPoint.PDF.PdfGraphics,System.Drawing.RectangleF,System.Drawing.Color)">
<summary>
Fills the rectangle.
</summary>
<param name="g">Graphics device</param>
<param name="rect">Rectangle bounding the area to fill</param>
<param name="color">Color</param>
</member>
<member name="M:FarPoint.PDF.PaintHelper.DrawLineEndCap(FarPoint.PDF.PdfGraphics,System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)">
<summary>
Draws the line end cap.
</summary>
<param name="g">PDF graphics device</param>
<param name="p">Pen</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="x1">X1-coordinate</param>
<param name="y1">Y1-coordinate</param>
</member>
<member name="M:FarPoint.PDF.PaintHelper.DrawLine(FarPoint.PDF.PdfGraphics,System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)">
<summary>
Draws the line by adding o.5f to both borders.
</summary>
<param name="g">PDF graphics device</param>
<param name="p">Pen</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="x1">X1-coordinate</param>
<param name="y1">Y1-coordinate</param>
</member>
<member name="M:FarPoint.PDF.PaintHelper.DrawLineWithCompoundPen(FarPoint.PDF.PdfGraphics,System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)">
<summary>
Draws the line with compound pen.
</summary>
</member>
<member name="F:FarPoint.PDF.PaintHelper.ShadeColor">
<summary>
Sets the shade color for 3D effect.
</summary>
</member>
<member name="F:FarPoint.PDF.PaintHelper.LightColor">
<summary>
Sets the light color for 3D effect.
</summary>
</member>
<member name="M:FarPoint.PDF.PaintHelper.DrawText(FarPoint.PDF.PdfGraphics,System.String,System.Drawing.Font,System.Drawing.StringFormat,System.Drawing.Color,System.Drawing.RectangleF,System.Drawing.Text.HotkeyPrefix)">
<summary>
Draws text with the specified format.
</summary>
<param name="graphics">PDF graphics device</param>
<param name="text">Text to draw</param>
<param name="font">Font of the text</param>
<param name="format">Format of the text; only the HAlign, VAlign, and WordWrap</param>
<param name="color">Color of the text</param>
<param name="rect">Rectangle bounding the area of the text</param>
<param name="hotkeyPrefix">Hotkey prefix</param>
</member>
<member name="F:FarPoint.PDF.PaintHelper._internalGraphics">
<summary>
A internal graphics object to measure string for wordwrap.
</summary>
</member>
<member name="M:FarPoint.PDF.PaintHelper.MeasureString(System.String,System.Drawing.Font)">
<summary>
Measures the string.
</summary>
<param name="p">String</param>
<param name="font">Font</param>
<returns></returns>
</member>
<member name="M:FarPoint.PDF.PaintHelper.MeasureString(System.String,System.Drawing.Font,System.Int32)">
<summary>
Measures the string.
</summary>
<param name="note">Note string</param>
<param name="pfNote">Font of the note</param>
<param name="p">Pen number</param>
<returns></returns>
</member>
<member name="M:FarPoint.PDF.PaintHelper.MeasureString(System.String,System.Drawing.Font,System.Drawing.SizeF)">
<summary>
Measures the string.
</summary>
<param name="note">Note string</param>
<param name="pfNote">Font of the note</param>
<param name="size">Size</param>
<returns></returns>
</member>
<member name="M:FarPoint.PDF.PaintHelper.MakeTransparent(System.IO.MemoryStream)">
<summary>
Makes the color appear transparent.
</summary>
<param name="origBitmapMemoryStream">Original bitmap memory stream</param>
</member>
<member name="M:FarPoint.PDF.PaintHelper.Convert(System.Single,System.Drawing.GraphicsUnit,System.Drawing.GraphicsUnit)">
<summary>
Converts the floating-point value in one unit of measure to another unit of measure.
</summary>
<param name="value"><b>Float</b> of the value to be converted</param>
<param name="unit"><see cref="T:System.Drawing.GraphicsUnit"/> indicating the original unit of measure</param>
<param name="targetUnit"><see cref="T:System.Drawing.GraphicsUnit"/> indicating the target unit of measure</param>
<returns><b>Float</b> of the converted value in the target unit of measure</returns>
</member>
<member name="M:FarPoint.PDF.PaintHelper.Convert(System.Double,System.Drawing.GraphicsUnit,System.Drawing.GraphicsUnit)">
<summary>
Converts the double-precision value in one unit of measure to another unit of measure.
</summary>
<param name="value"><b>Double</b> of the value to be converted</param>
<param name="unit"><see cref="T:System.Drawing.GraphicsUnit"/> indicating the original unit of measure</param>
<param name="targetUnit"><see cref="T:System.Drawing.GraphicsUnit"/> indicating the target unit of measure</param>
<returns><b>Double</b> of the converted value in the target unit of measure</returns>
</member>
<member name="M:FarPoint.PDF.PaintHelper.Convert(System.Double,System.Drawing.GraphicsUnit,System.Drawing.GraphicsUnit,System.Int32)">
<summary>
Converts the double-precision value in one unit of measure to another unit of measure
with the specified direction.
</summary>
<param name="value"><b>Double</b> of the value to be converted</param>
<param name="unit"><see cref="T:System.Drawing.GraphicsUnit"/> indicating the original unit of measure</param>
<param name="targetUnit"><see cref="T:System.Drawing.GraphicsUnit"/> indicating the target unit of measure</param>
<param name="direction">Integer indicating the directions in coordinates.
Valid drirection values are
1 PaintHelper.HorizontalDirection,
2 PaintHelper.VerticalDirection,
3 PaintHelper.IgnoredDirection.
</param>
<returns><b>Double</b> of the converted value in the target unit of measure</returns>
</member>
<member name="M:FarPoint.PDF.PaintHelper.ConvertToInch(System.Double,System.Drawing.GraphicsUnit,System.Int32)">
<summary>
Converts the double-precision value in one unit of measure to inches
with the specified direction.
</summary>
<param name="value"><b>Double</b> of the value to be converted</param>
<param name="unit"><see cref="T:System.Drawing.GraphicsUnit"/> indicating the original unit of measure</param>
<param name="direction">Integer indicating the directions in coordinates.
Valid drirection values are
1 PaintHelper.HorizontalDirection,
2 PaintHelper.VerticalDirection,
3 PaintHelper.IgnoredDirection.
</param>
<returns><b>Double</b> of the converted value in inches</returns>
</member>
<member name="M:FarPoint.PDF.PaintHelper.ConvertFromInch(System.Double,System.Drawing.GraphicsUnit,System.Int32)">
<summary>
Converts the double-precision value in inches to a target unit of measure
with the specified direction.
</summary>
<param name="value"><b>Double</b> of the value to be converted</param>
<param name="targetUnit"><see cref="T:System.Drawing.GraphicsUnit"/> indicating the target unit of measure</param>
<param name="direction">Integer indicating the directions in coordinates.
Valid drirection values are
1 PaintHelper.HorizontalDirection,
2 PaintHelper.VerticalDirection,
3 PaintHelper.IgnoredDirection.
</param>
<returns><b>Double</b> of the converted value in the target unit of measure</returns>
</member>
<member name="M:FarPoint.PDF.PaintHelper.FontUnitConvert(System.Single,System.Drawing.GraphicsUnit,System.Drawing.GraphicsUnit)">
<summary>
Converts the font value in one unit of measure to another unit of measure
</summary>
<param name="value"><b>Float</b> of the value to be converted</param>
<param name="unit"><see cref="T:System.Drawing.GraphicsUnit"/> indicating the original unit of measure</param>
<param name="targetUnit"><see cref="T:System.Drawing.GraphicsUnit"/> indicating the target unit of measure</param>
<returns><b>Float</b> of the converted value in the target unit of measure</returns>
</member>
<member name="F:FarPoint.PDF.PaintHelper.ControlSymbolFont">
<summary>
Sets the control symbol font.
</summary>
</member>
<member name="M:FarPoint.PDF.PaintHelper.DrawButton(FarPoint.PDF.PdfGraphics,System.Drawing.RectangleF,System.String,System.Drawing.Font,System.Drawing.Color,System.Drawing.Color)">
<summary>
Draws the button.
</summary>
<param name="g">Graphics device interface for drawing the button</param>
<param name="rect">Rectangle bounding the area of the button</param>
<param name="text">Text of the button</param>
<param name="font">Font of the text</param>
<param name="backColor">Background color of the button</param>
<param name="foreColor">Text color of the button</param>
</member>
<member name="M:FarPoint.PDF.PaintHelper.DrawCheckBox(FarPoint.PDF.PdfGraphics,System.Drawing.RectangleF,System.Boolean,System.Drawing.RectangleF)">
<summary>
Draws the check box.
</summary>
<param name="g">Graphics device interface for drawing the check box</param>
<param name="rect">Rectangle bounding the area of the check box</param>
<param name="isChecked">Whether the check box is selected</param>
<param name="clip">Rectangle clip</param>
</member>
<member name="M:FarPoint.PDF.PaintHelper.DrawComboBox(FarPoint.PDF.PdfGraphics,System.Drawing.RectangleF)">
<summary>
Draws the combo box.
</summary>
<param name="g">Graphics device interface for drawing the combo box</param>
<param name="rect">Rectangle bounding the area of the combo box</param>
<returns></returns>
</member>
<member name="M:FarPoint.PDF.PaintHelper.DrawRadioButton(FarPoint.PDF.PdfGraphics,System.Drawing.RectangleF,System.Boolean,System.Drawing.RectangleF)">
<summary>
Draws the option button.
</summary>
<param name="g">Graphics device interface for drawing the option button</param>
<param name="rect">Rectangle bounding the area of the option button</param>
<param name="isChecked">Whether the option button is selected</param>
<param name="clip">Rectangle clip</param>
</member>
<member name="M:FarPoint.PDF.PaintHelper.DrawNote(FarPoint.PDF.PdfGraphics,System.Drawing.RectangleF,System.String,System.Drawing.Font,System.Single)">
<summary>
Draws the note.
</summary>
<param name="g">Graphics device interface for drawing the note</param>
<param name="rect">Rectangle bounding the area of the note</param>
<param name="note">Text of the note</param>
<param name="font">Font of the text</param>
<param name="zoomFactor">A zoom factor of note</param>
</member>
<member name="P:FarPoint.PDF.PaintHelper.InternalGDIPlusGraphics">
<summary>
Gets a default GDI+ graphics object to measure string for wordwrap.
</summary>
</member>
<member name="P:FarPoint.PDF.PaintHelper.DpiX">
<summary>
Gets the resolution (DPI) in the horizontal direction.
</summary>
</member>
<member name="P:FarPoint.PDF.PaintHelper.DpiY">
<summary>
Gets the resolution (DPI) in the vertical direction.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.GeneralFormatter">
<summary>
Represents the formatter object for parsing and formatting values for the general cell type.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.IFormatter">
<summary>
Interface that defines the methods and properties required by objects used as formatters.
Formatters are responsible for formatting cell contents.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IFormatter.Format(System.Object)">
<summary>
Formats the specified object as a string.
</summary>
<param name="o">Object with cell data to format</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IFormatter.Parse(System.String)">
<summary>
Parses the specified string into desired object.
</summary>
<param name="s">String to parse</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GeneralFormatter.#cctor">
<summary>
Creates a new formatter with null FormatString and default NumberFormatInfo
and DateTimeFormatInfo (copied from the current culture).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.GeneralFormatter.#ctor">
<summary>
Creates a new formatter with null FormatString and default NumberFormatInfo
and DateTimeFormatInfo (copied from the current culture).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.GeneralFormatter.#ctor(System.String,System.Boolean)">
<summary>
Creates a new formatter with the specified format
and default formatting information (copied from the current culture).
</summary>
<param name="formatString">String with format information</param>
<param name="isDateFormat">Whether to consider the number as a date and format it as such</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GeneralFormatter.#ctor(System.String,System.IFormatProvider)">
<summary>
Creates a new formatter with the specified format
and formatting information (copied from the current culture).
</summary>
<param name="formatString">String with format information</param>
<param name="formatInfo">IFormatProvider interface with number and date-time format information</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GeneralFormatter.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new formatter from serialization.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GeneralFormatter.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Saves the formatter to the SerializationInfo object.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GeneralFormatter.InitDateTimeMembers">
<summary>
Builds the list of valid date string values and the list of acceptible date-time formats.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.GeneralFormatter.SetFormatString(System.String,System.Boolean)">
<summary>
Sets the format string used to format values.
</summary>
<param name="value">Format string</param>
<param name="isDateFormat">Whether to consider a number as a date and time</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GeneralFormatter.Format(System.Object)">
<summary>
Formats the object to a string.
</summary>
<param name="obj">Object to format</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GeneralFormatter.Parse(System.String)">
<summary>
Parses the string to an object and returns the result.
</summary>
<param name="s">String to be parsed</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GeneralFormatter.Parse(System.String,System.IFormatProvider@,System.String@)">
<summary>
Parses the string to an object and returns the result.
</summary>
<param name="s">String</param>
<param name="formatInfo">IFormatProvider</param>
<param name="formatString">String</param>
<exception cref="T:FarPoint.Win.Spread.Model.ParseException">Not a valid hexidecimal number.</exception>
<returns>Results of the parsing</returns>
</member>
<member name="P:FarPoint.Win.Spread.Model.GeneralFormatter.FormatString">
<summary>
Gets or sets the format string used to format the date value.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.GeneralFormatter.IsDateFormat">
<summary>
Gets whether the format string being used is a date-time format string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.GeneralFormatter.DateTimeFormat">
<summary>
Gets or sets the format for displaying dates and times.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.GeneralFormatter.NumberFormat">
<summary>
Gets or sets the format for displaying currency values.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.GroupingPolicy">
<summary>
Specifies a grouping policy to collapse or expand rows when grouping occurs in the FarPoint Spread component.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.GroupingPolicy.NotSet">
<summary>
Does not set the GroupingPolicy,this is the default setting for the GroupingPolicy.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.GroupingPolicy.ExpandAll">
<summary>
Spread will expand all rows when grouping occurs.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.GroupingPolicy.CollapseAll">
<summary>
Spread will collapse all rows when grouping occurs.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.GroupingPolicy.ExpandParents">
<summary>
Spread will expand all parent rows and collapse just the lowest level when grouping occurs.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupSortComparer._SortCompare(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Performs the comparison of rows or columns using the specified order and comparer,
or using the default comparer if one was not specified.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.GroupFooterEventHandler">
<summary>
Handles the Changed event in the data model of group footer.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.GroupFooter">
<summary>
Represents the group footer of rows for the grouping display (also called Outlook-style grouping).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupFooter.#ctor">
<summary>
Constructer of GroupFooter
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupFooter.#ctor(FarPoint.Win.Spread.Model.Group)">
<summary>
Constructer of GroupFooter
</summary>
<param name="group">Group correspond with GroupFooter</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.GroupFooter.DataModel">
<summary>
Get or set data model for group footer
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Model.GroupFooter.changed">
<summary>
Occurs when the user makes a change to the group footer
that affects the data of the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.GroupFooter.Group">
<summary>
Get and set Group correspond with this group footer
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.Group">
<summary>
Represents the group of rows for the grouping display (also called Outlook-style grouping).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Group.#ctor(FarPoint.Win.Spread.Model.GroupDataModel,FarPoint.Win.Spread.Model.Group,System.Int32,System.Boolean)">
<summary>
Creates a new group of rows with the specified display settings.
</summary>
<param name="target">Group data model target</param>
<param name="parent">Group parent</param>
<param name="column">Column index</param>
<param name="ascending">Whether items are shown ascending</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.Group.#ctor(FarPoint.Win.Spread.Model.GroupDataModel,FarPoint.Win.Spread.Model.Group,System.String,System.Int32,System.Boolean)">
<summary>
Creates a new group of rows with the specified diplay settings and the specified text.
</summary>
<param name="target">Group data model target</param>
<param name="parent">Group parent</param>
<param name="text">Text string to display</param>
<param name="column">Column index</param>
<param name="ascending">Whether items are shown ascending</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.Group.Target">
<summary>
Get data model of this group
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.Group.GroupFooter">
<summary>
Get and set group footer correspond with this group
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.Group.Text">
<summary>
Gets or sets the string of text for the group.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.Group.Rows">
<summary>
Gets the array of rows in the group.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.Group.Parent">
<summary>
Gets the parent of the group.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.Group.Expanded">
<summary>
Gets or sets whether the rows in the group are expanded.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.Group.Column">
<summary>
Gets the index of the column by which to perform the grouping.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.Group.Ascending">
<summary>
Gets whether the rows in the group are displayed in ascending order.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.IGroupFooterSupport">
<summary>
Interface that supports footer
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.IGroupSupport">
<summary>
Interface that supports grouping.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IGroupSupport.IsGroup(System.Int32)">
<summary>
Determines if the specified row is a group header (also called group node).
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IGroupSupport.GetGroup(System.Int32)">
<summary>
Gets a group for a specified row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IGroupSupport.Group(FarPoint.Win.Spread.SortInfo[],System.Collections.IComparer)">
<summary>
Groups the rows by the specified sort information.
</summary>
<param name="sortInfo">Sort information</param>
<param name="groupComparer">Comparer for the group</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IGroupSupport.Dispose">
<summary>
Internal use only. Disposes.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IGroupSupport.GetColumnName(System.Int32)">
<summary>
Gets the name of the specified column.
</summary>
<param name="column">Column index</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.IGroupSupport.SortInfo">
<summary>
Gets the sort information for the group.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.IGroupSupport.GroupComparer">
<summary>
Gets the comparer for the group.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.IGroupSupport.TargetModel">
<summary>
Gets the target sheet data model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IGroupFooterSupport.IsGroupFooter(System.Int32)">
<summary>
Determines if the specified row is a group footer.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IGroupFooterSupport.GetGroupFooter(System.Int32)">
<summary>
Gets a group footer for a specified row.
</summary>
<param name="row">Row index</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.IGroupFooterSupport.GroupFooterVisible">
<summary>
Gets or sets whether the group footer is displayed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.GroupDataModel">
<summary>
Represents the group data model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.#ctor">
<summary>
Creates a new group data model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.#ctor(FarPoint.Win.Spread.Model.ISheetDataModel)">
<summary>
Creates a new group data model for the specified sheet data model.
</summary>
<param name="model">Sheet data model</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.#ctor(FarPoint.Win.Spread.Model.ISheetDataModel,System.Boolean,FarPoint.Win.Spread.DefaultGroupFooterCollection)">
<summary>
Creates a new group data model for the specified sheet data model.
</summary>
<param name="model">Sheet data model</param>
<param name="groupFooterVisible">Determines whether groupFooters are displayed</param>
<param name="defaultGroupFooter">Default Setting for groupFooters</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.Dispose">
<summary>
Disposes this object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.IsGroup(System.Int32)">
<summary>
Determines whether the specified row is a group header (also called group node).
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.GetGroup(System.Int32)">
<summary>
Gets the group associated with the specified row.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.Group(FarPoint.Win.Spread.SortInfo[])">
<summary>
Groups the rows with the specified sort information.
</summary>
<param name="sortInfo">Sort information</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.Group(FarPoint.Win.Spread.SortInfo[],System.Collections.IComparer)">
<summary>
Groups the rows with the specified sort information and specified comparer.
</summary>
<param name="sortInfo">Sort information</param>
<param name="groupComparer">Comparer</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.Sort(FarPoint.Win.Spread.SortInfo[])">
<summary>
Sorts the rows (after the Grouped event) according to the specified sorting information.
</summary>
<param name="sortInfo">Sort information</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.NextNonEmptyColumnInRow(System.Int32,System.Int32)">
<summary>
Gets the index of the next column in a specified row that contains data.
</summary>
<param name="row">Row index to search</param>
<param name="column">Column index before the column to start searching (-1 to start at column 0)</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.NextNonEmptyRow(System.Int32)">
<summary>
Gets the index of the next row that contains data.
</summary>
<param name="row">Row index after which to start searching (-1 to start at row 0)</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.IsRowUsed(System.Int32)">
<summary>
Determines whether the specified row has data (is not empty).
</summary>
<param name="row">Index of row to check</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.IsEditable(System.Int32,System.Int32)">
<summary>
Determines whether the cell in the group is editable.
</summary>
<param name="row">Row index of the cell</param>
<param name="col">Column index of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.IsEmpty">
<summary>
Determines whether the data model is empty.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.GetValue(System.Int32,System.Int32)">
<summary>
Gets the value from the cell in the group.
</summary>
<param name="row">Row index of the cell</param>
<param name="col">Column index of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.GetColumnName(System.Int32)">
<summary>
Gets the name of the specified column in the group.
</summary>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.OnGrouping(System.EventArgs)">
<summary>
Fires the Grouping event.
</summary>
<param name="e">EventArgs</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.SetValue(System.Int32,System.Int32,System.Object)">
<summary>
Sets the value of the cell in the group.
</summary>
<param name="row">Row index of the cell</param>
<param name="col">Column index of the cell</param>
<param name="value">Value to assign to the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.GetGroupItemCount(FarPoint.Win.Spread.Model.Group)">
<summary>
Internal use only. Gets the number of group items in the specified group.
</summary>
<param name="group">Group</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.GetIndex(System.Int32)">
<summary>
Gets the model index of the group data model from the specified row.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.GetItem(System.Int32)">
<summary>
Gets the item in the specified row.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.GetNote(System.Int32,System.Int32)">
<summary>
Gets a user-defined note value for the cell of the specified row and column.
</summary>
<param name="row">Row index of the cell in the model</param>
<param name="column">Column index of the cell in the model</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.SetNote(System.Int32,System.Int32,System.String)">
<summary>
Sets a user-defined note value for the cell at the specified row and column.
</summary>
<param name="row">Row index of the cell in the model</param>
<param name="column">Column index of the cell in the model</param>
<param name="value">Note value to set</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.GetTag(System.Int32,System.Int32)">
<summary>
Gets an application-defined tag value for the cell of the specified row and column.
</summary>
<param name="row">Row index of the cell in the model</param>
<param name="column">Column index of the cell in the model</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.SetTag(System.Int32,System.Int32,System.Object)">
<summary>
Sets an application-defined tag value for the cell of the specified row and column.
</summary>
<param name="row">Row index of the cell in the model</param>
<param name="column">Column index of the cell in the model</param>
<param name="value">Tag value to set</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.IsGroupFooter(System.Int32)">
<summary>
Determines if the specified row is a group footer.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.GetGroupFooter(System.Int32)">
<summary>
Gets a group footer for a specified row.
</summary>
<param name="row">Row index</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.GetGroupFooterRow(System.Int32)">
<summary>
Gets a group footer for a specified row.
</summary>
<param name="row">Row index</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.GroupDataModel.SelfReset">
<summary>
Reset dataModel references
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.GroupDataModel.GroupingPolicy">
<summary>
Gets or sets grouping policy to collapse or expand rows when grouping occurs.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.GroupDataModel.TargetModel">
<summary>
Gets the sheet data model for the group target.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.GroupDataModel.SortInfo">
<summary>
Gets the sorting information for the group.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.GroupDataModel.GroupComparer">
<summary>
Gets the group comparer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.GroupDataModel.SuspendGrouping">
<summary>
Gets or sets whether the grouping is suspended.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.GroupDataModel.GroupFooterVisible">
<summary>
Gets or sets whether the group footer is displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.GroupDataModel.RowCount">
<summary>
Gets the number of rows in the group.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.GroupDataModel.NonEmptyColumnCount">
<summary>
Gets the number of columns in the model containing data (bound or unbound).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.GroupDataModel.NonEmptyRowCount">
<summary>
Gets the number of rows in the model containing data (bound or unbound).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.GroupDataModel.ColumnCount">
<summary>
Gets the number of columns in the group.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.GroupDataModel.Groups">
<summary>
Gets the list of top-level group objects.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.GroupDataModel.CanSerializeXml">
<summary>
Gets whether the entire object can
be saved to XML and successfully loaded again.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.GroupInfoConverter">
<summary>
Converts styles (NamedStyle objects) from one data type to another.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Determines whether a style can be converted to the specified type.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="destinationType">Type</param>
<returns>True if a named style object can be converted to the specified type, and false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the style to a string.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">Object</param>
<param name="destinationType">Type</param>
<returns>String representation of a NamedStyle object.</returns>
</member>
<member name="T:FarPoint.Win.Spread.GroupInfo">
<summary>
Represents the grouping information.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfo.OnChanged(FarPoint.Win.Spread.Model.SheetStyleModelEventArgs)">
<summary>
Raises the changed event.
</summary>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfo.FireChanged(System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.Model.SheetStyleModelEventType)">
<summary>
Creates a SheetStyleModelEventArgs with the specifies event
data and calls OnChanged to raise the Changed event.
</summary>
<param name="row">
Row index where the event occurred,
or -1 if all rows affected
</param>
<param name="column">
Column index where the event occurred,
or -1 if all columns affected
</param>
<param name="rowCount">
Number of rows, or -1 if all rows affected
</param>
<param name="columnCount">
Number of columns, or -1 if all columns affected
</param>
<param name="type">Type of event that occurred</param>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfo.#ctor">
<summary>
Creates a set of grouping information.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfo.Reset">
<summary>
Resets the grouping information.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfo.GetAppearance(FarPoint.Win.Spread.Appearance)">
<summary>
Copies the appearance settings.
</summary>
<param name="appearance">Appearance object</param>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfo.GetFooterAppearance(FarPoint.Win.Spread.Appearance)">
<summary>
Copies the group footer appearance settings.
</summary>
<param name="appearance">Appearance object</param>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfo.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the grouping information to XML.
</summary>
<param name="w">
XmlTextWriter object to which to save the object
</param>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfo.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the grouping information from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object</param>
</member>
<member name="E:FarPoint.Win.Spread.GroupInfo.Changed">
<summary>
Occurs when the user makes a change to the model
that affects the style of the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfo.ForeColor">
<summary>
Gets or sets the text color of the grouping information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfo.FooterForeColor">
<summary>
Gets or sets the text color of the group footer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfo.BackColor">
<summary>
Gets or sets the background color of the grouping information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfo.FooterBackColor">
<summary>
Gets or sets the background color of the grouping footer information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfo.Font">
<summary>
Gets or sets the font settings of the grouping information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfo.FooterFont">
<summary>
Gets or sets the font settings of the footer grouping information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfo.HorizontalAlignment">
<summary>
Gets or sets the horizontal alignment of the grouping information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfo.FooterHorizontalAlignment">
<summary>
Gets or sets the horizontal alignment of the grouping information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfo.VerticalAlignment">
<summary>
Gets or sets the vertical alignment of the grouping information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfo.FooterVerticalAlignment">
<summary>
Gets or sets the vertical alignment of the grouping information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfo.Border">
<summary>
Gets or sets the border of the grouping information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfo.FooterBorder">
<summary>
Gets or sets the border of the grouping information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfo.Indent">
<summary>
Gets or sets the indent of the grouping information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfo.IndentColor">
<summary>
Gets or sets the indent color of the grouping information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfo.CanSerializeXml">
<summary>
Gets whether the grouping information can be rendered with XML
in its entirety without losing any information.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.GroupInfoCollection">
<summary>
Represents the read-only collection of GroupInfo objects.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoCollection.#ctor">
<summary>
Creates a GroupInfo collection (GroupInfoCollection object).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoCollection.OnChanged(FarPoint.Win.Spread.Model.SheetStyleModelEventArgs)">
<summary>
Raises the Changed event.
</summary>
<param name="e">
SheetStyleModelEventArgs object that contains the event data
</param>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoCollection.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the collection of grouping information objects to XML.
</summary>
<param name="w">
XmlTextWriter object to which to save the collection object
</param>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoCollection.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the collection of grouping information objects from XML.
</summary>
<param name="r">
XmlNodeReader from which to load the collection object
</param>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoCollection.CopyTo(FarPoint.Win.Spread.GroupInfo[],System.Int32)">
<summary>
Copies the GroupInfos in the collection to a specified array at a specified position.
</summary>
<param name="groupInfos">
One-dimensional array into which are copied the elements from ICollection
(The array must have zero-based indexing.)
</param>
<param name="index">
Zero-based index in array at which to paste GroupInfos.
</param>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoCollection.CopyTo(System.Array,System.Int32)">
<summary>
Copies the GroupInfos in the collection to a specified array at a specified position.
</summary>
<param name="array">
One-dimensional array into which are copied the elements from ICollection
(The array must have zero-based indexing.)
</param>
<param name="index">
Zero-based index in array at which to paste styles
</param>
<exception cref="T:System.ArgumentNullException">No array specified, or specified array is null (Nothing)</exception>
<exception cref="T:System.ArgumentException">Specified array is not valid; must have a rank of one</exception>
<exception cref="T:System.ArgumentException">Specified array is not valid; must have sufficient length</exception>
<exception cref="T:System.IndexOutOfRangeException">Specified index is out of range; must be greater than zero</exception>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoCollection.System#Collections#IList#Add(System.Object)">
<summary>
Adds a GroupInfo object to the collection.
</summary>
<param name="value">GroupInfo object to add</param>
<returns>Index of the element in the collection</returns>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoCollection.AddRange(System.Collections.ICollection)">
<summary>
Adds an array of GroupInfo objects to the collection.
</summary>
<param name="c">GroupInfoCollection or array of GroupInfo objects to add to the collection</param>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoCollection.AddRange(FarPoint.Win.Spread.GroupInfo[])">
<summary>
Adds an array of GroupInfo objects to the collection.
</summary>
<param name="array">Array of GroupInfo objects to add to the collection</param>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoCollection.Add(FarPoint.Win.Spread.GroupInfo)">
<summary>
Adds a GroupInfo object to the collection.
</summary>
<param name="value">GroupInfo object to add</param>
<exception cref="T:System.ArgumentNullException">No value specified; a GroupInfo object must be specified</exception>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoCollection.Clear">
<summary>
Removes all GroupInfo objects from the collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoCollection.System#Collections#IList#Contains(System.Object)">
<summary>
Determines whether the collection contains the specified GroupInfo object.
</summary>
<param name="value">GroupInfo object to check for in the collection</param>
<returns>
Boolean: true if the object is found in the collection; false otherwise.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoCollection.Contains(FarPoint.Win.Spread.GroupInfo)">
<summary>
Determines whether the collection contains the specified GroupInfo object.
</summary>
<param name="value">GroupInfo object for which to check in the collection</param>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoCollection.System#Collections#IList#IndexOf(System.Object)">
<summary>
Returns the index of the specified GroupInfo object.
</summary>
<param name="value">GroupInfo object for which to search</param>
<returns>
Index of the object in the collection, or -1 if the object is not found.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoCollection.IndexOf(FarPoint.Win.Spread.GroupInfo)">
<summary>
Returns the index of the specified GroupInfo object in the collection.
</summary>
<param name="value">GroupInfo object for which to search</param>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
<summary>
Inserts a GroupInfo object into the collection at the specified index.
</summary>
<param name="index">Zero-based index at which to insert GroupInfo object</param>
<param name="value">GroupInfo object to insert into the collection</param>
<exception cref="T:System.ArgumentException">Specified object type is not valid; must be a GroupInfo object</exception>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoCollection.Insert(System.Int32,FarPoint.Win.Spread.GroupInfo)">
<summary>
Inserts a GroupInfo into the collection at the specified index.
</summary>
<param name="index">Zero-based index at which to insert the GroupInfo object</param>
<param name="value">GroupInfo object to insert into the collection</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified index is out of range; must be between 0 and the total number in the collection
</exception>
<exception cref="T:System.ArgumentNullException">
No style specified or specified style is null; must specify a style
</exception>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoCollection.System#Collections#IList#Remove(System.Object)">
<summary>
Removes the specified GroupInfo object from the collection.
</summary>
<param name="value">GroupInfo object to remove</param>
<exception cref="T:System.ArgumentException">Specified object type is not valid; must be a GroupInfo object</exception>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoCollection.Remove(FarPoint.Win.Spread.GroupInfo)">
<summary>
Removes the specified GroupInfo object from the collection.
</summary>
<param name="value">GroupInfo object to remove</param>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoCollection.RemoveAt(System.Int32)">
<summary>
Removes the GroupInfo object from the collection at the specified index.
</summary>
<param name="index">Zero-based index of the GroupInfo object to remove</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified index is out of range; must be between 0 and the total number in the collection
</exception>
</member>
<member name="M:FarPoint.Win.Spread.GroupInfoCollection.GetEnumerator">
<summary>
Gets an IEnumerator object for enumerating through the GroupInfo objects
in the collection.
</summary>
<returns>
IEnumerator object for enumerating the GroupInfo objects in the collection
</returns>
</member>
<member name="E:FarPoint.Win.Spread.GroupInfoCollection.Changed">
<summary>
Occurs when the user makes a change to the model
that affects the style of the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfoCollection.CanSerializeXml">
<summary>
Gets whether the object can be rendered with XML
in its entirety without losing any information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfoCollection.Count">
<summary>
Gets the number of GroupInfo objects in the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfoCollection.IsSynchronized">
<summary>
Gets whether access to the collection is synchronized.
(This implementation always returns false.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfoCollection.System#Collections#ICollection#SyncRoot">
<summary>
Gets an object that can be used to synchronize access to the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfoCollection.SyncRoot">
<summary>
Gets a collection (GroupInfoCollection object) that can be used to
synchronize access.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfoCollection.IsFixedSize">
<summary>
Gets whether the collection has a fixed size.
(This implementation always returns false.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfoCollection.IsReadOnly">
<summary>
Gets whether the collection is read-only.
(This implementation always returns false.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfoCollection.System#Collections#IList#Item(System.Int32)">
<summary>
Gets or sets the GroupInfo object at the specified index.
</summary>
<exception cref="T:System.ArgumentException">Specified object type is not valid; must be a GroupInfo object</exception>
</member>
<member name="P:FarPoint.Win.Spread.GroupInfoCollection.Item(System.Int32)">
<summary>
Gets or sets the GroupInfo object at the specified index in the collection.
</summary>
<param name="index">Index of the group information in the collection</param>
<exception cref="T:System.IndexOutOfRangeException">Specified index is not valid</exception>
<exception cref="T:System.ArgumentNullException">No value specified; cannot set a member to null</exception>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SegmentDataChangedEventHandler">
<summary>
Represents event handler for ISegmentData.DataChanged event.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SegmentDataChangedEventArgs">
<summary>
Represents event data for ISegmentData.DataChanged event.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.SegmentDataChangedEventArgs.Empty">
<summary>
Represents an event with no event data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SegmentDataChangedEventArgs.#ctor(System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SegmentDataChangedEventArgs"/> class.
</summary>
<param name="countChanged">if set to <c>true</c> [count changed].</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SegmentDataChangedEventArgs.#ctor(System.Boolean,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SegmentDataChangedEventArgs"/> class.
</summary>
<param name="countChanged">if set to <c>true</c> [count changed].</param>
<param name="formulaChanged">if set to <c>true</c> [formula changed].</param>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SegmentDataType">
<summary>
Represents the data type of a segment.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.SegmentDataType.Number">
<summary>
The segment will return numeric values.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.SegmentDataType.Text">
<summary>
The segment will return string values.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.SegmentDataType.AutoIndex">
<summary>
The segment will return numeric values if all its values is numeric. Otherwise, it will return the index of element.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ModelessFormBase.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ModelessFormBase.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:FarPoint.Win.Spread.ModelessFormBase.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.ModelessFormBase.TextChanged">
<summary>
Occurs when the Text Changed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ModelessTextBox">
<summary>
ModelessTextBox
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ModelessTextBox.#ctor">
<summary>
Creates a ModelessTextBox (ModelessTextBox object).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ModelessTextBox.Dispose(System.Boolean)">
<summary>
Form overrides dispose to clean up the component list.
</summary>
<param name="disposing"></param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessTextBox.OnParentChanged(System.EventArgs)">
<summary>
Handles when its parent has changed
</summary>
<param name="e">Argument object.</param>
</member>
<member name="E:FarPoint.Win.Spread.ModelessTextBox.SelectButtonClick">
<summary>
Occurs when the select button click.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ModelessTextBox.IsCompact">
<summary>
Gets or sets whether the form is compact
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ModelessTextBox.LastText">
<summary>
Get or set the LastText.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ModelessTextBox.Text">
<summary>
Get or set the Text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ModelessTextBox.TextBox">
<summary>
Get the textbox control.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.NamedStyle">
<summary>
Represents a custom style, an object that can be used to set
style information for other objects.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.StyleInfo">
<summary>
Represents the set of cell-level style settings for objects.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.#ctor">
<summary>
Creates a set of cell-level style settings (StyleInfo object).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.#ctor(System.String)">
<summary>
Creates a set of cell-level style settings (StyleInfo object) with the specified parent style.
</summary>
<param name="parentName">
Name of the parent <see cref="T:FarPoint.Win.Spread.NamedStyle"/> object
</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.#ctor(FarPoint.Win.Spread.StyleInfo)">
<summary>
Creates a set of cell-level style settings (StyleInfo object) equivalent to
the specified set of style settings.
</summary>
<param name="info">
StyleInfo object from which to copy style settings
</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.#ctor(System.String,FarPoint.Win.Spread.StyleInfo)">
<summary>
Creates a set of cell-level style settings (StyleInfo object) with the specified parent style
and specified set of style settings.
</summary>
<param name="parentName">Name of the parent</param>
<param name="style">StyleInfo object to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a set of cell-level style settings (StyleInfo object) from serialization.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Gets information about the style settings from serialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the style information to XML.
</summary>
<param name="w">
XmlTextWriter object to which to save the object
</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the style information from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.Clone">
<summary>
Creates a new object that is a copy of the current instance (with the same style settings).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ShouldSerializeTextIndent">
<summary>
Determines whether the text indent should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.Reset">
<summary>
Resets all the style settings in the <see cref="T:FarPoint.Win.Spread.StyleInfo"/> object
to the default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetTextIndent">
<summary>
Resets the text indent.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetCellPadding">
<summary>
Resets the cell padding.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetParent">
<summary>
Resets the <see cref="P:FarPoint.Win.Spread.StyleInfo.Parent"/> property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetBackColor">
<summary>
Resets the <see cref="P:FarPoint.Win.Spread.StyleInfo.BackColor"/> property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetForeColor">
<summary>
Resets the <see cref="P:FarPoint.Win.Spread.StyleInfo.ForeColor"/> property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetFont">
<summary>
Resets the <see cref="P:FarPoint.Win.Spread.StyleInfo.Font"/> property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetHorizontalAlignment">
<summary>
Resets the <see cref="P:FarPoint.Win.Spread.StyleInfo.HorizontalAlignment"/> property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetVerticalAlignment">
<summary>
Resets the <see cref="P:FarPoint.Win.Spread.StyleInfo.VerticalAlignment"/> property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetBorder">
<summary>
Resets the <see cref="P:FarPoint.Win.Spread.StyleInfo.Border"/> property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetCellType">
<summary>
Resets the <see cref="P:FarPoint.Win.Spread.StyleInfo.CellType"/> property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetEditor">
<summary>
Resets the <see cref="P:FarPoint.Win.Spread.StyleInfo.Editor"/> property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetRenderer">
<summary>
Resets the <see cref="P:FarPoint.Win.Spread.StyleInfo.Renderer"/> property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetFormatter">
<summary>
Resets the <see cref="P:FarPoint.Win.Spread.StyleInfo.Formatter"/> property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetLocked">
<summary>
Resets the <see cref="P:FarPoint.Win.Spread.StyleInfo.Locked"/> property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetNoteStyle">
<summary>
Resets the <see cref="P:FarPoint.Win.Spread.StyleInfo.NoteStyle"/> property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetCanFocus">
<summary>
Resets the <see cref="P:FarPoint.Win.Spread.StyleInfo.CanFocus"/> property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetTabStop">
<summary>
Resets the <see cref="P:FarPoint.Win.Spread.StyleInfo.TabStop"/> property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetNoteIndicatorColor">
<summary>
Resets the <see cref="P:FarPoint.Win.Spread.StyleInfo.NoteIndicatorColor"/> property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetNoteIndicatorSize">
<summary>
Resets the cell note indicator size.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetNoteIndicatorPosition">
<summary>
Resets the cell note indicator position.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetVisualStyles">
<summary>
Resets the visual styles (XP themes) for the style to the default.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.ResetProperty(FarPoint.Win.Spread.SheetStyleProperty)">
<summary>
Resets a style setting (property) to its default setting.
</summary>
<param name="styleProperty"><see cref="T:FarPoint.Win.Spread.SheetStyleProperty"/> object</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsPropertySet(FarPoint.Win.Spread.SheetStyleProperty)">
<summary>
Gets whether the specified cell style setting (property) is set.
</summary>
<param name="styleProperty"><see cref="T:FarPoint.Win.Spread.SheetStyleProperty"/> object</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsParentSet">
<summary>
Gets whether the parent of the cell (Parent property) is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsBackColorSet">
<summary>
Gets whether the background color of the cell (BackColor property) is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsTextIndentSet">
<summary>
Determines whether [is text indent set].
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsCellPaddingSet">
<summary>
Gets whether the cell padding of the cell is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsForeColorSet">
<summary>
Gets whether the text color of the cell (ForeColor property) is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsFontSet">
<summary>
Gets whether the font of the cell (Font property) is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsHorizontalAlignmentSet">
<summary>
Gets whether the horizontal alignment of the cell contents (HorizontalAlignment property) is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsVerticalAlignmentSet">
<summary>
Gets whether the vertical alignment of the cell contents (VerticalAlignment property) is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsBorderSet">
<summary>
Gets whether the cell border (Border property) is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsCellTypeSet">
<summary>
Gets whether the type of cell (CellType property) is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsEditorSet">
<summary>
Gets whether the editor for the cell (Editor property) is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsRendererSet">
<summary>
Gets whether the renderer for the cell (Renderer property) is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsFormatterSet">
<summary>
Gets whether the formatter for the cell (Formatter property) is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsLockedSet">
<summary>
Gets whether the locked setting of the cell (Locked property) is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsNoteStyleSet">
<summary>
Gets whether the note style setting of the cell (NoteStyle property) is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsCanFocusSet">
<summary>
Gets whether the focusable setting of the cell (CanFocus property) is set.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsTabStopSet">
<summary>
Gets whether the tab stop setting of the cell (TabStop property) is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsNoteIndicatorColorSet">
<summary>
Gets whether the cell note indicator color of the cell is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsNoteIndicatorSizeSet">
<summary>
Determines whether the cell note indicator size is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsNoteIndicatorPositionSet">
<summary>
Determines whether the cell note indicator position is set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.IsVisualStyleSet">
<summary>
Gets whether visual styles are on (VisualStyles property set) for a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.Compose(FarPoint.Win.Spread.StyleInfo)">
<summary>
Composes style settings using the current style settings and those of
a specified object.
</summary>
<param name="source">Source object from which to get style settings</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.Compose(FarPoint.Win.Spread.StyleInfo,System.Boolean)">
<summary>
Composes style settings using the current style settings and those of
a specified object with an option to overwrite the current style settings.
</summary>
<param name="source">Source object from which to get style settings</param>
<param name="merge">Whether to overwrite the current settings with the settings from the source object </param>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.Merge(FarPoint.Win.Spread.StyleInfo)">
<summary>
Merges the style settings with the current object.
</summary>
<param name="source">Object whose style settings are merged with the current object </param>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.Merge(FarPoint.Win.Spread.StyleInfo,System.Boolean)">
<summary>
Merges the style settings with the current object with the option to
overwrite settings in the current object.
</summary>
<param name="source">
Object whose style settings are merged with the current object
</param>
<param name="force">
Whether to overwrite the current settings with the settings from the merge object
</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.CopyFrom(System.Object)">
<summary>
Copies the specified style settings of the specified object to the current object.
</summary>
<param name="o">Object from which to copy style settings</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.GetAppearance(FarPoint.Win.Spread.Appearance)">
<summary>
Gets the appearance settings for the specified object.
</summary>
<param name="appearance"><see cref="T:FarPoint.Win.Spread.Appearance"/> object to receive the appearance settings,
or null to create and return a new Appearance object</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.SetAppearance(FarPoint.Win.Spread.Appearance)">
<summary>
Sets the appearance settings of an <see cref="T:FarPoint.Win.Spread.Appearance"/> object into
this object.
</summary>
<param name="appearance">
<see cref="T:FarPoint.Win.Spread.Appearance"/> object from which to set appearance settings
</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.Equals(System.Object)">
<summary>
Determines whether the style settings of this object are equivalent to the object specified.
</summary>
<param name="o">Object with which to compare the style settings of the current object</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleInfo.GetHashCode">
<summary>
Gets the hash code of this object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.CanSerializeXml">
<summary>
Gets whether the object in its entirety can be rendered with XML without losing any information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.Parent">
<summary>
Gets or sets the name of the parent (<see cref="T:FarPoint.Win.Spread.NamedStyle"/> object) of the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.BackColor">
<summary>
Gets or sets the background color of the cell for the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.ForeColor">
<summary>
Gets or sets the text color of the cell for the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.Font">
<summary>
Gets or sets the font settings of the cell for the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.NoteStyle">
<summary>
Gets or sets the note style of the cell for the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.NoteIndicatorColor">
<summary>
Gets or sets the color of the cell note indicator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.NoteIndicatorSize">
<summary>
Gets or sets the size of the cell note indicator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.NoteIndicatorPosition">
<summary>
Gets or sets the position of the cell note indicator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.VisualStyles">
<summary>
Gets or sets whether visual styles are on or off for the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.HorizontalAlignment">
<summary>
Gets or sets the horizontal alignment of the contents of the cell for the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.VerticalAlignment">
<summary>
Gets or sets the vertical alignment of contents of the cell for the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.Border">
<summary>
Gets or sets the border of the cell for the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.CellType">
<summary>
Gets or sets the type of cell for the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.Editor">
<summary>
Gets or sets the editor of the cell for the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.Renderer">
<summary>
Gets or sets the renderer of the cell for the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.Formatter">
<summary>
Gets or sets the formatter of the cell for the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.Locked">
<summary>
Gets or sets the whether the style marks cells as locked.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.CanFocus">
<summary>
Gets or sets whether the user can set focus to the cell using the keyboard or mouse.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.TabStop">
<summary>
Gets or sets whether the user can set focus to the cell using the Tab key.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.TextIndent">
<summary>
Gets or sets the amount to indent the text in a cell for the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.CellPadding">
<summary>
Gets or sets the amount of spaces to cell padding in the cell(s) in pixels.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleInfo.IsEmpty">
<summary>
Gets whether there are no style settings set.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.#ctor">
<summary>
Creates a custom style (NamedStyle object) with no name and no parent.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.#ctor(System.String)">
<summary>
Creates a custom style (NamedStyle object) with the specified name.
</summary>
<param name="name">
Name of the new NamedStyle object
</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.#ctor(System.String,System.String)">
<summary>
Creates a custom style (NamedStyle object) with the specified name
and parent.
</summary>
<param name="name">
Name of the new NamedStyle object
</param>
<param name="parentName">
Parent of the new NamedStyle object
</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.#ctor(System.String,System.String,FarPoint.Win.Spread.StyleInfo)">
<summary>
Creates a custom style (NamedStyle object) using the specified StyleInfo object,
name, and parent name.
</summary>
<param name="style">
StyleInfo object
</param>
<param name="name">
Name of the new style (NamedStyle object)
</param>
<param name="parentName">
Parent of the new style (NamedStyle object)
</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a custom style (NamedStyle object) for sharing settings across models.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates the SerializationInfo class with information
about the style settings.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contextual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the style object to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the style</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the style object from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.ToString">
<summary>
Gets the value of the Name property.
</summary>
<returns>Value of the Name property</returns>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.Equals(System.Object)">
<summary>
Determines whether another object is a reference to this object.
</summary>
<param name="o">Object to compare</param>
<returns>
True if the specified object is a reference to this object; false otherwise
</returns>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.GetHashCode">
<summary>
Gets the hash code of this object.
</summary>
<returns>The hash code</returns>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.op_Equality(FarPoint.Win.Spread.NamedStyle,System.Object)">
<summary>
Determines whether two styles (a specified object and a NamedStyle object) are equal.
</summary>
<param name="style">
NamedStyle object (one side of the inequality operator)
</param>
<param name="o">
Object with which to compare the NamedStyle object (other side of the inequality operator)
</param>
<returns>
True if the specified object is equivalent to the NamedStyle object; false otherwise
</returns>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.op_Inequality(FarPoint.Win.Spread.NamedStyle,System.Object)">
<summary>
Determines whether two styles (a specified object and a NamedStyle object) are not equal.
</summary>
<param name="style">
NamedStyle object (one side of the inequality operator)
</param>
<param name="o">
Object with which to compare the NamedStyle object (other side of the inequality operator)
</param>
<returns>
True if the specified object is not equivalent to the NamedStyle object; false otherwise
</returns>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.Clone">
<summary>
Creates and returns a copy of this object.
</summary>
<returns>Copy of this object</returns>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.OnChanged(System.EventArgs)">
<summary>
Raises the Changed event.
</summary>
<param name="e">
Event arguments to pass to event handlers
</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.Reset">
<summary>
Resets all the named style properties to their default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.ResetBackColor">
<summary>
Resets the background color for the style to the default setting (not set).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.ResetForeColor">
<summary>
Resets the text color for the style to the default setting (not set).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.ResetFont">
<summary>
Resets the font for the style to the default setting (not set).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.ResetHorizontalAlignment">
<summary>
Resets the horizontal alignment for the style to the default setting (not set).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.ResetVerticalAlignment">
<summary>
Resets the vertical alignment for the style to the default setting (not set).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.ResetBorder">
<summary>
Resets the border for the style to the default setting (not set).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.ResetCellType">
<summary>
Resets the cell type for the style to the default setting (not set).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.ResetEditor">
<summary>
Resets the editor for the style to the default setting (not set).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.ResetRenderer">
<summary>
Resets the renderer for the style to the default setting (not set).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.ResetFormatter">
<summary>
Resets the formatter for the style to the default setting (not set).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.ResetLocked">
<summary>
Resets to the default setting for the style whether this style permits a cell to be edited
when the sheet is protected (not set).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.ResetNoteStyle">
<summary>
Resets to the default setting the style of cell notes (not set).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.ResetNoteIndicatorColor">
<summary>
Resets to its default value the color of the note indicator for the style.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.ResetNoteIndicatorSize">
<summary>
Resets to its default value the color of the note indicator for the style.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.ResetNoteIndicatorPosition">
<summary>
Resets to its default value the position of the note indicator for the style.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.ResetCanFocus">
<summary>
Resets to its default value whether the user can set focus to the cell using the keyboard or mouse.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.ResetTabStop">
<summary>
Resets to its default value whether the user can set focus to the cell using the Tab key.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.ResetProperty(FarPoint.Win.Spread.SheetStyleProperty)">
<summary>
Resets the specified property to the default setting (not set).
</summary>
<param name="styleProperty">Style property to reset</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.ResetName">
<summary>
Resets to the default the name of the style (String.Empty).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyle.CopyFrom(System.Object)">
<summary>
Copies the properties of the specified object to the current object.
</summary>
<param name="obj">Object from which to copy style settings</param>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.Name">
<summary>
Gets or sets the name of the style.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.NamedStyle.Changed">
<summary>
Occurs when the named style has changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.BackColor">
<summary>
Gets or sets the background color for the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.ForeColor">
<summary>
Gets or sets the text color for the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.Font">
<summary>
Gets or sets the font for the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.VisualStyles">
<summary>
Gets or sets the visual style setting for the named style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.HorizontalAlignment">
<summary>
Gets or sets the horizontal alignment for the named style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.VerticalAlignment">
<summary>
Gets or sets the vertical alignment for the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.Border">
<summary>
Gets or sets the border for the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.Formatter">
<summary>
Gets or sets the formatter for the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.CellType">
<summary>
Gets or sets the cell type for the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.Editor">
<summary>
Gets or sets the editor for the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.Renderer">
<summary>
Gets or sets the renderer for the style.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.Locked">
<summary>
Gets or sets whether this style permits a cell to be edited when the sheet is protected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.NoteStyle">
<summary>
Gets or sets the style of cell notes for the style of the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.NoteIndicatorColor">
<summary>
Gets or sets the color of the cell note indicator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.NoteIndicatorSize">
<summary>
Gets or sets the size of the cell note indicator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.TextIndent">
<summary>
Gets or sets the amount to indent the text in a cell.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.NoteIndicatorPosition">
<summary>
Gets or sets the position of the note indicator for a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.CellPadding">
<summary>
Gets or sets the amount of spaces to cell padding in the cell in pixels.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.CanFocus">
<summary>
Gets or sets whether the user can set focus to the cell using the keyboard or mouse.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.TabStop">
<summary>
Gets or sets whether the user can set focus to the cell using the Tab key.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyle.Parent">
<summary>
Gets or sets the name of the parent for the style.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.NamedStyleCollectionEventType">
<summary>
Specifies the type of change event that has occurred for the style in the collection.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NamedStyleCollectionEventType.ItemAdded">
<summary>
Indicates that a style has been added to the collection
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NamedStyleCollectionEventType.ItemRemoved">
<summary>
Indicates that a style has been removed from the collection
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NamedStyleCollectionEventType.ItemChanged">
<summary>
Indicates that a style in the collection has been replaced
</summary>
</member>
<member name="T:FarPoint.Win.Spread.NamedStyleCollectionEventArgs">
<summary>
Represents the event data for the NamedStyleCollection object's Changed event.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollectionEventArgs.#ctor(FarPoint.Win.Spread.NamedStyleCollectionEventType,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.NamedStyle)">
<summary>
Initializes a new NamedStyleCollectionEventArgs object with the specified type and styles.
</summary>
<param name="type">
Type of event to occur
</param>
<param name="oldstyle">
Old style, or null if not applicable
</param>
<param name="newstyle">
New style, or null if not applicable
</param>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyleCollectionEventArgs.Type">
<summary>
Gets the type of event that occurred.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyleCollectionEventArgs.OldStyle">
<summary>
Gets the old style that was removed or changed,
or null if no style was removed or changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyleCollectionEventArgs.NewStyle">
<summary>
Gets the new style that was added, or null if no style was added.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.NamedStyleCollectionEventHandler">
<summary>
Represents a defined method that handles the NamedStyleCollection object's Changed event.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.NamedStyleCollection">
<summary>
Represents a collection of custom styles (NamedStyle objects).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NamedStyleCollection.DefaultStyles">
<summary>
Represents the read-only collection of default styles.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.#ctor">
<summary>
Creates a custom style collection (NamedStyleCollection object).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the collection of styles to XML.
</summary>
<param name="w">
XmlTextWriter object to which to save the collection object
</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the collection of styles from XML.
</summary>
<param name="r">
XmlNodeReader from which to load the collection object
</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.IncreaseStyleInfoVersion">
<summary>
Increases the style info version.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.Compose(System.Object,FarPoint.Win.Spread.StyleInfo)">
<summary>
Composes a style, using the current style and
a specified NamedStyle object.
</summary>
<param name="o">
Style (NamedStyle object)
</param>
<param name="destInfo">
Destination for the composed StyleInfo object or
creates a new StyleInfo object if Null
</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.Find(System.String)">
<summary>
Finds a style (NamedStyle object) in the collection with the specified name.
</summary>
<param name="name">
Name of the style to find
</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.CopyTo(FarPoint.Win.Spread.NamedStyle[],System.Int32)">
<summary>
Copies the styles in the collection to a specified array at a specified position.
</summary>
<param name="namedStyles">
One-dimensional array into which are copied the elements from ICollection
(The array must have zero-based indexing.)
</param>
<param name="index">
Zero-based index in array at which to paste styles.
</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.CopyTo(System.Array,System.Int32)">
<summary>
Copies the styles in the collection to a specified array at a specified position.
</summary>
<param name="array">
One-dimensional array into which are copied the elements from ICollection
(The array must have zero-based indexing.)
</param>
<param name="index">
Zero-based index in array at which to paste styles
</param>
<exception cref="T:System.ArgumentNullException">No array specified, or specified array is null (Nothing)</exception>
<exception cref="T:System.ArgumentException">Specified array is not valid; must have a rank of one</exception>
<exception cref="T:System.ArgumentException">Specified array is not valid; must have sufficient length</exception>
<exception cref="T:System.IndexOutOfRangeException">Specified index is out of range; must be greater than zero</exception>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.System#Collections#IList#Add(System.Object)">
<summary>
Adds a NamedStyle object to the collection.
</summary>
<param name="value">
Specifies the NamedStyle object to add.
</param>
<returns>
Returns the index of the element in the collection.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.AddRange(System.Collections.ICollection)">
<summary>
Adds an array of styles (NamedStyle objects) to the collection.
</summary>
<param name="c">NamedStyleCollection or array of NamedStyle objects to add to the collection</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.AddRange(FarPoint.Win.Spread.NamedStyle[])">
<summary>
Adds an array of NamedStyle objects to the collection.
</summary>
<param name="array">Array of styles (NamedStyle objects) to add to the collection</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.Add(FarPoint.Win.Spread.NamedStyle)">
<summary>
Adds a style (NamedStyle object) to the collection.
</summary>
<param name="style">Name of the style to add</param>
<exception cref="T:System.ArgumentNullException">
No style specified or specified style is null
</exception>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.Add(System.String,System.String)">
<summary>
Adds a style (NamedStyle object) to the collection as a child
to the specified parent.
</summary>
<param name="name">Name of the style to add</param>
<param name="parentName">Parent style of the style to add</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.Clear">
<summary>
Removes all named styles from the collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.System#Collections#IList#Contains(System.Object)">
<summary>
Determines whether the collection contains the specified NamedStyle object.
</summary>
<param name="value">
NamedStyle object to check for in the collection.
</param>
<returns>
True if the object is found in the collection; false otherwise.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.Contains(FarPoint.Win.Spread.NamedStyle)">
<summary>
Determines whether the collection contains the specified style (NamedStyle object).
</summary>
<param name="style">
Style (NamedStyle object) for which to check in the collection
</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.System#Collections#IList#IndexOf(System.Object)">
<summary>
Returns the index of the specified NamedStyle object.
</summary>
<param name="value">
NamedStyle object for which to search.
</param>
<returns>
Index of the object in the collection, or -1 if the object was not found.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.IndexOf(FarPoint.Win.Spread.NamedStyle)">
<summary>
Returns the index of the specified style in the collection.
</summary>
<param name="style">
Style (NamedStyle object) for which to search
</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
<summary>
Inserts a style into the collection at the specified index.
</summary>
<param name="index">
Zero-based index at which to insert style.
</param>
<param name="value">
Style to insert into the collection.
</param>
<exception cref="T:System.ArgumentException">Specified object is not valid</exception>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.Insert(System.Int32,FarPoint.Win.Spread.NamedStyle)">
<summary>
Inserts a style into the collection at the specified index.
</summary>
<param name="index">
Zero-based index at which to insert the named style
</param>
<param name="style">
Style to insert into the collection
</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified index is out of range; must be between 0 and the total number in the collection
</exception>
<exception cref="T:System.ArgumentNullException">
No style specified or specified style is null
</exception>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.System#Collections#IList#Remove(System.Object)">
<summary>
Removes the specified NamedStyle object from the collection.
</summary>
<param name="value">
Object to remove.
</param>
<exception cref="T:System.ArgumentException">Specified object is not valid</exception>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.Remove(FarPoint.Win.Spread.NamedStyle)">
<summary>
Removes the specified named style from the collection.
</summary>
<param name="style">
Style (NamedStyle object) to remove
</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.RemoveAt(System.Int32)">
<summary>
Removes a named style (NamedStyle object) from the collection at the specified index.
</summary>
<param name="index">
Zero-based index of the style to be removed
</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified index is out of range; must be between 0 and the total number in the collection
</exception>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.GetEnumerator">
<summary>
Gets an IEnumerator object for enumerating through the NamedStyle objects
in the collection.
</summary>
<returns>
IEnumerator object for enumerating the NamedStyle objects in the collection
</returns>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.FireItemChanged(FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.NamedStyle)">
<summary>
Calls OnChanged to raise an ItemChanged event with the specified arguments.
</summary>
<param name="oldstyle">
Old NamedStyle object
</param>
<param name="newstyle">
New NamedStyle object
</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.FireItemAdded(FarPoint.Win.Spread.NamedStyle)">
<summary>
Calls OnChanged to raise an ItemAdded event for the specified NamedStyle object.
</summary>
<param name="style">
New NamedStyle object
</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.FireItemRemoved(FarPoint.Win.Spread.NamedStyle)">
<summary>
Calls OnChanged to raise an ItemRemoved event for the specified NamedStyle object.
</summary>
<param name="style">
Old NamedStyle object
</param>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleCollection.OnChanged(FarPoint.Win.Spread.NamedStyleCollectionEventArgs)">
<summary>
Raises the Changed event.
</summary>
<param name="e">
NamedStyleCollectionEventArgs object that contains the event data
</param>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyleCollection.CanSerializeXml">
<summary>
Gets whether the object in its entirety can be rendered with XML without losing any information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyleCollection.StyleInfoVersion">
<summary>
Gets the style info version.
</summary>
<value>The style info version.</value>
<remarks>
The version number will be increased when any style changes.
</remarks>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyleCollection.Count">
<summary>
Gets the number of styles (NamedStyle objects) in the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyleCollection.IsSynchronized">
<summary>
Gets whether access to the collection is synchronized.
(This implementation always returns false.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyleCollection.System#Collections#ICollection#SyncRoot">
<summary>
Gets an object that can be used to synchronize access to the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyleCollection.SyncRoot">
<summary>
Gets a collection (NamedStyleCollection object) that can be used to
synchronize access.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyleCollection.IsFixedSize">
<summary>
Gets whether the collection has a fixed size.
(This implementation always returns false.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyleCollection.IsReadOnly">
<summary>
Gets whether the collection is read-only.
(This implementation always returns false.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyleCollection.System#Collections#IList#Item(System.Int32)">
<summary>
Gets or sets the style (NamedStyle object) at the specified index.
</summary>
<exception cref="T:System.ArgumentException">Specified object type is not valid; must be NamedStyle</exception>
</member>
<member name="P:FarPoint.Win.Spread.NamedStyleCollection.Item(System.Int32)">
<summary>
Gets or sets the style (NamedStyle object) at the specified index in the collection.
</summary>
<param name="index">Index of the style in the collection</param>
<exception cref="T:System.IndexOutOfRangeException">Specified index is not valid</exception>
<exception cref="T:System.ArgumentNullException">No value specified; cannot set a member to null</exception>
</member>
<member name="E:FarPoint.Win.Spread.NamedStyleCollection.Changed">
<summary>
Occurs when a style is added, removed, or changed in the collection.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SaveNamedStyleCollection">
<summary>
Represents a save named style collection object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SaveNamedStyleCollection.#ctor">
<summary>
Saves the collection of named styles.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SaveNamedStyleCollection.#ctor(FarPoint.Win.Spread.NamedStyleCollection)">
<summary>
Saves the collection of named styles.
</summary>
<param name="nsc">Named styles collection</param>
</member>
<member name="M:FarPoint.Win.Spread.SaveNamedStyleCollection.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the named style collection to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.SaveNamedStyleCollection.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the named style collection from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object</param>
</member>
<member name="P:FarPoint.Win.Spread.SaveNamedStyleCollection.NamedStyles">
<summary>
Gets or sets the collection of the named styles.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.NamedStyleConverter">
<summary>
Converts NamedStyle objects from one data type to another.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns a value indicating whether a named style object can be converted to the specified type.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="destinationType">Type</param>
<returns>True if a named style object can be converted to the specified type, and false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.NamedStyleConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the NamedStyle object to a string.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">object</param>
<param name="destinationType">Type</param>
<returns>String representation of a NamedStyle object.</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultStyleConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns a value indicating whether a named style object can be converted to the specified type.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="destinationType">Type</param>
<returns>True if a named style object can be converted to the specified type, and false otherwise.</returns>
</member>
<member name="T:FarPoint.Win.Spread.DefaultStyleCollection">
<summary>
Represents the read-only collection of default NamedStyle objects.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.DataAreaDefault">
<summary>
Represents the default style for data area cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.HeaderDefault">
<summary>
Represents the default style for header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.RowHeaderDefault">
<summary>
Represents the default style for header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.CornerDefault">
<summary>
Represents the default style for header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.ColumnHeaderEnhanced">
<summary>
Represents the enhanced style for column header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.ColumnFooterEnhanced">
<summary>
Represents the enhanced style for column footer cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.RowHeaderEnhanced">
<summary>
Represents the enhanced style for row header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.CornerEnhanced">
<summary>
Represents the enhanced style for corner header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.ColumnHeaderShamrock">
<summary>
Represents the enhanced style for column header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.RowHeaderShamrock">
<summary>
Represents the enhanced style for row header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.CornerShamrock">
<summary>
Represents the enhanced style for corner header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.ColumnHeaderSandstorm">
<summary>
Represents the enhanced style for column header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.RowHeaderSandstorm">
<summary>
Represents the enhanced style for row header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.CornerSandstorm">
<summary>
Represents the enhanced style for corner header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.ColumnHeaderArcticSea">
<summary>
Represents the enhanced style for column header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.RowHeaderArcticSea">
<summary>
Represents the enhanced style for row header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.CornerArcticSea">
<summary>
Represents the enhanced style for corner header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.ColumnHeaderMetallic">
<summary>
Represents the enhanced style for column header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.RowHeaderMetallic">
<summary>
Represents the enhanced style for row header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.CornerMetallic">
<summary>
Represents the enhanced style for corner header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.ColumnHeaderGrayscale">
<summary>
Represents the enhanced style for column header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.RowHeaderGrayscale">
<summary>
Represents the enhanced style for row header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.CornerGrayscale">
<summary>
Represents the enhanced style for corner header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.DataAreaGrayscale">
<summary>
Represents data area for Grayscale style
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.ColumnHeaderSunburst">
<summary>
Represents the enhanced style for column header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.RowHeaderSunburst">
<summary>
Represents the enhanced style for row header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.CornerSunburst">
<summary>
Represents the enhanced style for corner header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.ColumnHeaderSeashell">
<summary>
Represents the enhanced style for column header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.RowHeaderSeashell">
<summary>
Represents the enhanced style for row header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.CornerSeashell">
<summary>
Represents the enhanced style for corner header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.ColumnHeaderPastel">
<summary>
Represents the enhanced style for column header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.RowHeaderPastel">
<summary>
Represents the enhanced style for row header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.CornerPastel">
<summary>
Represents the enhanced style for corner header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.ColumnHeaderRose">
<summary>
Represents the enhanced style for column header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.RowHeaderRose">
<summary>
Represents the enhanced style for row header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.CornerRose">
<summary>
Represents the enhanced style for corner header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.ColumnHeaderNewspaper">
<summary>
Represents the enhanced style for column header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.RowHeaderNewspaper">
<summary>
Represents the enhanced style for row header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.CornerNewspaper">
<summary>
Represents the enhanced style for corner header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.ColumnHeaderMidnight">
<summary>
Represents the enhanced style for column header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.RowHeaderMidnight">
<summary>
Represents the enhanced style for row header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.CornerMidnight">
<summary>
Represents the enhanced style for corner header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.DataAreaMidnight">
<summary>
Represents data area for Midnight style
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultStyleCollection.Styles">
<summary>
Represents the array of NamedStyle objects containing the default styles.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultStyleCollection.Compose(System.Object,FarPoint.Win.Spread.StyleInfo)">
<summary>
Composes a style using the default styles and
a specified StyleInfo object.
</summary>
<param name="o">
Style (NamedStyle object, StyleInfo object, or string name)
</param>
<param name="destInfo">
Destination for the composed StyleInfo object, or
creates a new StyleInfo object if null
</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultStyleCollection.Find(System.String)">
<summary>
Finds a style with the specified name in the collection.
</summary>
<param name="name">
Style (NamedStyle object) to find
</param>
<returns>
Style (NamedStyle object) in the collection with the specified name, or
null if no NamedStyle is found
</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultStyleCollection.CopyTo(System.Array,System.Int32)">
<summary>
Copies the styles in the collection to a specified array at a specified location.
</summary>
<param name="array">
One-dimensional array into which are copied the elements from ICollection;
the array indexing must be zero-based.
</param>
<param name="index">
Zero-based index in the array at which to paste the styles
</param>
<exception cref="T:System.ArgumentNullException">No array specified, or specified array is null (Nothing)</exception>
<exception cref="T:System.ArgumentException">Specified array is invalid; must have a rank of one</exception>
<exception cref="T:System.ArgumentException">Specified array is invalid; must have sufficient length</exception>
<exception cref="T:System.IndexOutOfRangeException">Specified index is out of range; must be greater than zero</exception>
</member>
<member name="M:FarPoint.Win.Spread.DefaultStyleCollection.CopyTo(FarPoint.Win.Spread.NamedStyle[],System.Int32)">
<summary>
Copies the styles in the collection to a specified array at a specified location.
</summary>
<param name="array">
One-dimensional array into which are copied the elements from ICollection;
the array indexing must be zero-based.
</param>
<param name="index">
Zero-based index in the array at which to paste the styles
</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultStyleCollection.System#Collections#IList#Add(System.Object)">
<summary>
Not supported; calling this method throws an exception because the collection is read-only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultStyleCollection.Add(FarPoint.Win.Spread.NamedStyle)">
<summary>
Not supported; calling this method throws an exception because the collection is read-only.
</summary>
<param name="value">Style (NamedStyle object) to add to the collection</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultStyleCollection.System#Collections#IList#Clear">
<summary>
Not supported; calling this method throws an exception because the collection is read-only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultStyleCollection.System#Collections#IList#Contains(System.Object)">
<summary>
Determines whether the collection contains the specified NamedStyle object.
</summary>
<param name="value">
NamedStyle object to check for in the collection.
</param>
<returns>
True if the object is found in the collection; false otherwise.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultStyleCollection.Contains(FarPoint.Win.Spread.NamedStyle)">
<summary>
Determines whether the collection contains the specified style.
</summary>
<param name="style">
Style (NamedStyle object) for which to check in the collection
</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultStyleCollection.System#Collections#IList#IndexOf(System.Object)">
<summary>
Returns the index of the specified style.
</summary>
<param name="value">
Style (NamedStyle object) for which to search.
</param>
<returns>
Index of the object in the collection, or -1 if the object was not found.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultStyleCollection.IndexOf(FarPoint.Win.Spread.NamedStyle)">
<summary>
Returns the index of the specified NamedStyle object.
</summary>
<param name="style">
Style (NamedStyle object) for which to search
</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultStyleCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
<summary>
Not supported; calling this method throws an exception because the collection is read-only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultStyleCollection.System#Collections#IList#Remove(System.Object)">
<summary>
Not supported; calling this method throws an exception because the collection is read-only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultStyleCollection.System#Collections#IList#RemoveAt(System.Int32)">
<summary>
Not supported; calling this method throws an exception because the collection is read-only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultStyleCollection.Insert(System.Int32,FarPoint.Win.Spread.NamedStyle)">
<summary>
Not supported; calling this method throws an exception because the collection is read-only.
</summary>
<param name="index">Index at which to insert the style</param>
<param name="style">Style (NamedStyle object) to insert in the collection</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultStyleCollection.Remove(FarPoint.Win.Spread.NamedStyle)">
<summary>
Not supported; calling this method throws an exception because the collection is read-only.
</summary>
<param name="style">Style (NamedStyle object) to remove from the collection</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultStyleCollection.GetEnumerator">
<summary>
Gets an IEnumerator object for enumerating through the NamedStyle objects
in the collection.
</summary>
<returns>
IEnumerator object for enumerating the styles in the collection
</returns>
</member>
<member name="P:FarPoint.Win.Spread.DefaultStyleCollection.Count">
<summary>
Gets the number of NamedStyle objects in the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultStyleCollection.IsSynchronized">
<summary>
Gets whether access to the collection is synchronized.
<para>(This implementation always returns false.)</para>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultStyleCollection.System#Collections#ICollection#SyncRoot">
<summary>
Gets an object that can be used to synchronize access to the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultStyleCollection.SyncRoot">
<summary>
Gets a NamedStyleCollection object that can be used to
synchronize access to the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultStyleCollection.IsFixedSize">
<summary>
Gets whether the collection has a fixed size.
<para>(This implementation always returns false.)</para>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultStyleCollection.IsReadOnly">
<summary>
Gets whether the collection is read-only.
<para>(This implementation always returns true.)</para>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultStyleCollection.System#Collections#IList#Item(System.Int32)">
<summary>
Gets or sets the NamedStyle object at the specified index.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultStyleCollection.Item(System.Int32)">
<summary>
Gets or sets the NamedStyle object at the specified index.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.StyleCollection">
<summary>
Collection of StyleInfo objects.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleCollection.#ctor">
<summary>
Constructs a new NamedStyleCollection object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleCollection.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">
XmlTextWriter object to save the object to.
</param>
<returns>True if successful; false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.StyleCollection.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">
XmlNodeReader to load the object from.
</param>
<returns>True if successful; false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.StyleCollection.CopyTo(System.Array,System.Int32)">
<summary>
Copies the elements of the collection to an Array, starting
at a particular Array index.
</summary>
<param name="array">
One-dimensional Array that is the destination of the
elements copied from ICollection. The Array must have
zero-based indexing.
</param>
<param name="index">
Zero-based index in array at which copying begins.
</param>
<exception cref="T:System.ArgumentNullException">No array specified, or specified array is null (Nothing)</exception>
<exception cref="T:System.ArgumentException">Specified array is invalid; must have a rank of one</exception>
<exception cref="T:System.ArgumentException">Specified array is invalid; must have sufficient length</exception>
<exception cref="T:System.IndexOutOfRangeException">Specified index is out of range; must be greater than zero</exception>
</member>
<member name="M:FarPoint.Win.Spread.StyleCollection.System#Collections#IList#Add(System.Object)">
<summary>
Adds a style (StyleInfo object) to the collection.
</summary>
<param name="value">
StyleInfo object to add
</param>
<returns>
Index of the element in the collection
</returns>
</member>
<member name="M:FarPoint.Win.Spread.StyleCollection.AddRange(FarPoint.Win.Spread.StyleInfo[])">
<summary>
Adds styles (an array of StyleInfo objects) to the collection.
</summary>
<param name="styles">Array of style objects to add</param>
<exception cref="T:System.ArgumentNullException">
No style specified or specified style is null
</exception>
</member>
<member name="M:FarPoint.Win.Spread.StyleCollection.Add(FarPoint.Win.Spread.StyleInfo)">
<summary>
Adds a style (StyleInfo object) to the collection.
</summary>
<param name="style">StyleInfo object to add</param>
<returns>Index of the element in the collection</returns>
<exception cref="T:System.ArgumentNullException">
No style specified or specified style is null
</exception>
</member>
<member name="M:FarPoint.Win.Spread.StyleCollection.Clear">
<summary>
Removes all styles from the collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleCollection.System#Collections#IList#Contains(System.Object)">
<summary>
Determines whether the collection contains the specified object.
</summary>
<param name="value">
Object for which to search
</param>
<returns>
True if the object is found in the collection; false otherwise
</returns>
</member>
<member name="M:FarPoint.Win.Spread.StyleCollection.Contains(FarPoint.Win.Spread.StyleInfo)">
<summary>
Determines whether the collection contains the specified object.
</summary>
<param name="style">
StyleInfo object for which to search
</param>
<returns>
True if the object is found in the collection; false otherwise
</returns>
</member>
<member name="M:FarPoint.Win.Spread.StyleCollection.System#Collections#IList#IndexOf(System.Object)">
<summary>
Determines the index of the specified object in the collection.
</summary>
<param name="value">
Object for which to search
</param>
<returns>
Index of the object in the collection if found, or -1 if the object is not found
</returns>
</member>
<member name="M:FarPoint.Win.Spread.StyleCollection.IndexOf(FarPoint.Win.Spread.StyleInfo)">
<summary>
Determines the index of the specified StyleInfo object in the collection.
</summary>
<param name="style">
StyleInfo object for which to search
</param>
<returns>
Index of the object in the collection if found, or -1 if the object is not found
</returns>
</member>
<member name="M:FarPoint.Win.Spread.StyleCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
<summary>
Inserts an object into the collection at the specified index.
</summary>
<param name="index">
Zero-based index at which value should be inserted
</param>
<param name="value">
Object to insert into the collection
</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleCollection.Insert(System.Int32,FarPoint.Win.Spread.StyleInfo)">
<summary>
Inserts a StyleInfo object into the collection at the specified index.
</summary>
<param name="index">
Zero-based index at which value should be inserted
</param>
<param name="style">
NamedStyle object to insert into the collection
</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleCollection.System#Collections#IList#Remove(System.Object)">
<summary>
Removes the specified object from the collection.
</summary>
<param name="value">
Object to remove
</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleCollection.Remove(FarPoint.Win.Spread.StyleInfo)">
<summary>
Removes the specified NamedStyle object from the collection.
</summary>
<param name="style">
NamedStyle object to remove
</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleCollection.RemoveAt(System.Int32)">
<summary>
Removes an object from the collection at the specified index.
</summary>
<param name="index">
Zero-based index of the item to be removed
</param>
</member>
<member name="M:FarPoint.Win.Spread.StyleCollection.GetEnumerator">
<summary>
Gets an IEnumerator object for enumerating the NamedStyle objects
in the collection.
</summary>
<returns>
Returns an IEnumerator object for enumerating the NamedStyle objects
in the collection.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.StyleCollection.CanSerializeXml">
<summary>
Returns a value indicating whether any of the styles in the collection cannot
be persisted in XML.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleCollection.Count">
<summary>
Gets the number of StyleInfo objects in the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleCollection.IsSynchronized">
<summary>
Returns a value indicating whether access to the collection
is synchronized (always returns false).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleCollection.System#Collections#ICollection#SyncRoot">
<summary>
Gets an object that can be used to synchronize access to the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleCollection.SyncRoot">
<summary>
Gets a StyleCollection object that can be used to synchronize access to the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleCollection.IsFixedSize">
<summary>
Gets whether the collection has a fixed size.
(This implementation always returns false.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleCollection.IsReadOnly">
<summary>
Gets whether the collection is read-only.
(This implementation always returns false.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleCollection.System#Collections#IList#Item(System.Int32)">
<summary>
Gets or sets the style (StyleInfo object) at the specified index.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StyleCollection.Item(System.Int32)">
<summary>
Gets or sets the style (StyleInfo object) at the specified index.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.InvalidExternalReferenceParseException">
<summary>
Represents the exception that is thrown when an error is encountered
which caused by invalid external reference during the parsing of a text representation of an expression.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.ParseException">
<summary>
Represents the exception that is thrown when an error is encountered
during the parsing of a text representation of an expression.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.ParseException.#ctor">
<summary>
Constructs a new instance of the ParseException class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.ParseException.#ctor(System.String)">
<summary>
Constructs a new instance of the ParseException class
with the specified message.
</summary>
<param name="message">Message that describes this exception</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ParseException.#ctor(System.String,System.Exception)">
<summary>
Constructs a new instance of the ParseException class
with the specified message and inner exception.
</summary>
<param name="message">Message that describes this exception</param>
<param name="innerException">Earlier exception that causes this exception</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ParseException.#ctor(System.String,System.Int32)">
<summary>
Constructs a new instance of the ParseException class
with the specified message and offset.
</summary>
<param name="message">Message that describes this exception</param>
<param name="errorOffset">Position where the error is found</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ParseException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Constructs a new instance of the ParseException class with
serialized data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.ParseException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Sets the SerializationInfo with information about the exception.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.ParseException.Message">
<summary>
Gets a message that describes the current exception.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.ParseException.ErrorOffset">
<summary>
Gets the position were the error was found.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.InvalidExternalReferenceParseException.#ctor">
<summary>
Constructs a new instance of the InvalidExternalReferenceParseException class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.InvalidExternalReferenceParseException.#ctor(System.String)">
<summary>
Constructs a new instance of the InvalidExternalReferenceParseException class
with the specified message.
</summary>
<param name="message">Message that describes this exception</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.InvalidExternalReferenceParseException.#ctor(System.String,System.Exception)">
<summary>
Constructs a new instance of the InvalidExternalReferenceParseException class
with the specified message and inner exception.
</summary>
<param name="message">Message that describes this exception</param>
<param name="innerException">Earlier exception that causes this exception</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.InvalidExternalReferenceParseException.#ctor(System.String,System.Int32)">
<summary>
Constructs a new instance of the InvalidExternalReferenceParseException class
with the specified message and offset.
</summary>
<param name="message">Message that describes this exception</param>
<param name="errorOffset">Position where the error is found</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.InvalidExternalReferenceParseException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Constructs a new instance of the ParseException class with
serialized data.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.Parser">
<summary>
Converts strings to/from Expresions objects
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.Parser.errors">
<summary>
Lists error values allowed in expressions.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.Parser.prefixOperators">
<summary>
Lists prefix unary operators allowed in expressions.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.Parser.infixOperators">
<summary>
Lists infix binary operators allowed in expressions.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.Parser.postfixOperators">
<summary>
Lists postfix unary operators allowed in expressions.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.Parser.precedenceLevel0">
<summary>
Lists operators with a precedence level of 0.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.Parser.precedenceLevel1">
<summary>
Lists operators with a precedence level of 1.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.Parser.precedenceLevel2">
<summary>
Lists operators with a precedence level of 2.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.Parser.precedenceLevel3">
<summary>
Lists operators with a precedence level of 3.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.Parser.precedenceLevel4">
<summary>
Lists operators with a precedence level of 4.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.Parser.precedenceLevel5">
<summary>
Lists operators with a precedence level of 5.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.Parser.precedenceLevel6">
<summary>
Lists operators with a precedence level of 6.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.Parser.precedenceLevels">
<summary>
Lists the precedence level for all the operators.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.Parser.functions">
<summary>
Lists built-in functions allowed in expressions.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.IsDouble(System.String)">
<summary>
Determines whether or not the string represents a double.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.IsString(System.String)">
<summary>
Determines whether or not the string represents a string.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.IsValidFirstChar(System.Char)">
<summary>
Determines whether or not the character is valid as
the first character in a name.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.IsValidRemainingChar(System.Char)">
<summary>
Determines whether or not the character is valid as
a non-first character in a name.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.IsName(System.String)">
<summary>
Determines whether or not the string represents a name.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.LookupError(System.String)">
<summary>
Determines whether or not the string represents an error.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.LookupPrefixOperator(System.String)">
<summary>
Determines whether or not the string represents a prefix
unary operator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.LookupInfixOperator(System.String)">
<summary>
Determines whether or not the string represents an infix
binary operator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.LookupPostfixOperator(System.String)">
<summary>
Determines whether or not the string represents a postfix
unary operator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.LookupFunction(System.String)">
<summary>
Determines whether or not the string represents a built-in
function.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.IsPrefixOperator(FarPoint.CalcEngine.UnaryOperatorInfo)">
<summary>
Determines whether or not the unary operator is a prefix
unary operator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.GetPrecedenceLevel(FarPoint.CalcEngine.OperatorInfo)">
<summary>
Returns the precedence level of the operator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.AppendExternalName(System.Text.StringBuilder,System.Object)">
<summary>
Appends the sheet name.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.AppendA1Letter(System.Text.StringBuilder,System.Int32,System.Boolean,System.Int32)">
<summary>
Appends the A1 text representation of the column coordinate.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.AppendA1Number(System.Text.StringBuilder,System.Int32,System.Boolean,System.Int32)">
<summary>
Appends the A1 text representation of the row coordinate.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.AppendR1C1Number(System.Text.StringBuilder,System.String,System.Int32,System.Boolean)">
<summary>
Appends the R1C1 text representation of the cell coordinate.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.ParseCellReference(System.String,System.Int32,System.Int32,System.Boolean)">
<summary>
Converts the string to a CellExpression.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.ParseRowReference(System.String,System.Int32,System.Boolean)">
<summary>
Converts the string to a RangeExpression.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.ParseColumnReference(System.String,System.Int32,System.Boolean)">
<summary>
Converts the string to a RangeExpression.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.ParseReference(System.String,System.Int32,System.Int32,System.Boolean)">
<summary>
Converts the string to a ReferenceExpression.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.ParseExternalReference(System.String,System.Int32,System.Int32,System.Boolean,System.Collections.ArrayList)">
<summary>
Converts the string to a ReferenceExpression.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.TransferOperators(System.Collections.Stack,System.Collections.Stack,System.Int32)">
<summary>
Transfers operators with precedence levels greater than or equal
to the specified precedence level from the operator stack to the
expression stack.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.ParseParams(System.String,System.Int32,System.Int32,System.Boolean,System.Collections.Hashtable,System.Collections.Hashtable,System.Collections.ArrayList)">
<summary>
Converts the string to an Expression object.
</summary>
<param name="text">String to convert</param>
<param name="baseRow">Base row position</param>
<param name="baseColumn">Base column position</param>
<param name="useR1C1">Whether to use R1C1 notation</param>
<param name="customFunctions">Table of custom functions</param>
<param name="customNames">Table of custom names</param>
<param name="dataModels">Array list of data models</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.ParseChartDataSource(System.String,System.Int32,System.Int32,System.Boolean,System.Collections.Hashtable,System.Collections.Hashtable,System.Collections.ArrayList)">
The operator stack holds unary prefix operators, binary infix operators,
functions, commas, and left parentheses until their corresponding
operands are parsed. The expression stack holds sub-expressions while the
text is being parsed.
<summary>
Converts the string to an Expression object.
</summary>
<param name="text">String to convert</param>
<param name="baseRow">Base row position</param>
<param name="baseColumn">Base column position</param>
<param name="useR1C1">Whether to use R1C1 notation</param>
<param name="customFunctions">Table of custom functions</param>
<param name="customNames">Table of custom names</param>
<param name="dataModels">Array list of data models</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.Parse(System.String,System.Int32,System.Int32,System.Boolean,System.Collections.Hashtable,System.Collections.Hashtable,System.Collections.ArrayList)">
The operator stack holds unary prefix operators, binary infix operators,
functions, commas, and left parentheses until their corresponding
operands are parsed. The expression stack holds sub-expressions while the
text is being parsed.
<summary>
Converts the string to an Expression object.
</summary>
<param name="text">String to convert</param>
<param name="baseRow">Base row position</param>
<param name="baseColumn">Base column position</param>
<param name="useR1C1">Whether to use R1C1 notation</param>
<param name="customFunctions">Table of custom functions</param>
<param name="customNames">Table of custom names</param>
<param name="dataModels">Array list of data models</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.ParseExpression(System.String,System.Collections.Hashtable,System.Collections.Hashtable)">
<summary>
Parses the expression.
Only parse expression
</summary>
<param name="text">The text.</param>
<param name="customFunctions">The custom functions.</param>
<param name="customNames">The custom names.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.Unparse(FarPoint.CalcEngine.Expression,System.Int32,System.Int32,System.Boolean)">
<summary>
Converts an Expression object to a string.
</summary>
<param name="expr">Expression to convert</param>
<param name="baseRow">Base row position</param>
<param name="baseColumn">Base column position</param>
<param name="useR1C1">Whether to use R1C1 notation</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.Parser.Unparse(FarPoint.CalcEngine.Expression,System.Text.StringBuilder,System.Int32,System.Int32,System.Boolean)">
<summary>
Converts an Expression object to a string.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.RowClipInfoRange">
<summary>
Represents a one-dimensional collection of RowClipInfo objects.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RowClipInfoRange.#ctor(System.Int32)">
<summary>
Creates a new RowClipInfoRange object with the specified number of rows.
</summary>
<param name="rowCount">Number of rows</param>
</member>
<member name="P:FarPoint.Win.Spread.RowClipInfoRange.Item(System.Int32)">
<summary>
Gets or sets a RowClipInfo object for the row specified.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowClipInfoRange.RowCount">
<summary>
Gets the number of rows in the one-dimensional collection.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.RowClipInfo">
<summary>
Represents the information for a row (not including the value or style information).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RowClipInfo.#ctor">
<summary>
Creates a new set of row information (RowClipInfo object).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowClipInfo.Collapsed">
<summary>
Gets or sets whether the row is collapsed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowClipInfo.Height">
<summary>
Gets or sets the height of cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowClipInfo.Visible">
<summary>
Gets or sets whether the row is visible.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowClipInfo.Resizable">
<summary>
Gets or sets whether this row can be resized.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowClipInfo.PageBreak">
<summary>
Gets or sets whether a page break is inserted before this row when printing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowClipInfo.MergePolicy">
<summary>
Gets or sets the whether to automatically merge adjacent identical cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowClipInfo.SheetName">
<summary>
Gets or sets the name of the sheet.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Rows">
<summary>
Represents a one-dimensional collection of Row objects.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Rows.#ctor(FarPoint.Win.Spread.SheetView,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Creates a new set of rows for the specified sheet and whether they are in the headers.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Rows.GetDataModel">
<summary>
Gets the sheet data model for this row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Rows.GetAxisModel">
<summary>
Gets the sheet axis model for this row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Rows.Add(System.Int32,System.Int32)">
<summary>
Adds a new row or range of rows.
</summary>
<param name="index">Row index at which to start</param>
<param name="count">Number of rows to add</param>
</member>
<member name="M:FarPoint.Win.Spread.Rows.Remove(System.Int32,System.Int32)">
<summary>
Removes a row or range of rows.
</summary>
<param name="index">Index of row at which to start</param>
<param name="count">Number of rows to remove</param>
</member>
<member name="M:FarPoint.Win.Spread.Rows.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
<summary>
Copies the elements of the collection to the array.
</summary>
<param name="array">Array</param>
<param name="index">int</param>
</member>
<member name="M:FarPoint.Win.Spread.Rows.System#Collections#IList#Add(System.Object)">
<summary>
Not supported (throws InvalidOperationException).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Rows.AddRange(System.Collections.ICollection)">
<summary>
Not supported (throws InvalidOperationException).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Rows.Clear">
<summary>
Not supported (throws InvalidOperationException).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Rows.System#Collections#IList#Contains(System.Object)">
<summary>
Determines whether the collection contains the specified object.
</summary>
<param name="value">
Object to check for in the collection.
</param>
<returns>
True if the object is found in the collection; false otherwise.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Rows.System#Collections#IList#IndexOf(System.Object)">
<summary>
Returns the index of the specified object.
</summary>
<param name="value">
Object for which to search.
</param>
<returns>
Index of the object in the collection, or -1 if the object was not found.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Rows.System#Collections#IList#Insert(System.Int32,System.Object)">
<summary>
Not supported (throws InvalidOperationException).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Rows.System#Collections#IList#Remove(System.Object)">
<summary>
Not supported (throws InvalidOperationException).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Rows.System#Collections#IList#RemoveAt(System.Int32)">
<summary>
Not supported (throws InvalidOperationException).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Rows.Get(System.Int32)">
<summary>
Gets a specified row.
</summary>
<param name="row">Row index</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified row index is out of range. It must less than the row count or -1 for all.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Rows.Get(System.Int32,System.Int32)">
<summary>
Gets a specified range of rows.
</summary>
<param name="row">Starting row index</param>
<param name="row2">Ending row index</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified row index is out of range. It must less than the row count or -1 for all.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Rows.AddRangeGroup(System.Int32,System.Int32)">
<summary>
Groups all the rows from the specified start index by the specified amount to an outline (range group).
</summary>
<param name="row">Starting row index</param>
<param name="count">Number of rows to group</param>
</member>
<member name="M:FarPoint.Win.Spread.Rows.RemoveRangeGroup(System.Int32,System.Int32)">
<summary>
Removes rows from the outline (range group) from the specified index and count,
and returns them to individual rows.
</summary>
<param name="row">Starting row index</param>
<param name="count">Number of rows to ungroup</param>
</member>
<member name="M:FarPoint.Win.Spread.Rows.ExpandRangeGroup(FarPoint.Win.Spread.RangeGroupInfo,System.Boolean)">
<summary>
Expands or collapses a specified outline (range group) of rows.
</summary>
<param name="group">Outline (range group) to expand or collapse</param>
<param name="expand">Whether the action is to expand the outline</param>
</member>
<member name="M:FarPoint.Win.Spread.Rows.GetRangeGroupInfo(System.Int32)">
<summary>
Gets the outlines (range groups) by level.
</summary>
<param name="level">Level of the associated outline (range group)</param>
<returns>The collection of groups with specified level.</returns>
</member>
<member name="P:FarPoint.Win.Spread.Rows.Item(System.String)">
<summary>
Gets a new row for the specified tag.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.Item(System.Int32)">
<summary>
Gets a new row for the specified row.
</summary>
<exception cref="T:System.IndexOutOfRangeException">
Specified row index is out of range. It must less than the row count or -1 for all.
</exception>
</member>
<member name="P:FarPoint.Win.Spread.Rows.Item(System.Int32,System.Int32)">
<summary>
Gets a new row for the specified range of rows.
</summary>
<exception cref="T:System.IndexOutOfRangeException">
Specified row index is out of range. It must less than the row count or -1 for all.
</exception>
</member>
<member name="P:FarPoint.Win.Spread.Rows.Count">
<summary>
Gets or sets the number of rows in the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.Default">
<summary>
Gets a row for the default row (-1).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.Parent">
<summary>
Gets the parent object containing this collection of rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.System#Collections#ICollection#Count">
<summary>
Returns the number of elements in the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.System#Collections#ICollection#IsSynchronized">
<summary>
Gets whether access to the collection is synchronized.
(This implementation always returns false.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.System#Collections#ICollection#SyncRoot">
<summary>
Gets an object that can be used to synchronize access to the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.System#Collections#IList#IsFixedSize">
<summary>
Gets whether the collection has a fixed size.
(This implementation always returns true.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.System#Collections#IList#IsReadOnly">
<summary>
Gets whether the collection is read-only.
(This implementation always returns true.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.RangeGroupLevels">
<summary>
Gets the number of levels of rows in the outline (range group).
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Rows.DefaultRow">
<summary>
Represents the default row in the component.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Row">
<summary>
Represents a row in the component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Creates a new row for the specified row index and whether it is in a header.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Creates a new row for the specified range of row indexes and whether it is in a header.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.Invalidate">
<summary>
Invalidates the displayed cells and sends the message to repaint them.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.GetAxisModel">
<summary>
Gets the sheet axis model for this row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.GetDataModel">
<summary>
Gets the sheet data model for this row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.GetStyleModel">
<summary>
Gets the style model for this row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.IsValid(System.Int32)">
<summary>
Determines whether the specified view row index is valid
in the sheet data model and if so, sets the row field
to the model row index.
</summary>
<param name="viewrow">View row index</param>
<returns>
True if viewrow is defined in the data model; false otherwise
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Row.GetStyleInfo">
<summary>
Gets the current style properties for the row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.SetStyleInfo">
<summary>
Sets the styleInfo field into the style model for this row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.GetPreferredHeight">
<summary>
Gets the minimum height necessary to display the text in all cells in this row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.Equals(System.Object)">
<summary>
Determines whether the specified object is equivalent to this row.
</summary>
<param name="o">Object to compare</param>
</member>
<member name="M:FarPoint.Win.Spread.Row.GetHashCode">
<summary>
Gets the hash code for this row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.Add">
<summary>
Adds a new row or range of rows before this row or range of rows.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.Remove">
<summary>
Removes this row or range of rows.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ToString">
<summary>
Gets a string containing an absolute reference to this
row in the current reference style.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ToString(FarPoint.Win.Spread.Model.ReferenceStyle)">
<summary>
Gets a string containing a reference to this
row in the specified reference style.
</summary>
<param name="referenceStyle">Reference style</param>
</member>
<member name="M:FarPoint.Win.Spread.Row.ToString(FarPoint.Win.Spread.Row)">
<summary>
Gets a string containing a relative reference to this
row in the current reference style.
</summary>
<param name="relativeTo">
Row to use for computing the relative reference
</param>
</member>
<member name="M:FarPoint.Win.Spread.Row.ToString(FarPoint.Win.Spread.Row,FarPoint.Win.Spread.Model.ReferenceStyle)">
<summary>
Gets a string containing a relative reference to this
cell in the specified reference style.
</summary>
<param name="relativeTo">
Row to use for computing the relative reference
</param>
<param name="referenceStyle">
Reference style
</param>
<exception cref="T:System.ArgumentNullException">
Row is not specified or is not valid; must provide a valid Row object
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetNoteIndicatorColor">
<summary>
Resets the color of the note indicator for cells in this row to the default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetNoteIndicatorSize">
<summary>
Resets the size of the note indicator for cells in this row to the default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetNoteIndicatorPosition">
<summary>
Resets the position of the note indicator for cells in this row to the default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetCanFocus">
<summary>
Resets to its default value whether the cells in this row can receive focus.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetTabStop">
<summary>
Resets to its default value whether the user can set focus to cells in this row using the Tab key.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetVisualStyles">
<summary>
Resets the setting of visual styles (XP themes) for the row to the default setting.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetVisible">
<summary>
Resets the visiblity for the row and makes the row inherit the visibility
from the default row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetResizable">
<summary>
Resets the resizability for the row and makes the row inherit the resizability
from the default row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetParentStyleName">
<summary>
Resets the name of the parent style for cells in this row to an empty string.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetLabel">
<summary>
Resets the label for the row and makes the row use the automatic text.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetMergePolicy">
<summary>
Resets the merge policy for the row and makes the row inherit the merge policy
rom the default row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetTextIndent">
<summary>
Resets the text indent for the row and makes the row inherit the text indent from the default row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetCellPadding">
<summary>
Resets the cell padding of the row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetBackColor">
<summary>
Resets the background color for the row and makes the row inherit
the background color from the default row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetForeColor">
<summary>
Resets the foreground color for the row and makes the row inherit
the foreground color from the default row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetBorder">
<summary>
Resets the cell border for the row and makes the row inherit
the cell border from the default row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetCellType">
<summary>
Resets the cell type for the row and makes the row inherit
the cell type from the default row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetLocked">
<summary>
Resets the locked state for the row and makes the row inherit
the locked state from the default row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetFont">
<summary>
Resets the font for the row and makes the row inherit
the font from the default row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetHorizontalAlignment">
<summary>
Resets the horizontal alignment for the row and makes the row inherit
the horizontal alignment from the default row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetVerticalAlignment">
<summary>
Resets the vertical alignment for the row and makes the row inherit
the vertical alignment from the default row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Row.ResetHeight">
<summary>
Resets the height for the row and makes the row inherit
the height from the default row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.SheetView">
<summary>
Internal use only. Used by the Formula Editor.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.Index">
<summary>
Gets the index of this row, or the starting index for this range of rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.Index2">
<summary>
Gets the ending index for this range of rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.Tag">
<summary>
Gets or sets the application-defined tag value associated with
the cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.Formula">
<summary>
Gets or sets the formula for cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.Label">
<summary>
Gets or sets the header text for this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.Parent">
<summary>
Gets the parent collection of rows (Rows object) containing this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.Height">
<summary>
Gets or sets the height of this row in pixels.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified height is out of range; must be between -1 and 9,999,999 pixels
</exception>
</member>
<member name="P:FarPoint.Win.Spread.Row.Resizable">
<summary>
Gets or sets whether this row can be resized.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.Visible">
<summary>
Gets or sets whether this row is visible.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.StyleName">
<summary>
Gets or sets the name of the custom style for the cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.ParentStyleName">
<summary>
Gets or sets the name of the parent style from which style properties are inherited.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.NoteIndicatorColor">
<summary>
Gets or sets the default color for the cell note indicator for cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.NoteIndicatorSize">
<summary>
Gets or sets the default size for the note indicator for cells in this row.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified size is out of range; width and height must be between 0 and 9,999,999 pixels
</exception>
</member>
<member name="P:FarPoint.Win.Spread.Row.NoteIndicatorPosition">
<summary>
Gets or sets the position of the note indicator for cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.CanFocus">
<summary>
Gets or sets the default CanFocus setting for cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.TabStop">
<summary>
Gets or sets whether the user can set focus to cells in this row using the Tab key.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.VisualStyles">
<summary>
Gets or sets the setting of visual styles (XP themes) for the row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.BackColor">
<summary>
Gets or sets the background color for cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.ForeColor">
<summary>
Gets or sets the default text color for cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.TextIndent">
<summary>
Gets or sets the amount of spaces to indent text in cells of the row in pixels.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.CellPadding">
<summary>
Gets or sets the amount of space, in pixels, to cell padding in cells of the row(s).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.Border">
<summary>
Gets or sets the border for cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.Font">
<summary>
Gets or sets the default font for text in cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.HorizontalAlignment">
<summary>
Gets or sets the default horizontal alignment of text for cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.VerticalAlignment">
<summary>
Gets or sets the default vertical alignment for cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.PageBreak">
<summary>
Gets or sets whether a page break is inserted before this row when printing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.MergePolicy">
<summary>
Gets or sets whether to automatically merge adjacent identical cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.Editor">
<summary>
Gets or sets the default editor for cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.Renderer">
<summary>
Gets or sets the default renderer for cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.Formatter">
<summary>
Gets or sets the default formatter for cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.Locked">
<summary>
Gets or sets whether cells in this row are marked as locked.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Row.CellType">
<summary>
Gets or sets the default cell type for cells in this row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Rows.DefaultRow.ToString">
<summary>
Gets a string containing a reference to the default row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.DefaultRow.Formula">
<summary>
This property is not applicable. It cannot be set for a default column.
</summary>
Gets or sets the formula for the default row.
</member>
<member name="P:FarPoint.Win.Spread.Rows.DefaultRow.Label">
<summary>
This property is not applicable. It cannot be set for a default column.
</summary>
Gets or sets the label for the default row.
</member>
<member name="P:FarPoint.Win.Spread.Rows.DefaultRow.BackColor">
<summary>
Gets or sets the background color for cells in the default row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.DefaultRow.Border">
<summary>
Gets or sets the border for cells in the default row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.DefaultRow.CellType">
<summary>
Gets or sets the default cell type for cells in the default row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.DefaultRow.Editor">
<summary>
Gets or sets the default editor for cells in the default row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.DefaultRow.Font">
<summary>
Gets or sets the default font for cells in the default row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.DefaultRow.ForeColor">
<summary>
Gets or sets the default text color for cells in the default row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.DefaultRow.Formatter">
<summary>
Gets or sets the default formatter for cells in the default row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.DefaultRow.HorizontalAlignment">
<summary>
Gets or sets the default horizontal alignment of text for cells in the default row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.DefaultRow.Locked">
<summary>
Gets or sets whether cells in the default row are marked as locked.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.DefaultRow.ParentStyleName">
<summary>
Gets or sets the name of the parent style (NamedStyle object) from which
style properties are inherited for this default row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.DefaultRow.Renderer">
<summary>
Gets or sets the default renderer for cells in the default row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.DefaultRow.StyleName">
<summary>
Gets or sets the custom style (NamedStyle object) for the cells in the default row
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Rows.DefaultRow.VerticalAlignment">
<summary>
Gets or sets the default vertical alignment of text for cells in the default row.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.AlternatingRows">
<summary>
Represents a one-dimensional collection of AlternatingRow objects,
which set the style information for alternating rows in the component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRows.#ctor(FarPoint.Win.Spread.SheetView,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Creates a new collection of alternating rows.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRows.GetStyleModel">
<summary>
Gets the sheet style model for the alternating row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRows.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
<summary>
Copies the elements of the collection to the array.
</summary>
<param name="array">Array</param>
<param name="index">int</param>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRows.System#Collections#IList#Add(System.Object)">
<summary>
Not supported (throws InvalidOperationException).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRows.AddRange(System.Collections.ICollection)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRows.Clear">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRows.System#Collections#IList#Contains(System.Object)">
<summary>
Determines whether the collection contains the specified object.
</summary>
<param name="value">
Object to check for in the collection.
</param>
<returns>
True if the object is found in the collection; false otherwise.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRows.System#Collections#IList#IndexOf(System.Object)">
<summary>
Returns the index of the specified object.
</summary>
<param name="value">
Object for which to search.
</param>
<returns>
Index of the object in the collection, or -1 if the object was not found.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRows.System#Collections#IList#Insert(System.Int32,System.Object)">
<summary>
Not supported (throws InvalidOperationException).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRows.System#Collections#IList#Remove(System.Object)">
<summary>
Not supported (throws InvalidOperationException).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRows.System#Collections#IList#RemoveAt(System.Int32)">
<summary>
Not supported (throws InvalidOperationException).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRows.Get(System.Int32)">
<summary>
Gets a new alternating row for the specified alternating row.
</summary>
<param name="index">Alternating row index</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified alternating row index is less than 0 or greater than or equal to the alternating row count
</exception>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRows.Item(System.Int32)">
<summary>
Gets a new alternating row for the specified alternating row.
</summary>
<exception cref="T:System.IndexOutOfRangeException">
Specified alternating row index is less than 0 or greater than or equal to
the alternating row count
</exception>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRows.Count">
<summary>
Gets or sets the number of alternating row styles in this collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRows.Parent">
<summary>
Gets the parent object containing this collection of alternating rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRows.System#Collections#ICollection#Count">
<summary>
Returns the number of elements in the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRows.System#Collections#ICollection#IsSynchronized">
<summary>
Gets whether access to the collection is synchronized.
(This implementation always returns false.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRows.System#Collections#ICollection#SyncRoot">
<summary>
Gets an object that can be used to synchronize access to the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRows.System#Collections#IList#IsFixedSize">
<summary>
Gets whether the collection has a fixed size.
(This implementation always returns true.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRows.System#Collections#IList#IsReadOnly">
<summary>
Gets whether the collection is read-only.
(This implementation always returns true.)
</summary>
</member>
<member name="T:FarPoint.Win.Spread.AlternatingRow">
<summary>
Represents a set of style information for alternating rows in the component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Constructs a new AlternatingRow object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.Invalidate">
<summary>
Invalidates the displayed cells and sends the message to repaint them.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.GetStyleModel">
<summary>
Gets the style model for this alternating row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.IsValid">
<summary>
Checks the index of this alternating row to make sure it is valid.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.GetStyleInfo">
<summary>
Gets the style properties for this alternating row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.SetStyleInfo">
<summary>
Sets the styles in the style model for this alternating row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.Equals(System.Object)">
<summary>
Determines whether the specified object is to this alternating row.
</summary>
<param name="o">Object to compare</param>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.GetHashCode">
<summary>
Gets the hash code of the alternating row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.ResetNoteIndicatorColor">
<summary>
Resets the cell note indicator color for cells in this row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.ResetNoteIndicatorSize">
<summary>
Resets the cell note indicator size for cells in this row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.ResetTextIndent">
<summary>
Resets the text indent for the row and makes the row inherit the text indent from the default row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.ResetNoteIndicatorPosition">
<summary>
Resets the position of the note indicator for cells in this row to the default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.ResetCanFocus">
<summary>
Resets to its default value whether the cells in this can receive focus.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.ResetTabStop">
<summary>
Resets to its default value whether the user can set focus to cells in this row using the Tab key.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.ResetBackColor">
<summary>
Resets the background color for this row and makes this row
inherit the background color from the default row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.ResetForeColor">
<summary>
Resets the foreground color for this row and makes this row
inherit the foreground color from the default row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.ResetBorder">
<summary>
Resets the cell border for this row and makes this row
inherit the cell border from the default row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.ResetFont">
<summary>
Resets the font for this row and makes this row
inherit the font from the default row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.ResetHorizontalAlignment">
<summary>
Resets the horizontal alignment for this row and makes this row
inherit the horizontal alignment from the default row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.ResetVerticalAlignment">
<summary>
Resets the vertical alignment for this row and makes this row
inherit the vertical alignment from the default row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.ResetLocked">
<summary>
Resets the locked state for this row and makes this row
inherit the locked state from the default row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.ResetCellType">
<summary>
Resets the cell type for this row and makes this row
inherit the cell type from the default row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AlternatingRow.ResetCellPadding">
<summary>
Resets the cell padding of the alternate row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.Index">
<summary>
Gets the index of this alternating row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.Parent">
<summary>
Gets the parent AlternatingRows object that contains this
alternating row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.StyleName">
<summary>
Gets or sets the name of the custom style for cells in this alternating row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.ParentStyleName">
<summary>
Gets or sets the name of the parent style from which style properties
are inherited for cells in this alternating row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.BackColor">
<summary>
Gets or sets the background color for cells in this alternating row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.ForeColor">
<summary>
Gets or sets the text color for cells in this alternating row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.Border">
<summary>
Gets or sets the border for cells in this alternating row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.Font">
<summary>
Gets or sets the default font for text in cells in this alternating row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.HorizontalAlignment">
<summary>
Gets or sets the horizontal alignment for text in the cells in this alternating row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.VerticalAlignment">
<summary>
Gets or sets the vertical alignment for text in the cells in this alternating row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.Editor">
<summary>
Gets or sets the editor for cells in this alternating row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.Renderer">
<summary>
Gets or sets the renderer for cells in this alternating row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.Formatter">
<summary>
Gets or sets the formatter for cells in this alternating row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.Locked">
<summary>
Gets or sets whether cells in this alternating row are marked as locked.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.CellType">
<summary>
Gets or sets the cell type for cells in this alternating row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.NoteIndicatorColor">
<summary>
Gets or sets the default color for the note indicator for cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.NoteIndicatorSize">
<summary>
Gets or sets the default size for the note indicator for cells in this row.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified size is out of range; width and height must be between 0 and 9,999,999 pixels
</exception>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.NoteIndicatorPosition">
<summary>
Gets or sets the position of the note indicator for cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.TextIndent">
<summary>
Gets or sets the amount of space, in pixels, to indent text in cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.CellPadding">
<summary>
Gets or sets the amount of space, in pixels, to cell padding in cells of the alternating row(s).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.CanFocus">
<summary>
Gets or sets whether the user can set focus to the cell using the keyboard or mouse for cells in this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AlternatingRow.TabStop">
<summary>
Gets or sets whether the user can set focus to cells in this row using the Tab key.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.RowCalc">
<summary>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.RowCalc.CellListeners">
<summary>
Gets the cell listeners.
</summary>
<value>The cell listeners.</value>
</member>
<member name="T:FarPoint.Win.Spread.RowHeader">
<summary>
Represents the row header portion of the control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RowHeader.ShouldSerializeHorizontalGridLine">
<summary>
Gets whether HorizontalGridLine should be serialized.
</summary>
<returns>True if HorizontalGridLine should be serialized, and false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.RowHeader.ShouldSerializeVerticalGridLine">
<summary>
Gets whether VerticalGridLine should be serialized.
</summary>
<returns>True if VerticalGridLine should be serialized, and false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.RowHeader.ShouldSerializeDefaultStyle">
<summary>
Gets whether the DefaultStyle property should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.RowHeader.GetClip(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets a tab-delimited string containing the formatted text in a range.
</summary>
<param name="row">Starting row index, or -1 for all rows</param>
<param name="column">Starting row header column index, or -1 for all row header columns</param>
<param name="rowCount">Number of rows, or -1 for all rows</param>
<param name="columnCount">Number of row header columns, or -1 for all row header columns</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between -1 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.RowHeader.GetClipValue(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets a tab-delimited string containing the unformatted text in a range.
</summary>
<param name="row">Starting row index, or -1 for all rows</param>
<param name="column">Starting row header column index, or -1 for all row header columns</param>
<param name="rowCount">Number of rows, or -1 for all rows</param>
<param name="columnCount">Number of row header columns, or -1 for all row header columns</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between -1 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.RowHeader.SetClip(System.Int32,System.Int32,System.Int32,System.Int32,System.String)">
<summary>
Sets a tab-delimited string containing the formatted text in a range.
</summary>
<param name="row">Starting row index, or -1 for all rows</param>
<param name="column">Starting row header column index, or -1 for all row header columns</param>
<param name="rowCount">Number of rows, or -1 for all rows</param>
<param name="columnCount">Number of row header columns, or -1 for all row header columns (may create new row header columns as needed)</param>
<param name="value">Tab-delimited string to set into the range</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between -1 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.RowHeader.SetClipValue(System.Int32,System.Int32,System.Int32,System.Int32,System.String)">
<summary>
Sets a tab-delimited string containing the unformatted text in a range.
</summary>
<param name="row">Starting row index, or -1 for all rows</param>
<param name="column">Starting row header column index, or -1 for all row header columns</param>
<param name="rowCount">Number of rows, or -1 for all rows</param>
<param name="columnCount">Number of row header columns, or -1 for all row header columns (may create new row header columns as needed)</param>
<param name="value">Tab-delimited string to set into the range</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between -1 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.RowHeader.ToString">
<summary>
Gets a string containing a reference to the row header. (Always returns null.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowHeader.Cells">
<summary>
Gets a Cells object for the cells in the row header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowHeader.Columns">
<summary>
Gets a Columns object for the columns in the row header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowHeader.Rows">
<summary>
Gets a Rows object for the rows in the row header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowHeader.AlternatingRows">
<summary>
Gets the alternating rows information for the row header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowHeader.DefaultStyle">
<summary>
Gets or sets the default style for the cells in the row header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowHeader.DefaultStyleName">
<summary>
Gets or sets the name of the default style for the row header.
</summary>
<exception cref="T:System.ArgumentException">Specified style (NamedStyle object) could not be found in the collection</exception>
</member>
<member name="P:FarPoint.Win.Spread.RowHeader.AutoText">
<summary>
Gets or sets whether the row header displays letters or numbers
or is blank.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowHeader.HorizontalGridLine">
<summary>
Gets or sets the horizontal grid line in the row header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowHeader.VerticalGridLine">
<summary>
Gets or sets the vertical grid line in the row header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowHeader.AutoTextIndex">
<summary>
Gets or sets which row header column displays the automatic text
when there are multiple row header columns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowHeader.Visible">
<summary>
Gets or sets whether the row header is visible.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowHeader.ColumnCount">
<summary>
Gets or sets the number of columns in the row header.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column count is less than 0 or greater than 256.
</exception>
</member>
<member name="P:FarPoint.Win.Spread.RowHeader.SelectorIndex">
<summary>
Gets or sets which row header column displays row selector
when there are multiple row header columns.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Chart.DataOrientation">
<summary>
Indicates that whether the SeriesDataField will return data vertically or horizontally.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.DataOrientation.Vertical">
<summary>
SeriesDataField will return data by vertical.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.DataOrientation.Horizontal">
<summary>
SeriesDataField will return data by horizontal.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SeriesDataField">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.ShouldSerializeDataSetting">
<summary>
Shoulds the serialize data setting.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.ResetDataSetting">
<summary>
Resets the data setting.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.SetDirty">
<summary>
Sets the dirty.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.ChangeSheetView(System.String,FarPoint.Win.Spread.SheetView)">
<summary>
Changes the SheetView for SeriesDataField
</summary>
<param name="sheetView">The new sheet view. Call this function with null cause the Formula is updated only.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SeriesDataField"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.Finalize">
<summary>
Releases unmanaged resources and performs other cleanup operations before the
<see cref="T:FarPoint.Win.Spread.Chart.SeriesDataField"/> is reclaimed by garbage collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.#ctor(FarPoint.Win.Spread.FpSpread,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SeriesDataField"/> class.
</summary>
<param name="spread">The spread.</param>
<param name="name">The name.</param>
<param name="formula">The formula.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.#ctor(FarPoint.Win.Spread.FpSpread,System.String,System.String,FarPoint.Win.Spread.Chart.SegmentDataType)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SeriesDataField"/> class.
</summary>
<param name="spread">The spread.</param>
<param name="name">The name.</param>
<param name="formula">The formula.</param>
<param name="dataType">Type of the data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.#ctor(FarPoint.Win.Spread.FpSpread,System.String,System.String,FarPoint.Win.Spread.Chart.SegmentDataType,FarPoint.Win.Spread.Chart.ChartDataSetting)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SeriesDataField"/> class.
</summary>
<param name="spread">The spread.</param>
<param name="name">The name.</param>
<param name="formula">The formula.</param>
<param name="dataType">Type of the data.</param>
<param name="dataSetting">The data setting</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.GetRealFormula">
<summary>
Gets the real formula which is stored inside SeriesDataField
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.DetachSegments">
<summary>
Detaches the segments.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.AttachSegments">
<summary>
Attaches the segments.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.segment_DataChanged(System.Object,FarPoint.Win.Spread.Chart.SegmentDataChangedEventArgs)">
<summary>
Handles the DataChanged event of the segment control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:FarPoint.Win.Spread.Chart.SegmentDataChangedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.ReleaseSegments">
<summary>
Releases the segments.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.RefreshData">
<summary>
Refreshes the data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.GenerateSegmentDataList(FarPoint.Win.Spread.Chart.SeriesDataField)">
<summary>
Generates the segment data list.
</summary>
<param name="field"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.GenerateSegmentDataList(System.String,FarPoint.Win.Spread.FpSpread)">
<summary>
Generates the segment data list.
</summary>
<param name="formula"></param>
<param name="throwException">if set to <c>true</c> [throw exception].</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.OnDataChanged(FarPoint.Win.Spread.Chart.DataFieldChangedEventArgs)">
<summary>
Fire DataChanged event.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.FireDataChanged(FarPoint.Win.Spread.Chart.DataFieldChangedEventArgs)">
<summary>
Fires the data change.
</summary>
<param name="e">The <see cref="T:FarPoint.Win.Spread.Chart.DataFieldChangedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.GetValue(System.Int32)">
<summary>
Gets the value.
</summary>
<param name="index">The index.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.SetValue(System.Int32,System.Object)">
<summary>
Sets the value.
</summary>
<param name="index">The index.</param>
<param name="value">The value.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.Dispose(System.Boolean)">
<summary>
Releases unmanaged and - optionally - managed resources
</summary>
<param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.System#Xml#Serialization#IXmlSerializable#GetSchema">
<summary>
This method is reserved and should not be used. When implementing the IXmlSerializable interface, you should return null (Nothing in Visual Basic) from this method, and instead, if specifying a custom schema is required, apply the <see cref="T:System.Xml.Serialization.XmlSchemaProviderAttribute"/> to the class.
</summary>
<returns>
An <see cref="T:System.Xml.Schema.XmlSchema"/> that describes the XML representation of the object that is produced by the <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)"/> method and consumed by the <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)"/> method.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
<summary>
Generates an object from its XML representation.
</summary>
<param name="reader">The <see cref="T:System.Xml.XmlReader"/> stream from which the object is deserialized.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
<summary>
Converts an object into its XML representation.
</summary>
<param name="writer">The <see cref="T:System.Xml.XmlWriter"/> stream to which the object is serialized.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.System#Collections#IList#Add(System.Object)">
<summary>
Adds an item to the <see cref="T:System.Collections.IList"/>.
</summary>
<param name="value">The <see cref="T:System.Object"/> to add to the <see cref="T:System.Collections.IList"/>.</param>
<returns>
The position into which the new element was inserted.
</returns>
<exception cref="T:System.NotSupportedException">
The <see cref="T:System.Collections.IList"/> is read-only.
-or-
The <see cref="T:System.Collections.IList"/> has a fixed size.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.System#Collections#IList#Clear">
<summary>
Removes all items from the <see cref="T:System.Collections.IList"/>.
</summary>
<exception cref="T:System.NotSupportedException">
The <see cref="T:System.Collections.IList"/> is read-only.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.System#Collections#IList#Contains(System.Object)">
<summary>
Determines whether the <see cref="T:System.Collections.IList"/> contains a specific value.
</summary>
<param name="value">The <see cref="T:System.Object"/> to locate in the <see cref="T:System.Collections.IList"/>.</param>
<returns>
true if the <see cref="T:System.Object"/> is found in the <see cref="T:System.Collections.IList"/>; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.System#Collections#IList#IndexOf(System.Object)">
<summary>
Determines the index of a specific item in the <see cref="T:System.Collections.IList"/>.
</summary>
<param name="value">The <see cref="T:System.Object"/> to locate in the <see cref="T:System.Collections.IList"/>.</param>
<returns>
The index of <paramref name="value"/> if found in the list; otherwise, -1.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.System#Collections#IList#Insert(System.Int32,System.Object)">
<summary>
Inserts an item to the <see cref="T:System.Collections.IList"/> at the specified index.
</summary>
<param name="index">The zero-based index at which <paramref name="value"/> should be inserted.</param>
<param name="value">The <see cref="T:System.Object"/> to insert into the <see cref="T:System.Collections.IList"/>.</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.IList"/>.
</exception>
<exception cref="T:System.NotSupportedException">
The <see cref="T:System.Collections.IList"/> is read-only.
-or-
The <see cref="T:System.Collections.IList"/> has a fixed size.
</exception>
<exception cref="T:System.NullReferenceException">
<paramref name="value"/> is null reference in the <see cref="T:System.Collections.IList"/>.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.System#Collections#IList#Remove(System.Object)">
<summary>
Removes the first occurrence of a specific object from the <see cref="T:System.Collections.IList"/>.
</summary>
<param name="value">The <see cref="T:System.Object"/> to remove from the <see cref="T:System.Collections.IList"/>.</param>
<exception cref="T:System.NotSupportedException">
The <see cref="T:System.Collections.IList"/> is read-only.
-or-
The <see cref="T:System.Collections.IList"/> has a fixed size.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.System#Collections#IList#RemoveAt(System.Int32)">
<summary>
Removes the <see cref="T:System.Collections.IList"/> item at the specified index.
</summary>
<param name="index">The zero-based index of the item to remove.</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.IList"/>.
</exception>
<exception cref="T:System.NotSupportedException">
The <see cref="T:System.Collections.IList"/> is read-only.
-or-
The <see cref="T:System.Collections.IList"/> has a fixed size.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
<summary>
Copies the elements of the <see cref="T:System.Collections.ICollection"/> to an <see cref="T:System.Array"/>, starting at a particular <see cref="T:System.Array"/> index.
</summary>
<param name="array">The one-dimensional <see cref="T:System.Array"/> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection"/>. The <see cref="T:System.Array"/> must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array"/> is null.
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index"/> is less than zero.
</exception>
<exception cref="T:System.ArgumentException">
<paramref name="array"/> is multidimensional.
-or-
<paramref name="index"/> is equal to or greater than the length of <paramref name="array"/>.
-or-
The number of elements in the source <see cref="T:System.Collections.ICollection"/> is greater than the available space from <paramref name="index"/> to the end of the destination <paramref name="array"/>.
</exception>
<exception cref="T:System.ArgumentException">
The type of the source <see cref="T:System.Collections.ICollection"/> cannot be cast automatically to the type of the destination <paramref name="array"/>.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an enumerator that iterates through a collection.
</summary>
<returns>
An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.System#ComponentModel#IBindingList#AddIndex(System.ComponentModel.PropertyDescriptor)">
<summary>
Adds the <see cref="T:System.ComponentModel.PropertyDescriptor"/> to the indexes used for searching.
</summary>
<param name="property">The <see cref="T:System.ComponentModel.PropertyDescriptor"/> to add to the indexes used for searching.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.System#ComponentModel#IBindingList#AddNew">
<summary>
Adds a new item to the list.
</summary>
<returns>The item added to the list.</returns>
<exception cref="T:System.NotSupportedException">
<see cref="P:System.ComponentModel.IBindingList.AllowNew"/> is false.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.System#ComponentModel#IBindingList#ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)">
<summary>
Sorts the list based on a <see cref="T:System.ComponentModel.PropertyDescriptor"/> and a <see cref="T:System.ComponentModel.ListSortDirection"/>.
</summary>
<param name="property">The <see cref="T:System.ComponentModel.PropertyDescriptor"/> to sort by.</param>
<param name="direction">One of the <see cref="T:System.ComponentModel.ListSortDirection"/> values.</param>
<exception cref="T:System.NotSupportedException">
<see cref="P:System.ComponentModel.IBindingList.SupportsSorting"/> is false.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.System#ComponentModel#IBindingList#Find(System.ComponentModel.PropertyDescriptor,System.Object)">
<summary>
Returns the index of the row that has the given <see cref="T:System.ComponentModel.PropertyDescriptor"/>.
</summary>
<param name="property">The <see cref="T:System.ComponentModel.PropertyDescriptor"/> to search on.</param>
<param name="key">The value of the <paramref name="property"/> parameter to search for.</param>
<returns>
The index of the row that has the given <see cref="T:System.ComponentModel.PropertyDescriptor"/>.
</returns>
<exception cref="T:System.NotSupportedException">
<see cref="P:System.ComponentModel.IBindingList.SupportsSearching"/> is false.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.System#ComponentModel#IBindingList#RemoveIndex(System.ComponentModel.PropertyDescriptor)">
<summary>
Removes the <see cref="T:System.ComponentModel.PropertyDescriptor"/> from the indexes used for searching.
</summary>
<param name="property">The <see cref="T:System.ComponentModel.PropertyDescriptor"/> to remove from the indexes used for searching.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataField.System#ComponentModel#IBindingList#RemoveSort">
<summary>
Removes any sort applied using <see cref="M:System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)"/>.
</summary>
<exception cref="T:System.NotSupportedException">
<see cref="P:System.ComponentModel.IBindingList.SupportsSorting"/> is false.
</exception>
</member>
<member name="E:FarPoint.Win.Spread.Chart.SeriesDataField.DataChanged">
<summary>
Occurs when data changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.DataSetting">
<summary>
Gets or sets the data setting.
</summary>
<value>The data setting.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.Spread">
<summary>
Gets the spread.
</summary>
<value>The spread.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.Formula">
<summary>
Gets or sets the formula.
</summary>
<value>The formula.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.DataType">
<summary>
Gets the type of the data.
</summary>
<value>The type of the data.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.ReferenceError">
<summary>
Gets or sets a value indicating whether this SeriesDataField represents an invalid formula.
</summary>
<value><c>true</c> if this SeriesDataField represents an invalid formula; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.DataOrientation">
<summary>
Gets a value indicating whether the <see cref="T:FarPoint.Win.Spread.Chart.SeriesDataField"/> will return data vertically or horizontally.
</summary>
<value><c>true</c> if vertical; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.FieldName">
<summary>
Indicates that property name of Series which will be bind to.
</summary>
<value>The name of the field.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.Count">
<summary>
Gets the count.
</summary>
<value>The count.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.RowCount">
<summary>
Gets the row count.
</summary>
<value>The row count.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.Segments">
<summary>
Gets the segments.
</summary>
<value>The segments.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.System#Collections#IList#IsFixedSize">
<summary>
Gets a value indicating whether the <see cref="T:System.Collections.IList"/> has a fixed size.
</summary>
<value></value>
<returns>true if the <see cref="T:System.Collections.IList"/> has a fixed size; otherwise, false.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.System#Collections#IList#IsReadOnly">
<summary>
Gets a value indicating whether the <see cref="T:System.Collections.IList"/> is read-only.
</summary>
<value></value>
<returns>true if the <see cref="T:System.Collections.IList"/> is read-only; otherwise, false.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.System#Collections#IList#Item(System.Int32)">
<summary>
Gets or sets the <see cref="T:System.Object"/> at the specified index.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.System#Collections#ICollection#Count">
<summary>
Gets the number of elements contained in the <see cref="T:System.Collections.ICollection"/>.
</summary>
<value></value>
<returns>
The number of elements contained in the <see cref="T:System.Collections.ICollection"/>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.System#Collections#ICollection#IsSynchronized">
<summary>
Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"/> is synchronized (thread safe).
</summary>
<value></value>
<returns>true if access to the <see cref="T:System.Collections.ICollection"/> is synchronized (thread safe); otherwise, false.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.System#Collections#ICollection#SyncRoot">
<summary>
Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"/>.
</summary>
<value></value>
<returns>
An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"/>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.System#ComponentModel#IBindingList#AllowEdit">
<summary>
Gets whether you can update items in the list.
</summary>
<value></value>
<returns>true if you can update the items in the list; otherwise, false.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.System#ComponentModel#IBindingList#AllowNew">
<summary>
Gets whether you can add items to the list using <see cref="M:System.ComponentModel.IBindingList.AddNew"/>.
</summary>
<value></value>
<returns>true if you can add items to the list using <see cref="M:System.ComponentModel.IBindingList.AddNew"/>; otherwise, false.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.System#ComponentModel#IBindingList#AllowRemove">
<summary>
Gets whether you can remove items from the list, using <see cref="M:System.Collections.IList.Remove(System.Object)"/> or <see cref="M:System.Collections.IList.RemoveAt(System.Int32)"/>.
</summary>
<value></value>
<returns>true if you can remove items from the list; otherwise, false.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.System#ComponentModel#IBindingList#IsSorted">
<summary>
Gets whether the items in the list are sorted.
</summary>
<value></value>
<returns>true if <see cref="M:System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)"/> has been called and <see cref="M:System.ComponentModel.IBindingList.RemoveSort"/> has not been called; otherwise, false.
</returns>
<exception cref="T:System.NotSupportedException">
<see cref="P:System.ComponentModel.IBindingList.SupportsSorting"/> is false.
</exception>
</member>
<member name="E:FarPoint.Win.Spread.Chart.SeriesDataField.System#ComponentModel#IBindingList#ListChanged">
<summary>
Occurs when the list changes or an item in the list changes.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.System#ComponentModel#IBindingList#SortDirection">
<summary>
Gets the direction of the sort.
</summary>
<value></value>
<returns>
One of the <see cref="T:System.ComponentModel.ListSortDirection"/> values.
</returns>
<exception cref="T:System.NotSupportedException">
<see cref="P:System.ComponentModel.IBindingList.SupportsSorting"/> is false.
</exception>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.System#ComponentModel#IBindingList#SortProperty">
<summary>
Gets the <see cref="T:System.ComponentModel.PropertyDescriptor"/> that is being used for sorting.
</summary>
<value></value>
<returns>
The <see cref="T:System.ComponentModel.PropertyDescriptor"/> that is being used for sorting.
</returns>
<exception cref="T:System.NotSupportedException">
<see cref="P:System.ComponentModel.IBindingList.SupportsSorting"/> is false.
</exception>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.System#ComponentModel#IBindingList#SupportsChangeNotification">
<summary>
Gets whether a <see cref="E:System.ComponentModel.IBindingList.ListChanged"/> event is raised when the list changes or an item in the list changes.
</summary>
<value></value>
<returns>true if a <see cref="E:System.ComponentModel.IBindingList.ListChanged"/> event is raised when the list changes or when an item changes; otherwise, false.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.System#ComponentModel#IBindingList#SupportsSearching">
<summary>
Gets whether the list supports searching using the <see cref="M:System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor,System.Object)"/> method.
</summary>
<value></value>
<returns>true if the list supports searching using the <see cref="M:System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor,System.Object)"/> method; otherwise, false.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataField.System#ComponentModel#IBindingList#SupportsSorting">
<summary>
Gets whether the list supports sorting.
</summary>
<value></value>
<returns>true if the list supports sorting; otherwise, false.
</returns>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SeriesDataFieldCollection">
<summary>
Represents a set of SeriesDataField.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataFieldCollection.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SeriesDataFieldCollection"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataFieldCollection.AddRange(System.Collections.Generic.IEnumerable{FarPoint.Win.Spread.Chart.SeriesDataField})">
<summary>
Adds the range.
</summary>
<param name="data">The data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataFieldCollection.AddRange(FarPoint.Win.Spread.Chart.SeriesDataField[])">
<summary>
Adds the range.
</summary>
<param name="data">The data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataFieldCollection.System#Collections#Generic#IEnumerable{FarPoint#Win#Spread#Chart#SeriesDataField}#GetEnumerator">
<summary>
Returns an enumerator that iterates through the collection.
</summary>
<returns>
A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataFieldCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an enumerator that iterates through a collection.
</summary>
<returns>
An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataFieldCollection.Count">
<summary>
Gets the count.
</summary>
<value>The count.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataFieldCollection.Item(System.Int32)">
<summary>
Gets the <see cref="T:FarPoint.Win.Spread.Chart.SeriesDataField"/> at the specified index.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataFieldCollection.Item(System.String)">
<summary>
Gets the <see cref="T:FarPoint.Win.Spread.Chart.SeriesDataField"/> with the specified field name.
</summary>
<value></value>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SeriesDataFieldTypeConverter">
<summary>
Represent a type converter for SeriesDataField
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataFieldTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns whether this converter can convert the object to the specified type, using the specified context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="destinationType">A <see cref="T:System.Type"/> that represents the type you want to convert to.</param>
<returns>
true if this converter can perform the conversion; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataFieldTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the given value object to the specified type, using the specified context and culture information.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="culture">A <see cref="T:System.Globalization.CultureInfo"/>. If null is passed, the current culture is assumed.</param>
<param name="value">The <see cref="T:System.Object"/> to convert.</param>
<param name="destinationType">The <see cref="T:System.Type"/> to convert the <paramref name="value"/> parameter to.</param>
<returns>
An <see cref="T:System.Object"/> that represents the converted value.
</returns>
<exception cref="T:System.ArgumentNullException">
The <paramref name="destinationType"/> parameter is null.
</exception>
<exception cref="T:System.NotSupportedException">
The conversion cannot be performed.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataFieldTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns whether this converter can convert an object of the given type to the type of this converter, using the specified context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="sourceType">A <see cref="T:System.Type"/> that represents the type you want to convert from.</param>
<returns>
true if this converter can perform the conversion; otherwise, false.
</returns>
</member>
<member name="T:FarPoint.Win.Spread.Chart.DataFieldChangedEventArgs">
<summary>
Represents event data for <see cref="T:FarPoint.Win.Spread.Chart.DataFieldChangedEventHandler"/> events
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.DataFieldChangedEventArgs.Empty">
<summary>
Represents a event with no data event.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.DataFieldChangedEventArgs.#ctor(System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.DataFieldChangedEventArgs"/> class.
</summary>
<param name="formulaChanged">if set to <c>true</c> [formula changed].</param>
</member>
<member name="P:FarPoint.Win.Spread.Chart.DataFieldChangedEventArgs.FormulaChanged">
<summary>
Gets a value indicating whether [formula changed].
</summary>
<value><c>true</c> if [formula changed]; otherwise, <c>false</c>.</value>
</member>
<member name="T:FarPoint.Win.Spread.Chart.DataFieldChangedEventHandler">
<summary>
Handles the DataFieldChanged event.
</summary>
<param name="sender">The source of event</param>
<param name="e">A <see cref="T:FarPoint.Win.Spread.Chart.DataFieldChangedEventArgs"/> that contains event data.</param>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SeriesDataSource">
<summary>
Represents a data source for Series.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataSource.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SeriesDataSource"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataSource.#ctor(FarPoint.Win.Spread.Chart.ChartDataSetting,FarPoint.Win.Spread.Chart.SeriesDataField,FarPoint.Win.Spread.Chart.SeriesDataField,System.Collections.Generic.IEnumerable{FarPoint.Win.Spread.Chart.SeriesDataField})">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SeriesDataSource"/> class.
</summary>
<param name="spread">The spread.</param>
<param name="setting">The setting.</param>
<param name="seriesName">Name of the series.</param>
<param name="category">The category.</param>
<param name="data">The data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataSource.Init(FarPoint.Win.Spread.Chart.ChartDataSetting,FarPoint.Win.Spread.Chart.SeriesDataField,FarPoint.Win.Spread.Chart.SeriesDataField,System.Collections.Generic.IEnumerable{FarPoint.Win.Spread.Chart.SeriesDataField})">
<summary>
Inits the specified setting.
</summary>
<param name="setting">The setting.</param>
<param name="seriesName">Name of the series.</param>
<param name="category">The category.</param>
<param name="data">The data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataSource.SetDirty">
<summary>
Sets the dirty.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataSource.ValidateFields">
<summary>
Validates the fields.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataSource.CheckValidSeriesDataField(FarPoint.Win.Spread.Chart.SeriesDataField)">
<summary>
Checks the valid series data field.
</summary>
<param name="dataField">The data field.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataSource.AttachSpread(FarPoint.Win.Spread.FpSpread)">
<summary>
Attaches the spread.
</summary>
<param name="spread">The spread.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataSource.#ctor(FarPoint.Win.Spread.Chart.ChartDataSetting,FarPoint.Win.Spread.Chart.SeriesDataField,FarPoint.Win.Spread.Chart.SeriesDataField,FarPoint.Win.Spread.Chart.SeriesDataField[])">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SeriesDataSource"/> class.
</summary>
<param name="spread">The spread.</param>
<param name="setting">The setting.</param>
<param name="seriesName">Name of the series.</param>
<param name="category">The category.</param>
<param name="data">The data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataSource.SetDataSettingInternal(FarPoint.Win.Spread.Chart.ChartDataSetting,System.Boolean)">
<summary>
Sets the data setting internal.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataSource.FireDataChanged(System.Boolean)">
<summary>
Fires the data changed.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataSource.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"/>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">
The caller does not have the required permission.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataSource.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SeriesDataSource"/> class.
</summary>
<param name="info">The info.</param>
<param name="context">The context.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataSource.System#Xml#Serialization#IXmlSerializable#GetSchema">
<summary>
This method is reserved and should not be used. When implementing the IXmlSerializable interface, you should return null (Nothing in Visual Basic) from this method, and instead, if specifying a custom schema is required, apply the <see cref="T:System.Xml.Serialization.XmlSchemaProviderAttribute"/> to the class.
</summary>
<returns>
An <see cref="T:System.Xml.Schema.XmlSchema"/> that describes the XML representation of the object that is produced by the <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)"/> method and consumed by the <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)"/> method.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataSource.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
<summary>
Generates an object from its XML representation.
</summary>
<param name="reader">The <see cref="T:System.Xml.XmlReader"/> stream from which the object is deserialized.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SeriesDataSource.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
<summary>
Converts an object into its XML representation.
</summary>
<param name="writer">The <see cref="T:System.Xml.XmlWriter"/> stream to which the object is serialized.</param>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataSource.SeriesName">
<summary>
Gets the name of the series.
</summary>
<value>The name of the series.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataSource.Category">
<summary>
Gets the category.
</summary>
<value>The category.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataSource.Data">
<summary>
Gets the data.
</summary>
<value>The data.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SeriesDataSource.DataSetting">
<summary>
Gets or sets the data setting.
</summary>
<value>The data setting.</value>
</member>
<member name="T:FarPoint.Win.Spread.Model.MergePolicy">
<summary>
Specifies how the control handles automatic merging of cells based on the values in the cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.MergePolicy.None">
<summary>
Never automatically merges cells
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.MergePolicy.Always">
<summary>
Always automatically merges neighboring cells with identical values
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.MergePolicy.Restricted">
<summary>
Automatically merges cells neighboring cells with identical values
if the corresponding cells in another row or column are similarly merged
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.IMovable">
<summary>
Interface that supports arranging the items in an object in the data model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IMovable.Add(System.Int32,System.Int32)">
<summary>
Adds items at the specified location.
</summary>
<param name="index">Location at which to start adding items</param>
<param name="count">Number of items to add</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IMovable.Remove(System.Int32,System.Int32)">
<summary>
Removes items from the specified location.
</summary>
<param name="index">Location at which to start removing items</param>
<param name="count">Number of items to remove</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IMovable.Clear(System.Int32,System.Int32)">
<summary>
Removes all of the items from the specified location.
</summary>
<param name="index">Location at which to start clearing values</param>
<param name="count">Number of items from which to clear values</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IMovable.Copy(System.Int32,System.Int32,System.Int32)">
<summary>
Copies items from specified location to another.
</summary>
<param name="fromIndex">Location from which to begin copying</param>
<param name="toIndex">Location at which to paste copied items</param>
<param name="count">Number of items to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IMovable.Move(System.Int32,System.Int32,System.Int32)">
<summary>
Moves items from specified location to another.
</summary>
<param name="fromIndex">Location from which to begin the move</param>
<param name="toIndex">Location at which to paste moved items</param>
<param name="count">Number of items to move</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IMovable.Swap(System.Int32,System.Int32,System.Int32)">
<summary>
Swaps items from one specified location to another.
</summary>
<param name="fromIndex">Location at which to begin the swap</param>
<param name="toIndex">Location at which to swap items</param>
<param name="count">Number of items to swap</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.IMovable.Count">
<summary>
Gets the number of items.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SheetAxisOrientation">
<summary>
Specifies the orientation for the layout information, whether by row or column,
for the axis model for the sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetAxisOrientation.Horizontal">
<summary>
Orients the layout by column (along the horizontal axis)
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetAxisOrientation.Vertical">
<summary>
Orients the layout by row (along the vertical axis)
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SheetAxisModelEventType">
<summary>
Specifies the type of Change event that has occurred for an axis model for the sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetAxisModelEventType.LayoutItemsUpdated">
<summary>
Indicates that items have changed in a way that may affect the layout
(for example, the size or visible state has changed)
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetAxisModelEventType.AppearanceItemsUpdated">
<summary>
Indicates that items have changed in a way that does not affect the layout
(for example, the label or the sort indicator has changed)
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetAxisModelEventType.ItemsAdded">
<summary>
Indicates that items have been added to the model
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetAxisModelEventType.ItemsRemoved">
<summary>
Indicates that items have been removed from model
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetAxisModelEventType.ModelUpdated">
<summary>
Indicates that the entire model has changed
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SheetAxisModelEventArgs">
<summary>
Represents the event data for the Changed event of the axis model for the sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SheetAxisModelEventArgs.#ctor(System.Int32,System.Int32,FarPoint.Win.Spread.Model.SheetAxisModelEventType)">
<summary>
Creates a new Changed event arguments object for the axis model for the sheet.
</summary>
<param name="index">Gets the index where the event happens</param>
<param name="count">Gets the number of items being affected</param>
<param name="type">Gets the event type</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SheetAxisModelEventArgs.ToString">
<summary>
Gets the string representation of the event.
</summary>
<returns>String representation of event</returns>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetAxisModelEventArgs.Index">
<summary>
Gets the index where the event happens.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetAxisModelEventArgs.Count">
<summary>
Gets the number of items being affected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetAxisModelEventArgs.Type">
<summary>
Gets the event type.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SheetAxisModelChangingEventHandler">
<summary>
Handles the Changing event for the axis model for the sheet.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SheetAxisModelChangingEventArgs">
<summary>
Represents the event data for the Changing event of the axis model for the sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SheetAxisModelChangingEventArgs.#ctor(System.Int32,System.Int32,FarPoint.Win.Spread.Model.SheetAxisModelEventType,System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new Changing event arguments object for the axis model for the sheet.
</summary>
<param name="index">The index where the event happens</param>
<param name="count">The number of items being affected</param>
<param name="type">The event type</param>
<param name="currentSize">The size of current value.</param>
<param name="currentVisible">The value indicates whether current value is visible.</param>
<param name="newSize">The size of new value</param>
<param name="newVisible">The value indicates whether new value is visible</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SheetAxisModelChangingEventArgs.#ctor(System.Int32,System.Int32,FarPoint.Win.Spread.Model.SheetAxisModelEventType,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Model.SheetAxisModelChangingEventArgs"/> class.
</summary>
<param name="index">The index.</param>
<param name="count">The count.</param>
<param name="type">The type.</param>
<param name="layoutChanged">if set to <c>true</c> [layout changed].</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetAxisModelChangingEventArgs.LayoutChanged">
<summary>
Gets a value indicating whether the row layout or column layout is changed.
</summary>
<value><c>true</c> if the row layout or column layout is changed; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetAxisModelChangingEventArgs.CurrentSize">
<summary>
Gets the current value of Axis instance's Size property.
</summary>
<value>The size of the current.</value>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetAxisModelChangingEventArgs.NewSize">
<summary>
Gets the current value of Axis instance's Size property.
</summary>
<value>The new size.</value>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetAxisModelChangingEventArgs.CurrentVisible">
<summary>
Gets the current value of Axis instance's Visible property.
</summary>
<value><c>true</c> if [current visible]; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetAxisModelChangingEventArgs.NewVisible">
<summary>
Gets the new value of Axis instance's Visible property.
</summary>
<value><c>true</c> if [new visible]; otherwise, <c>false</c>.</value>
</member>
<member name="T:FarPoint.Win.Spread.Model.SheetAxisModelEventHandler">
<summary>
Handles the Changed event for the axis model for the sheet.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.ISheetAxisModel">
<summary>
Interface that supports creating a model that represents column and row information.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetAxisModel.IsEmpty">
<summary>
Determines whether there are no rows and columns in the model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetAxisModel.GetSize(System.Int32)">
<summary>
Gets the size of the specified row or column.
</summary>
<param name="index">Row or column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetAxisModel.SetSize(System.Int32,System.Int32)">
<summary>
Sets the size of the specified row or column.
</summary>
<param name="index">Row or column index</param>
<param name="value">New size in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetAxisModel.GetVisible(System.Int32)">
<summary>
Gets whether the control displays the specified row or column.
</summary>
<param name="index">Row or column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetAxisModel.SetVisible(System.Int32,System.Boolean)">
<summary>
Sets whether the control displays the specified row or column.
</summary>
<param name="index">Row or column index</param>
<param name="value">Set to True to display the specified row or column</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetAxisModel.GetResizable(System.Int32)">
<summary>
Gets whether users can resize the specified row or column.
</summary>
<param name="index">Row or column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetAxisModel.SetResizable(System.Int32,System.Boolean)">
<summary>
Sets whether users can resize the specified row or column.
</summary>
<param name="index">Row or column index</param>
<param name="value">Set to True to let users resize the specified row or column</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetAxisModel.GetPageBreak(System.Int32)">
<summary>
Gets whether page break occurs at the specified row or the column.
</summary>
<param name="index">Row or column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetAxisModel.SetPageBreak(System.Int32,System.Boolean)">
<summary>
Sets whether a page break occurs at the specified row or the column.
</summary>
<param name="index">Row or column index</param>
<param name="value">Whether a page break occurs</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetAxisModel.GetMergePolicy(System.Int32)">
<summary>
Gets the cell merge policy for the specified row or column.
</summary>
<param name="index">Row or column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetAxisModel.SetMergePolicy(System.Int32,FarPoint.Win.Spread.Model.MergePolicy)">
<summary>
Sets the cell merge policy for the specified row or column.
</summary>
<param name="index">Row or column index</param>
<param name="value">Value with the merge policy</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetAxisModel.GetTag(System.Int32)">
<summary>
Gets the data associated with the specified row or column.
</summary>
<param name="index">Row or column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetAxisModel.SetTag(System.Int32,System.Object)">
<summary>
Sets the data associated with the specified row or column.
</summary>
<param name="index">Row or column index</param>
<param name="value">Object containing date to associate with row or column</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetAxisModel.GetSortIndicator(System.Int32)">
<summary>
Gets the sort indicator for the specified row or column.
</summary>
<param name="index">Row or column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetAxisModel.SetSortIndicator(System.Int32,FarPoint.Win.Spread.Model.SortIndicator)">
<summary>
Sets the sort indicator for the specified row or column.
</summary>
<param name="index">Row or column index</param>
<param name="value">Sort indicator value</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetAxisModel.IsPropertySet(System.Int32,FarPoint.Win.Spread.Model.SheetAxisProperty)">
<summary>
Determines whether the specified SheetAxisModel property is set.
</summary>
<param name="index">Row or column index</param>
<param name="prop">Property to evaluate</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetAxisModel.ResetProperty(System.Int32,FarPoint.Win.Spread.Model.SheetAxisProperty)">
<summary>
Resets the specified SheetAxisModel property to its default value.
</summary>
<param name="index">Row or column index</param>
<param name="prop">Property to reset</param>
</member>
<member name="E:FarPoint.Win.Spread.Model.ISheetAxisModel.Changed">
<summary>
Occurs when the axis model has changed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.INotifySheetAxisModelChanging">
<summary>
Interface that supports notifying that the axis model is going to change.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Model.INotifySheetAxisModelChanging.Changing">
<summary>
Occurs before the axis model is changed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.IAutoSortIndexSupport">
<summary>
Interface for supporting setting a specific column header row index in which to display the column auto sort indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IAutoSortIndexSupport.GetAutoSortIndex(System.Int32)">
<summary>
Gets the column header row index in which to display the column auto sort indicator.
</summary>
<param name="index">column index</param>
<returns>column header row index (-1 to display in last row of column headers).</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.IAutoSortIndexSupport.SetAutoSortIndex(System.Int32,System.Int32)">
<summary>
Sets the column header row index in which to display the column auto sort indicator (-1 to display in last row of column headers).
</summary>
<param name="index">column index</param>
<param name="value">column header row index</param>
</member>
<member name="T:FarPoint.Win.Spread.Model.IAutoFilterIndexSupport">
<summary>
Interface for supporting setting a specific column header row index in which to display the column auto filter indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IAutoFilterIndexSupport.GetAutoFilterIndex(System.Int32)">
<summary>
Gets the column header row index in which to display the column auto filter indicator.
</summary>
<param name="columnIndex">Column index</param>
<returns>column header row index (-1 to display in last row of column headers).</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.IAutoFilterIndexSupport.SetAutoFilterIndex(System.Int32,System.Int32)">
<summary>
Sets the column header row index in which to display the column auto filter indicator (-1 to display in last row of column headers).
</summary>
<param name="index">column index</param>
<param name="value">column header row index</param>
</member>
<member name="T:FarPoint.Win.Spread.Model.BaseSheetAxisModel">
<summary>
Represents the partial (abstract) implementation of the ISheetAxisModel interface
for an axis model for a sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.IsEmpty">
<summary>
Determines whether no rows and columns exist in the model.
(This implementation always returns false.)
</summary>
<returns>Always returns false</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.GetSize(System.Int32)">
<summary>
Gets the size of the specified row or column.
(This implementation always returns 60.)
</summary>
<param name="index">Row or column index</param>
<returns>Always returns 60</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.SetSize(System.Int32,System.Int32)">
<summary>
Sets the size of the specified row or column.
(This implementation does nothing.)
</summary>
<param name="index">Row or column index</param>
<param name="value">Size in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.GetVisible(System.Int32)">
<summary>
Gets whether the control displays the specified row or column.
(This implementation always returns true.)
</summary>
<param name="index">Row or column index</param>
<returns>Always returns true</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.SetVisible(System.Int32,System.Boolean)">
<summary>
Sets whether the control displays the specified row or column.
(This implementation does nothing.)
</summary>
<param name="index">Row or column index</param>
<param name="value">Set to True to display the specified row or column</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.GetResizable(System.Int32)">
<summary>
Gets whether users can resize the specified row or column.
(This implementation always returns true.)
</summary>
<param name="index">Row or column index</param>
<returns>Always returns true</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.SetResizable(System.Int32,System.Boolean)">
<summary>
Sets whether users can resize the specified row or column.
(This implementation does nothing.)
</summary>
<param name="index">Row or column index</param>
<param name="value">Whether users can resize the specified row or column</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.GetPageBreak(System.Int32)">
<summary>
Gets whether a page break occurs at the specified row or column.
</summary>
<param name="index">Row or column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.SetPageBreak(System.Int32,System.Boolean)">
<summary>
Sets whether a page break occurs at the specified row or column.
</summary>
<param name="index">Row or column index</param>
<param name="value">Whether a page break occurs</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.GetMergePolicy(System.Int32)">
<summary>
Gets the cell merge policy for the specified row or column.
</summary>
<param name="index">Row or column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.SetMergePolicy(System.Int32,FarPoint.Win.Spread.Model.MergePolicy)">
<summary>
Sets the cell merge policy for the specified row or column.
</summary>
<param name="index">Row or column index</param>
<param name="value">Value with merge policy</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.GetTag(System.Int32)">
<summary>
Gets the data associated with the specified row or column.
(This implementation always returns null.)
</summary>
<param name="index">Row or column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.SetTag(System.Int32,System.Object)">
<summary>
Sets the data associated with the specified row or column.
(This implementation does nothing.)
</summary>
<param name="index">Row or column index</param>
<param name="value">Object containing date to associate with specified row or column</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.GetSortIndicator(System.Int32)">
<summary>
Gets the sort indicator for the specified row or column.
(This implementation always returns None.)
</summary>
<param name="index">Row or column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.SetSortIndicator(System.Int32,FarPoint.Win.Spread.Model.SortIndicator)">
<summary>
Sets the sort indicator for the specified row or column.
(This implementation does nothing.)
</summary>
<param name="index">Row or column index</param>
<param name="value">Sort indicator value</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.GetAutoFilterIndex(System.Int32)">
<summary>
Gets the auto filter index for the specified row or column.
(This implementation always returns -1.)
</summary>
<param name="index">Row or column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.SetAutoFilterIndex(System.Int32,System.Int32)">
<summary>
Sets the auto filter index for the specified row or column.
(This implementation does nothing.)
</summary>
<param name="index">Row or column index</param>
<param name="value">auto filter index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.GetAutoSortIndex(System.Int32)">
<summary>
Gets the auto sort index for the specified row or column.
(This implementation always returns -1.)
</summary>
<param name="index">Row or column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.SetAutoSortIndex(System.Int32,System.Int32)">
<summary>
Sets the auto sort index for the specified row or column.
(This implementation does nothing.)
</summary>
<param name="index">Row or column index</param>
<param name="value">auto filter index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.IsPropertySet(System.Int32,FarPoint.Win.Spread.Model.SheetAxisProperty)">
<summary>
Determines whether a specified SheetAxisModel property is set.
(This implementation always returns false.)
</summary>
<param name="index">Row or column index</param>
<param name="prop">Property to evaluate</param>
<returns>This implementation always returns false</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.ResetProperty(System.Int32,FarPoint.Win.Spread.Model.SheetAxisProperty)">
<summary>
Resets a specified field of a SheetAxisProperty object to its default value.
(This implementation does nothing.)
</summary>
<param name="index">Row or column index</param>
<param name="prop">Property to reset</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.OnChanged(FarPoint.Win.Spread.Model.SheetAxisModelEventArgs)">
<summary>
For handling the Changed event in subclasses.
</summary>
<param name="e">SheetAxisModelEventArgs</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.OnChanging(FarPoint.Win.Spread.Model.SheetAxisModelChangingEventArgs)">
<summary>
For handling the Changed event in subclasses.
</summary>
<param name="e">SheetAxisModelEventArgs</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.FireChanged(System.Int32,System.Int32,FarPoint.Win.Spread.Model.SheetAxisModelEventType)">
<summary>
Fires the Changed event.
</summary>
<param name="index">Row or column index</param>
<param name="count">Number of rows or columns</param>
<param name="type">Type of event that was raised</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.FireChanging(System.Int32,System.Int32,FarPoint.Win.Spread.Model.SheetAxisModelEventType,System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Raises the Changing event.
</summary>
<param name="index">The index where the event happens</param>
<param name="count">The number of items being affected</param>
<param name="type">The event type</param>
<param name="currentSize">The size of current value.</param>
<param name="currentVisible">The value indicates whether current value is visible.</param>
<param name="newSize">The size of new value</param>
<param name="newVisible">The value indicates whether new value is visible</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetAxisModel.FireChanging(System.Int32,System.Int32,FarPoint.Win.Spread.Model.SheetAxisModelEventType,System.Boolean)">
<summary>
Raises the Changing event.
</summary>
<param name="index">The index.</param>
<param name="count">The count.</param>
<param name="type">The type.</param>
<param name="layoutChanged">if set to <c>true</c> [layout changed].</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.BaseSheetAxisModel.Count">
<summary>
Gets the number of rows or columns.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Model.BaseSheetAxisModel.Changed">
<summary>
Occurs when the user makes a change to the model
that affects the axis (row or column) of the sheet.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Model.BaseSheetAxisModel.FarPoint#Win#Spread#Model#INotifySheetAxisModelChanging#Changing">
<summary>
Occurs when the user makes a change to the model
that affects the axis (row or column) of the sheet.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.IOptimizedSheetAxisModelSupport">
<summary>
Interface that supports optimizing for axis model to return visible element count.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IOptimizedSheetAxisModelSupport.GetVisibleCount(System.Int32)">
<summary>
Gets the visible row/column count.
</summary>
<returns></returns>
</member>
<member name="T:FarPoint.Win.Spread.Model.IOptimizedSheetAxisModelSupport2">
<summary>
Interface that supports optimizing for axis model to return visible element count.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IOptimizedSheetAxisModelSupport2.SetDirty">
<summary>
Indicates that the row count and/or column count in models is changed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.DefaultSheetAxisModel">
<summary>
Represents the full (concrete) implementation of the ISheetAxisModel interface
for an axis model for a sheet, which represents rows and columns on a sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.#ctor">
<summary>
Creates an axis model (DefaultSheetAxisModel object) with zero rows, zero columns, no parent model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.#ctor(System.Int32,FarPoint.Win.Spread.Model.SheetAxisOrientation)">
<summary>
Creates an axis model (DefaultSheetAxisModel object) with the specified number of rows or columns, and no parent model.
</summary>
<param name="count">Number of rows or columns in the model</param>
<param name="orientation">Orientation of the model</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.#ctor(System.Int32,FarPoint.Win.Spread.Model.SheetAxisOrientation,FarPoint.Win.Spread.Model.ISheetAxisModel)">
<summary>
Creates an axis model (DefaultSheetAxisModel object) with the specified parent model and number of rows or columns.
</summary>
<param name="count">Number of rows or columns in the model</param>
<param name="orientation">Model orientation</param>
<param name="parent">Parent ISheetAxisModel</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates an axis model (DefaultSheetAxisModel object) from serialization.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Saves the DefaultSheetAxisModel to the SerializationInfo.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.IsEmpty">
<summary>
Determines whether there are no rows and columns in the model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.GetSize(System.Int32)">
<summary>
Gets the size of the specified row or column.
</summary>
<param name="index">Row or column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.SetSize(System.Int32,System.Int32)">
<summary>
Sets the size of the specified row or column.
</summary>
<param name="index">Row or column index</param>
<param name="value">Size in pixels</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified size is not valid; must be greater than or equal to zero
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.GetVisible(System.Int32)">
<summary>
Gets whether the control displays the specified row or column.
</summary>
<param name="index">Row or column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.SetVisible(System.Int32,System.Boolean)">
<summary>
Sets whether the control displays the specified row or column.
</summary>
<param name="index">Row or column index</param>
<param name="value">Whether the control displays the specified row or column</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.GetResizable(System.Int32)">
<summary>
Gets whether users can resize the specified row or column.
</summary>
<param name="index">Row or column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.SetResizable(System.Int32,System.Boolean)">
<summary>
Sets whether users can resize the specified row or column.
</summary>
<param name="index">Row or column index</param>
<param name="value">Whether the specified row or column can be resized</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.GetPageBreak(System.Int32)">
<summary>
Gets whether a page break occurs at the specified row or column.
</summary>
<param name="index">Row or column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.SetPageBreak(System.Int32,System.Boolean)">
<summary>
Sets whether a page break occurs at the specified row or column.
</summary>
<param name="index">Row or column index</param>
<param name="value">Whether the page break occurs</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.GetMergePolicy(System.Int32)">
<summary>
Gets the cell merge policy for the specified row or column.
</summary>
<param name="index">Row or column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.SetMergePolicy(System.Int32,FarPoint.Win.Spread.Model.MergePolicy)">
<summary>
Sets the cell merge policy for the row or column.
</summary>
<param name="index">Row or column index</param>
<param name="value">Value with merge policy</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.GetTag(System.Int32)">
<summary>
Gets the data associated with the specified row or column.
</summary>
<param name="index">Row or column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.SetTag(System.Int32,System.Object)">
<summary>
Sets the data associated with the specified row or column.
</summary>
<param name="index">Row or column index</param>
<param name="value">Object containing data</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.GetSortIndicator(System.Int32)">
<summary>
Gets the sort indicator for the specified row or column.
</summary>
<param name="index">Row or column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.SetSortIndicator(System.Int32,FarPoint.Win.Spread.Model.SortIndicator)">
<summary>
Sets the sort indicator for the specified row or column.
</summary>
<param name="index">Row or column index</param>
<param name="value">Value with the SortIndicator enumeration</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.GetAutoFilterIndex(System.Int32)">
<summary>
Gets the auto filter index for the specified row or column.
</summary>
<param name="index">Row or column index</param>
<returns>auto filter index</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.SetAutoFilterIndex(System.Int32,System.Int32)">
<summary>
Sets the auto filter index for the specified row or column.
</summary>
<param name="index">Row or column index</param>
<param name="value">auto filter index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.GetAutoSortIndex(System.Int32)">
<summary>
Gets the auto sort index for the specified row or column.
</summary>
<param name="index">Row or column index</param>
<returns>auto sort index</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.SetAutoSortIndex(System.Int32,System.Int32)">
<summary>
Sets the auto sort index for the specified row or column.
</summary>
<param name="index">Row or column index</param>
<param name="value">auto sort index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.FarPoint#Win#Spread#Model#IMovable#Add(System.Int32,System.Int32)">
<summary>
This IMovable method is used internally by the control to
keep the row and column counts in sync between the models
and is not intended to be called directly from your code.
Use the IRangeSupport methods in the data model, or the
wrapper methods in the SheetView instead.
</summary>
<param name="index">Row or column index</param>
<param name="count">Number of rows or columns to add</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.FireChanged(System.Int32,System.Int32,FarPoint.Win.Spread.Model.SheetAxisModelEventType)">
<summary>
Fires the Changed event.
</summary>
<param name="index">Row or column index</param>
<param name="count">Number of rows or columns</param>
<param name="type">Type of event that was raised</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.FarPoint#Win#Spread#Model#IMovable#Remove(System.Int32,System.Int32)">
<summary>
This IMovable method is used internally by the control to
keep the row and column counts in sync between the models
and is not intended to be called directly from your code.
Use the IRangeSupport methods in the data model, or the
wrapper methods in the SheetView instead.
</summary>
<param name="index">Row or column index at which to start deleting rows or columns</param>
<param name="count">Number of rows or columns to delete</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.Clear(System.Int32,System.Int32)">
<summary>
Removes the values from the specified rows or columns.
</summary>
<param name="index">Index before which to clear the rows or columns</param>
<param name="count">Number of rows or columns to clear</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.Copy(System.Int32,System.Int32,System.Int32)">
<summary>
Copies one or more rows or columns and pastes them at the specified location.
</summary>
<param name="fromIndex">Row or column index at which to start copying rows or columns</param>
<param name="toIndex">Row or column index at which to paste rows or columns</param>
<param name="count">Number of rows or columns to copy</param>
<exception cref="T:System.IndexOutOfRangeException">Specified start index is not valid; must be between 0 and the total count</exception>
<exception cref="T:System.IndexOutOfRangeException">Specified destination index is not valid; must be between 0 and the total count</exception>
<exception cref="T:System.ArgumentException">Specified count is not valid; must be between 1 and the total count</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.Move(System.Int32,System.Int32,System.Int32)">
<summary>
Moves one or more rows or columns and pastes them at the specified location.
</summary>
<param name="fromIndex">Row or column index at which to start moving rows or columns</param>
<param name="toIndex">Row or column index at which to paste rows or columns</param>
<param name="count">Number of rows or columns to move</param>
<exception cref="T:System.IndexOutOfRangeException">Specified start index is not valid; must be between 0 and the total count</exception>
<exception cref="T:System.IndexOutOfRangeException">Specified destination index is not valid; must be between 0 and the total count</exception>
<exception cref="T:System.ArgumentException">Specified count is not valid; must be between 1 and the total count</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.Swap(System.Int32,System.Int32,System.Int32)">
<summary>
Swaps one or more rows or columns.
</summary>
<param name="fromIndex">Row or column index at which to start swapping rows or columns</param>
<param name="toIndex">Row or column index at which to swap rows or columns</param>
<param name="count">Number of rows or columns to swap</param>
<exception cref="T:System.IndexOutOfRangeException">Specified start index is not valid; must be between 0 and the total count</exception>
<exception cref="T:System.IndexOutOfRangeException">Specified destination index is not valid; must be between 0 and the total count</exception>
<exception cref="T:System.ArgumentException">Specified count is not valid; must be between 1 and the total count</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.IsPropertySet(System.Int32,FarPoint.Win.Spread.Model.SheetAxisProperty)">
<summary>
Determines whether the specified SheetAxisModel property is set.
</summary>
<param name="index">Row or column index</param>
<param name="prop">Property to evaluate</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.ResetProperty(System.Int32,FarPoint.Win.Spread.Model.SheetAxisProperty)">
<summary>
Resets the specified SheetAxisModel property to its default value.
</summary>
<param name="index">Row or column index</param>
<param name="prop">Property to reset</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the Spread to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the Spread</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads an object from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.Parent">
<summary>
Gets or sets the parent sheet axis model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.Count">
<summary>
Gets the number of rows or columns in the model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetAxisModel.Orientation">
<summary>
Gets the axis orientation; whether the object is a row or column.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SheetAxisProperty">
<summary>
Represents the properties for the axis model for the sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetAxisProperty.Size">
<summary>
Represents the axis model Size property.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetAxisProperty.Visible">
<summary>
Represents the axis model Visible property.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetAxisProperty.Resizable">
<summary>
Represents the axis model Resizable property.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetAxisProperty.PageBreak">
<summary>
Represents the axis model PageBreak property.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetAxisProperty.MergePolicy">
<summary>
Represents the axis model MergePolicy property.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetAxisProperty.Tag">
<summary>
Represents the axis model Tag property.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetAxisProperty.SortIndicator">
<summary>
Represents the axis model SortIndicator property.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetAxisProperty.Any">
<summary>
Represents any of the axis model properties.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetAxisProperty.AutoFilterIndex">
<summary>
Represents the axis model AutoFilterIndex property
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetAxisProperty.AutoSortIndex">
<summary>
Represents the axis model AutoSortIndex property
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SheetAxisProperty.#ctor(System.String)">
<summary>
Creates a new axis model property.
</summary>
<param name="text">String with name</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SheetAxisProperty.ToString">
<summary>
Returns the property name.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SortIndicator">
<summary>
Specifies the display of the sort indicator.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SortIndicator.None">
<summary>
Displays no sort indicator
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SortIndicator.Ascending">
<summary>
Displays the ascending sort indicator
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SortIndicator.Descending">
<summary>
Displays the descending sort indicator
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.AxisInfo.#ctor">
<summary>
AxisInfo: Internal Use Only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRangeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns whether this converter can convert an object of the given type to the type of this converter, using the specified context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="sourceType">A <see cref="T:System.Type"/> that represents the type you want to convert from.</param>
<returns>
true if this converter can perform the conversion; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRangeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns whether this converter can convert the object to the specified type, using the specified context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="destinationType">A <see cref="T:System.Type"/> that represents the type you want to convert to.</param>
<returns>
true if this converter can perform the conversion; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRangeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Converts the given object to the type of this converter, using the specified context and culture information.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="culture">The <see cref="T:System.Globalization.CultureInfo"/> to use as the current culture.</param>
<param name="value">The <see cref="T:System.Object"/> to convert.</param>
<returns>
An <see cref="T:System.Object"/> that represents the converted value.
</returns>
<exception cref="T:System.NotSupportedException">
The conversion cannot be performed.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRangeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the given value object to the specified type, using the specified context and culture information.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="culture">A <see cref="T:System.Globalization.CultureInfo"/>. If null is passed, the current culture is assumed.</param>
<param name="value">The <see cref="T:System.Object"/> to convert.</param>
<param name="destinationType">The <see cref="T:System.Type"/> to convert the <paramref name="value"/> parameter to.</param>
<returns>
An <see cref="T:System.Object"/> that represents the converted value.
</returns>
<exception cref="T:System.ArgumentNullException">
The <paramref name="destinationType"/> parameter is null.
</exception>
<exception cref="T:System.NotSupportedException">
The conversion cannot be performed.
</exception>
</member>
<member name="T:FarPoint.Win.Spread.Model.AggregationType">
<summary>
Specifies the type of Aggregation on ranges of cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.AggregationType.None">
<summary>
Indicates that does't support aggregation for the sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.AggregationType.Custom">
<summary>
Custom aggregation.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.AggregationType.Avg">
<summary>
Returns the average of cells in a range.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.AggregationType.Count">
<summary>
Counts the number of cells in a range that contain numbers.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.AggregationType.CountA">
<summary>
Counts the number of cells in a range that are not empty.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.AggregationType.Max">
<summary>
Returns the maximum value of cells in a range.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.AggregationType.Min">
<summary>
Indicates that rowCount of the cells in the specified range of cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.AggregationType.Product">
<summary>
Multiplies all the cells in a range and returns the product.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.AggregationType.StDev">
<summary>
Returns the standard deviation for a set of cells in a range.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.AggregationType.StDevP">
<summary>
Calculates standard deviation based on the entire population given as cells in a range.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.AggregationType.Sum">
<summary>
Sums values of cells in a range.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.AggregationType.Var">
<summary>
Calculates variance based on a sample of a population.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.AggregationType.VarP">
<summary>
Calculates variance based on the entire population.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.AggregateEventHandler">
<summary>
Handles the data aggregate in the data model of the sheet.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.AggregateArgs">
<summary>
Represents the event data for the OnAggregate event of the data model for the sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.AggregateArgs.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.Model.AggregationType)">
<summary>
Creates a new Changed event arguments object for the data model for the sheet.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="aggregationType">Type of Aggeration that occurred in the data model</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.AggregateArgs.Row">
<summary>
Get the row index
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.AggregateArgs.Column">
<summary>
Gets the column index.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.AggregateArgs.RowCount">
<summary>
Gets the number of rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.AggregateArgs.ColumnCount">
<summary>
Gets the number of columns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.AggregateArgs.AggregationType">
<summary>
Gets the Aggregation type.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.AggregateArgs.Formula">
<summary>
Gets or Sets Formula to be parsed to a string for aggregation.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.AggregateArgs.Result">
<summary>
Gets or Sets the result of aggregation.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SheetDataModelEventType">
<summary>
Specifies the type of Change event that has occurred for an axis model for the sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetDataModelEventType.CellsUpdated">
<summary>
Indicates that cells with cell data have been updated
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetDataModelEventType.RowsAdded">
<summary>
Indicates that rows have been added
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetDataModelEventType.RowsRemoved">
<summary>
Indicates that rows have been removed
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetDataModelEventType.ColumnsAdded">
<summary>
Indicates that columns have been added
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetDataModelEventType.ColumnsRemoved">
<summary>
Indicates that columns have been removed
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetDataModelEventType.ModelUpdated">
<summary>
Indicates that the sheet data model has been updated
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetDataModelEventType.AggregationUpdate">
<summary>
Indicates that the aggregation data model has been updated
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SheetGroupDataModelEventArgs">
<summary>
Specifies the type of Change event that has occurred in group footer.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SheetDataModelEventArgs">
<summary>
Represents the event data for the Changed event of the data model for the sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SheetDataModelEventArgs.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.Model.SheetDataModelEventType)">
<summary>
Creates a new Changed event arguments object for the data model for the sheet.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="type">Type of change that occurred in the data model</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetDataModelEventArgs.Row">
<summary>
Gets the row index.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetDataModelEventArgs.Column">
<summary>
Gets the column index.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetDataModelEventArgs.RowCount">
<summary>
Gets the number of rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetDataModelEventArgs.ColumnCount">
<summary>
Gets the number of columns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetDataModelEventArgs.Type">
<summary>
Gets the event type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SheetGroupDataModelEventArgs.#ctor(FarPoint.Win.Spread.Model.GroupFooter,System.Int32)">
<summary>
Constructor of SheetGroupDataModelEventArgs
</summary>
<param name="groupFooter">Group footer</param>
<param name="column">Column index</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetGroupDataModelEventArgs.GroupFooter">
<summary>
Group footer has been changed
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SheetDataModelEventHandler">
<summary>
Handles the Changed event in the data model of the sheet.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.PropertyChangingEventArgs">
<summary>
Represents the event data for the PropertyChanging event of the object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.PropertyChangingEventArgs.#ctor(System.String,System.Object)">
<summary>
Initializes a new instance of <see cref="T:FarPoint.Win.Spread.Model.PropertyChangingEventArgs"/> class.
</summary>
<param name="propName">The property name</param>
<param name="newValue">The new value</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.PropertyChangingEventArgs.PropertyName">
<summary>
The name of the property whose value is changing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.PropertyChangingEventArgs.NewValue">
<summary>
Get the new value which is intended to set to property
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.PropertyChangingEventArgs.Cancel">
<summary>
Get or set if cancel changing value of property
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.PropertyChangingEventHandler">
<summary>
Handles the Changed event in the data model of the sheet.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SelectionPolicy">
<summary>
Specifies how users can select items in the control.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SelectionPolicy.Single">
<summary>
[0] Allows the users to select only single items
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SelectionPolicy.Range">
<summary>
[1] Allows the users to select single items and ranges of items, but not multiple ranges
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SelectionPolicy.MultiRange">
<summary>
[2] Allows users to select single items and ranges of items, including multiple ranges
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SelectionUnit">
<summary>
Specifies the smallest unit users or the application can select.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SelectionUnit.Cell">
<summary>
[0] Indicates that the smallest unit that can be selected is a cell
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SelectionUnit.Row">
<summary>
[1] Indicates that the smallest unit that can be selected is a row
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SelectionUnit.Column">
<summary>
[2] Indicates that the smallest unit that can be selected is a column
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SheetSelectionModelEventArgs">
<summary>
Represents the event data for the Changed event of the selection model for the sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SheetSelectionModelEventArgs.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a new Changed event arguments object for the selection model for the sheet.
</summary>
<param name="row">Row index of the start of the selection</param>
<param name="column">Column index of the start of the selection</param>
<param name="rowCount">Number of rows in the selection</param>
<param name="columnCount">Number of columns in the selection</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SheetSelectionModelEventArgs.ToString">
<summary>
Returns a string that represents the current
SheetSelectionModelEventArgs object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetSelectionModelEventArgs.Row">
<summary>
Gets the row index of the selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetSelectionModelEventArgs.Column">
<summary>
Gets the column index of the selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetSelectionModelEventArgs.RowCount">
<summary>
Gets the number of rows in the selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetSelectionModelEventArgs.ColumnCount">
<summary>
Gets the number of columns in the selection.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SheetSelectionModelEventHandler">
<summary>
Handles the Changed event in the selection model of the sheet.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Event data (SheetSelectionModelEventArgs class)</param>
</member>
<member name="T:FarPoint.Win.Spread.Model.ISheetSelectionModel">
<summary>
Interface that supports creating a model that represents cell selection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetSelectionModel.SetAnchor(System.Int32,System.Int32)">
<summary>
Specifies the anchor (or first cell) in the selection of cells.
</summary>
<param name="row">Row index of the first cell in the selection</param>
<param name="column">Column index of the first cell in the selection</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetSelectionModel.ClearSelection">
<summary>
Removes the selection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetSelectionModel.AddSelection(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Adds a cell or cells to the selection.
</summary>
<param name="row">Row index of the first cell to add</param>
<param name="column">Column index of the first cell to add</param>
<param name="rowCount">Number of rows to add</param>
<param name="columnCount">Number of columns to add</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetSelectionModel.RemoveSelection(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Removes the specified selection range from the selection list, if one exists.
</summary>
<param name="row">Row index of the cell at which to start</param>
<param name="column">Column index of the cell at which to start</param>
<param name="rowCount">Number of rows to deselect</param>
<param name="columnCount">Number of columns to deselect</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetSelectionModel.SetSelection(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Selects the specified cells.
</summary>
<param name="row">Row index of the first cell</param>
<param name="column">Column index of the first cell</param>
<param name="rowCount">Number of rows to add to the first cell to define the selection</param>
<param name="columnCount">Number of columns to add to the first cell to define the selection</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetSelectionModel.ExtendSelection(System.Int32,System.Int32)">
<summary>
Specifies the extent (or farthest cell) in the selection of cells.
</summary>
<param name="row">Row index of farthest cell in the selection</param>
<param name="column">Column index of farthest cell in the selection</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetSelectionModel.IsSelected(System.Int32,System.Int32)">
<summary>
Determines whether the specified cell is in the selection.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<returns>True if cell is in selection; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetSelectionModel.IsAnyCellInRowSelected(System.Int32)">
<summary>
Determines whether any cell in a specified row is in the selection.
</summary>
<param name="row">Index of row to check</param>
<returns>True if any cell in specified row is selected; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetSelectionModel.IsAnyCellInColumnSelected(System.Int32)">
<summary>
Determines whether any cell in a specified column is in the selection.
</summary>
<param name="column">Index of column to check</param>
<returns>True if any cell in specified column is selected; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetSelectionModel.IsEmpty">
<summary>
Determines whether the model has no selections.
</summary>
<returns>True if the model contains no selections; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetSelectionModel.GetEnumerator">
<summary>
Gets an enumerator that can iterate through the selections.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.ISheetSelectionModel.Item(System.Int32)">
<summary>
Gets an item in the model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.ISheetSelectionModel.Count">
<summary>
Gets the number of selection of cells.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.ISheetSelectionModel.AnchorRow">
<summary>
Gets the row index of the first cell in the selection of cells.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.ISheetSelectionModel.AnchorColumn">
<summary>
Gets the column index of the first cell in the selection of cells.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.ISheetSelectionModel.LeadRow">
<summary>
Gets the row index of the farthest cell in the selection of cells.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.ISheetSelectionModel.LeadColumn">
<summary>
Gets the column index of the farthest cell in the selection of cells.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.ISheetSelectionModel.SelectionPolicy">
<summary>
Gets or sets whether users can select ranges of items.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.ISheetSelectionModel.SelectionUnit">
<summary>
Gets or sets whether users can select cells, rows, or columns.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Model.ISheetSelectionModel.Changed">
<summary>
Occurs when the selection model has changed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.IDisjointSelections">
<summary>
Interface that supports an ordered array of cell ranges, from largest to smallest,
containing the selected cells with the minimal overlap between the ranges.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IDisjointSelections.GetSelections(System.Int32,System.Int32)">
<summary>
Gets an ordered array of cell ranges, from largest to smallest,
containing the selected cells with minimal overlap between the ranges.
</summary>
<param name="rowCount">Number of rows in the sheet</param>
<param name="columnCount">Number of columns in the sheet</param>
</member>
<member name="T:FarPoint.Win.Spread.Model.IQuerySelection">
<summary>
Interface that supports querying an extended selection in the selection model for the sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IQuerySelection.GetExtendedSelection(System.Int32,System.Int32)">
<summary>
Gets the cell range that would be selected if you extended
the current selection to the specified row and column indexes.
</summary>
<param name="row">Row index to which to extend the selection</param>
<param name="column">Column index to which to extend the selection</param>
</member>
<member name="T:FarPoint.Win.Spread.Model.BaseSheetSelectionModel">
<summary>
Represents the partial (abstract) implementation of the ISheetSelectionModel interface
for a selection model for a sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.SetAnchor(System.Int32,System.Int32)">
<summary>
Specifies the anchor (or first cell) in the selection of cells.
</summary>
<param name="row">Row index of the first cell in the selection</param>
<param name="column">Column index of the first cell in the selection</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.ClearSelection">
<summary>
Removes all of the selections from the sheet so that cells are no longer selected.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.AddSelection(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Adds a cell or cells to the selection.
</summary>
<param name="row">Row index of first cell to add</param>
<param name="column">Column index of the first cell to add</param>
<param name="rowCount">Number of rows to add</param>
<param name="columnCount">Number of columns to add</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.RemoveSelection(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Removes the specified selection range from the selection list, if one exists.
</summary>
<param name="row">Row index of the cell at which to start</param>
<param name="column">Column index of the cell at which to start</param>
<param name="rowCount">Number of rows to deselect</param>
<param name="columnCount">Number of columns to deselect</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.SetSelection(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Selects the specified cells.
</summary>
<param name="row">Row index of the first cell</param>
<param name="column">Column index of the first cell</param>
<param name="rowCount">Number of rows to add to the first cell to define the selection</param>
<param name="columnCount">Number of columns to add to the first cell to define the selection</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.ExtendSelection(System.Int32,System.Int32)">
<summary>
Specifies the extent (or farthest cell) in the selection of cells.
</summary>
<param name="row">Row index of farthest cell in the selection</param>
<param name="column">Column index of farthest cell in the selection</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.IsSelected(System.Int32,System.Int32)">
<summary>
Determines whether the specified cell is in the selection.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.IsAnyCellInRowSelected(System.Int32)">
<summary>
Determines whether any cell in a specified row is in the selection.
</summary>
<param name="row">Row to check</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.IsAnyCellInColumnSelected(System.Int32)">
<summary>
Determines whether any cell in a specified column is in the selection.
</summary>
<param name="column">Column to check</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.IsEmpty">
<summary>
Determines whether the model has no selections.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.OnChanged(FarPoint.Win.Spread.Model.SheetSelectionModelEventArgs)">
<summary>
For handling the Changed event in subclasses.
</summary>
<param name="e">SheetSelectionModelEventArgs</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.FireChanged(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Raises the selection changed event.
</summary>
<param name="row">Row index of start of selection</param>
<param name="column">Column index of start of selection</param>
<param name="rowCount">Number of rows in selection</param>
<param name="columnCount">Number of columns in selection</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.GetEnumerator">
<summary>
Gets an enumerator that can iterate through the selections.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.Item(System.Int32)">
<summary>
Gets an item in the model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.Count">
<summary>
Gets the number selections.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.AnchorRow">
<summary>
Gets the row index of the first cell selected in the range.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.AnchorColumn">
<summary>
Gets the column index of the first cell in the selection of cells.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.LeadRow">
<summary>
Gets the row index of the farthest cell in the selection of cells.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.LeadColumn">
<summary>
Gets the column index of the farthest cell in the selection of cells.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.SelectionPolicy">
<summary>
Gets or sets whether users can select ranges of items.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.SelectionUnit">
<summary>
Gets or sets whether users can select cells, rows, or columns.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Model.BaseSheetSelectionModel.Changed">
<summary>
Occurs when the user makes a change to the model
that affects the selection of cells of the sheet.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel">
<summary>
Represents the full (concrete) implementation of the ISheetSelectionModel interface for a selection model for a sheet,
which represents cell selections.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.#ctor">
<summary>
Creates a default selection model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a default selection model with data from the specified serialization and stream objects.
</summary>
<param name="info">Data needed to serialize or deserialize an object</param>
<param name="context">Source and destination of a given serialized stream</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Saves the default selection model to the SerializationInfo object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.SetAnchor(System.Int32,System.Int32)">
<summary>
Specifies the anchor (or first cell) in the selection of cells.
</summary>
<param name="row">Row index of the first cell in the selection</param>
<param name="column">Column index of the first cell in the selection</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.AddSelection(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Adds a cell or cells to the selection.
</summary>
<param name="row">Row index of the first cell to add</param>
<param name="column">Column index of the first cell to add</param>
<param name="rowCount">Number of rows to add</param>
<param name="columnCount">Number of columns to add</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.RemoveSelection(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Removes the specified selection range from the selection list, if one exists.
</summary>
<param name="row">Row index of the cell at which to start</param>
<param name="column">Column index of the cell at which to start</param>
<param name="rowCount">Number of rows to deselect</param>
<param name="columnCount">Number of columns to deselect</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.ClearSelection">
<summary>
Removes the selection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.SetSelection(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Selects the cells in the specified range.
</summary>
<param name="row">Row index of the first cell</param>
<param name="column">Column index of the first cell</param>
<param name="rowCount">Number of rows to add to the first cell to define the selection</param>
<param name="columnCount">Number of columns to add to the first cell to define the selection</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.ExtendSelection(System.Int32,System.Int32)">
<summary>
Specifies the extent (or farthest cell) in the selection of cells.
</summary>
<param name="extendRow">Row index of the farthest cell in the selection</param>
<param name="extendColumn">Column index of the farthest cell in the selection</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.IsSelected(System.Int32,System.Int32)">
<summary>
Determines whether the specified cell is in the selection.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.IsAnyCellInRowSelected(System.Int32)">
<summary>
Determines whether any cell in a specified row is in the selection.
</summary>
<param name="row">Row to check</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.IsAnyCellInColumnSelected(System.Int32)">
<summary>
Determines whether any cell in a specified column is in the selection.
</summary>
<param name="column">Column to check</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.IsEmpty">
<summary>
Determines whether the model has no selections.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.GetEnumerator">
<summary>
Gets an enumerator that can iterate through the selections.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves a selection to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the selection</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the selection from XML.
</summary>
<param name="r">XmlNodeReader object from which to load the selection</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.GetExtendedSelection(System.Int32,System.Int32)">
<summary>
Gets the cell range that would be selected if you extended
the current selection to the specified row and column indexes.
</summary>
<param name="extendRow">Row index to which to extend the selection</param>
<param name="extendColumn">Column index to which to extend the selection</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.GetSelections(System.Int32,System.Int32)">
<summary>
Returns an ordered array of CellRange objects, from largest to smallest, containing the selected cells
with minimal overlap between the ranges.
</summary>
<param name="rowCount">Specifies the number of rows in the sheet in which to look</param>
<param name="columnCount">Specifies the number of columns in the sheet in which to look</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.AnchorRow">
<summary>
Gets the row index of the first cell in the selection of cells.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.AnchorColumn">
<summary>
Gets the column index of the first cell in the selection of cells.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.LeadRow">
<summary>
Gets the row index of the farthest cell of the selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.LeadColumn">
<summary>
Gets the column index of the farthest cell of the selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.SelectionPolicy">
<summary>
Gets or sets whether users can select ranges of items.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.SelectionUnit">
<summary>
Gets or sets whether users can select cells, rows, or columns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.Count">
<summary>
Gets the number of selections.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetSelectionModel.Item(System.Int32)">
<summary>
Gets an item in the model.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.GridLines">
<summary>
Specifies whether horizontal or vertical grid lines or both are displayed on the sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.GridLines.None">
<summary>
Does not display grid lines on the sheet
</summary>
</member>
<member name="F:FarPoint.Win.Spread.GridLines.Horizontal">
<summary>
Displays horizontal grid lines on the sheet
</summary>
</member>
<member name="F:FarPoint.Win.Spread.GridLines.Vertical">
<summary>
Displays vertical grid lines on the sheet
</summary>
</member>
<member name="F:FarPoint.Win.Spread.GridLines.Both">
<summary>
Displays both horizontal and vertical grid lines on the sheet
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SheetSkin">
<summary>
Represents a skin, which provides style settings for a sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.name">
<summary>
Name of the skin
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.backColor">
<summary>
Background color
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.cellBackColor">
<summary>
Background color of the cells
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.cellForeColor">
<summary>
Foreground color of the cells
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.gridLines">
<summary>
Sheet grid lines
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.gridLineColor">
<summary>
Sheet grid line color
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.headerBackColor">
<summary>
Background color of header cells
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.headerForeColor">
<summary>
Text color of header cells
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.flatColumnHeader">
<summary>
True for flat column headers, false for three-d
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.footerBackColor">
<summary>
Background color of footer cells
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.footerForeColor">
<summary>
Text color of header cells
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.flatColumnFooter">
<summary>
True for flat column footers, false for three-d
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.footerFontBold">
<summary>
True for bold footer font, false for normal
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.showColumnFooter">
<summary>
True to show column footer, false to hide it
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.flatRowHeader">
<summary>
True for flat row headers, false for three-d
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.headerFontBold">
<summary>
True for bold header font, false for normal
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.selectionBackColor">
<summary>
Background color of selection
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.selectionForeColor">
<summary>
Foreground color of selection
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.evenRowBackColor">
<summary>
Background color of even numbererd rows
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.oddRowBackColor">
<summary>
Background color of odd numbered rows
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.showColumnHeader">
<summary>
True to show column header, false to hide it
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkin.showRowHeader">
<summary>
True to show row header, false to hide it
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkin.#ctor(FarPoint.Win.Spread.SheetSkin)">
<summary>
Creates a new skin and copies the property values from the source skin.
</summary>
<param name="source">SheetSkin from which to copy, or null to copy from DefaultSkins.Default</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkin.#ctor(FarPoint.Win.Spread.FpSpread)">
<summary>
Creates a new skin with the property values of the active sheet of the specified FarPoint Spread component.
</summary>
<param name="spread">FarPoint Spread component</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkin.#ctor(System.String,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,FarPoint.Win.Spread.GridLines,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Creates a new skin with the specified settings.
</summary>
<param name="name">Name of the skin</param>
<param name="backColor">Background color for the sheet</param>
<param name="cellBackColor">Background color of the cells</param>
<param name="cellForeColor">Text color of the cells</param>
<param name="gridLineColor">Grid line color</param>
<param name="gridLines">Which grid lines are displayed</param>
<param name="headerBackColor">Background color of the headers</param>
<param name="headerForeColor">Text color of the headers</param>
<param name="selectionBackColor">Background color of selected cells</param>
<param name="selectionForeColor">Text color of selected cells</param>
<param name="evenRowBackColor">Background color of even rows</param>
<param name="oddRowBackColor">Background color of odd rows</param>
<param name="flatColumnHeader">Whether flat headers are displayed (or default three-dimensional headers)</param>
<param name="flatRowHeader">Whether flat headers are displayed (or default three-dimensional headers)</param>
<param name="headerFontBold">Whether bold font in headers</param>
<param name="showColumnHeader">Whether to display the column header</param>
<param name="showRowHeader">Whether to display the row header</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkin.#ctor(System.String,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,FarPoint.Win.Spread.GridLines,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Creates a new skin with the specified settings.
</summary>
<param name="name">Name of the skin</param>
<param name="backColor">Background color for the sheet</param>
<param name="cellBackColor">Background color of the cells</param>
<param name="cellForeColor">Text color of the cells</param>
<param name="gridLineColor">Grid line color</param>
<param name="gridLines">Which grid lines are displayed</param>
<param name="headerBackColor">Background color of the headers</param>
<param name="footerBackColor">Background color of the footers</param>
<param name="headerForeColor">Text color of the headers</param>
<param name="footerForeColor">Text color of the footers</param>
<param name="selectionBackColor">Background color of selected cells</param>
<param name="selectionForeColor">Text color of selected cells</param>
<param name="evenRowBackColor">Background color of even rows</param>
<param name="oddRowBackColor">Background color of odd rows</param>
<param name="flatColumnHeader">Whether flat headers are displayed (or default three-dimensional headers)</param>
<param name="flatColumnFooter">Whether flat footers are displayed (or default three-dimensional footers)</param>
<param name="flatRowHeader">Whether flat headers are displayed (or default three-dimensional headers)</param>
<param name="headerFontBold">Whether bold font in headers</param>
<param name="footerFontBold">Whether bold font in footers</param>
<param name="showColumnHeader">Whether to display the column header</param>
<param name="showColumnFooter">Whether to display the column footer</param>
<param name="showRowHeader">Whether to display the row header</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkin.#ctor(System.String,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,FarPoint.Win.Spread.GridLines,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String,System.String,System.String,System.String)">
<summary>
Creates a new skin with the specified settings.
</summary>
<param name="name">Name of the skin</param>
<param name="backColor">Background color for the sheet</param>
<param name="cellBackColor">Background color of the cells</param>
<param name="cellForeColor">Text color of the cells</param>
<param name="gridLineColor">Grid line color</param>
<param name="gridLines">Which grid lines are displayed</param>
<param name="headerBackColor">Background color of the headers</param>
<param name="headerForeColor">Text color of the headers</param>
<param name="selectionBackColor">Background color of selected cells</param>
<param name="selectionForeColor">Text color of selected cells</param>
<param name="evenRowBackColor">Background color of even rows</param>
<param name="oddRowBackColor">Background color of odd rows</param>
<param name="flatColumnHeader">Whether flat headers are displayed (or default three-dimensional headers)</param>
<param name="flatRowHeader">Whether flat headers are displayed (or default three-dimensional headers)</param>
<param name="headerFontBold">Whether bold font in headers</param>
<param name="showColumnHeader">Whether to display the column header</param>
<param name="showRowHeader">Whether to display the row header</param>
<param name="columnHeaderParent">Parent column header</param>
<param name="rowHeaderParent">Row header parent</param>
<param name="dataAreaParent">Data area parent</param>
<param name="cornerParent">Sheet corner parent</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkin.#ctor(System.String,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,FarPoint.Win.Spread.GridLines,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String,System.String,System.String,System.String,System.String)">
<summary>
Creates a new skin with the specified settings.
</summary>
<param name="name">Name of the skin</param>
<param name="backColor">Background color for the sheet</param>
<param name="cellBackColor">Background color of the cells</param>
<param name="cellForeColor">Text color of the cells</param>
<param name="gridLineColor">Grid line color</param>
<param name="gridLines">Which grid lines are displayed</param>
<param name="headerBackColor">Background color of the headers</param>
<param name="footerBackColor">Background color of the footers</param>
<param name="headerForeColor">Text color of the headers</param>
<param name="footerForeColor">Text color of the footers</param>
<param name="selectionBackColor">Background color of selected cells</param>
<param name="selectionForeColor">Text color of selected cells</param>
<param name="evenRowBackColor">Background color of even rows</param>
<param name="oddRowBackColor">Background color of odd rows</param>
<param name="flatColumnHeader">Whether flat headers are displayed (or default three-dimensional headers)</param>
<param name="flatColumnFooter">Whether flat footers are displayed (or default three-dimensional footers)</param>
<param name="flatRowHeader">Whether flat headers are displayed (or default three-dimensional headers)</param>
<param name="headerFontBold">Whether bold font in headers</param>
<param name="footerFontBold">Whether bold font in footers</param>
<param name="showColumnHeader">Whether to display the column header</param>
<param name="showColumnFooter">Whether to display the column footer</param>
<param name="showRowHeader">Whether to display the row header</param>
<param name="columnHeaderParent">Parent column header</param>
<param name="columnFooterParent">Parent column footer</param>
<param name="rowHeaderParent">Row header parent</param>
<param name="dataAreaParent">Data area parent</param>
<param name="cornerParent">Sheet corner parent</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkin.#ctor(FarPoint.Win.Spread.SheetView)">
<summary>
Creates a new skin with the property settings of the specified sheet.
</summary>
<param name="sheetView">Sheet (SheetView object), or null to initialize using DefaultSkins.Default</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkin.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new skin from serialization.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkin.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Saves the skin to serialization.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkin.Apply(FarPoint.Win.Spread.FpSpread)">
<summary>
Applies the skin to the active sheet in the specified FarPoint Spread component.
</summary>
<param name="spread">
FarPoint Spread component to which to apply the skin
</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkin.Apply(FarPoint.Win.Spread.SheetView)">
<summary>
Applies the skin to the specified sheet.
</summary>
<param name="sheet">Sheet to which to apply the skin</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkin.Apply(System.Collections.ICollection)">
<summary>
Applies the skin to the specified collection of sheets.
</summary>
<param name="sheets">Array of sheets to which to apply the skin</param>
<exception cref="T:System.ArgumentNullException">No sheet collection specified or specified collection is null</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkin.Save(FarPoint.Win.Spread.SheetSkin,System.String)">
<summary>
Saves a skin to a file.
</summary>
<param name="skin">Name of the skin</param>
<param name="fileName">Path and file name to which to save the skin
overwriting the file if it already exists</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkin.Save(FarPoint.Win.Spread.SheetSkin,System.IO.Stream)">
<summary>
Saves a skin to a stream.
</summary>
<param name="skin">Name of the skin</param>
<param name="stream">Stream to which to save the skin</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkin.Load(System.String)">
<summary>
Loads a skin from a file.
</summary>
<param name="fileName">Path and file name from which to load the skin</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkin.Load(System.IO.Stream)">
<summary>
Loads a skin from a stream.
</summary>
<param name="stream">Stream from which to load the skin</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkin.Equals(System.Object)">
<summary>
Returns a value indicating whether the specified object is equivalent to this skin.
</summary>
<param name="o">Object to compare to</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkin.GetHashCode">
<summary>
Returns the hash code of this object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkin.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the skin to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkin.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the skin from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.Name">
<summary>
Gets the name of the skin for the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.BackColor">
<summary>
Gets the background color of the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.CellBackColor">
<summary>
Gets the background color of cells in the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.CellForeColor">
<summary>
Gets the text color of cells in the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.GridLines">
<summary>
Gets which grid lines are displayed on the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.GridLineColor">
<summary>
Gets the color of the grid lines on the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.HeaderBackColor">
<summary>
Gets the background color of header cells in the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.HeaderForeColor">
<summary>
Gets the text color of header cells in the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.FooterBackColor">
<summary>
Gets the background color of footer cells in the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.FooterForeColor">
<summary>
Gets the text color of footer cells in the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.FlatColumnHeader">
<summary>
Gets whether column headers are displayed in the sheet as appearing flat.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.FlatColumnFooter">
<summary>
Gets whether column footers are displayed in the sheet as appearing flat.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.FlatRowHeader">
<summary>
Gets whether row headers are displayed in the sheet as appearing flat.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.HeaderFontBold">
<summary>
Gets whether the font is bold for text in headers in the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.FooterFontBold">
<summary>
Gets whether the font is bold for text in footers in the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.SelectionBackColor">
<summary>
Gets the background color of selected cells in the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.SelectionForeColor">
<summary>
Gets the text color of selected cells in the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.EvenRowBackColor">
<summary>
Gets the background color of even numbererd rows in the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.OddRowBackColor">
<summary>
Gets the background color of odd numbered rows in the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.ShowColumnHeader">
<summary>
Gets whether the sheet displays the column header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.ShowColumnFooter">
<summary>
Gets whether the sheet displays the column footer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.ShowRowHeader">
<summary>
Gets whether the sheet displays the row header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.ColumnHeaderParent">
<summary>
Gets the parent style name to use for initializing the column header default style
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.ColumnFooterParent">
<summary>
Gets the parent style name to use for initializing the column footer default style
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.RowHeaderParent">
<summary>
Gets the parent style name to use for initializing the row header default style
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.DataAreaParent">
<summary>
Gets the parent style name to use for initializing the data area default style
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkin.CornerParent">
<summary>
Gets the parent style name to use for initializing the corner default style
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkinConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns a value indicating whether a sheet skin object can be converted to the specified type.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="destinationType">Type</param>
<returns>True if a sheet skin object can be converted to the specified type, and false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkinConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts a skin from one type to another.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">object</param>
<param name="destinationType">Type</param>
<returns>Converted SheetSkin object</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkinEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
<summary>
Edits the SheetSkin value.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="provider">IServiceProvider</param>
<param name="value">object</param>
<returns>object</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkinEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Gets the style of the type editor (which is drop-down).
</summary>
<param name="context">ITypeDescriptorContext</param>
<returns>UITypeEditorEditStyle</returns>
</member>
<member name="T:FarPoint.Win.Spread.DefaultSkins">
<summary>
Read-only collection of default (built-in) skins.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultSkins.Skins">
<summary>
Array of SheetSkin objects containing the built-in skins.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultSkins.Contains(FarPoint.Win.Spread.SheetSkin)">
<summary>
Determines whether the collection contains the specified skin.
</summary>
<param name="skin">
Skin (SheetSkin object) for which to check
</param>
<returns>
True if the object is found in the collection; false otherwise
</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultSkins.CopyTo(System.Array,System.Int32)">
<summary>
Copies skins to the specified array at the specified index.
</summary>
<param name="array">
One-dimensional array into which the elements from ICollection are copied;
array must have zero-based indexing
</param>
<param name="index">
Zero-based index in array at which to paste skins
</param>
<exception cref="T:System.ArgumentNullException">No array specified, or specified array is null (Nothing)</exception>
<exception cref="T:System.ArgumentException">Specified array is invalid; must have a rank of one</exception>
<exception cref="T:System.ArgumentException">Specified array is invalid; must have sufficient length</exception>
<exception cref="T:System.IndexOutOfRangeException">Specified index is out of range; must be greater than zero</exception>
</member>
<member name="M:FarPoint.Win.Spread.DefaultSkins.Find(System.String)">
<summary>
Finds the built-in skin with the specified name.
</summary>
<param name="name">
Name of the built-in skin to find
</param>
<returns>
Built-in skin in the collection with the specified name, or
null if no built-in skin is found with that name
</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultSkins.GetAt(System.Int32)">
<summary>
Gets the built-in skin at the specified index.
</summary>
<param name="index">
Zero-based index in array that specifies the location of the built-in (default) skin
</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified index is out of range; must be between zero and the total number of built-in (default) skins
</exception>
</member>
<member name="M:FarPoint.Win.Spread.DefaultSkins.IndexOf(FarPoint.Win.Spread.SheetSkin)">
<summary>
Returns the index of the specified built-in skin.
</summary>
<param name="skin">
Name of the built-in skin for which to return the index
</param>
<returns>
Index of the object in the collection, or -1 if the object is not found
</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultSkins.Reset(FarPoint.Win.Spread.FpSpread)">
<summary>
Resets the skin properties of the active sheet in the specified FarPoint Spread component to the default values.
</summary>
<param name="spread">
FarPoint Spread component in which to reset the active sheet
</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultSkins.Reset(FarPoint.Win.Spread.SheetView)">
<summary>
Resets the skin properties of the specified sheet to the default values.
</summary>
<param name="sheetView">
Sheet (SheetView object) in which to reset the properties
</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultSkins.Reset(System.Collections.ICollection)">
<summary>
Resets the skin properties of an array of sheets to the default values.
</summary>
<param name="sheets">
Array of sheets (SheetView objects)
</param>
<exception cref="T:System.ArgumentNullException">
No sheet collection specified or specified sheet collection is null
</exception>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSkins.Default">
<summary>
Represents the skin for resetting the skin properties to the default values.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSkins.Colorful1">
<summary>
Represents the built-in skin, Colorful1.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSkins.Colorful2">
<summary>
Represents the built-in skin, Colorful2.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSkins.Colorful3">
<summary>
Represents the built-in skin, Colorful3.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSkins.Colorful4">
<summary>
Represents the built-in skin, Colorful4.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSkins.Colorful5">
<summary>
Represents the built-in skin, Colorful5.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSkins.Professional1">
<summary>
Represents the built-in skin, Professional1.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSkins.Professional2">
<summary>
Represents the built-in skin, Professional2.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSkins.Professional3">
<summary>
Represents the built-in skin, Professional3.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSkins.Simple1">
<summary>
Represents the built-in skin, Simple1.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSkins.Simple2">
<summary>
Represents the built-in skin, Simple2.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSkins.Simple3">
<summary>
Represents the built-in skin, Simple3.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSkins.Classic1">
<summary>
Represents the built-in skin, Classic1.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSkins.Classic2">
<summary>
Represents the built-in skin, Classic2.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSkins.Classic">
<summary>
Represents the built-in skin, Classic.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSkins.Count">
<summary>
Gets the number of built-in skins in the array of SheetSkin objects.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SpreadSkin">
<summary>
Represents the skin of the FarPoint Spread component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkin.#ctor">
<summary>
Creates a new FarPoint Spread skin with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkin.#ctor(FarPoint.Win.Spread.SpreadSkin)">
<summary>
Creates a new FarPoint Spread skin from the specified source.
</summary>
<param name="source">Source skin for the FarPoint Spread component</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkin.#ctor(System.String,FarPoint.Win.Spread.FpSpread)">
<summary>
Creates a new FarPoint Spread skin from the specified FarPoint Spread component.
</summary>
<param name="name">Name of the skin</param>
<param name="spread">FarPoint Spread component</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkin.#ctor(System.String,FarPoint.Win.Spread.IInterfaceRenderer,FarPoint.Win.Spread.IScrollBarRenderer,FarPoint.Win.Spread.IFocusIndicatorRenderer,FarPoint.Win.Spread.ISelectionRenderer,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.NamedStyle)">
<summary>
Creates a new FarPoint Spread skin from the specified values.
</summary>
<param name="name">Name of the skin</param>
<param name="interfaceRenderer">Interface renderer</param>
<param name="scrollBarRenderer">Scroll bar renderer</param>
<param name="focusIndicatorRenderer">Focus indicator renderer</param>
<param name="selectionRenderer">Selection renderer</param>
<param name="defaultStyle">Default style</param>
<param name="columnHeaderDefaultStyle">Column header default style</param>
<param name="rowHeaderDefaultStyle">Row header default style</param>
<param name="cornerDefaultStyle">Corner default style</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkin.#ctor(System.String,FarPoint.Win.Spread.IInterfaceRenderer,FarPoint.Win.Spread.IScrollBarRenderer,FarPoint.Win.Spread.IFocusIndicatorRenderer,FarPoint.Win.Spread.ISelectionRenderer,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.NamedStyle)">
<summary>
Creates a new FarPoint Spread skin from the specified values.
</summary>
<param name="name">Name of the skin</param>
<param name="interfaceRenderer">Interface renderer</param>
<param name="scrollBarRenderer">Scroll bar renderer</param>
<param name="focusIndicatorRenderer">Focus indicator renderer</param>
<param name="selectionRenderer">Selection renderer</param>
<param name="defaultStyle">Default style</param>
<param name="columnHeaderDefaultStyle">Column header default style</param>
<param name="columnFooterDefaultStyle">Column footer default style</param>
<param name="rowHeaderDefaultStyle">Row header default style</param>
<param name="cornerDefaultStyle">Corner default style</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkin.InitializeFromFpSpread(FarPoint.Win.Spread.FpSpread)">
<summary>
Initializes from the specified FarPoint Spread component.
</summary>
<param name="spread">FarPoint Spread component</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkin.OnChanged(System.EventArgs)">
<summary>
Raises the changed event.
</summary>
<param name="e"><see cref="T:System.EventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkin.Apply(FarPoint.Win.Spread.FpSpread)">
<summary>
Applies the settings to the FarPoint Spread component.
</summary>
<param name="spread">FarPoint Spread component</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkin.Apply(FarPoint.Win.Spread.SheetView)">
<summary>
Applies the settings to the sheet (SheetView object).
</summary>
<param name="sheet">Sheet (SheetView object)</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkin.Save(FarPoint.Win.Spread.SpreadSkin,System.String)">
<summary>
Saves a FarPoint Spread skin to a file.
</summary>
<param name="skin">Skin to save</param>
<param name="fileName">Path and file name to which to save the skin overwriting the file if it already exists</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkin.Save(FarPoint.Win.Spread.SpreadSkin,System.IO.Stream)">
<summary>
Saves a FarPoint Spread skin to a stream.
</summary>
<param name="skin">Name of the skin</param>
<param name="stream">Stream to which to save the skin</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkin.Load(System.String)">
<summary>
Loads a FarPoint Spread skin from a file.
</summary>
<param name="fileName">Path and file name from which to load the skin</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkin.Load(System.IO.Stream)">
<summary>
Loads a FarPoint Spread skin from a stream.
</summary>
<param name="stream">Stream from which to load the skin</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkin.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the skin to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkin.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the skin from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkin.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>
A new object that is a copy of this instance.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkin.CopyFrom(FarPoint.Win.Spread.SpreadSkin)">
<summary>
Copies settings from another FarPoint Spread skin instance.
</summary>
<param name="skin">FarPoint Spread skin</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkin.Equals(System.Object)">
<summary>
Returns whether the specified object is equivalent to this skin.
</summary>
<param name="o">Object to compare to</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkin.GetHashCode">
<summary>
Returns the hash code of this object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadSkin.Applying">
<summary>
Returns true if the skin is being applied to an FpSpread or SheetView object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadSkin.ColumnHeaderDefaultStyle">
<summary>
Gets or sets the column header default renderer of the FarPoint Spread skin.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadSkin.ColumnFooterDefaultStyle">
<summary>
Gets or sets the column footer default renderer of the FarPoint Spread skin.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadSkin.RowHeaderDefaultStyle">
<summary>
Gets or sets the row header default renderer of the FarPoint Spread skin.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadSkin.CornerDefaultStyle">
<summary>
Gets or sets the corner default renderer of the FarPoint Spread skin.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadSkin.DefaultStyle">
<summary>
Gets or sets the cells default renderer of the FarPoint Spread skin.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadSkin.FocusRenderer">
<summary>
Gets or sets the focus indicator renderer of the FarPoint Spread skin.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadSkin.InterfaceRenderer">
<summary>
Gets or sets the interface renderer of the FarPoint Spread skin.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadSkin.SelectionRenderer">
<summary>
Gets or sets the selection renderer of the FarPoint Spread skin.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadSkin.ScrollBarRenderer">
<summary>
Gets or sets the scroll bar renderer of the FarPoint Spread skin.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadSkin.Name">
<summary>
Gets or sets the name of the FarPoint Spread skin.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.SpreadSkin.Changed">
<summary>
Raised when the skin is changed
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkinConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns whether a sheet skin object can be converted to the specified type.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="destinationType">Type</param>
<returns>True if a sheet skin object can be converted to the specified type, and false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkinConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts a skin from one type to another.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">Object</param>
<param name="destinationType">Type</param>
<returns>Converted SheetSkin object</returns>
</member>
<member name="T:FarPoint.Win.Spread.DefaultSpreadSkins">
<summary>
Represents the read-only collection of default (built-in) FarPoint Spread skins.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultSpreadSkins.Skins">
<summary>
Array of FarPoint Spread skins containing the built-in skins.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultSpreadSkins.Contains(FarPoint.Win.Spread.SpreadSkin)">
<summary>
Determines whether the collection contains the specified FarPoint Spread skin.
</summary>
<param name="skin">Skin (SpreadSkin object) for which to check</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultSpreadSkins.CopyTo(System.Array,System.Int32)">
<summary>
Copies skins to the specified array at the specified index.
</summary>
<param name="array">
One-dimensional array into which the elements from ICollection are copied;
array must have zero-based indexing
</param>
<param name="index">Zero-based index in array at which to paste skins</param>
<exception cref="T:System.ArgumentNullException">No array specified, or specified array is null (Nothing)</exception>
<exception cref="T:System.ArgumentException">Specified array is invalid; must have a rank of one</exception>
<exception cref="T:System.ArgumentException">Specified array is invalid; must have sufficient length</exception>
<exception cref="T:System.IndexOutOfRangeException">Specified index is out of range; must be greater than zero</exception>
</member>
<member name="M:FarPoint.Win.Spread.DefaultSpreadSkins.Find(System.String)">
<summary>
Finds the built-in FarPoint Spread skin with the specified name.
</summary>
<param name="name">Name of the built-in skin to find</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultSpreadSkins.GetAt(System.Int32)">
<summary>
Gets the built-in skin at the specified index.
</summary>
<param name="index">
Zero-based index in array that specifies the location of the built-in (default) skin
</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified index is out of range; must be between zero and the total number of built-in (default) skins
</exception>
</member>
<member name="M:FarPoint.Win.Spread.DefaultSpreadSkins.IndexOf(FarPoint.Win.Spread.SpreadSkin)">
<summary>
Returns the index of the specified built-in skin.
</summary>
<param name="skin">
Name of the built-in skin for which to return the index
</param>
<returns>
Index of the object in the collection, or -1 if the object is not found
</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultSpreadSkins.Reset(FarPoint.Win.Spread.FpSpread)">
<summary>
Resets the skin properties of the active sheet in the specified FarPoint Spread component to the default values.
</summary>
<param name="spread">FarPoint Spread component in which to reset the active sheet</param>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSpreadSkins.Default">
<summary>
Represents the skin for resetting the skin properties to the default values.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSpreadSkins.Classic">
<summary>
Represents the built-in skin, Classic.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSpreadSkins.Shamrock">
<summary>
Represents the built-in skin, Shamrock.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSpreadSkins.Sandstorm">
<summary>
Represents the built-in skin, Sandstorm.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSpreadSkins.ArcticSea">
<summary>
Represents the built-in skin, ArcticSea.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSpreadSkins.Metallic">
<summary>
Represents the built-in skin, Metallic.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSpreadSkins.Grayscale">
<summary>
Represents the built-in skin, Grayscale.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSpreadSkins.Sunburst">
<summary>
Represents the built-in skin, Sunburst.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSpreadSkins.Seashell">
<summary>
Represents the built-in skin, Seashell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSpreadSkins.Pastel">
<summary>
Represents the built-in skin, Pastel.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSpreadSkins.Rose">
<summary>
Represents the built-in skin, Rose.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSpreadSkins.Newspaper">
<summary>
Represents the built-in skin, Newspaper.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSpreadSkins.Midnight">
<summary>
Represents the built-in skin, Midnight.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultSpreadSkins.Count">
<summary>
Gets the number of built-in skins in the array of FarPoint Spread skins.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkinEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
<summary>
Edits the SpreadSkin value.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="provider">IServiceProvider</param>
<param name="value">object</param>
<returns>object</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkinEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Gets the style of the type editor (which is drop-down).
</summary>
<param name="context">ITypeDescriptorContext</param>
<returns>UITypeEditorEditStyle</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkinNamedStyleConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns a value indicating whether a named style object can be converted to the specified type.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="destinationType">Type</param>
<returns>True if a named style object can be converted to the specified type, and false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkinNamedStyleConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the NamedStyle object to a string.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">object</param>
<param name="destinationType">Type</param>
<returns>String representation of a NamedStyle object</returns>
</member>
<member name="T:FarPoint.Win.Spread.Model.CellRangeConverter">
<summary>
Represents a data type converter for a range of cells.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRangeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Determines if the data type of the cell range can be converted from the specified source data.
</summary>
<param name="context">Data type descriptor context</param>
<param name="sourceType">Source data type</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRangeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Determines if the data type of the cell range can be converted to the specified destination data.
</summary>
<param name="context">Data type descriptor context</param>
<param name="destinationType">Destination data type</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRangeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Converts the data type of the cell range from the specified value.
</summary>
<param name="context">Data type descriptor context</param>
<param name="culture">Culture</param>
<param name="value">Value</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRangeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the data type of the cell range to the specified value.
</summary>
<param name="context">Data type descriptor context</param>
<param name="culture">Culture</param>
<param name="value">Value</param>
<param name="destinationType">Destination data type</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.CellRangeConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)">
<summary>
Creates an instance of the range of cells.
</summary>
<param name="context">Data type descriptor context</param>
<param name="propertyValues">Property values</param>
</member>
<member name="T:FarPoint.Win.Spread.Model.SheetSpanModelEventType">
<summary>
Specifies the type of Change event that has occurred for a span model for the sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetSpanModelEventType.SpanAdded">
<summary>
Indicates that an individual span has been added
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetSpanModelEventType.SpanRemoved">
<summary>
Indicates that an individual span has been removed
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetSpanModelEventType.SpanUpdated">
<summary>
Indicates that an individual span has changed
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetSpanModelEventType.ModelUpdated">
<summary>
Indicates that the entire model has changed
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SheetSpanModelEventArgs">
<summary>
Represents the event data for the Changed event of the span model for the sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SheetSpanModelEventArgs.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.Model.SheetSpanModelEventType)">
<summary>
Creates a new Changed event arguments object for the span model for the sheet.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="rowCount">Number of rows in the span</param>
<param name="columnCount">Number of columns in the span</param>
<param name="type">Type of change that occurred in the span model</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetSpanModelEventArgs.Row">
<summary>
Gets the row index where the event occurred.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetSpanModelEventArgs.Column">
<summary>
Gets the column index where the event occurred.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetSpanModelEventArgs.RowCount">
<summary>
Gets the number of rows affected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetSpanModelEventArgs.ColumnCount">
<summary>
Gets the number of columns affected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetSpanModelEventArgs.Type">
<summary>
Gets the type of event that occurred.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SheetSpanModelEventHandler">
<summary>
Handles the Changed event in the span model of the sheet.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Event arguments</param>
</member>
<member name="T:FarPoint.Win.Spread.Model.ISheetSpanModel">
<summary>
Interface that supports creating a model that represents cell spans.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetSpanModel.IsEmpty">
<summary>
Determines whether the model is empty of cell spans.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetSpanModel.GetEnumerator(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets an enumerator for iterating to the next cell span in the collection after the specified span.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="rowCount">Number of rows in cell span</param>
<param name="columnCount">Number of columns in cell span</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetSpanModel.Add(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Adds a cell span to the collection.
</summary>
<param name="row">Row index at which to start span</param>
<param name="column">Column index at which to start span</param>
<param name="rowCount">Number of rows in span</param>
<param name="columnCount">Number of columns in span</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetSpanModel.Remove(System.Int32,System.Int32)">
<summary>
Removes the cell span with the specified anchor cell from the collection.
</summary>
<param name="row">Row index of anchor cell for span (at which spanned cells started) </param>
<param name="column">Column index of anchor cell for span (at which spanned cells started) </param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetSpanModel.Find(System.Int32,System.Int32)">
<summary>
Finds the cell span with the specified cell in the collection.
</summary>
<param name="row">Row index of the cell.</param>
<param name="column">Column index of cell.</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetSpanModel.Clear">
<summary>
Removes all cell spans from the collection.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Model.ISheetSpanModel.Changed">
<summary>
Occurs when the span model has changed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.BaseSheetSpanModel">
<summary>
Represents the partial (abstract) implementation of the ISheetSpanModel interface
for a span model for a sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSpanModel.IsEmpty">
<summary>
Determines whether the model is empty of cell spans.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSpanModel.GetEnumerator(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets the next cell span in the collection.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="rowCount">Number of rows in cell span</param>
<param name="columnCount">Number of columns in cell span</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSpanModel.Add(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Adds a cell span to the collection.
</summary>
<param name="row">Row index at which to start span</param>
<param name="column">Column index at which to start span</param>
<param name="rowCount">Number of rows in span</param>
<param name="columnCount">Number of columns in span</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSpanModel.Remove(System.Int32,System.Int32)">
<summary>
Removes all cell spans in the collection that cover the cell
at the specified row and column.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSpanModel.Find(System.Int32,System.Int32)">
<summary>
Finds the cell span in the collection that includes the cell
at the specified row and column.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSpanModel.Clear">
<summary>
Removes all cell spans from the collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSpanModel.OnChanged(FarPoint.Win.Spread.Model.SheetSpanModelEventArgs)">
<summary>
Returns information about the event that was raised.
</summary>
<param name="e">SheetSpanModelEventArgs object that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSpanModel.FireChanged(System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.Model.SheetSpanModelEventType)">
<summary>
Returns information about cell span that has changed.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="rowCount">Number of rows in span</param>
<param name="columnCount">Number of columns in span</param>
<param name="type">Returns the type of event that was raised</param>
</member>
<member name="E:FarPoint.Win.Spread.Model.BaseSheetSpanModel.Changed">
<summary>
Occurs when the user makes a change to the model
that affects the span of cells of the sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSpanModel.NullEnumerator.#ctor">
<summary>
NullEnumerator: Internal Use Only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSpanModel.NullEnumerator.MoveNext">
<summary>
MoveNext: Internal Use Only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetSpanModel.NullEnumerator.Reset">
<summary>
Reset: Internal Use Only.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.BaseSheetSpanModel.NullEnumerator.Current">
<summary>
Current: Internal Use Only.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.DefaultSheetSpanModel">
<summary>
Represents the full (concrete) implementation of the ISheetSpanModel interface for a span model for a sheet,
which represents cell spans.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.#ctor">
<summary>
Creates a default span model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a default span model from deserialization.
</summary>
<param name="info">SerializationInfo</param>
<param name="c">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates the SerializationInfo class with information about
the default sheet span model settings.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contextual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.IsEmpty">
<summary>
Determines whether the model is empty of cell spans.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.GetEnumerator(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets an enumerator for iterating to the next cell span in the collection after the specified span.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="rowCount">Number of rows in span</param>
<param name="columnCount">Number of columns in span</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.GetEnumerator">
<summary>
Gets an enumerator for iterating to the next cell span in the collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.Add(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Adds a cell span to the collection.
</summary>
<param name="row">Row index of cell at which to start span</param>
<param name="column">Column index of cell at which to start span</param>
<param name="rowCount">Number of rows in span</param>
<param name="columnCount">Number of columns in span</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.Clear">
<summary>
Removes all cell spans from the collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.Find(System.Int32,System.Int32)">
<summary>
Finds the cell span in the collection that includes the cell at specified row and column.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.Remove(System.Int32,System.Int32)">
<summary>
Removes all cell spans in the collection that include the cell at the specified row and column.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.FarPoint#Win#Spread#Model#IRangeSupport#AddRows(System.Int32,System.Int32)">
<summary>
This IRangeSupport method is used internally by Spread to
keep the row and column counts in sync between the models
and is not intended to be called directly from your code.
Use the IRangeSupport methods in the data model, or the
wrapper methods in the SheetView instead.
</summary>
<param name="row">Row index at which to start adding rows</param>
<param name="count">Number of rows to add to the span</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.FarPoint#Win#Spread#Model#IRangeSupport#AddColumns(System.Int32,System.Int32)">
<summary>
This IRangeSupport method is used internally by Spread to
keep the row and column counts in sync between the models
and is not intended to be called directly from your code.
Use the IRangeSupport methods in the data model, or the
wrapper methods in the SheetView instead.
</summary>
<param name="column">Column index at which to start adding columns</param>
<param name="count">Number of columns to add to the span</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.FarPoint#Win#Spread#Model#IRangeSupport#RemoveRows(System.Int32,System.Int32)">
<summary>
This IRangeSupport method is used internally by Spread to
keep the row and column counts in sync between the models
and is not intended to be called directly from your code.
Use the IRangeSupport methods in the data model, or the
wrapper methods in the SheetView instead.
</summary>
<param name="row">Row index at which to start removing rows</param>
<param name="count">Number of rows to remove from the cell span</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.FarPoint#Win#Spread#Model#IRangeSupport#RemoveColumns(System.Int32,System.Int32)">
<summary>
This IRangeSupport method is used internally by Spread to
keep the row and column counts in sync between the models
and is not intended to be called directly from your code.
Use the IRangeSupport methods in the data model, or the
wrapper methods in the SheetView instead.
</summary>
<param name="column">Column index at which to start removing columns</param>
<param name="count">Number of columns to remove from the cell span</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.MoveRows(System.Int32,System.Int32,System.Int32)">
<summary>
Moves rows and pastes them at the specified location.
</summary>
<param name="fromRow">Row index at which to start move</param>
<param name="toRow">Row index at which to paste rows</param>
<param name="count">Number of rows to move</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.MoveColumns(System.Int32,System.Int32,System.Int32)">
<summary>
Moves columns and pastes them at the specified location.
</summary>
<param name="fromColumn">Column index at which to start move</param>
<param name="toColumn">Column index at which to paste columns</param>
<param name="count">Number of columns to move</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.CopyRows(System.Int32,System.Int32,System.Int32)">
<summary>
Copies rows and pastes them at the specified location.
</summary>
<param name="fromRow">Row index at which to start copying</param>
<param name="toRow">Row index at which to paste columns</param>
<param name="count">Number of rows to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.CopyColumns(System.Int32,System.Int32,System.Int32)">
<summary>
Copies columns and pastes them at the specified location.
</summary>
<param name="fromColumn">Column index at which to start copying</param>
<param name="toColumn">Column index at which to paste columns</param>
<param name="count">Number of columns to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.SwapRows(System.Int32,System.Int32,System.Int32)">
<summary>
Swaps the a range of rows with another range of rows.
</summary>
<param name="fromRow">Row index at which to start swap</param>
<param name="toRow">Row index at which to swap rows</param>
<param name="count">Number of rows to swap</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.SwapColumns(System.Int32,System.Int32,System.Int32)">
<summary>
Swaps the a range of columns with another range of columns.
</summary>
<param name="fromColumn">Column index at which to start swap</param>
<param name="toColumn">Column index at which to swap columns</param>
<param name="count">Number of columns to swap</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.Clear(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Removes cell spans from the collection within the specified area.
</summary>
<param name="row">Row index from which to start clearing cell spans</param>
<param name="column">Column index from which to start clearing cell spans</param>
<param name="rowCount">Number of rows to clear</param>
<param name="columnCount">Number of columns to clear</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.Copy(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Copies a cell span and pastes it at the specified location.
</summary>
<param name="fromRow">Row index from which to begin copying</param>
<param name="fromColumn">Column index from which to begin copying</param>
<param name="toRow">Row index at which to paste cell span</param>
<param name="toColumn">Column index at which to paste cell span</param>
<param name="rowCount">Number of rows to copy</param>
<param name="columnCount">Number of columns to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.Move(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Moves a cell span and pastes it at the specified location.
</summary>
<param name="fromRow">Row index from which to begin the move</param>
<param name="fromColumn">Column index from which to begin the move</param>
<param name="toRow">Row index at which to paste cell span</param>
<param name="toColumn">Column index at which to paste cell span</param>
<param name="rowCount">Number of rows to move</param>
<param name="columnCount">Number of columns to move</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.Swap(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Swaps cell spans.
</summary>
<param name="fromRow">Row index from which to begin swap</param>
<param name="fromColumn">Column index from which to begin swap</param>
<param name="toRow">Row index at which to get cell span to swap</param>
<param name="toColumn">Column index at which to get cell span to swap</param>
<param name="rowCount">Number of rows to swap</param>
<param name="columnCount">Number of columns to swap</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.Serialize(System.Xml.XmlTextWriter)">
Serializes the public properties and fields of the DefaultSheetSpanModel object.
<summary>
Saves the span object to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetSpanModel.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the span object from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object</param>
</member>
<member name="T:FarPoint.Win.Spread.Model.SheetStyleModelEventType">
<summary>
Specifies the type of Change event that has occurred for an style model for the sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetStyleModelEventType.CellsUpdated">
<summary>
Indicates that the style of one or more cells has changed
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetStyleModelEventType.RowsAdded">
<summary>
Indicates that the style of one or more rows have been added
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetStyleModelEventType.RowsRemoved">
<summary>
Indicates that the style of one or more rows have been removed
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetStyleModelEventType.ColumnsAdded">
<summary>
Indicates that the style of one or more columns have been added
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetStyleModelEventType.ColumnsRemoved">
<summary>
Indicates that the style of one or more columns have been removed
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.SheetStyleModelEventType.ModelUpdated">
<summary>
Indicates that the model has been updated such that all styles may have changed
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SheetStyleModelEventArgs">
<summary>
Represents the event data for the Changed event of the style model for the sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SheetStyleModelEventArgs.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.Model.SheetStyleModelEventType)">
<summary>
Creates a new Changed event arguments object for the style model for the sheet.
</summary>
<param name="row">
Row index where the event occurred, or -1 if all rows were affected
</param>
<param name="column">
Column index where the event occurred, or -1 if all columns were affected
</param>
<param name="rowCount">
Number of rows, or -1 if all rows were affected
</param>
<param name="columnCount">
Number of columns, or -1 if all columns were affected
</param>
<param name="type">
Type of change that occurred in the style model
</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetStyleModelEventArgs.Row">
<summary>
Gets the row index where the event occurred,
or -1 if all rows were affected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetStyleModelEventArgs.Column">
<summary>
Gets the column index where the event occurred,
or -1 if all columns were affected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetStyleModelEventArgs.RowCount">
<summary>
Gets the number of rows, or -1 if all rows were affected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetStyleModelEventArgs.ColumnCount">
<summary>
Gets the number of columns, or -1 if all columns were affected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SheetStyleModelEventArgs.Type">
<summary>
Gets the type of event that occurred.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SheetStyleModelEventHandler">
<summary>
Handles the Changed event in the style model of the sheet.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.ISheetStyleModel">
<summary>
Interface that supports creating a model that represents cell style information for a sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetStyleModel.IsEmpty">
<summary>
Determines whether no styles are set in the model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetStyleModel.GetCompositeInfo(System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.StyleInfo)">
<summary>
Gets the style information for a cell, column, row,
or model as a composite of settings.
</summary>
<param name="row">
Row index of the cell in the model, or -1 to specify an entire column or the model default
</param>
<param name="column">
Column index of the cell in the model, or -1 to specify an entire row or the model default
</param>
<param name="altIndex">
Alternating row index of the cell in the model, or -1 to skip composing any alternating style
</param>
<param name="destInfo">
Style set (StyleInfo object) to use for composing the styles;
if destInfo is null then a new StyleInfo is created and used
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetStyleModel.GetDirectInfo(System.Int32,System.Int32,FarPoint.Win.Spread.StyleInfo)">
<summary>
Gets the direct style for the specified cell, column, row,
or model default.
</summary>
<param name="row">
Row index of the cell in the model, or -1 to specify an entire column or the model default
</param>
<param name="column">
Column index of the cell in the model, or -1 to specify an entire row or the model default
</param>
<param name="destInfo">
Style set (StyleInfo object) to use for getting the style;
if destInfo is null then a new StyleInfo is created and used
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetStyleModel.GetDirectAltRowInfo(System.Int32,FarPoint.Win.Spread.StyleInfo)">
<summary>
Gets the specified alternating row style in the model.
</summary>
<param name="index">
Index of the alternating row style to get; must be between 0 and AltRowCount-1
</param>
<param name="destInfo">
Style set (StyleInfo object) to use for composing the styles;
if destInfo is null then a new StyleInfo should be created and used
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetStyleModel.SetDirectInfo(System.Int32,System.Int32,FarPoint.Win.Spread.StyleInfo)">
<summary>
Sets the direct style for the specified cell, column, row,
or model default.
</summary>
<param name="row">
Row index of the cell in the model, or -1 to specify an entire column or the model default
</param>
<param name="column">
Column index of the cell in the model, or -1 to specify an entire row or the model default
</param>
<param name="info">
Style set (StyleInfo object)
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetStyleModel.SetDirectAltRowInfo(System.Int32,FarPoint.Win.Spread.StyleInfo)">
<summary>
Sets the specified alternating row style in the model.
</summary>
<param name="index">
Index of the alternating row style to set; must be between 0 and AltRowCount-1
</param>
<param name="info">
Style set (StyleInfo object)
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.ISheetStyleModel.IsRowUsed(System.Int32)">
<summary>
Gets whether the row in the model contains style settings.
</summary>
<param name="row">Row index in the model</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.ISheetStyleModel.AltRowCount">
<summary>
Gets or sets the number of alternating row styles in the model.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Model.ISheetStyleModel.Changed">
<summary>
Occurs when the style model has changed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.INamedStyleSupport">
<summary>
Interface that supports collections of custom styles in the style model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.INamedStyleSupport.GetDirectName(System.Int32,System.Int32)">
<summary>
Gets the name of the direct style assigned to a cell, column,
row, or model default.
</summary>
<param name="row">
Row index of the cell in the model, or -1 to specify an entire column or the model default
</param>
<param name="column">
Column index of the cell in the model, or -1 to specify an entire row or the model default
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.INamedStyleSupport.SetDirectName(System.Int32,System.Int32,System.String)">
<summary>
Sets the direct style for the specified cell, column, row,
or model default to the specified style name.
</summary>
<param name="row">
Row index of the cell in the model, or -1 to specify a column or model default
</param>
<param name="column">
Column index of the cell in the model, or -1 to specify a row or model default
</param>
<param name="styleName">
Name of the style to set
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.INamedStyleSupport.GetDirectAltRowName(System.Int32)">
<summary>
Gets the style name for an alternating row style.
</summary>
<param name="index">
Index of the alternating row style to set; must be between 0 and AltRowCount-1
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.INamedStyleSupport.SetDirectAltRowName(System.Int32,System.String)">
<summary>
Sets the specified alternating row style in the model to the specified named style.
</summary>
<param name="index">
Index of the alternating row style to set; must be between 0 and AltRowCount-1
</param>
<param name="styleName">
Name of the style to set
</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.INamedStyleSupport.NamedStyles">
<summary>
Gets or sets the collection of styles used by the style model.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.IParentStyleModelSupport">
<summary>
Interface that supports a parent style model for composing styles.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.IParentStyleModelSupport.Parent">
<summary>
Gets or sets the parent style model.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.IParseFormatSupport">
<summary>
Interface that supports format strings and providers for the style model for the sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.IParseFormatSupport.GetParseFormat(System.Int32,System.Int32,System.String@,System.IFormatProvider@)">
<summary>
Gets the parse format for the cell at the specified row and column.
</summary>
<param name="row">Row index of specified cell</param>
<param name="column">Column index of specified cell</param>
<param name="formatString">Format string built by the parser</param>
<param name="info">IFormatProvider built by parser</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.IParseFormatSupport.SetParseFormat(System.Int32,System.Int32,System.String,System.IFormatProvider)">
<summary>
Sets the parse format for the cell at the specified row and column.
</summary>
<param name="row">Row index of specified cell</param>
<param name="column">Column index of specified cell</param>
<param name="formatString">Format string built by the parser</param>
<param name="info">IFormatProvider built by parser</param>
</member>
<member name="T:FarPoint.Win.Spread.Model.BaseSheetStyleModel">
<summary>
Represents the partial (abstract) implementation of the ISheetStyleModel interface
for a style model for a sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetStyleModel.IsEmpty">
<summary>
Determines whether the model has no style settings.
</summary>
This implementation always returns true.
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetStyleModel.GetCompositeInfo(System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.StyleInfo)">
<summary>
Gets the style information as a composite of settings
for the specified cell, column, row, or model default.
</summary>
This implementation does nothing and returns null.
<param name="row">
Row index of the cell in the model,
or -1 to specify an entire column or the model default
</param>
<param name="column">
Column index of the cell in the model,
or -1 to specify an entire row or the model default
</param>
<param name="altIndex">
Alternating row index of the cell,
or -1 to skip composing any alternating style
</param>
<param name="destInfo">
Destination StyleInfo object for composing the styles;
if null, then a new StyleInfo should be created and used
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetStyleModel.GetDirectInfo(System.Int32,System.Int32,FarPoint.Win.Spread.StyleInfo)">
<summary>
Gets the direct style information for the specified cell, column, row,
or model default.
</summary>
This implementation does nothing and returns null.
<param name="row">
Row index of the cell in the model,
or -1 to specify an entire column or the model default
</param>
<param name="column">
Column index of the cell in the model,
or -1 to specify an entire row or the model default
</param>
<param name="destInfo">
Destination StyleInfo object for getting the style;
if null, then a new StyleInfo should be created and used
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetStyleModel.GetDirectAltRowInfo(System.Int32,FarPoint.Win.Spread.StyleInfo)">
<summary>
Gets the style information for the specified alternating row in the model.
</summary>
This implementation does nothing and returns null.
<param name="index">
Index of the alternating row style to get;
must be between 0 and AltRowCount-1
</param>
<param name="destInfo">
Destination StyleInfo object for composing the styles;
if null, then a new StyleInfo should be created and used
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetStyleModel.SetDirectInfo(System.Int32,System.Int32,FarPoint.Win.Spread.StyleInfo)">
<summary>
Sets the direct style information for the specified cell, column, row,
or model default.
</summary>
This implementation does nothing.
<param name="row">
Row index of the cell in the model,
or -1 to specify an entire column or the model default
</param>
<param name="column">
Column index of the cell in the model,
or -1 to specify an entire row or the model default
</param>
<param name="info">Source StyleInfo object that has style information</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetStyleModel.SetDirectAltRowInfo(System.Int32,FarPoint.Win.Spread.StyleInfo)">
<summary>
Sets the specified alternating row style in the model.
</summary>
This implementation does nothing and returns null.
<param name="index">
Index of the alternating row style to set;
must be between 0 and AltRowCount-1
</param>
<param name="info">Source StyleInfo object that has style information</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetStyleModel.IsRowUsed(System.Int32)">
<summary>
Gets whether the row contains style settings.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetStyleModel.NextNonEmptyColumnInRow(System.Int32,System.Int32)">
<summary>
Gets the index of the next column in a specified row that contains style settings.
</summary>
<param name="row">Row index</param>
<param name="column">Column index before the column to start looking (-1 to start at column 0)</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetStyleModel.NextNonEmptyRow(System.Int32)">
<summary>
Gets the index of the next non-empty row after the specified row index.
</summary>
<param name="row">Row index after which to start looking (-1 to start at row 0)</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetStyleModel.FireChanged(System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.Model.SheetStyleModelEventType)">
<summary>
Creates a SheetStyleModelEventArgs with the specifies event
data and calls OnChanged to raise the Changed event.
</summary>
<param name="row">
Row index where the event occurred,
or -1 if all rows affected
</param>
<param name="column">
Column index where the event occurred,
or -1 if all columns affected
</param>
<param name="rowCount">
Number of rows, or -1 if all rows affected
</param>
<param name="columnCount">
Number of columns, or -1 if all columns affected
</param>
<param name="type">Type of event that occurred</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.BaseSheetStyleModel.OnChanged(FarPoint.Win.Spread.Model.SheetStyleModelEventArgs)">
<summary>
Raises the Changed event.
</summary>
<param name="e">
SheetStyleModelEventArgs object that contains the event data
</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.BaseSheetStyleModel.AltRowCount">
<summary>
Gets or sets the number of alternating row styles in the model.
</summary>
This implementation does nothing and always returns 0.
</member>
<member name="P:FarPoint.Win.Spread.Model.BaseSheetStyleModel.NonEmptyColumnCount">
<summary>
Gets the number of columns in the model that contain style settings.
</summary>
This implementation does nothing and always returns 0.
</member>
<member name="P:FarPoint.Win.Spread.Model.BaseSheetStyleModel.NonEmptyRowCount">
<summary>
Gets the number of rows in the model that contain style settings.
</summary>
This implementation does nothing and always returns 0.
</member>
<member name="E:FarPoint.Win.Spread.Model.BaseSheetStyleModel.Changed">
<summary>
Occurs when the user makes a change to the model
that affects the style of the sheet.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.DefaultSheetStyleModel">
<summary>
Represents the full (concrete) implementation of the ISheetSpanModel interface for a style model for a sheet,
which represents cell styles.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.#ctor">
<summary>
Creates a style model (DefaultSheetStyleModel object)
with 0 rows, 0 columns, no parent style model, and
a private named styles collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.#ctor(System.Int32,System.Int32)">
<summary>
Creates a style model (DefaultSheetStyle model object)
with the specified number of rows and columns.
</summary>
<param name="rowCount">
Number of rows in the model
</param>
<param name="columnCount">
Number of columns in the model
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.#ctor(System.Int32,System.Int32,FarPoint.Win.Spread.NamedStyleCollection)">
<summary>
Creates a style model (DefaultSheetStyle model object)
with the specified number of rows and columns
and named styles collection.
</summary>
<param name="rowCount">
Number of rows in the model
</param>
<param name="columnCount">
Number of columns in the model
</param>
<param name="namedStyles">
NamedStyleCollection collection for the style model
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.#ctor(System.Int32,System.Int32,FarPoint.Win.Spread.Model.ISheetStyleModel)">
<summary>
Creates a style model (DefaultSheetStyle model object)
with the specified parent style model and number of rows and columns.
</summary>
<param name="rowCount">
Number of rows in the model
</param>
<param name="columnCount">
Number of columns in the model
</param>
<param name="parent">
Parent style model
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.#ctor(System.Int32,System.Int32,FarPoint.Win.Spread.Model.ISheetStyleModel,FarPoint.Win.Spread.NamedStyleCollection)">
<summary>
Creates a style model (DefaultSheetStyle model object)
with the specified parent style model, named styles collection,
and number of rows and columns.
</summary>
<param name="rowCount">
Number of rows in the model
</param>
<param name="columnCount">
Number of columns in the model
</param>
<param name="parent">
Parent style model
</param>
<param name="namedStyles">
NamedStyleCollection collection for the style model
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new default sheet style model from deserialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contextual information about the source of the deserialization</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Gets information about the default sheet style model.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contextual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">
XmlTextWriter object to which to save the object
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">
XmlNodeReader from which to load the object
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.GetDirectName(System.Int32,System.Int32)">
<summary>
Gets the name of the direct style assigned to a cell, column,
row, or model default.
</summary>
<param name="row">
Model row index of the cell,
or -1 to specify a column or model default
</param>
<param name="column">
Model column index of the cell,
or -1 to specify a row or model default
</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified row index is not valid; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified column index is not valid; must be between -1 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.SetDirectName(System.Int32,System.Int32,System.String)">
<summary>
Sets the name of the direct style for the specified cell, column, row,
or model default to the specified style name.
</summary>
<param name="row">
Model row index of the cell,
or -1 to specify a column or model default
</param>
<param name="column">
Model column index of the cell,
or -1 to specify a row or model default
</param>
<param name="styleName">
Name of the style to set
</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified row index is not valid; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified column index is not valid; must be between -1 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.GetDirectAltRowName(System.Int32)">
<summary>
Gets the style name for an alternating row style.
</summary>
<param name="index">
Index of the alternating row style to set
</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified index is not valid; must be between 0 and the total number of styles
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.SetDirectAltRowName(System.Int32,System.String)">
<summary>
Sets the name of the specified alternating row style in the model to the
specified named style.
</summary>
<param name="index">
Index of the alternating row style to set
</param>
<param name="styleName">
Name of the style to set
</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified index is not valid; must be between 0 and the total number of styles
</exception>
<exception cref="T:System.ArgumentNullException">No style is specified or specified style is null</exception>
<exception cref="T:System.ArgumentException">No style is specified or specified style is empty</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.GetParseFormat(System.Int32,System.Int32,System.String@,System.IFormatProvider@)">
<summary>
Gets the parse format for the cell at the specified row and column.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<param name="formatString">Format string</param>
<param name="info">IFormatProvider to handle the formatting</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified row index is not valid; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified column index is not valid; must be between -1 and the total number of column
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.SetParseFormat(System.Int32,System.Int32,System.String,System.IFormatProvider)">
<summary>
Sets the parse format for the cell at the specified row and column.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<param name="formatString">Format string</param>
<param name="info">IFormatProvider to handle the formatting</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified row index is not valid; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified column index is not valid; must be between -1 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.IsEmpty">
<summary>
Determines whether the model is empty of data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.IsRowUsed(System.Int32)">
<summary>
Determines whether the row in the model contains style settings.
</summary>
<param name="row">Index of row in the model</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.NextNonEmptyColumnInRow(System.Int32,System.Int32)">
<summary>
Gets the index of the next column in a specified row in the model that contains style settings.
</summary>
<param name="row">Index of row in the model to search</param>
<param name="column">Index of column in the model before the column to start searching (-1 to start at column 0)</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.NextNonEmptyRow(System.Int32)">
<summary>
Gets the index of the next row that contains a style setting in the model.
</summary>
<param name="row">Row index to start searching after (-1 to start at row 0)</param>
<returns>Row index of next non-empty row</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.GetCompositeInfo(System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.StyleInfo)">
<summary>
Gets the composite style for the specified cell, column, row,
or model default.
</summary>
<param name="row">
Model row index of the cell,
or -1 to specify a column or model default
</param>
<param name="column">
Model column index of the cell,
or -1 to specify a row or model default
</param>
<param name="altIndex">
Alternating row index of the cell,
or -1 to skip composing any alternating style
</param>
<param name="destInfo">
Specifies a StyleInfo object to use for composing the styles
</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified row index is not valid; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified column index is not valid; must be between -1 and the total number of columns
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified index is not valid; must be between 0 and the total number of styles
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.GetDirectInfo(System.Int32,System.Int32,FarPoint.Win.Spread.StyleInfo)">
<summary>
Gets the direct style for the specified cell, column, row,
or model default.
</summary>
<param name="row">
Model row index of the cell,
or -1 to specify a column or model default
</param>
<param name="column">
Model column index of the cell,
or -1 to specify a row or model default
</param>
<param name="destInfo">
StyleInfo object to use for getting the style
</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified row index is not valid; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified column index is not valid; must be between -1 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.GetDirectAltRowInfo(System.Int32,FarPoint.Win.Spread.StyleInfo)">
<summary>
Gets the specified alternating row style in the model.
</summary>
<param name="index">
Index of the alternating row style to get
</param>
<param name="destInfo">
StyleInfo object to use for composing the styles
</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified style index is not valid; must be between 0 and the total number of styles
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.SetDirectInfo(System.Int32,System.Int32,FarPoint.Win.Spread.StyleInfo)">
<summary>
Sets the direct style for the specified cell, column, row,
or model default.
</summary>
<param name="row">
Model row index of the cell,
or -1 to specify a column or model default
</param>
<param name="column">
Model column index of the cell,
or -1 to specify a row or model default
</param>
<param name="info">
Style object set (StyleInfo or NamedStyle)
</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified row index is not valid; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.IndexOutOfRangeException">
Specified column index is not valid; must be between -1 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.SetDirectAltRowInfo(System.Int32,FarPoint.Win.Spread.StyleInfo)">
<summary>
Sets the specified alternating row style in the model.
</summary>
<param name="index">
Index of the alternating row style to set
</param>
<param name="info">
Style object set
</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified style index is not valid; must be between 0 and the total number of styles
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.FarPoint#Win#Spread#Model#IRangeSupport#AddRows(System.Int32,System.Int32)">
<summary>
This IRangeSupport method is used internally by Spread to
keep the row and column counts in sync between the models
and is not intended to be called directly from your code.
Use the IRangeSupport methods in the data model, or the
wrapper methods in the SheetView instead.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.FarPoint#Win#Spread#Model#IRangeSupport#AddColumns(System.Int32,System.Int32)">
<summary>
This IRangeSupport method is used internally by Spread to
keep the row and column counts in sync between the models
and is not intended to be called directly from your code.
Use the IRangeSupport methods in the data model, or the
wrapper methods in the SheetView instead.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.FarPoint#Win#Spread#Model#IRangeSupport#RemoveRows(System.Int32,System.Int32)">
<summary>
This IRangeSupport method is used internally by Spread to
keep the row and column counts in sync between the models
and is not intended to be called directly from your code.
Use the IRangeSupport methods in the data model, or the
wrapper methods in the SheetView instead.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.FarPoint#Win#Spread#Model#IRangeSupport#RemoveColumns(System.Int32,System.Int32)">
<summary>
This IRangeSupport method is used internally by Spread to
keep the row and column counts in sync between the models
and is not intended to be called directly from your code.
Use the IRangeSupport methods in the data model, or the
wrapper methods in the SheetView instead.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.Clear(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Removes all of the direct styles from the specified range.
</summary>
<param name="row">
Starting model row index to clear
</param>
<param name="column">
Starting model column index to clear
</param>
<param name="rowCount">
Number of rows to clear
</param>
<param name="columnCount">
Number of columns to clear
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.Copy(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Copies the direct styles from one specified range of cells to another.
</summary>
<param name="fromRow">
Row index of cell from which to begin copying
</param>
<param name="fromColumn">
Column index of cell from which to begin copying
</param>
<param name="toRow">
Row index at which to paste cell style
</param>
<param name="toColumn">
Column index at which to paste cell style
</param>
<param name="rowCount">
Number of rows to copy
</param>
<param name="columnCount">
Number of columns to copy
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.Move(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Moves the specified range of direct styles
from one location to another.
</summary>
<param name="fromRow">
Row index from which to begin the move
</param>
<param name="fromColumn">
Column index from which to begin the move
</param>
<param name="toRow">
Row index at which to paste cell style
</param>
<param name="toColumn">
Column index at which to paste cell style
</param>
<param name="rowCount">
Number of rows to move
</param>
<param name="columnCount">
Number of columns to move
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.Swap(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Swaps the direct styles in the specified range with the
direct styles from another specified range.
</summary>
<param name="fromRow">
Row index of first cell from which to begin swap
</param>
<param name="fromColumn">
Column index of first cell from which to begin swap
</param>
<param name="toRow">
Row index of first cell of destination of the swap
</param>
<param name="toColumn">
Column index of first cell of destination of the swap
</param>
<param name="rowCount">
Number of rows to swap
</param>
<param name="columnCount">
Number of columns to swap
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.SetFormulaConditionalFormat(System.Int32,System.Int32,FarPoint.Win.Spread.NamedStyle,System.String)">
<summary>
Sets a formula conditional format for a cell in the model.
</summary>
<param name="row">Row index of the cell in the model</param>
<param name="column">Column index of the cell in the model</param>
<param name="style">Style to be applied to the cell if the formula evaluates to true</param>
<param name="formula">Formula to evaluate for the condition</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.SetConditionalFormat(System.Int32,System.Int32,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.ComparisonOperator,System.String)">
<summary>
Sets a conditional format for a cell in the model with the specified value.
</summary>
<param name="row">Row index of the cell in the model</param>
<param name="column">Column index of the cell in the model</param>
<param name="style">Style to be applied to the cell if the condition is satisfied</param>
<param name="op">Comparison operator to apply to the cell value and the specified value</param>
<param name="value">String with the specified value</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.SetConditionalFormat(System.Int32,System.Int32,FarPoint.Win.Spread.ConditionalFormat)">
<summary>
SetConditionalFormat - internal use!
</summary>
<param name="row"></param>
<param name="column"></param>
<param name="cf"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.SetConditionalFormat(System.Int32,System.Int32,FarPoint.Win.Spread.ConditionalFormat[])">
<summary>
Sets conditional format(s) for the cell at the specified row and column.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
<param name="conditionalFormats">Conditional format(s)</param>
<returns>Does the conditional formate set.</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.GetConditionalFormats">
<summary>
Return all conditional formats.
</summary>
<returns>return all conditional formats</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.SetConditionalFormat(System.Int32,System.Int32,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.ComparisonOperator,System.String,System.String)">
<summary>
Sets a conditional format for a cell in the model with the specified values.
</summary>
<param name="row">Row index of the cell in the model</param>
<param name="column">Column index of the cell in the model</param>
<param name="style">Style to be applied to the cell if the condition is satisfied</param>
<param name="op">Comparison operator to apply to the cell value and the parameter values</param>
<param name="firstCondition">First specified value</param>
<param name="lastCondition">Last specified value</param>
<exception cref="T:System.ArgumentNullException">No condition is specified or specified condition is empty</exception>
<exception cref="T:System.ArgumentException">Specified condition is not valid; must be a string</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.SetConditionalFormat(System.Int32,System.Int32,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.ComparisonOperator,FarPoint.CalcEngine.Expression,FarPoint.CalcEngine.Expression)">
<summary>
Sets a conditional format for a cell in the model with the specified expressions.
</summary>
<param name="row">Row index of the cell in the model</param>
<param name="column">Column index of the cell in the model</param>
<param name="style">Style to be applied to the cell if the condition is satisfied</param>
<param name="op">Comparison operator to apply to the cell value and the specified value</param>
<param name="firstCondition">First specified expression</param>
<param name="lastCondition">Last specified expression</param>
<exception cref="T:System.ArgumentNullException">
No condition is specified or specified condition is empty
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.GetConditionalFormats(System.Int32,System.Int32)">
<summary>
Gets the conditional formats for the cell at the specified row and column in the model.
</summary>
<param name="row">Row index of the cell in the model</param>
<param name="column">Column index of the cell in the model</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.GetConditionalFormats(System.Int32@,System.Int32@,System.Boolean)">
<summary>
Gets the conditional formats for the cells starting at the specified row and column in the model.
</summary>
<param name="row">Row index of the first cell</param>
<param name="column">Column index of the first cell</param>
<param name="findNext">Whether to continue to find cells with conditional formats</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.GetCellConditionalFormats(System.Int32@,System.Int32@,System.Boolean)">
<summary>
Gets the conditional formats for the cells starting at the specified row and column in the model.
</summary>
<param name="row">Row index of the first cell</param>
<param name="column">Column index of the first cell</param>
<param name="findNext">Whether to continue to find cells with conditional formats</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.GetRowConditionalFormats(System.Int32@,System.Boolean)">
<summary>
Gets the conditional formats for the rows starting at the specified row in the model.
</summary>
<param name="row">Row index of the first cell</param>
<param name="findNext">Whether to continue to find cells with conditional formats</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.GetColumnConditionalFormats(System.Int32@,System.Boolean)">
<summary>
Gets the conditional formats for the columns starting at the specified column in the model.
</summary>
<param name="column">Column index of the first cell</param>
<param name="findNext">Whether to continue to find cells with conditional formats</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.ClearConditionalFormats(System.Int32,System.Int32)">
<summary>
Removes all of the conditional formats from the cell at the specified row and column in the model.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.GetValidConditionalFormat(System.Int32,System.Int32,System.Object,FarPoint.Win.Spread.Model.ISheetDataModel)">
<summary>
Returns the style information for the first valid condition for the cell at the specified row and column in the model.
</summary>
<param name="row">Row index of the cell in the model</param>
<param name="column">Column index of the cell in the model</param>
<param name="value">Object containing the cell value</param>
<param name="dm">ISheetDataModel object containing the sheet data model</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.ConditionalFormatIsRowUsed(System.Int32)">
<summary>
Gets whether the row in the model contains style settings.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.ConditionalFormatNextNonEmptyColumnInRow(System.Int32,System.Int32)">
<summary>
Returns the index of the next non-empty column in a row in the model.
</summary>
<param name="row">Row index to search</param>
<param name="column">Column index before the column to start searching (-1 to start at column 0)</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.ConditionalFormatInvalidateCell(System.Int32,System.Int32)">
<summary>
Invalidates the cell at the specified row and column for conditional formatting.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.ConditionalFormatInvalidateRow(System.Int32)">
<summary>
Invalidates the specified row for conditional formatting.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.ConditionalFormatInvalidateColumn(System.Int32)">
<summary>
Invalidates the specified column for conditional formatting.
</summary>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.SetFilteredRowFormat(System.Int32,FarPoint.Win.Spread.StyleInfo)">
<summary>
Sets the format for the filtered row in the model.
</summary>
<param name="row">Index of the row in the model</param>
<param name="style">Style information that defines the format</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.ClearFilterRowFormats">
<summary>
Removes all of the formats for the filtered row in the model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.GetArray(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets an object array from a specified range of cells in the model.
</summary>
<param name="row">Index of the starting row in the model</param>
<param name="column">Index of the starting column in the model</param>
<param name="rowCount">Number of rows in the model to copy</param>
<param name="columnCount">Number of columns in the model to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.SetArray(System.Int32,System.Int32,System.Object[0:,0:])">
<summary>
Sets an object array into a specified range of cells in the model.
</summary>
<param name="row">Row index of the start of the range of cells</param>
<param name="column">Column index of the start of the range of cells</param>
<param name="value">Two-dimensional object array[row,column] containing the values</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.AddStyle(System.Object,System.Int32,System.Int32)">
<summary>
Adds a new style to the model for the specified StyleInfo,
or adds a reference to an existing style.
</summary>
<param name="o">
StyleInfo, NamedStyle, or style name to add.
</param>
<param name="row">
Specifies the row reference, or the alternating row
style index if column is -2.
</param>
<param name="column">
Specifies the column reference or -2 for an
alternating row style.
</param>
<returns>
Returns the NamedStyle object in the array that was referenced.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.GetStyle(System.Int32,System.Int32)">
<summary>
Gets a NamedStyle object from the sparse array/matrix.
</summary>
<param name="row">
Specifies the row index, or -1 for a column or model default,
or the alternating row index if column is -2.
</param>
<param name="column">
Specifies the column index, or -1 for a row or model default,
or -2 for an alternating row.
</param>
<returns>
Returns the named style object set for the specified cell,
column, row, or model default, or null if no style is set.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.SetStyle(System.Int32,System.Int32,System.Object)">
<summary>
Sets a NamedStyle into the appropriate SparseArray/SparseMatrix.
</summary>
<param name="row">
Specifies the row index, or -1 for a column or model default,
or the alternating row index if column is -2.
</param>
<param name="column">
Specifies the column index, or -1 for a row or model default,
or -2 for an alternating row.
</param>
<param name="style">
Specifies the NamedStyle or style name.
</param>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.CanSerializeXml">
<summary>
Gets whether the object in its entirety can be rendered with XML
without losing any information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.AltRowCount">
<summary>
Gets or sets the number of alternating rows in the style model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.ColumnCount">
<summary>
Gets the number of columns in the style model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.RowCount">
<summary>
Gets the number of rows in the style model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.Parent">
<summary>
Gets or sets the parent style model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.NamedStyles">
<summary>
Gets or sets the named styles collection for the model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.NonEmptyColumnCount">
<summary>
Gets the number of columns in the model that contain style settings.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.DefaultSheetStyleModel.NonEmptyRowCount">
<summary>
Gets the number of rows in the model that contain style settings.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SortInfo">
<summary>
Represents the information related to sorting columns,
rows, or a range of cells.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SortInfo.#ctor(System.Int32,System.Boolean)">
<summary>
Creates a SortInfo object with the order specified and the comparison done
using the system default comparer.
</summary>
<param name="index">Index of the column or row on which to sort</param>
<param name="ascending">Whether sort order is ascending</param>
</member>
<member name="M:FarPoint.Win.Spread.SortInfo.#ctor(System.Int32,System.Boolean,System.Collections.IComparer)">
<summary>
Creates a SortInfo object with the order specified and the comparison done
according to the specified comparer.
</summary>
<param name="index">Index of the column or row on which to sort</param>
<param name="ascending">Whether sort order is ascending</param>
<param name="comparer">IComparer object for method of comparison</param>
</member>
<member name="P:FarPoint.Win.Spread.SortInfo.Index">
<summary>
Gets or sets the index of the column or row on which to sort.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SortInfo.Ascending">
<summary>
Gets or sets whether the sort order is ascending.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SortInfo.Comparer">
<summary>
Gets or sets the IComparer object for method of comparison.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SortImp">
<summary>
Implements sorting.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SortImp.QuickSort(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,FarPoint.Win.Spread.SortInfo[])">
<summary>
Performs a quick sort on the specified range and returns an array of new
model row or column indexes for the range.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SortImp.RangeContainsSpans(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Determines whether the specified range contains cell spans.
Returns true if the specified range contains cell spans.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSortComparer._SortCompare(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Performs the comparison of rows or columns using the specified order and comparer,
or using the default comparer if one was not specified.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SparseArray">
<summary>
Summary description for SparseArray.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.#ctor">
<summary>
Constructs a SparseArray object with 0 Length.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.#ctor(System.Int32)">
<summary>
Constructs a SparseArray object with the specified length.
</summary>
<param name="length">
Specifies the bounds of the SparseArray. If length > 0, then length - 1
is the maximum index allowed; if length = 0 then no index is legal.
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.#ctor(System.Int32,System.Boolean)">
<summary>
Constructor for backwards compatibility with old SparseArray
</summary>
<param name="length"></param>
<param name="dummy"></param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.#ctor(System.Int32,System.Array)">
<summary>
Constructs a SparseArray object with the specified length.
</summary>
<param name="length">
Specifies the bounds of the SparseArray. If length > 0, then nLength - 1
is the maximum index allowed; if length = 0 then no index is legal.
</param>
<param name="data">Specifies the initial data for the SparseArray.</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Loads the state of the SparseArray from the SerializationInfo.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Saves the state of the SparseArray to the SerializationInfo.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.ResizeArray(System.Int32)">
<summary>
Reallocates the unpacked array to accomodate the specified number of elements.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.ResizePacked(System.Int32)">
<summary>
Reallocates the packed array to accomodate the specified number of elements.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.BinaryInsertEx(System.Int32)">
<summary>
Performs the binary search part of the binary insert.
</summary>
<param name="index">
Specifies the external array index to search for.
</param>
<returns>
Returns the internal array index of the element with the specified
external array index if it exists, or the internal array index of
the insertion point for a new item with the specified external array
index.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.BinaryInsert(System.Int32,System.Object)">
<summary>
Inserts an item into the sorted array using a binary insert.
</summary>
<param name="index">
Specifies the external index of the item being added or changed.
</param>
<param name="o">
o specifies the new data value for the element.
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.BinarySearch(System.Int32)">
<summary>
Performs a binary search for an Element in the array.
</summary>
<param name="index">
Specifies the external index of the item to find.
</param>
<returns>
Returns the internal index of the item found, or -1 is the item was
not found.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.Clear">
<summary>
Clears all items from the SparseArray.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.Clear(System.Int32,System.Int32)">
<summary>
Clears the specified range of items from the SparseArray.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.Copy(FarPoint.Win.Spread.Model.SparseArray,FarPoint.Win.Spread.Model.SparseArray,System.Int32,System.Boolean)">
<summary>
Copies the contents of a SparseArray to another SparseArray.
</summary>
<param name="src">
Specifies the source SparseArray.
</param>
<param name="dest">
Specifies the destination SparseArray.
</param>
<param name="count">
Specifies the number of elements to copy from the source to the destination.
</param>
<param name="cloneElements">
Specifies whether to clone the elements while copying (if the elements support IClonable)
or copy the references or values.
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.Copy(FarPoint.Win.Spread.Model.SparseArray,System.Int32,FarPoint.Win.Spread.Model.SparseArray,System.Int32,System.Int32,System.Boolean)">
<summary>
Copies a range of elements from a SparseArray to another SparseArray.
</summary>
<param name="src">
Specifies the source SparseArray.
</param>
<param name="srcIndex">
Specifies the starting index in src where copying begins.
</param>
<param name="dest">
Specifies the destination SparseArray.
</param>
<param name="destIndex">
Specifies the starting index in dest where items are copied to.
</param>
<param name="count">
Specifies the number of items to copy.
</param>
<param name="cloneElements">
Specifies whether to clone the elements while copying (if the elements support IClonable)
or copy the references or values.
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.Move(FarPoint.Win.Spread.Model.SparseArray,FarPoint.Win.Spread.Model.SparseArray,System.Int32)">
<summary>
Moves the contents of a SparseArray to another SparseArray.
</summary>
<param name="src">
Specifies the source SparseArray.
</param>
<param name="dest">
Specifies the destination SparseArray.
</param>
<param name="count">
Specifies the number of elements to move from the source to the destination.
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.Move(FarPoint.Win.Spread.Model.SparseArray,System.Int32,FarPoint.Win.Spread.Model.SparseArray,System.Int32,System.Int32)">
<summary>
Moves a range of elements from a SparseArray to another SparseArray.
</summary>
<param name="src">
Specifies the source SparseArray.
</param>
<param name="srcIndex">
Specifies the starting index in src where moving begins.
</param>
<param name="dest">
Specifies the destination SparseArray.
</param>
<param name="destIndex">
Specifies the starting index in dest where items are moved to.
</param>
<param name="count">
Specifies the number of items to move.
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.Swap(FarPoint.Win.Spread.Model.SparseArray,FarPoint.Win.Spread.Model.SparseArray,System.Int32)">
<summary>
Swaps the contents of two SparseArrays.
</summary>
<param name="src">
Specifies the source SparseArray.
</param>
<param name="dest">
Specifies the destination SparseArray.
</param>
<param name="count">
Specifies the number of items to swap.
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.Swap(FarPoint.Win.Spread.Model.SparseArray,System.Int32,FarPoint.Win.Spread.Model.SparseArray,System.Int32,System.Int32)">
<summary>
Swaps a range of elements in two SparseArrays.
</summary>
<param name="src">
Specifies the source SparseArray.
</param>
<param name="srcIndex">
Specifies the starting index in src where swapping begins.
</param>
<param name="dest">
Specifies the destination SparseArray.
</param>
<param name="destIndex">
Specifies the starting index in dest where swapping begins.
</param>
<param name="count">
Specifies the number of elements to swap.
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.InternalCopy(FarPoint.Win.Spread.Model.SparseArray,System.Int32,FarPoint.Win.Spread.Model.SparseArray,System.Int32,System.Int32,System.Boolean)">
<summary>
Copies a range of elements from a SparseArray to another SparseArray.
</summary>
<param name="src">
Specifies the source SparseArray.
</param>
<param name="srcIndex">
Specifies the starting index in src where copying begins.
</param>
<param name="dest">
Specifies the destination SparseArray.
</param>
<param name="destIndex">
Specifies the starting index in dest where items are copies to.
</param>
<param name="count">
Specifies the number of items to copy.
</param>
<param name="cloneElements">
Specifies whether to clone the elements while copying (if the elements support IClonable)
or copy the references or values.
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.InsertRange(System.Int32,System.Int32)">
<summary>
Inserts the specified number of new null items into the SparseArray at the specified index.
</summary>
<param name="index">
Specifies the insertion point, and must be greater than or equal to 0
and less than or equal to Length, or an IndexOutOfRangeException is thrown.
</param>
<param name="count">
Specifies the number of null items to insert, and must be greater than 0,
or an ArgumentOutOfRangeException is thrown.
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.InternalInsertRange(System.Int32,System.Int32)">
<summary>
Inserts the specified number of new null items into the SparseArray at the specified index.
</summary>
<param name="index">
Specifies the insertion point.
</param>
<param name="count">
Specifies the number of null items to insert.
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.RemoveRange(System.Int32,System.Int32)">
<summary>
Removes a range of items from the SparseArray.
</summary>
<param name="index">
Specifies the index of the first item to remove, and must be greater than
or equal to 0 and less than Length, or an IndexOutOfRangeException is thrown.
</param>
<param name="count">
Specifies the number of null items to remove, and must be greater than 0 and
less than Length - index, or an ArgumentOutOfRangeException is thrown.
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.InternalRemoveRange(System.Int32,System.Int32)">
<summary>
Removes a range of items from the SparseArray.
</summary>
<param name="index">
Specifies the index of the first item to remove, and must be greater than
or equal to 0 and less than Length, or an IndexOutOfRangeException is thrown.
</param>
<param name="count">
Specifies the number of null items to remove, and must be greater than 0 and
less than Length - nIndex, or an ArgumentOutOfRangeException is thrown.
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.GetEnumerator">
<summary>
Gets an enumerator that can iterate through the elements
in the SparseArray.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.GetNonNullEnumerator">
<summary>
Gets an enumerator that can iterate through the non-null
elements in the SparseArray.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.NextNonNull(System.Int32@)">
<summary>
Searches for the next non-null element in the SparseArray after the specified index.
</summary>
<param name="index">
Specifies the starting point for searching for the next non-null element (nIndex + 1)
and also returns the index of the next non-null element found, or -1 if no non-null
element was found.
</param>
<returns>
Returns the next non-null element in the SparseArray after the specified index.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.NextNonNullIndex(System.Int32@)">
<summary>
Searches for the next non-null element in the SparseArray after the specified index.
</summary>
<param name="index">
Specifies the starting point for searching for the next non-null element (nIndex + 1)
and also returns the index of the next non-null element found, or -1 if no non-null
element was found.
</param>
<returns>
Returns the next non-null index in the SparseArray after the specified index.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.NextNullIndex(System.Int32@)">
<summary>
Searches for the next null element in the SparseArray after the specified index.
</summary>
<param name="index">
Specifies the starting point for searching for the next non-null element (nIndex + 1)
and also returns the index of the next non-null element found, or -1 if no non-null
element was found.
</param>
<returns>
Returns the next null index in the SparseArray after the specified index.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.FirstNonEmptyIndex(System.Int32)">
<summary>
Returns the index of the first non-empty element.
</summary>
<param name="index">Index to start searching</param>
<returns>Index of the first non-empty element</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.NextNonEmptyIndex(System.Int32)">
<summary>
Returns the index of the next non-empty element.
</summary>
<param name="index">Index to start searching</param>
<returns>Index of the next non-empty element</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.Contains(System.Object)">
<summary>
Searches the SparseArray for the specified value and returns its index.
</summary>
<param name="value">
Value to search for.
</param>
<returns>
Index of the first occurance of the specified value,
or -1 if the value was not found.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.op_Implicit(System.Object[])~FarPoint.Win.Spread.Model.SparseArray">
<summary>
Converts an array into a new SparseArray object.
</summary>
<param name="array">
Array to convert.
</param>
<returns>
SparseArray object containing the same elements
as the array.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.op_Implicit(FarPoint.Win.Spread.Model.SparseArray)~System.Object[]">
<summary>
Converts a SparseArray object into an array of objects.
</summary>
<param name="array">
SparseArray to convert.
</param>
<returns>
Array containing the same elements as the SparseArray.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.OnDeserialized(System.EventArgs)">
<summary>
Fires the Deserialized event.
</summary>
<param name="e"></param>
</member>
<member name="P:FarPoint.Win.Spread.Model.SparseArray.IsEmpty">
<summary>
Returns a valud indicating whether the SparseArray is empty.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SparseArray.Item(System.Int32)">
<summary>
Sets or returns an object from the SparseArray at the specified index.
The specified index must be greater than or equal to 0 and less than the
current value of the Length property, or an IndexOutOfRangeException is thrown.
</summary>
<value>
Element in the SparseArray at the specified index.
</value>
</member>
<member name="P:FarPoint.Win.Spread.Model.SparseArray.Length">
<summary>
Returns or sets the bounds of the SparseArray. Items in the SparseArray
can be indexes between 0 and Length - 1, if Length > 0.
If the specified Length is greater than the MaxCapacity property, an
ArgumentOutOfRangeException is thrown.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SparseArray.DataLength">
<summary>
Returns the length of the non-null data currently in the SparseArray, which is
one higher than the external index of the last element, or 0 if mnelements == 0.
This is used by SparseMatrix.DataRows.
</summary>
<see cref="P:FarPoint.Win.Spread.Model.SparseMatrix.DataRows"/>
</member>
<member name="P:FarPoint.Win.Spread.Model.SparseArray.MaxCapacity">
<summary>
Returns the maximum length supported by the SparseArray.
This is the largest possible value for the Length property.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Model.SparseArray.Deserialized">
<summary>
Event that fires on completion of deserialization.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SparseArray.ElementCount">
<summary>
Returns the number of elements in the SparseArray.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SparseArray.Element">
<summary>
Element in mpacked array.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SparseArray.SparseArrayEnumerator">
<summary>
Implements IEnumerator for all of the various types of enumerators
(default, NonNull, NonNullIndexes, NonNullRange, and NonNullRangeIndexes).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.SparseArrayEnumerator.#ctor(FarPoint.Win.Spread.Model.SparseArray,System.Boolean,System.Boolean,System.Int32,System.Int32)">
<summary>
Constructs a SparseArrayEnumerator for the specified array.
</summary>
<param name="array">
array specifies the SparseArray to enumerate.
</param>
<param name="includeNull">
Specifies whether to include null values in the enumeration.
</param>
<param name="returnIndex">
Specifies whether to return the external array index or data.
This parameter is ignored if includeNull == true.
</param>
<param name="start">
Specifies the starting external array index for the enumeration.
</param>
<param name="end">
Specifies the ending external array index for the enumeratotion.
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.SparseArrayEnumerator.MoveNext">
<summary>
Advances the enumerator to the next element in the SparseArray.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseArray.SparseArrayEnumerator.Reset">
<summary>
Resets the enumerator to its initial position, which is
before the first element to be enumerated in the SparseArray.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SparseArray.SparseArrayEnumerator.Current">
<summary>
Gets the current element in the enumerator.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SparseMatrix">
<summary>
Sparse matrix of objects.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.#ctor">
<summary>
Constructs a new SparseMatrix.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.#ctor(System.Int32,System.Int32)">
<summary>
Constructs a new SparseMatrix with the specified size.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.#ctor(System.Int32,System.Int32,System.Object[0:,0:])">
<summary>
Constructs a new SparseMatrix with the specified size.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new SparseMatrix object form serialization.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.OnDeserialized(System.EventArgs)">
<summary>
Fires the Deserialized event.
</summary>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Saves the SparseMatrix to the SerializationInfo.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.GetColUsed(System.Int32)">
<summary>
Returns the count of used data items in the specified column.
</summary>
<param name="col">
Column index (external)
</param>
<returns>
Number of used data items in the specified column
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.SetColUsed(System.Int32,System.Int32)">
<summary>
Sets the count of used data items in the specified column.
</summary>
<param name="col">
Column index (external)
</param>
<param name="used">
New count of used data items in the column
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.IncrementColUsed(System.Int32)">
<summary>
Increments the count of data items in the specified column.
</summary>
<param name="col">
Column index (external)
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.DecrementColUsed(System.Int32)">
<summary>
Decrements the count of data items in the specified column.
</summary>
<param name="col">
Column index (external)
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.GetRowUsed(System.Int32)">
<summary>
Returns the count of used data items in the specified row.
</summary>
<param name="row">
Row specified
</param>
<returns>
Count of used data items in the specified row
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.GetRowUsed(FarPoint.Win.Spread.Model.SparseArray)">
<summary>
Returns the count of used data items in the specified row.
</summary>
<param name="row">
Row specified
</param>
<returns>
Count of used data items in the specified row
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.SetRowUsed(System.Int32,System.Int32)">
<summary>
Sets the count of used data items in the specified row.
</summary>
<param name="row">
Row specified
</param>
<param name="used">
New count of used data items.
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.SetRowUsed(FarPoint.Win.Spread.Model.SparseArray,System.Int32)">
<summary>
Sets the count of used data items in the specified row.
</summary>
<param name="row">
Row specified
</param>
<param name="used">
New count of used data items
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.DecrementRowUsed(FarPoint.Win.Spread.Model.SparseArray)">
<summary>
Decrements the count of used data items in the specified row.
</summary>
<param name="row">
Row specified
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.AdjustDataCounts">
<summary>
Adjusts the counts of used values in columns and rows.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.Clear">
<summary>
Clears all data in the SparseMatrix.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.ClearRow(System.Int32)">
<summary>
Clears all data in the specified row in the SparseMatrix.
</summary>
<param name="row">
Specifies the index of the row to clear; must be greater than or
equal to 0 and less than Rows, or an IndexOutOfRangeException is thrown
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.ClearColumn(System.Int32)">
<summary>
Clears all data in the specified column in the SparseMatrix.
</summary>
<param name="column">
Specifies the index of the column to clear; must be greater than or
equal to 0 and less than Rows, or an IndexOutOfRangeException is thrown
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.ClearRange(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Clears the specified range in the SparseMatrix.
</summary>
<param name="row1">
Starting row index
</param>
<param name="column1">
Starting column index
</param>
<param name="row2">
Ending row index
</param>
<param name="column2">
Ending column index
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.InternalClearRange(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Clears the specified range in the SparseMatrix.
</summary>
<param name="row1">
Starting row index
</param>
<param name="column1">
Starting column index
</param>
<param name="row2">
Ending row index
</param>
<param name="column2">
Ending column index
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.CopyRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
Copies the contents of a range to another location in the SparseMatrix.
</summary>
<param name="row1">
Starting row index for the range to be copied
</param>
<param name="column1">
Starting column index for the range to be copied
</param>
<param name="row2">
Ending row index for the range to be copied
</param>
<param name="column2">
Ending column index for the range to be copied
</param>
<param name="destRow">
Starting row index for the destination range
</param>
<param name="destColumn">
Starting column index for the destination range
</param>
<param name="cloneElements">
Specifies whether to clone the elements while copying (if the elements support IClonable)
or copy the references or values
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.MoveRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Moves the contents of a range to another location in the SparseMatrix.
</summary>
<param name="row1">
Starting row index for the range to be moved
</param>
<param name="column1">
Starting column index for the range to be moved
</param>
<param name="row2">
Ending row index for the range to be moved
</param>
<param name="column2">
Ending column index for the range to be moved
</param>
<param name="destRow">
Starting row index for the destination range
</param>
<param name="destColumn">
Starting column index for the destination range
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.SwapRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
</summary>
<param name="row1"></param>
<param name="column1"></param>
<param name="row2"></param>
<param name="column2"></param>
<param name="destRow"></param>
<param name="destColumn"></param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.InsertRows(System.Int32,System.Int32)">
<summary>
Inserts the specified number of new empty rows before the specified row index.
</summary>
<param name="row">
Row index of the insertion point in the SparseMatrix for the new rows;
must be greater than or equal to 0 and less than or equal to Rows, or
an IndexOutOfRangeException is thrown
</param>
<param name="count">
Number of new rows to insert;
must be greater than 0, or an ArgumentOutOfRangeException is thrown
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.InsertColumns(System.Int32,System.Int32)">
<summary>
Inserts the specified number of new empty columns before the specified column index.
</summary>
<param name="column">
Column index of the insertion point in the SparseMatrix for the new columns;
must be greater than or equal to 0 and less than or equal to Columns, or
an IndexOutOfRangeException is thrown
</param>
<param name="count">
Number of new columns to insert;
must be greater than 0, or an ArgumentOutOfRangeException is thrown
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.RemoveRows(System.Int32,System.Int32)">
<summary>
Removes the specified number of rows starting at the specified row index.
</summary>
<param name="row">
Specifies row index of the first row to remove.
Must be greater than or equal to 0 and less Rows - nCount, or
an IndexOutOfRangeException is thrown.
</param>
<param name="count">
Specifies the number of rows to remove.
Must be greater than 0, or an ArgumentOutOfRangeException is thrown.
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.RemoveColumns(System.Int32,System.Int32)">
<summary>
Removes the specified number of columns starting at the specified column index.
</summary>
<param name="column">
Column index of the first column to remove;
must be greater than or equal to 0 and less than Columns, or
an IndexOutOfRangeException is thrown
</param>
<param name="count">
Number of columns to remove;
must be greater than 0 and less than Columns - nColumn,
or an ArgumentOutOfRangeException is thrown
</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.Transpose">
<summary>
Transposes the contents of the SparseMatrix (reversing the row and column coordinates
of each element, and the number of columns and rows in the matrix).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.IsRowEmpty(System.Int32)">
<summary>
Returns a value indicating whether or not the specified row contains any values.
</summary>
<param name="row">
Specifies the row index
</param>
<returns>
True if the row contains no values; false otherwise
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.FirstNonEmptyRow(System.Int32)">
<summary>
Returns the index of the first non-empty row.
</summary>
<param name="row">Row index to start searching (-1 to start at row 0)</param>
<returns>Row index for the first row containing a value, or -1 if no rows contain a value</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.NextNonEmptyRow(System.Int32)">
<summary>
Returns the index of the next non-empty row.
</summary>
<param name="row">Row index before the row to start searching (-1 to start at row 0)</param>
<returns>Row index for the next row containing a value, or -1 if no rows contain a value</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.FirstNonEmptyColumnInRow(System.Int32,System.Int32)">
<summary>
Returns the index of the first non-empty column in the row.
</summary>
<param name="row">Index of row to search</param>
<param name="column">Index of column to start search</param>
<returns>Index of column for the first cell in the row containing a value, or -1 if no columns contain a value</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.NextNonEmptyColumnInRow(System.Int32,System.Int32)">
<summary>
Returns the next non-empty column index in a row.
</summary>
<param name="row">
Row index to search
</param>
<param name="column">
Column index before the column to start searching (-1 to start at column 0)
</param>
<returns>
Column index for the next cell in the row containing a value, or -1 if no columns contain a value
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.op_Implicit(System.Object[0:,0:])~FarPoint.Win.Spread.Model.SparseMatrix">
<summary>
Converts a two-dimensional array (indexed [row,column]) into a SparseMatrix object.
</summary>
<param name="array">
Two-dimensional array (indexes by [row, column])
</param>
<returns>
SparseMatrix object containing the same number of rows and columns and
the elements in the array
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SparseMatrix.op_Implicit(FarPoint.Win.Spread.Model.SparseMatrix)~System.Object[0:,0:]">
<summary>
Converts a SparseMatrix object into a two-dimensional array (indexed [row,column]).
</summary>
<param name="matrix">
SparseMatrix to convert.
</param>
<returns>
Two-dimensional array containing the same number of rows and columns and
the elements in the SparseMatrix
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Model.SparseMatrix.MaxCapacity">
<summary>
Returns the maximum count for rows and columns supported by the SparseMatrix.
This is the largest possible value for the Rows and Columns property.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Model.SparseMatrix.Deserialized">
<summary>
Event that fires on completion of deserialization.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SparseMatrix.Item(System.Int32,System.Int32)">
<summary>
Sets or returns a data item for the specified cell in the SparseMatrix.
nRow must be greater than or equal to 0 and less than Rows, and
nColumn must be greater than or equal to 0 and less than Columns, or
an IndexOutOfRangeException is thrown.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SparseMatrix.Rows">
<summary>
Gets or gets the number of rows in the SparseMatrix.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SparseMatrix.Columns">
<summary>
Sets or returns the number of columns in the SparseMatrix.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SparseMatrix.DataRows">
<summary>
Returns the number of rows in the SparseMatrix containing non-null values.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SparseMatrix.DataColumns">
<summary>
Returns the number of columns in the SparseMatrix containing non-null values.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.SparseMatrix.ElementCount">
<summary>
Returns the number of elements in the SparseMatrix.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SpreadChartExtension">
<summary>
This class contains the most common logic and policies for SpreadChart.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.GetCursorFromHitTest(FarPoint.Win.Spread.NativeMethods.NCHITTEST)">
<summary>
Gets the cursor from hit test.
</summary>
<param name="result">The result.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.GetSwapRowColumnStatus(FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Gets the swap row column status.
</summary>
<param name="chart">The chart.</param>
<returns>true if the chart is switched row and column. Otherwise, false.</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CloneChartModel(FarPoint.Win.Chart.ChartModel,FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Clones the chart model and keep reference to Series' DataSource.
</summary>
<param name="sourceModel">The source model.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CloneDeeplyChartModel(FarPoint.Win.Chart.ChartModel,FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Clones the chart model and keep reference to Series' DataSource.
</summary>
<param name="sourceModel">The source model.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CreateArray(FarPoint.Win.Chart.LineCollection)">
<summary>
Creates the array.
</summary>
<param name="lines">The lines.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CreateArray(FarPoint.Win.Chart.FillCollection)">
<summary>
Creates the array.
</summary>
<param name="fills">The fill effects.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CreateArray(FarPoint.Win.Chart.BevelCollection)">
<summary>
Creates the array.
</summary>
<param name="bevels">A collection of bevels..</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CreateArray(FarPoint.Win.Chart.DetachmentCollection)">
<summary>
Creates the array.
</summary>
<param name="values">A collection of Single values.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CreateArray(FarPoint.Win.Chart.MarkerCollection)">
<summary>
Creates the array.
</summary>
<param name="values">A collection of markers.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CopySeriesSetting(FarPoint.Win.Chart.Series,FarPoint.Win.Chart.Series,System.Boolean,System.Boolean)">
<summary>
Copies the series setting.
</summary>
<param name="sourceSeries">The source series.</param>
<param name="targetSeries">The target series.</param>
<param name="copyInnerSeries">if set to <c>true</c> [copy inner series].</param>
<param name="allowChangeShape">if set to <c>true</c> [allow change shape].</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CheckVisibleOfSeries(FarPoint.Win.Chart.Series)">
<summary>
Checks whether series can be drawn on chart or not
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.ContainsSeriesDataSource(FarPoint.Win.Chart.Series)">
<summary>
Determines whether [contains series data source] [the specified series].
</summary>
<param name="series">The series.</param>
<returns>
<c>true</c> if [contains series data source] [the specified series]; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.ContainsNonSeriesDataSource(FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Determines whether [contains non series data source] [the specified chart].
</summary>
<param name="chart">The chart.</param>
<returns>
<c>true</c> if [contains non series data source] [the specified chart]; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.ContainsNonSeriesDataSource(FarPoint.Win.Chart.Series)">
<summary>
Determines whether [contains non series data source] [the specified series].
</summary>
<param name="series">The series.</param>
<returns>
<c>true</c> if [contains non series data source] [the specified series]; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CopyDataSource(FarPoint.Win.Chart.Series,FarPoint.Win.Chart.Series,FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Copies the data source from sourceSeries to targetSeries
</summary>
<param name="sourceSeries">The source series.</param>
<param name="targetSeries">The target series.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CopyValues(FarPoint.Win.Chart.Series,FarPoint.Win.Chart.Series)">
<summary>
Copies the values from sourceSeries to destinatiionSeries.
This function keep the same logic when we copy SeriesDataSource from sourceSeries to destinationSeries.
</summary>
<param name="sourceSeries">The source series.</param>
<param name="destinatiionSeries">The destinatiion series.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CopyDataField(FarPoint.Win.Chart.Series,FarPoint.Win.Chart.Series,System.Boolean)">
<summary>
Copies the data field.
</summary>
<param name="sourceSeries">The source series.</param>
<param name="destinationSeries">The destination series.</param>
<param name="check">if set to <c>true</c> [check].</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CopyDataFieldAndDataSource(FarPoint.Win.Chart.Series,FarPoint.Win.Chart.Series,System.Boolean,System.Boolean)">
<summary>
Copies the data field and data source.
</summary>
<param name="sourceSeries">The source series.</param>
<param name="destinationSeries">The destination series.</param>
<param name="check">if set to <c>true</c>, the checking logic will be executed.</param>
<param name="onlyDataField">if set to <c>true</c> [only data field].</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CreateDefaultLegendArea(FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Creates the default legend area.
</summary>
<param name="chart">The chart.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CreateDefaultLight(FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Creates the default light.
</summary>
<param name="chart">The chart.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.ShouldCreateAutomatedLabelArea(FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Shoulds the create automated label area.
</summary>
<param name="chart">The chart.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CreateDefaultLabelArea(FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Creates the default label area.
</summary>
<param name="chart">The chart.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CreateDefaultLight(FarPoint.Win.Chart.PlotArea)">
<summary>
Creates the default light.
</summary>
<param name="plotArea">The plot area.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.DetectRangesForIndicator(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32,System.Type,FarPoint.Win.Spread.Model.CellRange@,FarPoint.Win.Spread.Model.CellRange@,FarPoint.Win.Spread.Model.CellRange@)">
<summary>
Detects the ranges for indicator.
</summary>
<param name="sheetView">The sheet view.</param>
<param name="row">The row.</param>
<param name="column">The column.</param>
<param name="rowCount">The row count.</param>
<param name="columnCount">The column count.</param>
<param name="seriesType">Type of the series.</param>
<param name="seriesName">Name of the series.</param>
<param name="category">The category.</param>
<param name="data">The data.</param>
<returns>true if cell ranges are switched. Otherwise, return false.</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.DetectRangeForIndicator(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Type)">
<summary>
Adds the data indicator.
</summary>
<param name="sheetView">The sheet view.</param>
<param name="row">The row.</param>
<param name="column">The column.</param>
<param name="seriesType">The type.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.GenerateChartFromMultipleCellRange(FarPoint.Win.Spread.Chart.SpreadChart,FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.Model.CellRange[])">
<summary>
Continues generating series from an analyzed chart.
</summary>
<param name="chart">The chart.</param>
<param name="cellRanges">The cell ranges.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.IsEmptyCell(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32)">
<summary>
Empty but not only NULL
</summary>
<param name="sheetView">The sheetview</param>
<param name="r">Row index</param>
<param name="c">Column index</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.IsNumericData(System.Object,FarPoint.Win.Spread.CellType.ICellType)">
<summary>
Determines whether the specified value is numeric.
</summary>
<param name="value">The value.</param>
<param name="cellType">Returns <c>true</c> if cellType is a<see cref="T:FarPoint.Win.Spread.CellType.DateTimeCellType"/>, otherwise returns <c>false</c>.</param>
<returns>
<c>true</c> if the specified value is numeric; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.IsCoveredByEmptyCells(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Determines whether [is covered by empty cells] [the specified top row].
</summary>
<param name="sheetView">The sheet view</param>
<param name="topRow">The top row.</param>
<param name="leftColumn">The left column.</param>
<param name="bottomRow">The bottom row.</param>
<param name="rightColumn">The right column.</param>
<param name="side">The side: 0 = above, 1 = below, 2 = left, 3 = right</param>
<returns>
<c>true</c> if [is covered by empty cells] [the specified top row]; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.GetSeriesTooltipValue(FarPoint.Win.Chart.Series,System.Int32)">
<summary>
Gets the series tooltip value.
</summary>
<param name="series">The series.</param>
<param name="index">The index.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.GetFormula(FarPoint.Win.Spread.Chart.SheetCellRange)">
<summary>
Gets the formula.
</summary>
<param name="scr">The SCR.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.GetFormula(FarPoint.Win.Spread.Chart.ISegmentData)">
<summary>
Gets the formula.
</summary>
<param name="segment">The segment.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.GetSeriesCount(FarPoint.Win.Chart.ChartModel)">
<summary>
Gets the series count.
</summary>
<param name="model">The model.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.GetSeriesCount(FarPoint.Win.Chart.PlotArea)">
<summary>
Gets the series count.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.IsNumeric(System.Object)">
<summary>
Determines whether the specified value is numeric.
</summary>
<param name="value">The value.</param>
<returns>
<c>true</c> if the specified value is numeric; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.IsNumeric(FarPoint.Win.Spread.Chart.SheetCellRange)">
<summary>
Determines whether the specified cell range in sheet view is numeric.
</summary>
<param name="cellRange">A cell range in the specified sheet view</param>
<returns>
<c>true</c> if the specified sheet view is numeric; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.GetDoubleValue(System.Object)">
<summary>
Gets the double value.
</summary>
<param name="value">The value.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CreateSeries(System.Type)">
<summary>
Creates the series.
</summary>
<param name="seriesType">Type of the series.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CreateInnerSeries(System.Type)">
<summary>
Creates the inner series.
</summary>
<param name="compositeSeriesType">Type of the composite series.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.GetAvailableChartName(FarPoint.Win.Spread.SheetView)">
<summary>
Gets an available name of new chart.
It's following the logic of Elements.GenerateName but keep the default naming convention for Control and Component of Microsoft.
</summary>
<param name="sheetView">The sheet view.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.GetDataRowCount(System.Type)">
<summary>
Gets the group column number.
</summary>
<param name="seriesType">The type.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CreatePlotArea(System.Type)">
<summary>
Creates the plot area.
</summary>
<param name="seriesType">Type of the series.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.DetachSeriesFromChartModel(FarPoint.Win.Chart.ChartModel)">
<summary>
Detaches the series from chart model.
</summary>
<param name="model">The model.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.GetCompatiblePlotArea(FarPoint.Win.Chart.ChartModel,FarPoint.Win.Chart.Series,FarPoint.Win.Chart.Series)">
<summary>
Gets the compatible plot area to add targetSeries
</summary>
<param name="model">A model of chart.</param>
<param name="sourceSeries">The source series indicate that its PlotAre will have highest priority in choosing.</param>
<param name="targetSeries">The target series which will be added to chart model.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.GetPlotArea(FarPoint.Win.Chart.ChartModel,FarPoint.Win.Chart.Series)">
<summary>
Gets the plot area.
</summary>
<param name="model">The model.</param>
<param name="series">The series.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.InitPlotArea(FarPoint.Win.Chart.PlotArea)">
<summary>
Inits the plot area.
</summary>
<param name="preferredPlotArea">The preferred plot area.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.IsSeriesDataField(System.Boolean,System.Object[])">
<summary>
Determines whether [is series data field] [the specified obj].
</summary>
<param name="objects">The obj.</param>
<param name="hasCategory">if set to <c>true</c>, the first object indicates data source of category.</param>
<returns>
<c>true</c> if [is series data field] [the specified obj]; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.HasCategoryNames(System.Type)">
<summary>
Determines whether [has category names] [the specified series type].
</summary>
<param name="seriesType">Type of the series.</param>
<returns>
<c>true</c> if [has category names] [the specified series type]; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.HasAutomatedLabelArea(FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Determines whether [has automated label area] [the specified chart].
</summary>
<param name="chart">The chart.</param>
<returns>
<c>true</c> if [has automated label area] [the specified chart]; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.HasAutomatedLabelArea(FarPoint.Win.Spread.Chart.SpreadChart,System.Boolean)">
<summary>
Determines whether [has automated label area] [the specified chart].
</summary>
<param name="chart">The chart.</param>
<param name="checkFirstSeries">if set to <c>true</c> [check first series].</param>
<returns>
<c>true</c> if [has automated label area] [the specified chart]; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.DoNotHaveCategoryNames(FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Determine whether the whole chart does not have any series which has category names.
</summary>
<param name="chart">The chart.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CreateSeriesDataSource(FarPoint.Win.Chart.Series,FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Assigns the data source.
</summary>
<param name="series">The series.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.AssignDataSource(FarPoint.Win.Chart.Series,FarPoint.Win.Spread.Chart.SeriesDataSource)">
<summary>
Assigns the data source.
</summary>
<param name="series">The series.</param>
<param name="dataSource">The data source.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.CreateConstantValues(System.Int32,System.Double)">
<summary>
Creates the constant values.
</summary>
<param name="count">The count.</param>
<param name="value">The value.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.GenerateFromCellRanges(FarPoint.Win.Spread.Chart.SpreadChart,FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.Model.CellRange,FarPoint.Win.Spread.Model.CellRange,FarPoint.Win.Spread.Model.CellRange,System.Boolean,System.Boolean)">
<summary>
Generates from cell ranges.
</summary>
<param name="chart">The target chart.</param>
<param name="sheetView">The sheet view.</param>
<param name="category">The category.</param>
<param name="seriesName">Name of the series.</param>
<param name="data">The data.</param>
<param name="autoSwitch">if set to <c>true</c>, the procesing will switch row and column automatically if it's necessary.</param>
<param name="autoCreateCategory">if set to <c>true</c>, the generating process will auto detect and create category if the category cell range is NULL.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.GenerateFromCellRanges(FarPoint.Win.Spread.Chart.SpreadChart,FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.Model.CellRange[],System.Boolean)">
<summary>
Generates from cell ranges.
</summary>
<param name="chart">The target chart.</param>
<param name="sheetView">The sheet view.</param>
<param name="cellRanges">The cell ranges.</param>
<param name="autoSwitch">if set to <c>true</c>, the processing will switch rows and columns automatically if necessary.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartExtension.ChangeChartType(FarPoint.Win.Spread.Chart.SpreadChart,FarPoint.Win.Chart.ChartModel,System.Boolean)">
<summary>
</summary>
<param name="chart"></param>
<param name="targetModel"></param>
<param name="needCheck"></param>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChartExtension.Instance">
<summary>
Gets the instance of SpreadChartExtension.
</summary>
<value>The instance.</value>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SpreadChartClipboardInfo">
<summary>
Represents a SpreadChart's data structure in clipboard.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.SpreadChartClipboardInfo.ClipboardFormat">
<summary>
Gets a Clipboard format type.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.SpreadChartClipboardInfo.Charts">
<summary>
List of <see cref="T:FarPoint.Win.Spread.Chart.SpreadChart"/> objects.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.SpreadChartClipboardInfo.ChartIndexes">
<summary>
List of indexes of <see cref="T:FarPoint.Win.Spread.Chart.SpreadChart"/> objects.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartClipboardInfo.#cctor">
<summary>
Initializes the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChartClipboardInfo"/> class.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SpreadChartConverter">
<summary>
Provides a unified way of converting types of values to other types, as well as for accessing standard values and subproperties.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns whether this converter can convert the object to the specified type, using the specified context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="destinationType">A <see cref="T:System.Type"/> that represents the type you want to convert to.</param>
<returns>
true if this converter can perform the conversion; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the given value object to the specified type, using the specified context and culture information.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="culture">A <see cref="T:System.Globalization.CultureInfo"/>. If null is passed, the current culture is assumed.</param>
<param name="value">The <see cref="T:System.Object"/> to convert.</param>
<param name="destinationType">The <see cref="T:System.Type"/> to convert the <paramref name="value"/> parameter to.</param>
<returns>
An <see cref="T:System.Object"/> that represents the converted value.
</returns>
<exception cref="T:System.ArgumentNullException">
The <paramref name="destinationType"/> parameter is null.
</exception>
<exception cref="T:System.NotSupportedException">
The conversion cannot be performed.
</exception>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SheetCellRangeCollection">
<summary>
Represents a strongly typed list of SheetCellRange that can be accessed by index. Provides methods to search, sort, and manipulate lists.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRangeCollection.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SheetCellRangeCollection"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SheetCellRangeCollection.AddRange(FarPoint.Win.Spread.Chart.SheetCellRange[])">
<summary>
Adds the range.
</summary>
<param name="indicators">The indicators.</param>
</member>
<member name="T:FarPoint.Win.Spread.Chart.EmptyValueStyle">
<summary>
Lets you specify how you want empty worksheet cells in a data series to be shown in the chart.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.EmptyValueStyle.Gaps">
<summary>
Leaves gaps for empty worksheet cells in a data series, which results in a segmented line.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.EmptyValueStyle.Zero">
<summary>
Treats empty worksheet cells in a data series as zero values, so that the line drops to zero for zero-value data points.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.EmptyValueStyle.Connect">
<summary>
Instead of leaving gaps for empty worksheet cells in a data series, the gaps are filled with a connecting element.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SpreadChartFormulaConverter">
<summary>
Represents a converter for Chart's formulas (Category, Data and SeriesName). It creates an effect like we're editing a SheetCellRange.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartFormulaConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Gets a value indicating whether this object supports properties using the specified context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<returns>
true because <see cref="M:System.ComponentModel.TypeConverter.GetProperties(System.Object)"/> should be called to find the properties of this object. This method never returns false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartFormulaConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])">
<summary>
Gets a collection of properties for the type of object specified by the value parameter.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="value">An <see cref="T:System.Object"/> that specifies the type of object to get the properties for.</param>
<param name="attributes">An array of type <see cref="T:System.Attribute"/> that will be used as a filter.</param>
<returns>
A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> with the properties that are exposed for the component, or null if there are no properties.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartFormulaConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns whether this converter can convert an object of the given type to the type of this converter, using the specified context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="sourceType">A <see cref="T:System.Type"/> that represents the type you want to convert from.</param>
<returns>
true if this converter can perform the conversion; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartFormulaConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Converts the given object to the type of this converter, using the specified context and culture information.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="culture">The <see cref="T:System.Globalization.CultureInfo"/> to use as the current culture.</param>
<param name="value">The <see cref="T:System.Object"/> to convert.</param>
<returns>
An <see cref="T:System.Object"/> that represents the converted value.
</returns>
<exception cref="T:System.NotSupportedException">
The conversion cannot be performed.
</exception>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SpreadChartFormulaConverter.SpreadChartFormulaPropertyDescriptor">
<summary>
Represents a part of Chart's formulas. It can be Row, Column, RowCount, ColumnCount and SheetName.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartFormulaConverter.SpreadChartFormulaPropertyDescriptor.#ctor(FarPoint.Win.Spread.Chart.SpreadChart,System.ComponentModel.PropertyDescriptor,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChartFormulaConverter.SpreadChartFormulaPropertyDescriptor"/> class.
</summary>
<param name="peropertyName">Name of the peroperty.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartFormulaConverter.SpreadChartFormulaPropertyDescriptor.GetValue(System.Object)">
<summary>
When overridden in a derived class, gets the current value of the property on a component.
</summary>
<param name="component">The component with the property for which to retrieve the value.</param>
<returns>
The value of a property for a given component.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartFormulaConverter.SpreadChartFormulaPropertyDescriptor.CanResetValue(System.Object)">
<summary>
When overridden in a derived class, returns whether resetting an object changes its value.
</summary>
<param name="component">The component to test for reset capability.</param>
<returns>
true if resetting the component changes its value; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartFormulaConverter.SpreadChartFormulaPropertyDescriptor.ResetValue(System.Object)">
<summary>
When overridden in a derived class, resets the value for this property of the component to the default value.
</summary>
<param name="component">The component with the property value that is to be reset to the default value.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartFormulaConverter.SpreadChartFormulaPropertyDescriptor.SetValue(System.Object,System.Object)">
<summary>
When overridden in a derived class, sets the value of the component to a different value.
</summary>
<param name="component">The component with the property value that is to be set.</param>
<param name="value">The new value.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartFormulaConverter.SpreadChartFormulaPropertyDescriptor.ShouldSerializeValue(System.Object)">
<summary>
When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
</summary>
<param name="component">The component with the property to be examined for persistence.</param>
<returns>
true if the property should be persisted; otherwise, false.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChartFormulaConverter.SpreadChartFormulaPropertyDescriptor.ComponentType">
<summary>
When overridden in a derived class, gets the type of the component this property is bound to.
</summary>
<value></value>
<returns>
A <see cref="T:System.Type"/> that represents the type of component this property is bound to. When the <see cref="M:System.ComponentModel.PropertyDescriptor.GetValue(System.Object)"/> or <see cref="M:System.ComponentModel.PropertyDescriptor.SetValue(System.Object,System.Object)"/> methods are invoked, the object specified might be an instance of this type.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChartFormulaConverter.SpreadChartFormulaPropertyDescriptor.IsReadOnly">
<summary>
When overridden in a derived class, gets a value indicating whether this property is read-only.
</summary>
<value></value>
<returns>true if the property is read-only; otherwise, false.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChartFormulaConverter.SpreadChartFormulaPropertyDescriptor.PropertyType">
<summary>
When overridden in a derived class, gets the type of the property.
</summary>
<value></value>
<returns>
A <see cref="T:System.Type"/> that represents the type of the property.
</returns>
</member>
<member name="T:FarPoint.Win.Spread.Chart.StringSegmentData">
<summary>
Represents a segment which contains only one string.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.StringSegmentData.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.StringSegmentData"/> class.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.StringSegmentData.FarPoint#Win#Spread#Chart#ISegmentData#GetValue(System.Int32)">
<summary>
Gets the value.
</summary>
<param name="index">The index.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.StringSegmentData.ContainStringValue">
<summary>
Indicates that whether the segment contains a string value.
</summary>
<returns></returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.StringSegmentData.FarPoint#Win#Spread#Chart#ISegmentData#Count">
<summary>
Gets the count.
</summary>
<value>The count.</value>
</member>
<member name="E:FarPoint.Win.Spread.Chart.StringSegmentData.DataChanged">
<summary>
Occurs when data is changed.
</summary>
</member>
<member name="T:FarPoint.BarCode.BarCode">
<summary>
Represents a barcode.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCode.#ctor">
<summary>
Initializes a new instance of the barcode class.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCode.#ctor(System.String)">
<summary>
Initializes a new instance of the barcode class.
</summary>
<param name="prm">PRM</param>
</member>
<member name="M:FarPoint.BarCode.BarCode.#ctor(FarPoint.BarCode.INotify)">
<summary>
Initializes a new instance of the barcode class.
</summary>
<param name="notify">The notify.</param>
</member>
<member name="M:FarPoint.BarCode.BarCode.System#IDisposable#Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCode.ToBase64(System.String)">
<summary>
Converts to a base 64 string.
</summary>
<param name="val">Value</param>
</member>
<member name="M:FarPoint.BarCode.BarCode.FromBase64(System.String)">
<summary>
Converts from a base 64 string.
</summary>
<param name="val">Value</param>
</member>
<member name="M:FarPoint.BarCode.BarCode.CreateBarcode">
<summary>
Creates the barcode.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCode.CreateMetafile">
<summary>
Creates the metafile with default settings.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCode.CreateMetafile(System.Int32)">
<summary>
Creates the metafile with specified resolution.
</summary>
<param name="dpi">Resolution in dots per inch</param>
</member>
<member name="M:FarPoint.BarCode.BarCode.CreateMetafile(System.Int32,System.Int32)">
<summary>
Creates the metafile.
</summary>
<param name="dpiX">Resolution (in dots per inch) in X direction</param>
<param name="dpiY">Resolution (in dots per inch) in Y direction</param>
</member>
<member name="M:FarPoint.BarCode.BarCode.CreateBitmap">
<summary>
Creates the bitmap with default settings.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCode.CreateBitmap(System.Int32)">
<summary>
Creates the bitmap with the specified resolution.
</summary>
<param name="dpi">Resolution of the bitmap in dpi (dots per inch)</param>
</member>
<member name="M:FarPoint.BarCode.BarCode.CreateBitmap(System.Int32,System.Int32)">
<summary>
Creates the bitmap.
</summary>
<param name="dpiX">Resolution (in dots per inch) in X direction</param>
<param name="dpiY">Resolution (in dots per inch) in Y direction</param>
</member>
<member name="M:FarPoint.BarCode.BarCode.FilterCheckDigit(System.String)">
<summary>
Filters the check digit.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCode.SetBarCodeType(FarPoint.Win.Spread.CellType.BarCode.BarCodeType)">
<summary>
Sets the type of the barcode.
</summary>
<param name="type">Type of barcode</param>
</member>
<member name="M:FarPoint.BarCode.BarCode.GetParameterString">
<summary>
Gets the parameter string.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCode.FarPoint#BarCode#INotify#ChangeValue(System.String,System.Object)">
<summary>
Changes the value.
</summary>
<param name="propName">Name of the prop.</param>
<param name="sender">The sender.</param>
</member>
<member name="M:FarPoint.BarCode.BarCode.Clone">
<summary>
Clones this instance, but resets m_BarCodeBase.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCode.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.BarCode.BarCode.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="P:FarPoint.BarCode.BarCode.AcceptsCheckDigit">
<summary>
Gets or sets whether to [accept check digit].
</summary>
<value><c>true</c> if [accept check digit]; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.BarCode.BarCode.Created">
<summary>
Gets whether this <see cref="T:BarCode"/> is created.
</summary>
<value><c>true</c> if created; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.BarCode.BarCode.InnerValue">
<summary>
Gets or sets the inner value.
</summary>
<value>The inner value.</value>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarTypeUITypeEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Gets the editor style used by the <see cref="M:System.Drawing.Design.UITypeEditor.EditValue(System.IServiceProvider,System.Object)"></see> method.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that can be used to gain additional context information.</param>
<returns>
A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle"></see> value that indicates the style of editor used by the <see cref="M:System.Drawing.Design.UITypeEditor.EditValue(System.IServiceProvider,System.Object)"></see> method. If the <see cref="T:System.Drawing.Design.UITypeEditor"></see> does not support this method, then <see cref="M:System.Drawing.Design.UITypeEditor.GetEditStyle"></see> will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None"></see>.
</returns>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarTypeUITypeEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
<summary>
Edits the specified object's value using the editor style indicated by the <see cref="M:System.Drawing.Design.UITypeEditor.GetEditStyle"></see> method.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that can be used to gain additional context information.</param>
<param name="provider">An <see cref="T:System.IServiceProvider"></see> that this editor can use to obtain services.</param>
<param name="value">The object to edit.</param>
<returns>
The new value of the object. If the value of the object has not changed, this should return the same object it was passed.
</returns>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarTypeUIControl.#ctor(System.Object,System.Windows.Forms.Design.IWindowsFormsEditorService,FarPoint.BarCode.BarCode)">
<summary>
Initializes a new instance of the <see cref="T:BarTypeUIControl"/> class.
</summary>
<param name="value">Value</param>
<param name="service">The service.</param>
<param name="bar">The bar.</param>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarTypeUIControl.SetSelectedIndex(System.String)">
<summary>
Sets the index of the selected item.
</summary>
<param name="selectedBarType">Type of the selected bar.</param>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarTypeUIControl.CreateImages">
<summary>
Creates the images.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarTypeUIControl.InitializeComponent">
<summary>
Initializes the component.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarTypeUIControl.BarTypeUIControl_MouseMove(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Handles the MouseMove event of the BarTypeUIControl control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarTypeUIControl.BarTypeUIControl_SelectedIndexChanged(System.Object,System.EventArgs)">
<summary>
Handles the SelectedIndexChanged event of the BarTypeUIControl control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarTypeUIControl.BarTypeUIControl_DrawItem(System.Object,System.Windows.Forms.DrawItemEventArgs)">
<summary>
Handles the DrawItem event of the BarTypeUIControl control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.DrawItemEventArgs"/> instance containing the event data.</param>
</member>
<member name="F:FarPoint.BarCode.BarCode.BarCodeValueEditor.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarCodeValueEditor.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:FarPoint.BarCode.BarCode.BarCodeValueEditor.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarCodeValueEditor.#ctor(FarPoint.BarCode.BarCode,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initializes a new instance of the <see cref="T:BarCodeValueEditor"/> class.
</summary>
<param name="barcode">The barcode.</param>
<param name="appearance">The appearance.</param>
<param name="zoomFactor">The zoom factor.</param>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarCodeValueEditor.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
<summary>
OnPaintBackground
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarCodeValueEditor.CreateErrorImage">
<summary>
Creates the error image.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarCodeValueEditor.CreateBarCodeImage">
<summary>
Creates the bar code image.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarCodeValueEditor.SetPictureBoxBarCodeImage">
<summary>
Sets the picture box bar code image.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarCodeValueEditor.textBoxEditor_TextChanged(System.Object,System.EventArgs)">
<summary>
Handles the TextChanged event of the textBoxEditor control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarCodeValueEditor.textBoxEditor_GotFocus(System.Object,System.EventArgs)">
<summary>
Handles the GotFocus event of the textBoxEditor control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarCodeValueEditor.textBoxEditor_KeyDown(System.Object,System.Windows.Forms.KeyEventArgs)">
<summary>
Handles the KeyDown event of the textBoxEditor control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.KeyEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarCodeValueEditor.OnSizeChanged(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.SizeChanged"></see> event.
</summary>
<param name="e">An <see cref="T:System.EventArgs"></see> that contains the event data.</param>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarCodeValueEditor.OnUserError(FarPoint.Win.SuperEdit.UserErrorEventArgs)">
<summary>
Raises the user error event.
</summary>
<param name="e">The <see cref="T:UserErrorEventArgs"/> instance containing the event data.</param>
</member>
<member name="P:FarPoint.BarCode.BarCode.BarCodeValueEditor.TextBoxEditor">
<summary>
Gets the textbox
</summary>
</member>
<member name="P:FarPoint.BarCode.BarCode.BarCodeValueEditor.Text">
<summary>
Gets or sets the editing value.
</summary>
<value></value>
</member>
<member name="P:FarPoint.BarCode.BarCode.BarCodeValueEditor.AllowClipboardKeys">
<summary>
Gets or sets whether to [allow clipboard keys].
</summary>
<value><c>true</c> if [allow clipboard keys]; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.BarCode.BarCode.BarCodeValueEditor.AutoMenu">
<summary>
Gets or sets whether to [auto menu].
</summary>
<value><c>true</c> if [auto menu]; otherwise, <c>false</c>.</value>
</member>
<member name="E:FarPoint.BarCode.BarCode.BarCodeValueEditor.UserError">
<summary>
Occurs when inputted value is invalid.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarCodeTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns whether this converter can convert an object of the given type to the type of this converter, using the specified context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that provides a format context.</param>
<param name="sourceType">A <see cref="T:System.Type"></see> that represents the type you want to convert from.</param>
<returns>
true if this converter can perform the conversion; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarCodeTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns whether this converter can convert the object to the specified type, using the specified context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that provides a format context.</param>
<param name="destinationType">A <see cref="T:System.Type"></see> that represents the type you want to convert to.</param>
<returns>
true if this converter can perform the conversion; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarCodeTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Converts the given object to the type of this converter, using the specified context and culture information.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that provides a format context.</param>
<param name="culture">The <see cref="T:System.Globalization.CultureInfo"></see> to use as the current culture.</param>
<param name="value">The <see cref="T:System.Object"></see> to convert.</param>
<returns>
An <see cref="T:System.Object"></see> that represents the converted value.
</returns>
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarCodeTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the given value object to the specified type, using the specified context and culture information.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that provides a format context.</param>
<param name="culture">A <see cref="T:System.Globalization.CultureInfo"></see>. If null is passed, the current culture is assumed.</param>
<param name="value">The <see cref="T:System.Object"></see> to convert.</param>
<param name="destinationType">The <see cref="T:System.Type"></see> to convert the value parameter to.</param>
<returns>
An <see cref="T:System.Object"></see> that represents the converted value.
</returns>
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
<exception cref="T:System.ArgumentNullException">The destinationType parameter is null. </exception>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarCodeTypeConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Returns whether this object supports properties, using the specified context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that provides a format context.</param>
<returns>
true if <see cref="M:System.ComponentModel.TypeConverter.GetProperties(System.Object)"></see> should be called to find the properties of this object; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarCodeTypeConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])">
<summary>
Returns a collection of properties for the type of array specified by the value parameter, using the specified context and attributes.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that provides a format context.</param>
<param name="value">An <see cref="T:System.Object"></see> that specifies the type of array for which to get properties.</param>
<param name="attributes">An array of type <see cref="T:System.Attribute"></see> that is used as a filter.</param>
<returns>
A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"></see> with the properties that are exposed for this data type, or null if there are no properties.
</returns>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarCodeTypeConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)">
<summary>
Creates an object of this type by using a specified set of
property values for the object.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCode.BarCodeTypeConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Determines whether changing a value on this object should
require a call to the CreateInstance method to create a new
value.
</summary>
</member>
<member name="T:FarPoint.BarCode.DimensionType">
<summary>
The DimensionType Class
</summary>
</member>
<member name="T:FarPoint.BarCode.BarCodeBase">
<summary>
Base class for all barcode cell type
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.#ctor">
<summary>
Initializes a new instance of the <see cref="T:BarCodeBase"/> class.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.CreateBitmap(System.Int32,System.Int32)">
<summary>
Creates the bitmap.
</summary>
<param name="dpiX">Resolution (in dots per inch) in X direction</param>
<param name="dpiY">Resolution (in dots per inch) in Y direction</param>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.CreateMetafile(System.Boolean)">
<summary>
Creates the metafile.
</summary>
<param name="flg">Whether to set the flag to <c>true</c> [FLG].</param>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.CreateMetafile(System.Int32,System.Int32)">
<summary>
Creates the metafile.
</summary>
<param name="dpiX">Resolution (in dots per inch) in X direction</param>
<param name="dpiY">Resolution (in dots per inch) in Y direction</param>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.InitSizeData">
<summary>
Inits the size data.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.AdjustSize">
<summary>
Adjusts the size.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.DrawImage(System.Drawing.Graphics)">
<summary>
Draws the image.
</summary>
<param name="g">The g.</param>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.OnCodeConv">
<summary>
Called when [code conv].
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.CalculateCheckDigit(System.Char@)">
<summary>
Calculates the check digit.
</summary>
<param name="s">The check digit.</param>
<returns>Position of the check digit in message string</returns>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.OnAdjustSize">
<summary>
Occurs when the size is adjusted.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.OnDrawImage">
<summary>
Occurs when the images is drawn.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.DpiToLog(System.Int32,System.Int32)">
<summary>
Returns the resolution to the log.
</summary>
<param name="val">Value to convert</param>
<param name="dpi">Resolution (in dots per inch)</param>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.DpiConv">
<summary>
Converts the resolution.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.CalcBarRatio(System.Int32)">
<summary>
Calculates the bar ratio of the specified value.
</summary>
<param name="val">Value</param>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.DrawBar(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Draws the bar.
</summary>
<param name="x1">The x1.</param>
<param name="y1">The y1.</param>
<param name="x2">The x2.</param>
<param name="y2">The y2.</param>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.DrawCharCenter(System.Int32,System.Int32,System.Int32,System.Char,System.Drawing.Font,FarPoint.Win.Spread.CellType.BarCode.MessagePosition)">
<summary>
Draws the char center.
</summary>
<param name="x">The x.</param>
<param name="y">The y.</param>
<param name="spc">The SPC.</param>
<param name="ch">The ch.</param>
<param name="font">The font.</param>
<param name="pos">The pos.</param>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.DrawMessage(System.Int32,System.Int32,System.Int32,System.String,FarPoint.Win.Spread.CellType.BarCode.MessagePosition)">
<summary>
Draws the message.
</summary>
<param name="xpos">The xpos.</param>
<param name="ypos">The ypos.</param>
<param name="width">The width.</param>
<param name="msg">The MSG.</param>
<param name="mpos">The mpos.</param>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.DrawMessage(System.Int32,System.Int32,FarPoint.Win.Spread.CellType.BarCode.MessagePosition)">
<summary>
Draws the message.
</summary>
<param name="xpos">The xpos.</param>
<param name="ypos">The ypos.</param>
<param name="mpos">The mpos.</param>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.DrawImage">
<summary>
Draws the image.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.CheckWidth">
<summary>
Checks the width.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.GetFontSize(System.String)">
<summary>
Gets the size of the font for the specified value.
</summary>
<param name="val">Value</param>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.GetFontSize">
<summary>
Gets the size of the font.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.GetLeftSpace">
<summary>
Gets the left space.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.Dispose(System.Boolean)">
<summary>
Releases unmanaged and - optionally - managed resources
</summary>
<param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.Finalize">
<summary>
Releases unmanaged resources and performs other cleanup operations before the
<see cref="T:FarPoint.BarCode.BarCodeBase"/> is reclaimed by garbage collection.
</summary>
</member>
<member name="M:FarPoint.BarCode.BarCodeBase.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="P:FarPoint.BarCode.BarCodeBase.Value">
<summary>
Gets or sets the value.
</summary>
<value>The value.</value>
</member>
<member name="M:FarPoint.BarCode.Code128.OnCodeConv">
<summary>
Called when [code conv].
</summary>
</member>
<member name="M:FarPoint.BarCode.Code128.OnAdjustSize">
<summary>
Occurs when the size is adjusted.
</summary>
</member>
<member name="M:FarPoint.BarCode.Code128.OnDrawImage">
<summary>
Occurs when the images is drawn.
</summary>
</member>
<member name="M:FarPoint.BarCode.Code128.ValidateValue(System.Object)">
<summary>
Validates the value.
</summary>
<param name="value">Value</param>
</member>
<member name="M:FarPoint.BarCode.EAN128.OnCodeConv">
<summary>
Called when [code conv].
</summary>
</member>
<member name="M:FarPoint.BarCode.EAN128.ValidateValue(System.Object)">
<summary>
Validates the value.
</summary>
<param name="value">Value</param>
</member>
<member name="M:FarPoint.BarCode.EAN128FNC1.OnCodeConv">
<summary>
Called when [code conv].
</summary>
</member>
<member name="M:FarPoint.BarCode.EAN128FNC1.ValidateValue(System.Object)">
<summary>
Validates the value.
</summary>
<param name="value">Value</param>
</member>
<member name="M:FarPoint.BarCode.Code39.OnCodeConv">
<summary>
Called when [code conv].
</summary>
</member>
<member name="M:FarPoint.BarCode.Code39.OnAdjustSize">
<summary>
Occurs when the size is adjusted.
</summary>
</member>
<member name="M:FarPoint.BarCode.Code39.OnDrawImage">
<summary>
Occurs when the image is drawn.
</summary>
</member>
<member name="M:FarPoint.BarCode.Code39.AdjustSymbolLength">
<summary>
Adjusts the length of the symbol.
</summary>
</member>
<member name="M:FarPoint.BarCode.Code39.ValidateValue(System.Object)">
<summary>
Validates the value.
</summary>
<param name="value">Value</param>
</member>
<member name="M:FarPoint.BarCode.Code39Ex.OnCodeConv">
<summary>
Called when [code conv].
</summary>
</member>
<member name="M:FarPoint.BarCode.Code39Ex.ValidateValue(System.Object)">
<summary>
Validates the value.
</summary>
<param name="value">Value</param>
</member>
<member name="M:FarPoint.BarCode.Code49.Pow(System.Int64,System.Int32)">
<summary>
Returns the power of the specified value.
</summary>
<param name="val">Value</param>
<param name="exp">Power exponent</param>
</member>
<member name="M:FarPoint.BarCode.Code49.AtoLn(System.Byte[],System.Int32,System.Int32)">
<summary>
Retrns the number of characters in the specified value and index.
</summary>
<param name="val">Value</param>
<param name="idx">Index</param>
<param name="len">Length</param>
</member>
<member name="M:FarPoint.BarCode.Code49.SetNumeric(System.Byte[],System.Int64,System.Int32,System.Int32)">
<summary>
Sets the number.
</summary>
<param name="dest">Destination</param>
<param name="val">Value</param>
<param name="idx">Index</param>
<param name="len">Length</param>
</member>
<member name="M:FarPoint.BarCode.Code49.MoveMemory(System.Byte[],System.Int32,System.Int32,System.Int32)">
<summary>
Moves the memory.
</summary>
<param name="val">Value</param>
<param name="idxDest">Index of the destination</param>
<param name="idxSrc">Index of the source</param>
<param name="len">Length</param>
</member>
<member name="M:FarPoint.BarCode.Code49.FillMemory(System.Byte[],System.Int32,System.Int32,System.Byte)">
<summary>
Fills the memory.
</summary>
<param name="val">Value</param>
<param name="idx">Index</param>
<param name="len">Length</param>
<param name="ch">Ch</param>
</member>
<member name="M:FarPoint.BarCode.Code49.SetNumericData(System.Byte[],System.Byte[],System.Int32,System.Int32,System.Int32)">
<summary>
Sets the numeric data.
</summary>
<param name="dest">Destination</param>
<param name="src">Source</param>
<param name="destIdx">Destination index</param>
<param name="srcIdx">Source index</param>
<param name="len">Length</param>
</member>
<member name="M:FarPoint.BarCode.Code49.OnCodeConv">
<summary>
Called when [code conv].
</summary>
</member>
<member name="M:FarPoint.BarCode.Code49.OnAdjustSize">
<summary>
Occurs when the size is adjusted.
</summary>
</member>
<member name="M:FarPoint.BarCode.Code49.OnDrawImage">
<summary>
Occurs when the image is drawn.
</summary>
</member>
<member name="M:FarPoint.BarCode.Code49.ValidateValue(System.Object)">
<summary>
Validates the value.
</summary>
<param name="value">Value</param>
</member>
<member name="M:FarPoint.BarCode.Code93.OnCodeConv">
<summary>
Called when [code conv].
</summary>
</member>
<member name="M:FarPoint.BarCode.Code93.OnAdjustSize">
<summary>
Occurs when the size is adjusted.
</summary>
</member>
<member name="M:FarPoint.BarCode.Code93.OnDrawImage">
<summary>
Occurs when the image is drawn.
</summary>
</member>
<member name="M:FarPoint.BarCode.Code93.ValidateValue(System.Object)">
<summary>
Validates the value.
</summary>
<param name="value">Value</param>
</member>
<member name="M:FarPoint.BarCode.EAN.OnCodeConv">
<summary>
Called when [code conv].
</summary>
</member>
<member name="M:FarPoint.BarCode.EAN.OnAdjustSize">
<summary>
Occurs when the size is adjusted.
</summary>
</member>
<member name="M:FarPoint.BarCode.EAN.ValidateValue(System.Object,System.Int32)">
<summary>
Validates the value.
</summary>
<param name="value">Value</param>
<param name="length">Length</param>
</member>
<member name="M:FarPoint.BarCode.EAN.CalculateCheckDigit(System.Char@)">
<summary>
Calculates the check digit.
</summary>
<param name="s">The check digit.</param>
<returns>Position of the check digit in message string</returns>
</member>
<member name="M:FarPoint.BarCode.EAN8.ValidateValue(System.Object)">
<summary>
Validates the value.
</summary>
<param name="value">Value</param>
</member>
<member name="M:FarPoint.BarCode.EAN13.ValidateValue(System.Object)">
<summary>
Validates the value.
</summary>
<param name="value">Value</param>
</member>
<member name="M:FarPoint.BarCode.UPC_A.ValidateValue(System.Object)">
<summary>
Validates the value.
</summary>
<param name="value">Value</param>
</member>
<member name="M:FarPoint.BarCode.ITF.OnCodeConv">
<summary>
Called when [code conv].
</summary>
</member>
<member name="M:FarPoint.BarCode.ITF.OnAdjustSize">
<summary>
Occurs when the size is adjusted.
</summary>
</member>
<member name="M:FarPoint.BarCode.ITF.OnDrawImage">
<summary>
Occurs when the image is drawn.
</summary>
</member>
<member name="M:FarPoint.BarCode.ITF.ValidateValue(System.Object)">
<summary>
Validates the value.
</summary>
<param name="value">Value</param>
</member>
<member name="M:FarPoint.BarCode.NW7.OnCodeConv">
<summary>
Called when [code conv].
</summary>
</member>
<member name="M:FarPoint.BarCode.NW7.OnAdjustSize">
<summary>
Occurs when the size is adjusted.
</summary>
</member>
<member name="M:FarPoint.BarCode.NW7.OnDrawImage">
<summary>
Occurs when the image is drawn.
</summary>
</member>
<member name="M:FarPoint.BarCode.NW7.ValidateValue(System.Object)">
<summary>
Validates the value.
</summary>
<param name="value">Value</param>
</member>
<member name="M:FarPoint.BarCode.PDF417.GetParagraphIndicator(System.Int32,System.Boolean)">
<summary>
Gets the paragraph indicator.
</summary>
<param name="rowCnt">Row count</param>
<param name="flgRight">Whether set to <c>true</c> [FLG right]</param>
</member>
<member name="M:FarPoint.BarCode.PDF417.SetNumeric(FarPoint.BarCode.Numeric.Integer,System.Int32)">
<summary>
Sets the number.
</summary>
<param name="num">Number</param>
<param name="posCode">Position code</param>
</member>
<member name="M:FarPoint.BarCode.PDF417.ConvNumeric(System.Int32,System.Int32,System.Int16,System.Int32@)">
<summary>
Converts the number.
</summary>
<param name="posSymbol">Position symbol</param>
<param name="posCode">Position code</param>
<param name="mode">Mode</param>
<param name="len">Length</param>
</member>
<member name="M:FarPoint.BarCode.PDF417.GetNumericCost(System.Int32,System.Int16,System.Int32@)">
<summary>
Gets the numeric cost.
</summary>
<param name="posSymbol">Position symbol</param>
<param name="mode">Mode</param>
<param name="len">Length</param>
</member>
<member name="M:FarPoint.BarCode.PDF417.GetTextLatchCode(System.Byte,System.Byte)">
<summary>
Gets the text latch code.
</summary>
<param name="curMode">Current mode</param>
<param name="newMode">New mode</param>
</member>
<member name="M:FarPoint.BarCode.PDF417.GetTextShiftCode(System.Byte,System.Byte)">
<summary>
Gets the text shift code.
</summary>
<param name="curMode">Current mode</param>
<param name="newMode">New mode</param>
</member>
<member name="M:FarPoint.BarCode.PDF417.ConvText(System.Int32,System.Int32,System.Int16,System.Int32@)">
<summary>
Converts the text.
</summary>
<param name="posSymbol">Position symbol</param>
<param name="posCode">Position code</param>
<param name="mode">Mode</param>
<param name="len">Length</param>
</member>
<member name="M:FarPoint.BarCode.PDF417.GetTextCost(System.Int32,System.Int16,System.Int32@)">
<summary>
Gets the text cost.
</summary>
<param name="posSymbol">Position symbol</param>
<param name="mode">Mode</param>
<param name="len">Length</param>
</member>
<member name="M:FarPoint.BarCode.PDF417.ConvBinary(System.Int32,System.Int32,System.Int16,System.Int16@,System.Int32@)">
<summary>
Convs the binary.
</summary>
<param name="posSymbol">Position symbol</param>
<param name="posCode">Position code</param>
<param name="mode">Mode</param>
<param name="newMode">New mode</param>
<param name="len">Length</param>
</member>
<member name="M:FarPoint.BarCode.PDF417.GetBinaryCost(System.Int32,System.Int16,System.Int32@)">
<summary>
Gets the binary cost.
</summary>
<param name="posSymbol">Position symbol</param>
<param name="mode">Mode</param>
<param name="len">Length</param>
</member>
<member name="M:FarPoint.BarCode.PDF417.GenerateEC(System.Int32,System.Int32)">
<summary>
Generates the error code.
</summary>
<param name="dataLength">Length of the data</param>
<param name="ErrorLevel">Error level</param>
</member>
<member name="M:FarPoint.BarCode.PDF417.OnCodeConv">
<summary>
Called when [code conv].
</summary>
</member>
<member name="M:FarPoint.BarCode.PDF417.OnAdjustSize">
<summary>
Occurs when the size is adjusted.
</summary>
</member>
<member name="M:FarPoint.BarCode.PDF417.OnDrawImage">
<summary>
Occurs when the image is drawn.
</summary>
</member>
<member name="M:FarPoint.BarCode.PDF417.ValidateValue(System.Object)">
<summary>
Validates the value.
</summary>
<param name="value">Value</param>
</member>
<member name="M:FarPoint.BarCode.PostNet.OnCodeConv">
<summary>
Called when [code conv].
</summary>
</member>
<member name="M:FarPoint.BarCode.PostNet.OnAdjustSize">
<summary>
Occurs when the size is adjusted.
</summary>
</member>
<member name="M:FarPoint.BarCode.PostNet.OnDrawImage">
<summary>
Occurs when the image is drawn.
</summary>
</member>
<member name="M:FarPoint.BarCode.PostNet.ValidateValue(System.Object)">
<summary>
Validates the value.
</summary>
<param name="value">Value</param>
</member>
<member name="M:FarPoint.BarCode.QRCode.GenerateEC(System.Byte[],System.Int32,System.Int32,System.Int32)">
<summary>
Generates the error code.
</summary>
<param name="buf">Buffer</param>
<param name="posCode">Position code</param>
<param name="dataLength">Length of the data</param>
<param name="ErrorLength">Length of the error</param>
</member>
<member name="M:FarPoint.BarCode.QRCode.GetVersion(System.Int32)">
<summary>
Gets the version.
</summary>
<param name="DataLength">Length of the data</param>
</member>
<member name="M:FarPoint.BarCode.QRCode.GetMaxLengthBits(System.Byte,System.Int32)">
<summary>
Gets the maximum length in bits.
</summary>
<param name="mode">Mode</param>
<param name="version">Version</param>
</member>
<member name="M:FarPoint.BarCode.QRCode.PutBits(System.Int32,System.Int32)">
<summary>
Puts the bits.
</summary>
<param name="val">The val.</param>
<param name="len">Length</param>
</member>
<member name="M:FarPoint.BarCode.QRCode.GetNumericCost(System.Int32,System.Int32,System.Int32@)">
<summary>
Gets the numeric cost.
</summary>
<param name="posSymbol">Position symbol</param>
<param name="remainBits">Remainder bits</param>
<param name="len">Length</param>
</member>
<member name="M:FarPoint.BarCode.QRCode.ConvNumeric(System.Int32,System.Int32)">
<summary>
Convs the numeric.
</summary>
<param name="posSymbol">Position symbol</param>
<param name="len">Length</param>
</member>
<member name="M:FarPoint.BarCode.QRCode.GetAlphabetCost(System.Int32,System.Int32,System.Int32@)">
<summary>
Gets the alphabet cost.
</summary>
<param name="posSymbol">Position symbol</param>
<param name="remainBits">Remainder bits</param>
<param name="len">Length</param>
</member>
<member name="M:FarPoint.BarCode.QRCode.ConvAlphabet(System.Int32,System.Int32)">
<summary>
Convs the alphabet.
</summary>
<param name="posSymbol">Position symbol</param>
<param name="len">Length</param>
</member>
<member name="M:FarPoint.BarCode.QRCode.GetKanjiCost(System.Int32,System.Int32,System.Int32@)">
<summary>
Gets the kanji cost.
</summary>
<param name="posSymbol">Position symbol</param>
<param name="remainBits">Remainder bits</param>
<param name="len">Length</param>
</member>
<member name="M:FarPoint.BarCode.QRCode.ConvKanji(System.Int32,System.Int32)">
<summary>
Convs the kanji.
</summary>
<param name="posSymbol">Position symbol</param>
<param name="len">Length</param>
</member>
<member name="M:FarPoint.BarCode.QRCode.GetBinaryCost(System.Int32,System.Int32,System.Int32@)">
<summary>
Gets the binary cost.
</summary>
<param name="posSymbol">Position symbol</param>
<param name="remainBits">Remainder bits</param>
<param name="len">Length</param>
</member>
<member name="M:FarPoint.BarCode.QRCode.ConvBinary(System.Int32,System.Int32)">
<summary>
Convs the binary.
</summary>
<param name="posSymbol">Position symbol</param>
<param name="len">Length</param>
</member>
<member name="M:FarPoint.BarCode.QRCode.SetPosMark(System.Byte[0:,0:],System.Int32,System.Int32)">
<summary>
Sets the pos mark.
</summary>
<param name="bits">The bits.</param>
<param name="x">The x.</param>
<param name="y">The y.</param>
</member>
<member name="M:FarPoint.BarCode.QRCode.SetAlignmentMark(System.Byte[0:,0:],System.Int32,System.Int32)">
<summary>
Sets the alignment mark.
</summary>
<param name="bits">The bits.</param>
<param name="x">The x.</param>
<param name="y">The y.</param>
</member>
<member name="M:FarPoint.BarCode.QRCode.SetRect(System.Byte[0:,0:],System.Int32,System.Int32,System.Int32,System.Int32,System.Byte)">
<summary>
Sets the rect.
</summary>
<param name="bits">The bits.</param>
<param name="x">The x.</param>
<param name="y">The y.</param>
<param name="w">The w.</param>
<param name="h">The h.</param>
<param name="flg">The FLG.</param>
</member>
<member name="M:FarPoint.BarCode.QRCode.SetBaseBits(System.Int32,System.Byte[0:,0:],System.Byte[0:,0:])">
<summary>
Sets the base bits.
</summary>
<param name="ModuleCount">The module count.</param>
<param name="Base">The base.</param>
<param name="invalid">The invalid.</param>
</member>
<member name="M:FarPoint.BarCode.QRCode.SetDataBits(System.Int32,System.Byte[],System.Int32[],System.Byte[0:,0:],System.Byte[0:,0:])">
<summary>
Sets the data bits.
</summary>
<param name="ModuleCount">The module count.</param>
<param name="codes">The codes.</param>
<param name="blocks">The blocks.</param>
<param name="invalid">The invalid.</param>
<param name="dataBits">The data bits.</param>
</member>
<member name="M:FarPoint.BarCode.QRCode.GetMaxVersion">
<summary>
Gets the maximum version.
</summary>
</member>
<member name="M:FarPoint.BarCode.QRCode.MakeCode">
<summary>
Makes the code.
</summary>
</member>
<member name="M:FarPoint.BarCode.QRCode.OnCodeConv">
<summary>
Called when [code conv].
</summary>
</member>
<member name="M:FarPoint.BarCode.QRCode.OnAdjustSize">
<summary>
Occurs when the size is adjusted.
</summary>
</member>
<member name="M:FarPoint.BarCode.QRCode.OnDrawImage">
<summary>
Occurs when the image is drawn.
</summary>
</member>
<member name="M:FarPoint.BarCode.QRCode.ValidateValue(System.Object)">
<summary>
Validates the value.
</summary>
<param name="value">Value</param>
</member>
<member name="M:FarPoint.BarCode.QRCodeMode2.MakeCode">
<summary>
Makes the code.
</summary>
</member>
<member name="M:FarPoint.BarCode.QRCodeMode2.SetBaseBits(System.Int32,System.Byte[0:,0:],System.Byte[0:,0:])">
<summary>
Sets the base bits.
</summary>
<param name="ModuleCount">The module count.</param>
<param name="Base">The base.</param>
<param name="invalid">The invalid.</param>
</member>
<member name="M:FarPoint.BarCode.QRCodeMode2.SetDataBits(System.Int32,System.Byte[],System.Int32[],System.Byte[0:,0:],System.Byte[0:,0:])">
<summary>
Sets the data bits.
</summary>
<param name="ModuleCount">The module count.</param>
<param name="codes">The codes.</param>
<param name="blocks">The blocks.</param>
<param name="invalid">The invalid.</param>
<param name="dataBits">The data bits.</param>
</member>
<member name="M:FarPoint.BarCode.QRCodeMode1.GetMaxVersion">
<summary>
Gets the maximum version.
</summary>
</member>
<member name="M:FarPoint.BarCode.QRCodeMode1.MakeCode">
<summary>
Makes the code.
</summary>
</member>
<member name="M:FarPoint.BarCode.QRCodeMode1.SetBaseBits(System.Int32,System.Byte[0:,0:],System.Byte[0:,0:])">
<summary>
Sets the base bits.
</summary>
<param name="ModuleCount">The module count.</param>
<param name="Base">The base.</param>
<param name="invalid">The invalid.</param>
</member>
<member name="M:FarPoint.BarCode.QRCodeMode1.SetDataBits(System.Int32,System.Byte[],System.Int32[],System.Byte[0:,0:],System.Byte[0:,0:])">
<summary>
Sets the data bits.
</summary>
<param name="ModuleCount">The module count.</param>
<param name="codes">The codes.</param>
<param name="blocks">The blocks.</param>
<param name="invalid">The invalid.</param>
<param name="dataBits">The data bits.</param>
</member>
<member name="M:FarPoint.BarCode.UPC_E.OnCodeConv">
<summary>
Called when [code conv].
</summary>
</member>
<member name="M:FarPoint.BarCode.UPC_E.OnAdjustSize">
<summary>
Occurs when the size is adjusted.
</summary>
</member>
<member name="M:FarPoint.BarCode.UPC_E.OnDrawImage">
<summary>
Occurs when the image is drawn.
</summary>
</member>
<member name="M:FarPoint.BarCode.UPC_E.ValidateValue(System.Object)">
<summary>
Validates the value.
</summary>
<param name="value">Value</param>
</member>
<member name="M:FarPoint.BarCode.Yubin.OnCodeConv">
<summary>
Called when [code conv].
</summary>
</member>
<member name="M:FarPoint.BarCode.Yubin.OnAdjustSize">
<summary>
Occurs when the size is adjusted.
</summary>
</member>
<member name="M:FarPoint.BarCode.Yubin.OnDrawImage">
<summary>
Occurs when the image is drawn.
</summary>
</member>
<member name="M:FarPoint.BarCode.Yubin.ValidateValue(System.Object)">
<summary>
Validates the value.
</summary>
<param name="value">Value</param>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.Rotation">
<summary>
Specifies the rotation angle of the barcode.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.Rotation.Rotation0">
<summary>
[0] Indicates that the barcode is rotated 0 degrees (not rotated)
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.Rotation.Rotation90">
<summary>
[90] Indicates that the barcode is rotated 90 degrees clockwise
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.Rotation.Rotation180">
<summary>
[180] Indicates that the barcode is rotated 180 degrees clockwise
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.Rotation.Rotation270">
<summary>
[270] Indicates that the barcode is rotated 270 degrees clockwise
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.Unit">
<summary>
Specifies the units of measure of the barcode dimensions.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.Unit.Millimeter">
<summary>
[1] Indicates that the unit of measure is millimeters
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.Unit.Inch">
<summary>
[2] Indicates that the unit of measure is inches
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.Unit.Point">
<summary>
[3] Indicates that the unit of measure is points
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.Unit.Twip">
<summary>
[4] Indicates that the unit of measure is twips
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.Unit.Pixel">
<summary>
[5] Indicates that the unit of measure is pixels
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.MessagePosition">
<summary>
Specifies the position in the cell of the barcode message.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.MessagePosition.Default">
<summary>
[0] Indicates that the message appears in the default position
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.MessagePosition.Center">
<summary>
[1] Indicates that the message is centered in the cell
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.MessagePosition.Left">
<summary>
[2] Indicates that the message is left-justified in the cell
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.MessagePosition.Right">
<summary>
[3] Indicates that the message is right-justified in the cell
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.MessagePosition.Even">
<summary>
[4] Indicates that the message is full-justified (evenly spaced) in the cell
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.ImageFormat">
<summary>
Specifies the file format of the image file.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.ImageFormat.Gif">
<summary>
[1] Indicates the image file is Graphics Interchange Format (GIF),
an 8-bit-per-pixel bitmap image format
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.ImageFormat.Png">
<summary>
[2] Indicates the image file is Portable Network Graphics (PNG),
a bitmapped image format that employs lossless data compression
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.ImageFormat.Jpeg">
<summary>
[3] Indicates the image file follows the the JPEG (Joint Photographic Experts)
standard for file compression, also referred to as JPEG Interchange Format
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.ValueBase">
<summary>
Represents the base class for the barcode value type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.ValueBase.SetNotify(System.String,FarPoint.BarCode.INotify)">
<summary>
Sets the notify.
</summary>
<param name="propName">Name of the property</param>
<param name="notify">Notify</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.ValueBase.NotifyChangeValue">
<summary>
Notifies when the property changes value.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.Quiet">
<summary>
Represents the left and right padding of the barcode.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Quiet.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new barcode padding from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Quiet.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Quiet.#ctor">
<summary>
Creates a new barcode padding with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Quiet.#ctor(System.String,System.String)">
<summary>
Creates a new barcode padding with the specified string values.
</summary>
<param name="left">Left padding</param>
<param name="right">Right padding</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Quiet.#ctor(System.Single,System.Single)">
<summary>
Creates a new barcode padding with the specified numeric values.
</summary>
<param name="left">Left padding</param>
<param name="right">Right padding</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Quiet.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>.
</summary>
<param name="obj">The <see cref="T:System.Object"></see> to compare with the current <see cref="T:System.Object"></see>.</param>
<returns>
true if the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Quiet.GetHashCode">
<summary>
Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode"></see> is suitable for use in hashing algorithms and data structures like a hash table.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Quiet.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.Quiet.Left">
<summary>
Gets or sets the left padding of the barcode.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.Quiet.Right">
<summary>
Gets or sets the right padding of the barcode.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.BarSize">
<summary>
Represents the size of the entire bar code.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarSize.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new barcode size from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarSize.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarSize.#ctor">
<summary>
Creates a new barcode size with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarSize.#ctor(System.String,System.String)">
<summary>
Creates a new barcode size with the specified string values.
</summary>
<param name="width">Barcode width</param>
<param name="height">Barcode height</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarSize.#ctor(System.Single,System.Single)">
<summary>
Creates a new barcode size with the specified numeric values.
</summary>
<param name="width">Barcode width</param>
<param name="height">Barcode height</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarSize.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>.
</summary>
<param name="obj">The <see cref="T:System.Object"></see> to compare with the current <see cref="T:System.Object"></see>.</param>
<returns>
true if the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarSize.GetHashCode">
<summary>
Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode"></see> is suitable for use in hashing algorithms and data structures like a hash table.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarSize.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.BarSize.Width">
<summary>
Gets or sets the width of the barcode.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.BarSize.Height">
<summary>
Gets or sets the height of the barcode.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.ModuleSize">
<summary>
Represents the size of the bar module for the barcode.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.ModuleSize.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new bar module size from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.ModuleSize.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.ModuleSize.#ctor">
<summary>
Initializes a new instance of the <see cref="T:ModuleSize"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.ModuleSize.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:ModuleSize"/> class.
</summary>
<param name="narrow">Size of the narrow module</param>
<param name="broad">Size of the broad module</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.ModuleSize.#ctor(System.Single,System.Single)">
<summary>
Initializes a new instance of the <see cref="T:ModuleSize"/> class.
</summary>
<param name="narrow">Size of the narrow module</param>
<param name="broad">Size of the broad module</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.ModuleSize.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>.
</summary>
<param name="obj">The <see cref="T:System.Object"></see> to compare with the current <see cref="T:System.Object"></see>.</param>
<returns>
true if the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.ModuleSize.GetHashCode">
<summary>
Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode"></see> is suitable for use in hashing algorithms and data structures like a hash table.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.ModuleSize.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.ModuleSize.Narrow">
<summary>
Gets or sets the module size of the thin bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.ModuleSize.Broad">
<summary>
Gets or sets the module size of the thick bar.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.Resolution">
<summary>
Represents the resolution in dots per inch.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Resolution.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:Resolution"/> class.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Resolution.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Resolution.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Resolution"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Resolution.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Resolution"/> class.
</summary>
<param name="dpiX">The dpi X.</param>
<param name="dpiY">The dpi Y.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Resolution.#ctor(System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:Resolution"/> class.
</summary>
<param name="dpiX">The dpi X.</param>
<param name="dpiY">The dpi Y.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Resolution.op_Implicit(FarPoint.Win.Spread.CellType.BarCode.Resolution)~System.Drawing.Point">
<summary>
Implicit operators the specified object.
</summary>
<param name="obj">Object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Resolution.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>.
</summary>
<param name="obj">The <see cref="T:System.Object"></see> to compare with the current <see cref="T:System.Object"></see>.</param>
<returns>
true if the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Resolution.GetHashCode">
<summary>
Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode"></see> is suitable for use in hashing algorithms and data structures like a hash table.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Resolution.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.Resolution.DpiX">
<summary>
Gets or sets horizontal (X) resolution.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.Resolution.DpiY">
<summary>
Gets or sets vertical (Y) resolution.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.BarAdjust">
<summary>
Represents the bar adjustment for the barcode.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarAdjust.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new bar adjustment from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarAdjust.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarAdjust.#ctor">
<summary>
Creates a new bar adjustment with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarAdjust.#ctor(System.String,System.String)">
<summary>
Creates a new bar adjustment with specified string values.
</summary>
<param name="x">X adjustment</param>
<param name="y">Y adjustment</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarAdjust.#ctor(System.Int32,System.Int32)">
<summary>
Creates a new bar adjustment with specified numeric values.
</summary>
<param name="x">X adjustment</param>
<param name="y">Y adjustment</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarAdjust.op_Implicit(FarPoint.Win.Spread.CellType.BarCode.BarAdjust)~System.Drawing.Point">
<summary>
Implicit operators the specified object.
</summary>
<param name="obj">Object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarAdjust.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>.
</summary>
<param name="obj">The <see cref="T:System.Object"></see> to compare with the current <see cref="T:System.Object"></see>.</param>
<returns>
true if the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarAdjust.GetHashCode">
<summary>
Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode"></see> is suitable for use in hashing algorithms and data structures like a hash table.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarAdjust.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.BarAdjust.X">
<summary>
Gets or sets the adjustment value in the horizontal (X) direction.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.BarAdjust.Y">
<summary>
Gets or sets the adjustment value in the vertical (Y) direction.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.BarCodeType">
<summary>
Represents the type of barcode.
</summary>
<remarks>
Users can use the derived classes of this class to create these barcode types:
Code128, Code39, Code49, EAN128, ITF, JAN13, JAN8, JapanesePostal, NW7, PDF417, PostNet, QRCode, UPC.
</remarks>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarCodeType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarCodeType.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>
A new object that is a copy of this instance.
</returns>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.JAN13">
<summary>
Represents the JAN13 barcode type and any particular settings of this type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.JAN13.#ctor">
<summary>
Initializes a new instance of the <see cref="T:JAN13"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.JAN13.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:JAN13"/> class.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.JAN13.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.JAN8">
<summary>
Represents the JAN8 barcode type and any particular settings of this type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.JAN8.#ctor">
<summary>
Creates a new JAN8 barcode with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.JAN8.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new JAN8 barcode from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.JAN8.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.EAN128">
<summary>
Represents the EAN128 barcode type and any particular settings of this type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.EAN128.#ctor">
<summary>
Creates a new EAN128 barcode with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.EAN128.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new EAN128 barcode from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.EAN128.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.Code93">
<summary>
Represents the Code93 barcode type and any particular settings of this type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Code93.#ctor">
<summary>
Creates a new Code93 barcode with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Code93.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new Code93 barcode from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Code93.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.PostNet">
<summary>
Represents the PostNet barcode type and any particular settings of this type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.PostNet.#ctor">
<summary>
Creates a new PostNet barcode with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.PostNet.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new PostNet barcode from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.PostNet.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.NW7">
<summary>
Represents the NW7 barcode type and any particular settings of this type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.NW7.#ctor">
<summary>
Creates a new NW7 barcode with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.NW7.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new NW7 barcode from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.NW7.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.JapanesePostal">
<summary>
Represents the Japanese Postal barcode type and any particular settings of this type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.JapanesePostal.#ctor">
<summary>
Creates a new JapanesePostal barcode with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.JapanesePostal.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new JapanesePostal barcode from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.JapanesePostal.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.Code128">
<summary>
Represents the Code128 barcode type and any particular settings of this type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Code128.#ctor">
<summary>
Creates a new Code128 barcode with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Code128.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new Code128 barcode from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Code128.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.Code39">
<summary>
Represents the Code39 barcode type and any particular settings of this type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Code39.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new Code39 barcode from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Code39.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Code39.#ctor">
<summary>
Creates a new Code39 barcode with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Code39.#ctor(System.String)">
<summary>
Creates a new Code39 barcode with the specified ASCII settings.
</summary>
<param name="str">ASCII settings</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Code39.Equals(System.Object)">
<summary>
Determines whether the specified vlaue is equivalent to this barcode.
</summary>
<param name="val">Value</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Code39.GetHashCode">
<summary>
Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode"></see> is suitable for use in hashing algorithms and data structures like a hash table.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Code39.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.Code39.FullAscii">
<summary>
Gets or sets whether Code39 is full ASCII mode or not.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.Code49">
<summary>
Represents Code49 barcode type and any particular settings of this type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Code49.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new Code49 barcode from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Code49.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Code49.#ctor">
<summary>
Creates a new Code49 barcode with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Code49.#ctor(System.String)">
<summary>
Creates a new Code39 barcode with the specified value.
</summary>
<param name="str">Input value</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Code49.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>.
</summary>
<param name="obj">The <see cref="T:System.Object"></see> to compare with the current <see cref="T:System.Object"></see>.</param>
<returns>
true if the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Code49.GetHashCode">
<summary>
Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode"></see> is suitable for use in hashing algorithms and data structures like a hash table.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.Code49.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.Code49.Grouping">
<summary>
Gets or sets whether grouping is allowed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.Code49.GroupNo">
<summary>
Gets or sets the group number.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.ITF">
<summary>
Represents the ITF barcode type and any particular settings of this type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.ITF.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new ITF barcode from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.ITF.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.ITF.#ctor">
<summary>
Creates a new ITF barcode with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.ITF.#ctor(System.String)">
<summary>
Creates a new ITF barcode with the specified value.
</summary>
<param name="str">Input value</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.ITF.Equals(System.Object)">
<summary>
Returns whether the value equals a specified value.
</summary>
<param name="val">Value</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.ITF.GetHashCode">
<summary>
Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode"></see> is suitable for use in hashing algorithms and data structures like a hash table.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.ITF.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.ITF.BearerBar">
<summary>
Gets or sets whether to display the ITF bearer bar.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.PDF417">
<summary>
Represents the PDF417 barcode type and any particular settings of this type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.PDF417.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new PDF417 barcode type from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.PDF417.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.PDF417.#ctor">
<summary>
Creates a new PDF417 barcode type with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.PDF417.#ctor(System.String)">
<summary>
Creates a new PDF417 barcode type with the specified value.
</summary>
<param name="str">Input value</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.PDF417.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>.
</summary>
<param name="obj">The <see cref="T:System.Object"></see> to compare with the current <see cref="T:System.Object"></see>.</param>
<returns>
true if the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.PDF417.GetHashCode">
<summary>
Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode"></see> is suitable for use in hashing algorithms and data structures like a hash table.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.PDF417.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.PDF417.ErrorLevel">
<summary>
Gets or sets the PDF417 error correction level.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.PDF417.Column">
<summary>
Gets or sets the number of PDF417 columns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.PDF417.Row">
<summary>
Gets or sets the number of PDF417 rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.PDF417.Type">
<summary>
Gets or sets the type of PDF417.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.PDF417.PDF417Type">
<summary>
Specifies the PDF417 types.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.PDF417.PDF417Type.Normal">
<summary>
[0] Normal type of PDF417
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.PDF417.PDF417Type.Simple">
<summary>
[1] Simple type of PDF417
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.QRCode">
<summary>
Represents the QR Code barcode type and any particular settings of this type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.QRCode.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new QR Code barcode from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.QRCode.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.QRCode.#ctor">
<summary>
Creates a new QR Code barcode with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.QRCode.#ctor(System.String)">
<summary>
Creates a new QR Code barcode with the specified values.
</summary>
<param name="str">Input value string</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.QRCode.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>.
</summary>
<param name="obj">The <see cref="T:System.Object"></see> to compare with the current <see cref="T:System.Object"></see>.</param>
<returns>
true if the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.QRCode.GetHashCode">
<summary>
Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode"></see> is suitable for use in hashing algorithms and data structures like a hash table.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.QRCode.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.QRCode.ErrorLevel">
<summary>
Gets or sets the QR Code error correction level.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.QRCode.Model">
<summary>
Gets or sets the model of QR Code.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.QRCode.Version">
<summary>
Gets or sets the version of QR Code.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.QRCode.Mask">
<summary>
Gets or sets the pattern used at the masking of QR Code.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.QRCode.Connection">
<summary>
Gets or sets whether to use the connection function.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.QRCode.ConnectionNumber">
<summary>
Gets or sets the number of the connection function.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.QRCode.QRCodeErrorLevel">
<summary>
Specifies the QR Code error levels.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.QRCode.QRCodeErrorLevel.L">
<summary>
[1] Error level low (7%)
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.QRCode.QRCodeErrorLevel.M">
<summary>
[0] Error level middle (15%)
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.QRCode.QRCodeErrorLevel.Q">
<summary>
[3] Error level normal (25%)
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.QRCode.QRCodeErrorLevel.H">
<summary>
[2] Error level high (30%)
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.QRCode.QRCodeModel">
<summary>
Specifies the QR Code models.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.QRCode.QRCodeModel.Model1">
<summary>
[1] Model1
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.QRCode.QRCodeModel.Model2">
<summary>
[2] Model2
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.QRCode.QRCodeMask">
<summary>
Specifies the QR Code mask.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.QRCode.QRCodeMask.Auto">
<summary>
[-1] Auto
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.QRCode.QRCodeMask.Mask000">
<summary>
[0] Mask000
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.QRCode.QRCodeMask.Mask001">
<summary>
[1] Mask001
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.QRCode.QRCodeMask.Mask010">
<summary>
[2] Mask010
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.QRCode.QRCodeMask.Mask011">
<summary>
[3] Mask011
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.QRCode.QRCodeMask.Mask100">
<summary>
[4] Mask100
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.QRCode.QRCodeMask.Mask101">
<summary>
[5] Mask101
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.QRCode.QRCodeMask.Mask110">
<summary>
[6] Mask110
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.QRCode.QRCodeMask.Mask111">
<summary>
[7] Mask111
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.UPC">
<summary>
Represents the UPC barcode type and any particular settings of this type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.UPC.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new UPC barcode from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.UPC.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.UPC.#ctor">
<summary>
Creates a new UPC barcode with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.UPC.#ctor(System.String)">
<summary>
Creates a new UPC barcode with the specified values.
</summary>
<param name="str">Input value string</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.UPC.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>.
</summary>
<param name="val">The <see cref="T:System.Object"></see> to compare with the current <see cref="T:System.Object"></see>.</param>
<returns>
true if the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.UPC.GetHashCode">
<summary>
Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode"></see> is suitable for use in hashing algorithms and data structures like a hash table.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.UPC.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.UPC.Type">
<summary>
Gets or sets the type of UPC
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCode.UPC.AddValue">
<summary>
Gets or sets the value added for the UPC add-on version.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.UPC.UPCType">
<summary>
Specifies the UPC types.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.UPC.UPCType.UPC_A">
<summary>
[1] Indicates that UPC type is UPC-A
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.UPC.UPCType.UPC_E">
<summary>
[2] Indicates that UPC type is UPC-E
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.UPC.UPCType.UPC_Add2">
<summary>
[3] Indicates that UPC type is UPC Add-2
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCode.UPC.UPCType.UPC_Add5">
<summary>
[4] Indicates that UPC type is UPC Add-5
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCode.BarCodeHelper">
<summary>
Represents a barcode helper that provides some static convert methods.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarCodeHelper.ConvertBitmap(System.Drawing.Bitmap,System.Drawing.Color,System.Drawing.Color)">
<summary>
Converts the 24-bpp bitmap to a 1-bpp bitmap.
</summary>
<param name="bmp1">Input bitmap to convert</param>
<param name="foreColor">Color of the foreground</param>
<param name="backColor">Color of the background</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarCodeHelper.CorrectParam(System.String,FarPoint.Win.Spread.CellType.BarCode.Unit)">
<summary>
Corrects the parameter, appending the correct name of the unit of measure to the value.
</summary>
<param name="val">Input value to correct</param>
<param name="unit">Units name to append</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarCodeHelper.ConvertMilliMetric(System.String,System.Int32)">
<summary>
Converts the value in another unit to an equivalent value in metric (millimeters).
</summary>
<param name="val">Value in another unit of measure</param>
<param name="dpi">Resolution in dpi (dots per inch)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarCodeHelper.ConvertUnit(System.Double,FarPoint.Win.Spread.CellType.BarCode.Unit,System.Int32)">
<summary>
Converts the value in metric (millimeters) to an equivalent value in another unit of measure.
</summary>
<param name="val">Value in millimeters</param>
<param name="unit">New unit of measure</param>
<param name="dpi">Resolution in dpi (dots per inch)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarCodeHelper.ConvertParamToNumber(System.String,FarPoint.Win.Spread.CellType.BarCode.Unit)">
<summary>
Removes the unit of measure name from the parameter.
</summary>
<param name="param">Parameter string</param>
<param name="unit">Unit of measure name</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCode.BarCodeHelper.ConvertToNewUnit(System.String,FarPoint.Win.Spread.CellType.BarCode.Unit,System.Int32)">
<summary>
Converts the parameter in one unit of measure to an equivalent value
in another unit of measure.
</summary>
<param name="valInOldUnit">Value in old units</param>
<param name="newUnit">New units</param>
<param name="dpi">Resolution in dpi (dots per inch)</param>
</member>
<member name="T:FarPoint.Win.Spread.Model.IncludeHeaders">
<summary>
Specifies which spreadsheet headers should be included.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.IncludeHeaders.None">
<summary>
Includes neither column nor row headers
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.IncludeHeaders.ColumnHeadersCustomOnly">
<summary>
Includes only column headers, custom headers only
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.IncludeHeaders.RowHeadersCustomOnly">
<summary>
Includes only row headers, custom headers only
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Model.IncludeHeaders.BothCustomOnly">
<summary>
Includes both column and row headers, custom headers only
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Model.SpreadSerializer">
<summary>
Represents the serializer object for opening from and saving to a file
the entire FarPoint Spread component and all its data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.LoadTextFile(FarPoint.Win.Spread.SheetView,System.String,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,FarPoint.Win.Spread.TextFileFlags)">
<summary>
Loads the text file with the specified formatting.
</summary>
<param name="sheetView">Sheet into which to load the text data</param>
<param name="fileName">Path and name of file from which to load text</param>
<param name="includeHeaders">Whether headers are handled as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="flags">Specifies how to process the data when loading from a text file</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.LoadTextFile(FarPoint.Win.Spread.SheetView,System.IO.Stream,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.Text.Encoding,FarPoint.Win.Spread.TextFileFlags)">
<summary>
Loads the text from a stream with the specified formatting.
</summary>
<param name="sheetView">Sheet into which to load the text data</param>
<param name="stream">Stream from which to load text</param>
<param name="includeHeaders">Whether headers are handled as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding of the file</param>
<param name="flags"></param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.LoadTextFile(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.String,FarPoint.Win.Spread.TextFileFlags)">
<summary>
Loads the text (string) data with the specified formatting.
</summary>
<param name="sheetView">Sheet into which to load the text data</param>
<param name="includeHeaders">Whether headers are handled as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="data">String containing data to load</param>
<param name="flags">Specifies how to process the data when loading from a text</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.LoadTextFile(FarPoint.Win.Spread.SheetView,System.String,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String)">
<summary>
Loads the text file with the specified formatting.
</summary>
<param name="sheetView">Sheet into which to load the text data</param>
<param name="fileName">Path and name of file from which to load text</param>
<param name="unformatted">Whether to bypass formatting</param>
<param name="includeHeaders">Whether headers are handled as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.LoadTextFile(FarPoint.Win.Spread.SheetView,System.String,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.Boolean,System.String,System.String,System.String)">
<summary>
Loads the text file with the specified formatting.
</summary>
<param name="sheetView">Sheet into which to load the text data</param>
<param name="fileName">Path and name of file from which to load text</param>
<param name="unformatted">Whether to bypass formatting</param>
<param name="includeHeaders">Whether headers are handled as data</param>
<param name="includeFooter">Whether footers are handled as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.LoadTextFile(FarPoint.Win.Spread.SheetView,System.String,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.Text.Encoding)">
<summary>
Loads the text file with the specified formatting.
</summary>
<param name="sheetView">Sheet into which to load the text data</param>
<param name="fileName">Path and name of file from which to load text</param>
<param name="unformatted">Whether to bypass formatting</param>
<param name="includeHeaders">Whether headers are handled as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.LoadTextFile(FarPoint.Win.Spread.SheetView,System.String,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.Boolean,System.String,System.String,System.String,System.Text.Encoding)">
<summary>
Loads the text file with the specified formatting.
</summary>
<param name="sheetView">Sheet into which to load the text data</param>
<param name="fileName">Path and name of file from which to load text</param>
<param name="unformatted">Whether to bypass formatting</param>
<param name="includeHeaders">Whether headers are handled as data</param>
<param name="includeFooter">Whether footers are handled as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.LoadTextFile(FarPoint.Win.Spread.SheetView,System.String,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.Text.Encoding,System.Boolean)">
<summary>
Loads the text file with the specified formatting.
</summary>
<param name="sheetView">Sheet into which to load the text data</param>
<param name="fileName">Path and name of file from which to load text</param>
<param name="unformatted">Whether to bypass formatting</param>
<param name="includeHeaders">Whether headers are handled as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding</param>
<param name="loadFormulas">Whether to load formulas</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.LoadTextFile(FarPoint.Win.Spread.SheetView,System.String,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.Boolean,System.String,System.String,System.String,System.Text.Encoding,System.Boolean)">
<summary>
Loads the text file with the specified formatting.
</summary>
<param name="sheetView">Sheet into which to load the text data</param>
<param name="fileName">Path and name of file from which to load text</param>
<param name="unformatted">Whether to bypass formatting</param>
<param name="includeHeaders">Whether headers are handled as data</param>
<param name="includeFooter">Whether footers are handled as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding</param>
<param name="loadFormulas">Whether to load formulas</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.LoadTextFile(FarPoint.Win.Spread.SheetView,System.IO.Stream,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String)">
<summary>
Loads the text from a stream with the specified formatting.
</summary>
<param name="sheetView">Sheet into which to load the text data</param>
<param name="stream">Stream from which to load text</param>
<param name="unformatted">Whether to bypass formatting</param>
<param name="includeHeaders">Whether headers are handled as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.LoadTextFile(FarPoint.Win.Spread.SheetView,System.IO.Stream,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.Boolean,System.String,System.String,System.String)">
<summary>
Loads the text from a stream with the specified formatting.
</summary>
<param name="sheetView">Sheet into which to load the text data</param>
<param name="stream">Stream from which to load text</param>
<param name="unformatted">Whether to bypass formatting</param>
<param name="includeHeaders">Whether headers are handled as data</param>
<param name="includeFooter">Whether footers are handled as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.LoadTextFile(FarPoint.Win.Spread.SheetView,System.IO.Stream,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.Text.Encoding)">
<summary>
Loads the text from a stream with the specified formatting.
</summary>
<param name="sheetView">Sheet into which to load the text data</param>
<param name="stream">Stream from which to load text</param>
<param name="unformatted">Whether to bypass formatting</param>
<param name="includeHeaders">Whether headers are handled as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding of the file</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.LoadTextFile(FarPoint.Win.Spread.SheetView,System.IO.Stream,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.Boolean,System.String,System.String,System.String,System.Text.Encoding)">
<summary>
Loads the text from a stream with the specified formatting.
</summary>
<param name="sheetView">Sheet into which to load the text data</param>
<param name="stream">Stream from which to load text</param>
<param name="unformatted">Whether to bypass formatting</param>
<param name="includeHeaders">Whether headers are handled as data</param>
<param name="includeFooter">Whether footers are handled as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding of the file</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.LoadTextFile(FarPoint.Win.Spread.SheetView,System.IO.Stream,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.Text.Encoding,System.Boolean)">
<summary>
Loads the text from a stream with the specified formatting.
</summary>
<param name="sheetView">Sheet into which to load the text data</param>
<param name="stream">Stream from which to load text</param>
<param name="unformatted">Whether to bypass formatting</param>
<param name="includeHeaders">Whether headers are handled as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding of the file</param>
<param name="loadFormulas">Whether to load formula values</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.LoadTextFile(FarPoint.Win.Spread.SheetView,System.IO.Stream,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.Boolean,System.String,System.String,System.String,System.Text.Encoding,System.Boolean)">
<summary>
Loads the text from a stream with the specified formatting.
</summary>
<param name="sheetView">Sheet into which to load the text data</param>
<param name="stream">Stream from which to load text</param>
<param name="unformatted">Whether to bypass formatting</param>
<param name="includeHeaders">Whether headers are handled as data</param>
<param name="includeFooter">Whether footers are handled as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding of the file</param>
<param name="loadFormulas">Whether to load formula values</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.LoadTextFile(FarPoint.Win.Spread.SheetView,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.String)">
<summary>
Loads the text (string) data with the specified formatting.
</summary>
<param name="sheetView">Sheet into which to load the text data</param>
<param name="unformatted">Whether to bypass formatting</param>
<param name="includeHeaders">Whether headers are handled as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="data">String containing data to load</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.LoadTextFile(FarPoint.Win.Spread.SheetView,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.Boolean,System.String,System.String,System.String,System.String)">
<summary>
Loads the text (string) data with the specified formatting.
</summary>
<param name="sheetView">Sheet into which to load the text data</param>
<param name="unformatted">Whether to bypass formatting</param>
<param name="includeHeaders">Whether headers are handled as data</param>
<param name="includeFooter">Whether footers are handled as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="data">String containing data to load</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.LoadTextFile(FarPoint.Win.Spread.SheetView,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.String,System.Boolean)">
<summary>
Loads the text (string) data with the specified formatting.
</summary>
<param name="sheetView">Sheet into which to load the text data</param>
<param name="unformatted">Whether to bypass formatting</param>
<param name="includeHeaders">Whether headers are handled as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="data">String containing data to load</param>
<param name="loadFormulas">Whether to load formulas</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.LoadTextFile(FarPoint.Win.Spread.SheetView,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.Boolean,System.String,System.String,System.String,System.String,System.Boolean)">
<summary>
Loads the text (string) data with the specified formatting.
</summary>
<param name="sheetView">Sheet into which to load the text data</param>
<param name="unformatted">Whether to bypass formatting</param>
<param name="includeHeaders">Whether headers are handled as data</param>
<param name="includeFooter">Whether footers are handled as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="data">String containing data to load</param>
<param name="loadFormulas">Whether to load formulas</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.SaveXml(FarPoint.Win.Spread.FpSpread,System.String,System.Boolean)">
<summary>
Saves an entire FarPoint Spread component to an XML file.
</summary>
<param name="spread">FarPoint Spread component to save</param>
<param name="fileName">Path and name of file to which to save the FarPoint Spread component as XML</param>
<param name="dataOnly">Whether to save only the data in the FarPoint Spread component</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.SaveXml(FarPoint.Win.Spread.FpSpread,System.IO.Stream,System.Boolean)">
<summary>
Saves an entire FarPoint Spread component to an XML stream.
</summary>
<param name="spread">FarPoint Spread component to save</param>
<param name="stream">Stream to which to save the FarPoint Spread component as XML</param>
<param name="dataOnly">Whether to save only the data in the FarPoint Spread component</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.SaveXml(FarPoint.Win.Spread.SheetView,System.IO.Stream,System.Boolean)">
<summary>
Saves an entire sheet view to an XML stream.
</summary>
<param name="sheetView">The sheet view to save</param>
<param name="stream">Stream to which to save the sheet view as XML</param>
<param name="dataOnly">Whether to save only the data in the sheet view</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.OpenXml(FarPoint.Win.Spread.SheetView,System.IO.Stream)">
<summary>
Loads the specified XML data (for a sheetview) from a stream into a sheetview.
</summary>
<param name="sheetView">The sheet view to load the XML data</param>
<param name="stream">Stream from which to load the XML data</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.OpenXml(FarPoint.Win.Spread.FpSpread,System.String)">
<summary>
Loads the specified XML data (for an entire FarPoint Spread component) from a file into a FarPoint Spread component.
</summary>
<param name="spread">FarPoint Spread component into which to load the XML data</param>
<param name="fileName">Path and name of the file from which to load the XML data</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.OpenXml(FarPoint.Win.Spread.FpSpread,System.IO.Stream)">
<summary>
Loads the specified XML data (for an entire FarPoint Spread component) from a stream into a FarPoint Spread component.
</summary>
<param name="spread">FarPoint Spread component into which to load the XML data</param>
<param name="stream">Stream from which to load the XML data</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.CustomSerializeProp(System.Xml.XmlTextWriter,System.String,System.Object)">
<summary>
Retrieve a hash table of property settings from an object and serialize the
properties to the provided XML writer.
</summary>
<param name="w">XmlTextWriter to which to write the XML</param>
<param name="name">File name</param>
<param name="o">Object</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.GetDelimiterIndexes(System.String,System.String)">
<summary>
Returns a SparseArray containing the integer indexes
where the specified delimiter string occurs in the specified data string.
</summary>
<param name="data">Data string to search</param>
<param name="delimiter">Delimiter string for which to search</param>
<returns>SparseArray containing the indexes where the delimiter occurs, or null if the data or delimiter is null or empty, or if the delimiter does not occur in the data</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.SplitRows(System.String,System.String,System.String,System.String)">
<summary>
Splits the specified delimited string into an array of row strings.
</summary>
<param name="data">Delimited string to split</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string, or null</param>
<returns>Array of row strings</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.SplitCells(System.String,System.String,System.String,System.String)">
<summary>
Splits the specified delimited row string into an array of cell strings.
</summary>
<param name="data">Delimited row string to split</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string, or null</param>
<returns>Array of cell strings</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer._GetClip(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String,System.String,System.String,System.Boolean)">
<summary>
Gets a delimited string containing the data from a range in a sheet.
</summary>
<param name="sheetView">Sheet from which to get data</param>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="unformatted">True to bypass the IFormatter in the StyleInfo for the cell; false otherwise</param>
<param name="rowHeader">True to get data from the row header; false otherwise</param>
<param name="columnHeader">True to get data from the column header; false otherwise</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="forceCellDelimiter">Whether to force the cell delimiter</param>
<param name="columnFooter">True to get data from the column footer; false otherwise</param>
<returns>Delimited string containing the data from the range in the sheet</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer._GetClip(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String,System.String,System.String,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Gets a delimited string containing the data from a range in a sheet.
</summary>
<param name="sheetView">Sheet from which to get data</param>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="unformatted">True to bypass the IFormatter in the StyleInfo for the cell; false otherwise</param>
<param name="rowHeader">True to get data from the row header; false otherwise</param>
<param name="columnHeader">True to get data from the column header; false otherwise</param>
<param name="columnFooter">True to get data from the column footer; false otherwise</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="forceCellDelimiter">Whether to force the cell delimiter</param>
<param name="formulas">Whether to include formulas</param>
<param name="skipHidden">Whether to skip hidden cells</param>
<returns>Delimited string containing the data from the range in the sheet</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer._SetClip(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String,System.String,System.String,System.String,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Sets a delimited string into a sheet.
</summary>
<param name="sheetView">Sheet to which to set data</param>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="unformatted">True to bypass the IFormatter in the StyleInfo for the cell; false otherwise</param>
<param name="rowHeader">True to get data from the row header; false otherwise</param>
<param name="columnHeader">True to get data from the column header; false otherwise</param>
<param name="columnFooter">True to get data from the column footer; false otherwise</param>
<param name="value">Delimited string value to set</param>
<param name="rowDelimiter">Row delimiter string; defaults to "\r\n"</param>
<param name="columnDelimiter">Column delimiter string; defaults to string.Empty</param>
<param name="cellDelimiter">Cell delimiter string; defaults to "\""</param>
<param name="expandrows">Specifies whether the row count in the data model should get expanded to the size of the range in the string.</param>
<param name="expandcolumns">Specifies whether the column count in the data model should get expanded to the size of the range in the string.</param>
<param name="forceValues">Specifies whether the values are forced and limiting factors, like ReadOnly and Static, are overridden.</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer._SetClip(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String,System.String,System.String,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Sets a delimited string into a sheet.
</summary>
<param name="sheetView">Sheet to which to set data</param>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="unformatted">True to bypass the IFormatter in the StyleInfo for the cell; false otherwise</param>
<param name="rowHeader">True to get data from the row header; false otherwise</param>
<param name="columnHeader">True to get data from the column header; false otherwise</param>
<param name="columnFooter">True to get data from the column footer; false otherwise</param>
<param name="value">Delimited string value to set</param>
<param name="rowDelimiter">Row delimiter string; defaults to "\r\n"</param>
<param name="columnDelimiter">Column delimiter string; defaults to string.Empty</param>
<param name="cellDelimiter">Cell delimiter string; defaults to "\""</param>
<param name="expandrows">Specifies whether the row count in the data model should get expanded to the size of the range in the string</param>
<param name="expandcolumns">Specifies whether the column count in the data model should get expanded to the size of the range in the string</param>
<param name="forceValues">Specifies whether the values are forced and limiting factors, like ReadOnly and Static, are overridden</param>
<param name="formulas">Whether to include formulas</param>
<param name="skipHidden">Whether to skip hidden rows and columns</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.SaveTextFileRange(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32,System.String,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.Boolean,System.String,System.String,System.String,System.Boolean,System.Text.Encoding,System.Boolean)">
<summary>
Saves the sheet to a text file using the specified save flags.
</summary>
<param name="sheetView">Sheet to save</param>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="fileName">Path and name of file to which to save the file</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell and save unformatted data</param>
<param name="includeHeaders">Which headers are exported as data</param>
<param name="includeFooter">Whether to save the data in the footer cells</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="forceCellDelimiter">Whether to force the cell delimiter</param>
<param name="encoding">Encoding</param>
<param name="formulas">Whether to include formulas</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.SaveTextFileRange(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32,System.IO.Stream,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.Boolean,System.String,System.String,System.String,System.Boolean,System.Text.Encoding,System.Boolean)">
<summary>
Saves the sheet to a text file using the specified save flags.
</summary>
<param name="sheetView">Sheet to save</param>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="stream">Stream to save the file to</param>
<param name="unformatted">True to bypass the IFormatter in the StyleInfo for the cell and save unformatted data; false otherwise</param>
<param name="includeHeaders">Which headers are exported as data</param>
<param name="includeFooter">Whether to save the data in the footer cells</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="forceCellDelimiter">Whether to force the cell delimiter</param>
<param name="formulas">Whether to include formulas</param>
<param name="encoding">Encoding</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.GetRangeText(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.Boolean,System.String,System.String,System.String,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Gets the text from a range in the specified sheet using the specified delimiters.
</summary>
<param name="sheetView">Sheet to save</param>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="unformatted">True to bypass the IFormatter in the StyleInfo for the cell and save unformatted data; false otherwise</param>
<param name="includeHeaders">Which headers are exported as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="forceCellDelimiter">Whether to force the cell delimiter</param>
<param name="formulas">Whether to include formulas</param>
<param name="includeFooter">Whether to save the data in the footer cells</param>
<param name="filterRows">Wheter to process the filtered rows</param>
<returns>String containing the data in the range in the sheet.</returns>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.IsSpreadXmlFile(System.String)">
<summary>
Determines whether the specified file contains a top-level Spread XML node.
</summary>
<param name="fileName">Path and file name to consider as a source of Spread XML</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.IsSpreadXmlFile(System.IO.Stream)">
<summary>
Determines whether the specified stream contains a top-level Spread XML node.
</summary>
<param name="stream">Stream to consider as a source of Spread XML</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.SaveHtml(FarPoint.Win.Spread.SheetView,System.String)">
<summary>
Saves the specified SheetView to the specified file as an HTML table.
</summary>
<param name="sheetView">SheetView</param>
<param name="filename">string</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.SaveHtml(FarPoint.Win.Spread.SheetView,System.IO.Stream)">
<summary>
Saves the specified SheetView to the specified stream as an HTML table.
</summary>
<param name="sheetView">SheetView</param>
<param name="stream">Stream</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.SaveHtmlRange(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.String)">
<summary>
Saves the specified range in the specified SheetView to the specified file as an HTML table.
</summary>
<param name="sheetView">SheetView</param>
<param name="row">Starting row index of range to save</param>
<param name="column">Starting column index of range to save</param>
<param name="rowCount">Number of rows in range to save</param>
<param name="columnCount">Number of columns in range to save</param>
<param name="rowHeaders">True to include row headers</param>
<param name="columnHeaders">True to include column headers</param>
<param name="filename">string</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.SaveHtmlRange(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.String)">
<summary>
Saves the specified range in the specified SheetView to the specified file as an HTML table.
</summary>
<param name="sheetView">SheetView</param>
<param name="row">Starting row index of range to save</param>
<param name="column">Starting column index of range to save</param>
<param name="rowCount">Number of rows in range to save</param>
<param name="columnCount">Number of columns in range to save</param>
<param name="rowHeaders">True to include row headers</param>
<param name="columnHeaders">True to include column headers</param>
<param name="columnFooter">True to include column footers</param>
<param name="filename">string</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.SaveHtmlRange(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.IO.Stream)">
<summary>
Saves the specified range in the specified SheetView to the specified stream as an HTML table.
</summary>
<param name="sheetView">SheetView</param>
<param name="row">Starting row index of range to save</param>
<param name="column">Starting column index of range to save</param>
<param name="rowCount">Number of rows in range to save</param>
<param name="columnCount">Number of columns in range to save</param>
<param name="rowHeaders">True to include row headers</param>
<param name="columnHeaders">True to include column headers</param>
<param name="stream">Stream</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.SaveHtmlRange(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.IO.Stream)">
<summary>
Saves the specified range in the specified SheetView to the specified stream as an HTML table.
</summary>
<param name="sheetView">SheetView</param>
<param name="row">Starting row index of range to save</param>
<param name="column">Starting column index of range to save</param>
<param name="rowCount">Number of rows in range to save</param>
<param name="columnCount">Number of columns in range to save</param>
<param name="rowHeaders">True to include row headers</param>
<param name="columnHeaders">True to include column headers</param>
<param name="columnFooter">True to include column footers</param>
<param name="stream">Stream</param>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.CreateRangeRowHeaderColumnLayoutModel(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32)">
<summary>
Creates a column layout model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.CreateRangeRowHeaderCellLayoutModel(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,FarPoint.Win.Spread.RowLayoutModel,FarPoint.Win.Spread.ColumnLayoutModel)">
<summary>
Creates a cell layout model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.CreateRangeColumnFooterRowLayoutModel(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32)">
<summary>
Creates a column footer row layout model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.CreateRangeColumnFooterCellLayoutModel(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,FarPoint.Win.Spread.ColumnLayoutModel,FarPoint.Win.Spread.RowLayoutModel)">
<summary>
Creates a cell layout model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.CreateRangeColumnHeaderRowLayoutModel(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32)">
<summary>
Creates a row layout model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.SpreadSerializer.CreateRangeColumnHeaderCellLayoutModel(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,FarPoint.Win.Spread.ColumnLayoutModel,FarPoint.Win.Spread.RowLayoutModel)">
<summary>
Creates a cell layout model.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.StyleNameConverter">
<summary>
Provides a drop-down list of style names for the StyleName property in the Cell, Column, Row, and AlternatingRow classes.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleNameConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Retrieves the set of standard values for this type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleNameConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Determines whether this object supports standard values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StyleNameConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns whether the specified type can be converted to a border object.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="sourceType">Type</param>
<returns>True if sourceType is String, false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.StyleNameConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Converts a string to a new border object.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">object</param>
<returns>A new border object.</returns>
</member>
<member name="M:FarPoint.Win.Spread.StyleNameConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the border object to a string.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">object</param>
<param name="destinationType">Type</param>
<returns>String representation of a border object.</returns>
</member>
<member name="T:FarPoint.Win.Spread.ParentStyleNameConverter">
<summary>
Provides a drop-down list of parent style names for the ParentStyleName property in the Cell, Column, Row, and AlternatingRow classes.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ParentStyleNameConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Retrieves the set of standard values for this type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ParentStyleNameConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Determines whether this object supports standard values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ParentStyleNameConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns whether the specified type can be converted to a border object.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="sourceType">Type</param>
<returns>True if sourceType is String, false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.ParentStyleNameConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Converts a string to a new border object.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">object</param>
<returns>A new border object.</returns>
</member>
<member name="M:FarPoint.Win.Spread.ParentStyleNameConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the border object to a string.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">object</param>
<param name="destinationType">Type</param>
<returns>String representation of a border object.</returns>
</member>
<member name="T:FarPoint.Win.Spread.Model.Tokenizer">
<summary>
The class breaks a string into tokens.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Tokenizer.#ctor(System.String)">
<summary>
Constructs a tokenizer for the specified string.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Tokenizer.StartsWithDelimiter(System.String,System.Int32)">
<summary>
Determines whether the string begins with a delimiter at
the specified offset.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Tokenizer.StartsWithError(System.String,System.Int32)">
<summary>
Determines whether the string begins with an error value
at the specified offset.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Tokenizer.MoveNext">
<summary>
Advances to the next token.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Model.Tokenizer.PushBack">
<summary>
Backs up to the beginning of the current token.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.Tokenizer.Current">
<summary>
Returns the current token.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Model.Tokenizer.CurrentOffset">
<summary>
Returns the current token.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Action">
<summary>
Abstract class used to implemented actions.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Action.PerformAction(System.Object)">
<summary>
Invoked when an action occurs.
</summary>
<param name="sender">Object on which the action occurred</param>
</member>
<member name="T:FarPoint.Win.Spread.ActionMap">
<summary>
Represents an action map, which provides mappings from objects to actions.
</summary>
<remarks>
An action map is usually used with an input map (see InputMap class) to locate
a particular action when a key is pressed. An action map can have a parent that
is searched for keys not defined in the input map.
</remarks>
</member>
<member name="M:FarPoint.Win.Spread.ActionMap.#ctor">
<summary>
Initializes an action map with no parent and no mappings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ActionMap.AllKeys">
<summary>
Returns the keys that are defined in this action map and its parent.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ActionMap.Keys">
<summary>
Returns the keys defined in this action map.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ActionMap.Clear">
<summary>
Removes all the mappings from this action map.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ActionMap.Get(System.Object)">
<summary>
Returns the binding to an action for the specified key.
</summary>
<remarks>
This method queries the parent action map if the binding is not
defined in the current action map.
</remarks>
<param name="key">Keyboard key for which to get binding</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ActionMap.Put(System.Object,FarPoint.Win.Spread.Action)">
<summary>
Creates a binding between a key and an action.
</summary>
<param name="key">Specified keyboard key</param>
<param name="action">Specified action</param>
</member>
<member name="M:FarPoint.Win.Spread.ActionMap.Remove(System.Object)">
<summary>
Removes the binding to an action for the specified key.
</summary>
<param name="key">Specified keyboard key</param>
</member>
<member name="P:FarPoint.Win.Spread.ActionMap.Parent">
<summary>
Gets or sets the parent action map (ActionMap object) of this action map.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ActionMap.Size">
<summary>
Returns the number of mappings defined in this action map.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ActionMap.ActionMapEntry">
<summary>
Private class that represents an entry in an ActionMap.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellLayout">
<summary>
Class represents the size and location of a cell span.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellLayout.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a CellLayout object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellLayout.ContainsCell(System.Int32,System.Int32)">
<summary>
Checks whether or not this cell span covers the specified
cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellLayout.ContainsPoint(System.Int32,System.Int32)">
<summary>
Checks whether of not this cell span covers the specified
point.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellLayout.Row">
<summary>
Gets the row coordinate of the upper-left corner of the
cell span.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellLayout.Column">
<summary>
Gets the column coordinate of the upper-left corner of the
cell span.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellLayout.RowCount">
<summary>
Gets the number of rows in the cell span.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellLayout.ColumnCount">
<summary>
Gets the number of columns in the cell span.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellLayout.X">
<summary>
Gets the x coordinate of the upper-left corner in the
cell span.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellLayout.Y">
<summary>
Gets the y coordinate of the upper-left corner in the
cell span.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellLayout.Width">
<summary>
Gets the width of the cell span.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellLayout.Height">
<summary>
Gets the height of the cell span.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FlowCellModel.SpanEnumerator.#ctor(FarPoint.Win.Spread.FlowCellModel,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Represents the enumerators for a span of cells.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FlowCellModel.SpanEnumerator.MoveNext">
<summary>
Whether or not to move to the next item.
</summary>
<returns>True if current is less than the count of model items; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FlowCellModel.SpanEnumerator.Reset">
<summary>
Reset the index of model items counted.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FlowCellModel.SpanEnumerator.Current">
<summary>
Current index of model items
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellLayoutModel">
<summary>
Class represents a collection of cell spans.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellLayoutModel.#ctor">
<summary>
Creates a new cell layout model that is initially empty.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellLayoutModel.Add(FarPoint.Win.Spread.CellLayout)">
<summary>
Adds a layout to the model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellLayoutModel.FindCell(System.Int32,System.Int32)">
<summary>
Finds the layout for the specified cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellLayoutModel.FindPoint(System.Int32,System.Int32)">
<summary>
Finds the layout that contains the specified point.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellLayoutModel.Item(System.Int32)">
<summary>
Gets the element at the specified index.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellLayoutModel.Count">
<summary>
Gets the number of layouts in the model.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellPadding">
<summary>
Represents padding information associated with a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellPadding.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.CellPadding"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellPadding.#ctor(System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.CellPadding"/> class.
</summary>
<param name="all">The padding value, in pixels, for all edges.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellPadding.#ctor(FarPoint.Win.Spread.CellPadding)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.CellPadding"/> class.
</summary>
<param name="cellPadding">The instance of CellPadding class that initializes the new instance.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellPadding.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.CellPadding"/> class.
</summary>
<param name="left">The padding value, in pixels, for left edge.</param>
<param name="top">The padding value, in pixels, for top edge.</param>
<param name="right">The padding value, in pixels, for right edge.</param>
<param name="bottom">The padding value, in pixels, for bottom edge.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellPadding.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new instance of the CellPadding class from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellPadding.Equals(FarPoint.Win.Spread.CellPadding)">
<summary>
Determines whether the value of the specified object is equivalent to the current CellPadding object.
</summary>
<param name="padding">The object to compare to the current CellPadding object.</param>
<returns>true if the CellPadding objects are equivalent; otherwise, false.</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellPadding.Equals(System.Object)">
<summary>
Determines whether the value of the specified object is equivalent to the current CellPadding object.
</summary>
<param name="obj">The object to compare to the current CellPadding object.</param>
<returns>true if the CellPadding objects are equivalent; otherwise, false.</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellPadding.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellPadding.op_Equality(FarPoint.Win.Spread.CellPadding,FarPoint.Win.Spread.CellPadding)">
<summary>
Implements the operator ==.
</summary>
<param name="a">The first CellPadding object.</param>
<param name="b">The second CellPadding object.</param>
<returns>The result of the operator.</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellPadding.op_Inequality(FarPoint.Win.Spread.CellPadding,FarPoint.Win.Spread.CellPadding)">
<summary>
Implements the operator !=.
</summary>
<param name="a">The first CellPadding object.</param>
<param name="b">The second CellPadding object.</param>
<returns>The result of the operator.</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellPadding.CopyFrom(FarPoint.Win.Spread.CellPadding)">
<summary>
Creates the CellPadding object equivalent to the specified CellPadding object.
</summary>
<param name="cellPadding">CellPadding object from which to copy settings</param>
</member>
<member name="M:FarPoint.Win.Spread.CellPadding.Reset">
<summary>
Resets this instance to default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellPadding.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellPadding.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellPadding.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"/>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.CellPadding.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Raises the PropertyChanged event.
</summary>
<param name="args">The <see cref="T:System.ComponentModel.PropertyChangedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellPadding.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>
A new object that is a copy of this instance.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.CellPadding.All">
<summary>
Gets or sets the padding, in pixels, for the all edges.
</summary>
Returns:
</member>
<member name="P:FarPoint.Win.Spread.CellPadding.Left">
<summary>
Gets or sets the padding, in pixels, for the left edge.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellPadding.Top">
<summary>
Gets or sets the padding, in pixels, for the top edge.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellPadding.Right">
<summary>
Gets or sets the padding, in pixels, for the right edge.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellPadding.Bottom">
<summary>
Gets or sets the padding, in pixels, for the bottom edge.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellPadding.Horizontal">
<summary>
Gets the sum, in pixels, for the right and left edges.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellPadding.Vertical">
<summary>
Gets the sum, in pixels, for the top and bottom edges.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellPadding.IsEmpty">
<summary>
Gets a value indicating whether this instance is empty.
</summary>
<value><c>true</c> if this instance is empty; otherwise, <c>false</c>.</value>
</member>
<member name="E:FarPoint.Win.Spread.CellPadding.PropertyChanged">
<summary>
Occurs when a property value of the CellPadding changes.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellPaddingConverter">
<summary>
CellPadding Type Converter
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellPaddingConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)">
<summary>
Creates an instance of the CellPadding type that this TypeConverter is associated with, using the specified context, given a set of property values for the object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellPaddingConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Changing a value on this object requires a call to the CreateInstance method to create a new value
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellsEditorForm">
<summary>
Represents a cells editor form.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellsEditorForm.OnApplying(System.EventArgs)">
<summary>
Fires the Applying event.
</summary>
<param name="e">EventArgs</param>
</member>
<member name="M:FarPoint.Win.Spread.CellsEditorForm.OnApplied(System.EventArgs)">
<summary>
Fires the Applied event.
</summary>
<param name="e">EventArgs</param>
</member>
<member name="F:FarPoint.Win.Spread.CellsEditorForm.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellsEditorForm.#ctor(FarPoint.Win.Spread.SheetView)">
<summary>
Creates a new cells editor form for the specified sheet.
</summary>
<param name="sheetView">Sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.CellsEditorForm.LocalizeGUIStrings">
<summary>
Localize all GUI strings of this instance
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellsEditorForm.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellsEditorForm.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellsEditorForm.OnClosing(System.ComponentModel.CancelEventArgs)">
<summary>
Occurs when closing.
</summary>
<param name="e">Event data</param>
</member>
<member name="E:FarPoint.Win.Spread.CellsEditorForm.Applying">
<summary>
Occurs when the editor is about to begin applying changes.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.CellsEditorForm.Applied">
<summary>
Occurs when the editor has finished applying changes.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.FpSpread">
<summary>
Represents the FarPoint spreadsheet component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.CreateSheetView">
<summary>
Creates a <see cref="T:FarPoint.Win.Spread.SheetView"/> object.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.CreateSheetView(FarPoint.Win.Spread.NamedStyleCollection)">
<summary>
Creates a <see cref="T:FarPoint.Win.Spread.SheetView"/> object.
</summary>
<param name="nameStyles"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnClipboardChanged(System.EventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ClipboardChanged"/> event.
</summary>
<param name="e">EventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.#ctor">
<summary>
Creates a new FarPoint spreadsheet component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.Finalize">
<summary>
The destructor method
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.Dispose(System.Boolean)">
<summary>
Cleans up any resources being used.
</summary>
<param name="disposing">
Whether the object is being disposed through the IDisposable interface
(or else the object is being finalized by the garbage collector)
</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.Reset">
<summary>
Resets the component to its original state.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.FireChartIndicatorActivated">
<summary>
Fires the chart indicator activated.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.FireChartIndicatorDeactivated">
<summary>
Fires the chart indicator deactivated.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.CloseAllModelessWindows">
<summary>
Closes all modeless windows.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnChildControlActivated(FarPoint.Win.Spread.ChildControlEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ChildControlActivated"/> event.
</summary>
<param name="e">EventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnChildControlDeactivated(FarPoint.Win.Spread.ChildControlEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ChildControlDeactivated"/> event.
</summary>
<param name="e">EventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.HitTest(System.Int32,System.Int32)">
<summary>
Performs a hit test.
</summary>
<param name="x">X coordinate of point</param>
<param name="y">Y coordinate of point</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SearchWithDialog(System.String)">
<summary>
Searches the text in the cells of the active sheet for the search string
with the default criteria using a provided search dialog.
</summary>
<param name="searchString">String for which to search</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SearchWithDialog(System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Int32)">
<summary>
Searches the text in the cells of the specified sheet for the specified string
with the specified criteria using a provided search dialog.
</summary>
<param name="sheetIndex">Index of sheet on which to search</param>
<param name="searchString">String for which to search</param>
<param name="caseSensitive">Whether the search considers the case of the letters in the search string</param>
<param name="exactMatch">Whether the search considers only an exact match</param>
<param name="alternateSearch">Whether the search goes by alternate coordinates of column, row (instead of row, column)</param>
<param name="useWildcards">Whether the search considers wildcard characters (*, ?) in the search string</param>
<param name="startRowIndex">Index of row at which to start</param>
<param name="startColumnIndex">Index of column at which to start</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SearchWithDialogAdvanced(System.String)">
<summary>
Searches the text in the cells of the sheets for the search string
with the default criteria using a provided advanced search dialog.
</summary>
<param name="searchString">String for which to search</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SearchWithDialogAdvanced(System.Int32,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Int32)">
<summary>
Searches the text in the cells of the specified sheet range for the specified string
with the specified criteria using a provided advanced search dialog.
</summary>
<param name="startSheetIndex">Index of sheet on which to start search</param>
<param name="endSheetIndex">Index of sheet on which to end search</param>
<param name="searchString">String for which to search</param>
<param name="caseSensitive">Whether search should consider the case of the letters in the search string</param>
<param name="exactMatch">Whether the search should consider only an exact match</param>
<param name="alternateSearch">Whether search goes by alternate coordinates of column, row (instead of row, column)</param>
<param name="useWildcards">Whether search considers wildcard characters (*, ?) in the search string</param>
<param name="startRowIndex">Index of row at which to start</param>
<param name="startColumnIndex">Index of column at which to start</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.Search(System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Int32,System.Int32@,System.Int32@)">
<summary>
Searches the text in the specified range of cells in the specified sheet
for the specified string with the specified criteria.
</summary>
<param name="sheetIndex">Index of sheet on which to search</param>
<param name="searchString">String for which to search</param>
<param name="caseSensitive">Whether the search considers the case of the letters in the search string</param>
<param name="exactMatch">Whether the search considers only an exact match</param>
<param name="alternateSearch">Whether the search goes by alternate coordinates of column, row (instead of row, column)</param>
<param name="useWildcards">Whether the search considers wildcard characters (*, ?) in the search string</param>
<param name="includeCellText">Whether the search includes the content in the cell</param>
<param name="includeNotes">Whether the search includes the content in the cell notes</param>
<param name="includeTags">Whether the search includes the content in the cell tags or their string representations</param>
<param name="startRowIndex">Index of row at which to start</param>
<param name="startColumnIndex">Index of column at which to start</param>
<param name="foundRowIndex">Index of row at which match is found</param>
<param name="foundColumnIndex">Index of column at which match is found</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.Search(System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32@,System.Int32@)">
<summary>
Searches the text in the specified range of cells in the specified sheet
for the specified string with the specified criteria.
</summary>
<param name="sheetIndex">Index of sheet on which to search</param>
<param name="searchString">String for which to search</param>
<param name="caseSensitive">Whether the search considers the case of the letters in the search string</param>
<param name="exactMatch">Whether the search considers only an exact match</param>
<param name="alternateSearch">Whether the search goes by alternate coordinates of column, row (instead of row, column)</param>
<param name="useWildcards">Whether the search considers wildcard characters (*, ?) in the search string</param>
<param name="includeNotes">Whether the search includes the content in the cell notes</param>
<param name="includeTags">Whether the search includes the content in the cell tags or their string representations</param>
<param name="startRowIndex">Index of row at which to start</param>
<param name="startColumnIndex">Index of column at which to start</param>
<param name="endRowIndex">Index of row at which to end</param>
<param name="endColumnIndex">Index of column at which to end</param>
<param name="foundRowIndex">Index of row at which match is found</param>
<param name="foundColumnIndex">Index of column at which match is found</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.Search(System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32@,System.Int32@)">
<summary>
Searches the text in the specified range of cells in the specified sheet
for the specified string with the specified criteria.
</summary>
<param name="sheetIndex">Index of sheet on which to search</param>
<param name="searchString">String for which to search</param>
<param name="caseSensitive">Whether the search considers the case of the letters in the search string</param>
<param name="exactMatch">Whether the search considers only an exact match</param>
<param name="alternateSearch">Whether the search goes by alternate coordinates of column, row (instead of row, column)</param>
<param name="useWildcards">Whether the search considers wildcard characters (*, ?) in the search string</param>
<param name="includeCellText">Whether the search includes the content in the cell</param>
<param name="includeNotes">Whether the search includes the content in the cell notes</param>
<param name="includeTags">Whether the search includes the content in the cell tags or their string representations</param>
<param name="searchAsBlockRange">Whether to search as a range</param>
<param name="startRowIndex">Index of row at which to start</param>
<param name="startColumnIndex">Index of column at which to start</param>
<param name="endRowIndex">Index of row at which to end</param>
<param name="endColumnIndex">Index of column at which to end</param>
<param name="foundRowIndex">Index of row at which match is found</param>
<param name="foundColumnIndex">Index of column at which match is found</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.Search(System.Int32,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32@)">
<summary>
Searches the text in the specified range of cells in the specified sheet range
for the specified string with the specified criteria.
</summary>
<param name="startSheetIndex">Index of sheet on which to start search</param>
<param name="endSheetIndex">Index of sheet on which to end search</param>
<param name="searchString">String for which to search</param>
<param name="caseSensitive">Whether the search considers the case of the letters in the search string</param>
<param name="exactMatch">Whether the search considers only an exact match</param>
<param name="alternateSearch">Whether the search goes by alternate coordinates of column, row (instead of row, column)</param>
<param name="useWildcards">Whether the search considers wildcard characters (*, ?) in the search string</param>
<param name="includeCellText">Whether the search includes the content in the cell</param>
<param name="includeNotes">Whether the search includes the content in the cell notes</param>
<param name="includeTags">Whether the search includes the content in the cell tags or their string representations</param>
<param name="startRowIndex">Index of row at which to start</param>
<param name="startColumnIndex">Index of column at which to start</param>
<param name="endRowIndex">Index of row at which to end</param>
<param name="endColumnIndex">Index of column at which to end</param>
<param name="foundSheetIndex">Index of sheet at which match is found</param>
<param name="foundRowIndex">Index of row at which match is found</param>
<param name="foundColumnIndex">Index of column at which match is found</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.Search(System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Int32,System.Int32@,System.Int32@)">
<summary>
Searches the text in the cells in the specified sheet for the specified string with the specified criteria.
</summary>
<param name="sheetIndex">Index of sheet on which to search</param>
<param name="searchString">String for which to search</param>
<param name="caseSensitive">Whether the search considers the case of the letters in the search string</param>
<param name="exactMatch">Whether the search considers only an exact match</param>
<param name="alternateSearch">Whether the search goes by alternate coordinates of column, row (instead of row, column)</param>
<param name="useWildcards">Whether the search considers wildcard characters (*, ?) in the search string</param>
<param name="startRowIndex">Index of row at which to start</param>
<param name="startColumnIndex">Index of column at which to start</param>
<param name="foundRowIndex">Index of row at which match is found</param>
<param name="foundColumnIndex">Index of column at which match is found</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.Search(System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32@,System.Int32@)">
<summary>
Searches the text in the specified range of cells in the specified sheet
for the specified string with the specified criteria.
</summary>
<param name="sheetIndex">Index of sheet on which to search</param>
<param name="searchString">String for which to search</param>
<param name="caseSensitive">Whether the search considers the case of the letters in the search string</param>
<param name="exactMatch">Whether the search considers only an exact match</param>
<param name="alternateSearch">Whether the search goes by alternate coordinates of column, row (instead of row, column)</param>
<param name="useWildcards">Whether the search considers wildcard characters (*, ?) in the search string</param>
<param name="startRowIndex">Index of row at which to start</param>
<param name="startColumnIndex">Index of column at which to start</param>
<param name="endRowIndex">Index of row at which to end</param>
<param name="endColumnIndex">Index of column at which to end</param>
<param name="foundRowIndex">Index of row at which match is found</param>
<param name="foundColumnIndex">Index of column at which match is found</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SearchWithDialog(System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Int32,System.Boolean)">
<summary>
Searches the text in the cells of the specified sheet for the specified string
with the specified criteria using a provided search dialog and whether to repeat after the last match.
</summary>
<param name="sheetIndex">Index of sheet on which to search</param>
<param name="searchString">String for which to search</param>
<param name="caseSensitive">Whether the search considers the case of the letters in the search string</param>
<param name="exactMatch">Whether the search considers only an exact match</param>
<param name="alternateSearch">Whether the search goes by alternate coordinates of column, row (instead of row, column)</param>
<param name="useWildcards">Whether the search considers wildcard characters (*, ?) in the search string</param>
<param name="startRowIndex">Index of row at which to start</param>
<param name="startColumnIndex">Index of column at which to start</param>
<param name="repeatFromStart">Whether the search starts from the beginning when the last match is found</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SearchPriv(System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Int32@,System.Int32@)">
<summary>
Searches the text in the cells in the specified sheet for the specified string with the specified criteria
and the location to start and end, and whether to search notes and tags as well.
</summary>
<param name="sheetIndex">Index of sheet on which to search</param>
<param name="searchString">String for which to search</param>
<param name="caseSensitive">Whether the search considers the case of the letters in the search string</param>
<param name="exactMatch">Whether the search considers only an exact match</param>
<param name="alternateSearch">Whether the search goes by alternate coordinates of column, row (instead of row, column)</param>
<param name="useWildcards">Whether the search considers wildcard characters (*, ?) in the search string</param>
<param name="includeCellText">Whether the search includes the content in the cell</param>
<param name="includeNotes">Whether the search includes the content in the cell notes</param>
<param name="includeTags">Whether the search includes the content in the cell tags or their string representations</param>
<param name="startRowIndex">Index of row at which to start</param>
<param name="startColumnIndex">Index of column at which to start</param>
<param name="endRowIndex">Index of row at which to end</param>
<param name="endColumnIndex">Index of column at which to end</param>
<param name="searchAsBlockRange">Whether to search as a range</param>
<param name="foundRowIndex">Index of row at which match is found</param>
<param name="foundColumnIndex">Index of column at which match is found</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SearchHeaders(System.Int32,System.String,System.Boolean,System.Int32@,System.Int32@)">
<summary>
Searches the text in the header cells in the specified sheet
for the specified string.
</summary>
<param name="sheetIndex">Index of sheet on which to search</param>
<param name="searchString">String for which to search</param>
<param name="searchRowHeaders">Whether to search row headers instead of column headers</param>
<param name="foundRowIndex">Index of row at which match is found</param>
<param name="foundColumnIndex">Index of column at which match is found</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SearchHeaders(System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32@,System.Int32@)">
<summary>
Searches the text in the specified range of header cells in the specified sheet for the
specified string with the specified criteria, the start and end locations, and whether to include notes and tags.
</summary>
<param name="sheetIndex">Index of sheet on which to search</param>
<param name="searchString">String for which to search</param>
<param name="searchRowHeaders">Whether to search row headers instead of column headers</param>
<param name="caseSensitive">Whether the search considers the case of the letters in the search string</param>
<param name="exactMatch">Whether the search considers only an exact match</param>
<param name="alternateSearch">Whether the search goes by alternate coordinates of column, row (instead of row, column)</param>
<param name="useWildcards">Whether the search considers wildcard characters (*, ?) in the search string</param>
<param name="includeCellText">Whether the search includes the content in the cell</param>
<param name="includeNotes">Whether the search includes the content in the cell notes</param>
<param name="includeTags">Whether the search includes the content in the cell tags or their string representations</param>
<param name="startRowIndex">Index of row at which to start</param>
<param name="startColumnIndex">Index of column at which to start</param>
<param name="endRowIndex">Index of row at which to end</param>
<param name="endColumnIndex">Index of column at which to end</param>
<param name="foundRowIndex">Index of row at which match is found</param>
<param name="foundColumnIndex">Index of column at which match is found</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.PassString(System.String,System.String@)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.PassStringBytes(System.String,System.Byte[]@)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.AddControl(System.Windows.Forms.Control,System.Int32,System.Int32,System.Int32)">
<summary>
Adds a child control to a specified sheet at the location of the specified row and column.
</summary>
<param name="child">Child control being added</param>
<param name="sheetIndex">Index of the sheet</param>
<param name="rowIndex">Index of the row to align</param>
<param name="columnIndex">Index of the column to align</param>
<returns>true if the control was successfully added; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.AddControl(System.Windows.Forms.Control,System.Int32)">
<summary>
Adds a child control to the specified sheet using the control's Top and Left properties for location
</summary>
<param name="child">Child control being added</param>
<param name="sheetIndex">Index of the sheet</param>
<returns>true if the control was successfully added; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.RemoveControl(System.Windows.Forms.Control,System.Int32)">
<summary>
Removes a child control from the specified sheet.
</summary>
<param name="child">Child control being removed</param>
<param name="sheetIndex">Sheet index</param>
<returns>true if the control was successfully removed; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ShouldSerializeNamedStyles">
<summary>
Determines whether the named styles are serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ShouldSerializeSaveNamedStyles">
<summary>
Gets whether to serialize the custom styles.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ShowCollectionEditor(System.Object,FarPoint.Win.Spread.CollectionEditorOptions)">
<summary>
Shows the collection editor.
</summary>
<param name="collectionOwner">Collection owner</param>
<param name="whichEditor">Collection editor options</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.InvalidateFormulaCellRange">
<summary>
Invalidates the formula cell range.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ShowPrecedents(System.Int32,System.Int32,System.Int32)">
<summary>
Shows the precedents.
</summary>
<param name="sheetIndex">Index of the sheet</param>
<param name="row">Index of the row</param>
<param name="column">Index of the column</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ShowDependents(System.Int32,System.Int32,System.Int32)">
<summary>
Shows the dependents.
</summary>
<param name="sheetIndex">Index of the sheet</param>
<param name="row">Index of the row</param>
<param name="column">Index of the column</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.HideDependents(System.Int32,System.Int32,System.Int32)">
<summary>
Hides the dependents.
</summary>
<param name="sheetIndex">Index of the sheet</param>
<param name="row">Index of the row</param>
<param name="column">Index of the column</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.HideDependents(System.Int32)">
<summary>
Hides the dependents.
</summary>
<param name="sheetIndex">Index of the sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.HidePrecedents(System.Int32,System.Int32,System.Int32)">
<summary>
Hides the precedents.
</summary>
<param name="sheetIndex">Index of the sheet</param>
<param name="row">Index of the row</param>
<param name="column">Index of the column</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.HidePrecedents(System.Int32)">
<summary>
Hides the precedents.
</summary>
<param name="sheetIndex">Index of the sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ResetCellNoteIndicatorRenderer">
<summary>
Resets the focus renderer to its original state.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ResetFocusRenderer">
<summary>
Resets the focus renderer to its original state.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnEditModeStarting(FarPoint.Win.Spread.EditModeStartingEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.EditModeStarting"/> event.
</summary>
<param name="e">EditModeStartingEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnEditModeOn(System.EventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.EditModeOn"/> event.
</summary>
<param name="e">EventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnFormulaChanged(System.Object,System.EventArgs)">
<summary>
Called when [formula changed].
</summary>
<param name="sender">Source of the FormulaChanged event</param>
<param name="e"><see cref="T:System.EventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnFormulaCellRangeChanged(System.Object,System.EventArgs)">
<summary>
Called when [formula cell range changed].
</summary>
<param name="sender">Source of the FormulaCellRangeChanged event</param>
<param name="e"><see cref="T:System.EventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.InvalidateFormulaParams">
<summary>
Invalidates the formula choosing cell range.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.InvalidateFormulaCellRange(FarPoint.Win.Spread.Model.CellRange)">
<summary>
Invalidates the formula cell range.
</summary>
<param name="cellRange">Cell range</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnEditModeOff(System.EventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.EditModeOff"/> event.
</summary>
<param name="e">EventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetRootWorkbook">
<summary>
Gets the main workbook associated with the FarPoint Spread component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
<summary>
Processes KeyDown events.
</summary>
<param name="e">KeyEventArgs event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)">
<summary>
Processes KeyPress events.
</summary>
<param name="e">KeyPressEventArgs event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnEnabledChanged(System.EventArgs)">
<summary>
Raises the EnableChanged event.
</summary>
<param name="e">An <see cref="T:System.EventArgs"/> contains event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnKeyUp(System.Windows.Forms.KeyEventArgs)">
<summary>
Processes KeyUp events.
</summary>
<param name="e">KeyEventArgs event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.IsInputChar(System.Char)">
<summary>
Determines whether the specified character is an input character that the component
can handle without preprocessing.
</summary>
<param name="charCode">Character to check</param>
<returns>
true if the character can be handled by the component without preprocessing; false otherwise
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.IsInputKey(System.Windows.Forms.Keys)">
<summary>
Determines whether the specified key is an input key that the component
can handle without preprocessing.
</summary>
<param name="keyData">Key to check</param>
<returns>
true if the key can be handled by the component without preprocessing; false otherwise
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnDialogChar(FarPoint.Win.Spread.DialogCharEventArgs)">
<summary>
Raises the DialogChar event.
</summary>
<param name="e">DialogCharEventArgs that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ProcessDialogChar(System.Char)">
<summary>
Processes the specified dialog character by the component.
</summary>
<param name="charCode">Character for the component to process</param>
<returns>true if the character was processed by the component; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnDialogKey(FarPoint.Win.Spread.DialogKeyEventArgs)">
<summary>
Raises the DialogKey event.
</summary>
<param name="e">DialogKeyEventArgs that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)">
<summary>
Processes a command key.
</summary>
<param name="msg">A <see cref="T:System.Windows.Forms.Message"/>, passed by reference, that represents the window message to process.</param>
<param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys"/> values that represents the key to process.</param>
<returns>
true if the character was processed by the control; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ProcessDialogKey(System.Windows.Forms.Keys)">
<summary>
Processes the specified dialog key by the component.
</summary>
<param name="keyData">Key for the component to process</param>
<returns>true if the key was processed by the component; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ProcessKeyPreview(System.Windows.Forms.Message@)">
<summary>
Processes a key by the component by previewing the specified keyboard message.
</summary>
<param name="msg">Message object, passed by reference, containing the message to process</param>
<returns>true if the message was processed by the component; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.AddViewport(System.Int32,System.Int32)">
<summary>
Adds a row or column of viewports.
</summary>
<param name="rowViewportIndex">Index of viewport row to add</param>
<param name="columnViewportIndex">Index of viewport column to add</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.AddViewport(System.Int32,System.Int32,System.Int32)">
<summary>
Adds a row or column of viewports to the specified sheet.
</summary>
<param name="sheetIndex">Index of sheet to which to add viewport</param>
<param name="rowViewportIndex">Index of viewport row to add</param>
<param name="columnViewportIndex">Index of viewport column to add</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is out of range; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetCellFromPixel(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets the row and column indexes of the cell at the specified pointer location.
</summary>
<param name="rowViewportIndex">Index of the row of the viewport </param>
<param name="columnViewportIndex">Index of the column of the viewport </param>
<param name="x">X-coordinate of the pointer location </param>
<param name="y">Y-coordinate of the pointer location </param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetCellRectangle(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets the rectangle of the cell.
</summary>
<param name="rowViewportIndex">Index of the row of the viewport</param>
<param name="columnViewportIndex">Index of the column of the viewport</param>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetRowHeaderRectangle(System.Int32)">
<summary>
Gets the rectangle of the row header.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
<returns>Rectangle of the row header.</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetColumnHeaderRectangle(System.Int32)">
<summary>
Gets the rectangle of the column header.
</summary>
<param name="columnViewportIndex">Viewport column index</param>
<returns>Rectangle of the column header.</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetRowRangeGroupWidth">
<summary>
Gets the width of the Row RangeGroup.
</summary>
<returns>Width of the Row RangeGroup.</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetColumnRangeGroupHeight">
<summary>
Gets the height of the Column RangeGroup.
</summary>
<returns>Height of the Column RangeGroup.</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetViewportRectangle(System.Int32,System.Int32)">
<summary>
Gets the rectangle of the viewport.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
<param name="columnViewportIndex">Viewport column index</param>
<returns>Rectangle of the viewport.</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetRowSplitBarRectangle(System.Int32)">
<summary>
Gets the rectangle of the row split bar.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
<returns>Rectangle of the row split bar.</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetColumnSplitBarRectangle(System.Int32)">
<summary>
Gets the rectangle of the column split bar.
</summary>
<param name="columnViewportIndex">Viewport column index</param>
<returns>Rectangle of the column split bar.</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetRowSplitBoxRectangle(System.Int32)">
<summary>
Gets the rectangle of the row split box.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
<returns>Rectangle of the row split box.</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetColumnSplitBoxRectangle(System.Int32)">
<summary>
Gets the rectangle of the column split box.
</summary>
<param name="columnViewportIndex">Viewport column index</param>
<returns>Rectangle of the column split box.</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetHorizontalScrollBarRectangle(System.Int32)">
<summary>
Gets the rectangle of the horizontal scroll bar.
</summary>
<param name="columnViewportIndex">Viewport column index</param>
<returns>Rectangle of the horizontal scroll bar.</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetVerticalScrollBarRectangle(System.Int32)">
<summary>
Gets the rectangle of the vertical scroll bar.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
<returns>Rectangle of the vertical scroll bar.</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetTabStripRectangle">
<summary>
Gets the rectangle of the tab strip.
</summary>
<returns>Rectangle of the tab strip.</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetTabSplitBoxRectangle">
<summary>
Gets the rectangle of the split box on the tab strip.
</summary>
<returns>Rectangle of the split box on the tab strip.</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.RemoveViewport(System.Int32,System.Int32)">
<summary>
Removes a row or column of viewports.
</summary>
<param name="rowViewportIndex">Index of viewport row to remove</param>
<param name="columnViewportIndex">Index of viewport column to remove</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.RemoveViewport(System.Int32,System.Int32,System.Int32)">
<summary>
Removes a row or column of viewports.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="rowViewportIndex">Index of viewport row to remove</param>
<param name="columnViewportIndex">Index of viewport column to remove</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is out of range; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SetCursor(FarPoint.Win.Spread.CursorType,System.Windows.Forms.Cursor)">
<summary>
Sets the pointer displayed over different areas of the component.
</summary>
<param name="index">Pointer type index (for a specific part of the component)</param>
<param name="cursor">Image used to paint the pointer</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SetInsertSheetImage(System.Drawing.Image)">
<summary>
Sets the custom image displayed on the insert sheet tab.
</summary>
<param name="newSheetImage">Image displayed on the insert sheet tab</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetInputMap(FarPoint.Win.Spread.InputMapMode)">
<summary>
Gets the input map defined for the specified focus mode.
</summary>
<param name="inputMapMode">Focus mode (control or child of the component)</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SetInputMap(FarPoint.Win.Spread.InputMapMode,FarPoint.Win.Spread.InputMap)">
<summary>
Sets the input map for the specified focus mode.
</summary>
<param name="inputMapMode">Focus mode (control or child of the component)</param>
<param name="value">Input map (<see cref="T:FarPoint.Win.Spread.InputMap"/> object)</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetInputMap(FarPoint.Win.Spread.InputMapMode,FarPoint.Win.Spread.OperationMode)">
<summary>
Gets the input map defined for the specified focus mode and operation mode.
</summary>
<param name="inputMapMode">Focus mode (control or child of the component)</param>
<param name="operationMode">Operation mode</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SetInputMap(FarPoint.Win.Spread.InputMapMode,FarPoint.Win.Spread.OperationMode,FarPoint.Win.Spread.InputMap)">
<summary>
Sets the input map for the specified focus mode and operation mode.
</summary>
<param name="inputMapMode">Focus mode (control or child of the component)</param>
<param name="operationMode">Operation mode</param>
<param name="value"><see cref="T:FarPoint.Win.Spread.InputMap"/> object containing the input map</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetInputMapWhenShapeHasFocus">
<summary>
Gets the input map when a shape has keyboard focus.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SetInputMapWhenShapeHasFocus(FarPoint.Win.Spread.InputMap)">
<summary>
Sets the input map when a shape has keyboard focus.
</summary>
<param name="value">Input map (<see cref="T:FarPoint.Win.Spread.InputMap"/> object)</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SetInputMapWhenChildHasFocus(FarPoint.Win.Spread.InputMap)">
<summary>
Sets the input map when a child control has keyboard focus.
</summary>
<param name="value">Input map (<see cref="T:FarPoint.Win.Spread.InputMap"/> object)</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetInputMapWhenChildHasFocus">
<summary>
Gets the input map when a child control has keyboard focus.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.Select(System.Boolean,System.Boolean)">
<summary>
Selects the FarPoint Spread component.
</summary>
<param name="directed">Whether selected</param>
<param name="forward">Whether forward</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetActionMap">
<summary>
Gets the action map, that maps action identifiers (for keystrokes) to particular actions.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SetActionMap(FarPoint.Win.Spread.ActionMap)">
<summary>
Sets the action map, that maps action identifiers (for keystrokes) to particular actions.
</summary>
<param name="value">New action map</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetCursor(FarPoint.Win.Spread.CursorType)">
<summary>
Gets the pointer displayed over different areas of the component.
</summary>
<param name="index">Pointer type index (for a specific part of the component)</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetMaximumCellOverflowWidth">
<summary>
Gets the maximum cell overflow width in pixels.
</summary>
Default value is 1200 pixels.
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SetMaximumCellOverflowWidth(System.Int32)">
<summary>
Sets the maximum cell overflow width in pixels.
</summary>
<param name="width">Width in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetSheetTabRectangle(System.Int32)">
<summary>
Gets the rectangle of the tab associated with a sheet.
</summary>
<param name="sheetIndex">Index of the sheet from which to retrieve a tab rectangle</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetRowViewportCount">
<summary>
Gets the number of viewport rows.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetRowViewportCount(System.Int32)">
<summary>
Gets the number of viewport rows for the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is out of range; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetColumnViewportCount">
<summary>
Gets the number of viewport columns in the active sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetColumnViewportCount(System.Int32)">
<summary>
Gets the number of viewport columns in the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is out of range; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetRowViewportIndexFromY(System.Int32)">
<summary>
Gets the index of the viewport row for the specified coordinate for the active sheet.
</summary>
<param name="y">Y coordinate</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetColumnViewportIndexFromX(System.Int32)">
<summary>
Gets the index of the viewport column for the specified coordinate for the active sheet.
</summary>
<param name="x">X coordinate</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetActiveRowViewportIndex">
<summary>
Gets the index of the active viewport row for the active sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetActiveRowViewportIndex(System.Int32)">
<summary>
Gets the index of the active viewport row for the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is out of range; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetActiveColumnViewportIndex">
<summary>
Gets the index of the active viewport column for the active sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetActiveColumnViewportIndex(System.Int32)">
<summary>
Gets the index of the active viewport column for the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is out of range; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SetActiveViewport(System.Int32,System.Int32)">
<summary>
Sets the active viewport for the active sheet.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
<param name="columnViewportIndex">Viewport column index</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SetActiveViewport(System.Int32,System.Int32,System.Int32)">
<summary>
Sets the active viewport for the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="rowViewportIndex">Viewport row index</param>
<param name="columnViewportIndex">Viewport column index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is out of range; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetViewportPreferredWidth(System.Int32)">
<summary>
Gets the maximum width of the specified viewport column.
</summary>
<param name="columnViewportIndex">Column index of viewport</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetViewportPreferredWidth(System.Int32,System.Int32)">
<summary>
Gets the maximum width of the specified viewport column for the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="columnViewportIndex">Column index of viewport</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is out of range; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SetViewportPreferredWidth(System.Int32,System.Int32)">
<summary>
Sets the maximum width of the specified viewport column for the active sheet.
</summary>
<param name="columnViewportIndex">Column index of viewport</param>
<param name="value">Width of the viewport in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SetViewportPreferredWidth(System.Int32,System.Int32,System.Int32)">
<summary>
Sets the maximum width of the specified viewport column for the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="columnViewportIndex">Column index of viewport</param>
<param name="value">Width of the viewport in pixels</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is out of range; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetViewportPreferredHeight(System.Int32)">
<summary>
Gets the maximum height of the viewport row for the active sheet.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetViewportPreferredHeight(System.Int32,System.Int32)">
<summary>
Gets the maximum height of the viewport row for the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="rowViewportIndex">Viewport row index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is out of range; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SetViewportPreferredHeight(System.Int32,System.Int32)">
<summary>
Sets the maximum height of the specified viewport row for the active sheet.
</summary>
<param name="rowViewportIndex">Row index of viewport</param>
<param name="value">Height value in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SetViewportPreferredHeight(System.Int32,System.Int32,System.Int32)">
<summary>
Sets the maximum height of the specified viewport row for the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="rowViewportIndex">Row index of viewport</param>
<param name="value">Height value in pixels</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is out of range; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.IsCellInView(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Returns whether the cell at the specified location is visible in the specified view.
</summary>
<param name="rowViewportIndex">Index of viewport row</param>
<param name="columnViewportIndex">Index of viewport column</param>
<param name="cellRowIndex">Index of row in that viewport</param>
<param name="cellColumnIndex">Index of column in that viewport</param>
<returns>true if the cell with specified indexes is visible; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetViewportLeftColumn(System.Int32)">
<summary>
Gets the leftmost column of cells of the specified viewport column for the active sheet.
</summary>
<param name="columnViewportIndex">Viewport column index </param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetViewportLeftColumn(System.Int32,System.Int32)">
<summary>
Gets the leftmost column of cells of the specified viewport column for the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="columnViewportIndex">Viewport column index </param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is out of range; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetViewportRightColumn(System.Int32)">
<summary>
Gets the rightmost column of cells of the specified viewport column for the active sheet.
</summary>
<param name="columnViewportIndex">Viewport column index </param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetViewportRightColumn(System.Int32,System.Int32)">
<summary>
Gets the rightmost column of cells of the specified viewport column for the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="columnViewportIndex">Viewport column index </param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is out of range; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetViewportBottomRow(System.Int32)">
<summary>
Gets the bottom row of cells of the specified viewport row for the active sheet.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetViewportBottomRow(System.Int32,System.Int32)">
<summary>
Gets the bottom row of cells of the specified viewport row for the specified sheet.
</summary>
<param name="sheetIndex">Index of sheet</param>
<param name="rowViewportIndex">Index of viewport row</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is out of range; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SetViewportLeftColumn(System.Int32,System.Int32)">
<summary>
Sets the leftmost column of cells of the specified viewport column for the active sheet.
</summary>
<param name="columnViewportIndex">Index of the viewport column</param>
<param name="value">Index of the column to set as the leftmost of that viewport</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SetViewportLeftColumn(System.Int32,System.Int32,System.Int32)">
<summary>
Sets the leftmost column of cells of the specified viewport column for the specified sheet.
</summary>
<param name="sheetIndex">Index of sheet</param>
<param name="columnViewportIndex">Index of the viewport column</param>
<param name="value">Index of the column to set as the leftmost of that viewport</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is out of range; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetViewportTopRow(System.Int32)">
<summary>
Gets the top row of cells of the specified viewport row for the specified sheet.
</summary>
<param name="rowViewportIndex">Index of the viewport row</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetViewportTopRow(System.Int32,System.Int32)">
<summary>
Gets the top row of cells of the specified viewport row for the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="rowViewportIndex">Viewport row index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is out of range; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SetViewportTopRow(System.Int32,System.Int32)">
<summary>
Sets the top row of cells of the specified viewport row for the active sheet.
</summary>
<param name="rowViewportIndex">Index of the viewport row</param>
<param name="value">Index of the row to set as the top of that viewport</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SetViewportTopRow(System.Int32,System.Int32,System.Int32)">
<summary>
Sets the top row of cells of the specified viewport row for the specified sheet.
</summary>
<param name="sheetIndex">Index of the sheet</param>
<param name="rowViewportIndex">Index of the viewport row</param>
<param name="value">Index of the row to set as the top of that viewport</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is out of range; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ShowActiveCell(FarPoint.Win.Spread.VerticalPosition,FarPoint.Win.Spread.HorizontalPosition)">
<summary>
Moves the active cell to the specified position in the component.
</summary>
<param name="verticalPosition">New position (vertical coordinate) of active cell </param>
<param name="horizontalPosition">New position (horizontal coordinate) of active cell </param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ShowCell(System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.VerticalPosition,FarPoint.Win.Spread.HorizontalPosition)">
<summary>
Moves the specified cell in the specified viewport to the specified position
in the component.
</summary>
<param name="rowViewportIndex">Row index of viewport</param>
<param name="columnViewportIndex">Column index of viewport</param>
<param name="row">Index of row of cell</param>
<param name="column">Index of column of cell</param>
<param name="verticalPosition">New position (vertical coordinate) of cell </param>
<param name="horizontalPosition">New position (horizontal coordinate) of cell </param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ShowRow(System.Int32,System.Int32,FarPoint.Win.Spread.VerticalPosition)">
<summary>
Moves a row in the specified viewport to the specified position in the component.
</summary>
<param name="rowViewportIndex">Row index of viewport that has row </param>
<param name="row">Index of row to move</param>
<param name="verticalPosition">New vertical position of row</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ShowColumn(System.Int32,System.Int32,FarPoint.Win.Spread.HorizontalPosition)">
<summary>
Moves a column of cells in the specified viewport to the specified position
in the component.
</summary>
<param name="columnViewportIndex">Column index of viewport that has column</param>
<param name="column">Index of column to move </param>
<param name="horizontalPosition">New position of column</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.StartAnnotationMode">
<summary>
Starts annotation mode.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.StartAnnotationMode(System.Boolean)">
<summary>
Starts annotation mode while specifying whether to close figures when a new drawing is started.
</summary>
<param name="closeFigures">Whether each figure is closed before the next figure is drawn</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.StopAnnotationMode">
<summary>
Stops annotation mode.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.CancelAnnotationMode">
<summary>
Cancels annotation mode.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.StartCellEditing(System.EventArgs,System.Boolean)">
<summary>
Starts cell editing.
</summary>
<param name="e">Event </param>
<param name="formula">Whether there is a formula </param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.StopCellEditing">
<summary>
Stops cell editing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.CancelCellEditing">
<summary>
Cancels cell editing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetSheetFromTag(FarPoint.Win.Spread.SheetView,System.Object)">
<summary>
Gets a sheet with a specific tag.
</summary>
<param name="sheetToStart">Sheet from which to start (null to start from beginning)</param>
<param name="tagToFind">Tag object to identify the sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnMouseEnter(System.EventArgs)">
<summary>
Raises the MouseEnter event.
</summary>
<param name="e">EventArgs event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnMouseLeave(System.EventArgs)">
<summary>
Raises the MouseLeave event.
</summary>
<param name="e">EventArgs event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnHandleDestroyed(System.EventArgs)">
<summary>
Raises the HandleDestroyed event.
</summary>
<param name="e">EventArgs event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnDoubleClick(System.EventArgs)">
<summary>
Raises the DoubleClick event.
</summary>
<param name="e">EventArgs event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the MouseDown event.
</summary>
<param name="e">MouseEventArgs event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the MouseMove event.
</summary>
<param name="e">MouseEventArgs event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the MouseUp event.
</summary>
<param name="e">MouseEventArgs event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnMouseWheel(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the MouseWheel event.
</summary>
<param name="e">MouseEventArgs event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
<summary>
Paints the background of the component.
</summary>
<param name="e">PaintEventArgs event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnPaint(System.Windows.Forms.PaintEventArgs)">
<summary>
Raises the Paint event.
</summary>
<param name="e">PaintEventArgs event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnResize(System.EventArgs)">
<summary>
Raises the Resize event.
</summary>
<param name="e">EventArgs event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnRightToLeftChanged(System.EventArgs)">
<summary>
Raises the RightToLeftChanged event.
</summary>
<param name="e">EventArgs event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ScaleCore(System.Single,System.Single)">
<summary>
Performs the work of scaling the entire component and any child controls.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnGotFocus(System.EventArgs)">
<summary>
Raises the GotFocus event.
</summary>
<param name="e">EventArgs event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnLostFocus(System.EventArgs)">
<summary>
Raises the LostFocus event.
</summary>
<param name="e">EventArgs event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.getPrintTitleBarHeight(FarPoint.Win.Spread.SheetView)">
<summary>
Get the height of Title bar(include of title and subtitle) when print out).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.getPrintTitleHeight(FarPoint.Win.Spread.SheetView,System.Boolean)">
<summary>
Get height of title or subtitle
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SafeAbort(FarPoint.Win.Spread.FpSpread)">
<summary>
Handles the closing of the abort dialog in the specified FpSpread component in a separate thread.
</summary>
<param name="spread">FpSpread component</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SafePrint(FarPoint.Win.Spread.FpSpread,System.Int32)">
<summary>
Handles the printing of the specified sheet in the specified FpSpread component in a separate thread.
</summary>
<param name="spread">FpSpread component</param>
<param name="sheet">Integer number of sheet</param>
</member>
<member name="F:FarPoint.Win.Spread.FpSpread.isPrinting">
<summary>
Indicates whether the printing is running or not
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FpSpread.perferredPrintColumnWidth">
<summary>
Contains the value of preferred print column width, this is only valid during the printing process.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetPrintPreview">
<summary>
Gets the print preview dialog.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SetPrintPreview(System.Windows.Forms.PrintPreviewDialog)">
<summary>
Sets the print preview dialog.
</summary>
<param name="dialog">Print preview dialog</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ShowPageSetup(System.Int32,System.Boolean,System.Boolean)">
<summary>
Shows the page setup dialog with the specified buttons for the specified sheet.
</summary>
<param name="sheet">Sheet index</param>
<param name="showPrintButton">Whether to display the Print button</param>
<param name="showPreviewButton">Whether to display the Print Preview button</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is out of range; must be between 0 and total number of sheets.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ShowPageSetup(FarPoint.Win.Spread.SheetView,System.Boolean,System.Boolean)">
<summary>
Shows the page setup dialog with the specified buttons for the specified sheet.
</summary>
<param name="sheet">Sheet</param>
<param name="showPrintButton">Whether to display the Print button</param>
<param name="showPreviewButton">Whether to display the Print Preview button</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.PrintSheet(System.Int32)">
<summary>
Handles the printing of the specified sheet in a separate thread.
</summary>
<param name="sheet">Index of sheet to print; -1 for all sheets</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is out of range; must be between 0 and total number of sheets (or -1 for all sheets)
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.PrintSheet(System.Int32,System.Boolean)">
<summary>
Handles the printing of the specified sheet in a separate thread.
</summary>
<param name="sheet">Index of sheet to print; -1 for all sheets</param>
<param name="removeAfterPrint">if set to <c>true</c> [remove after print].</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is out of range; must be between 0 and total number of sheets (or -1 for all sheets)
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.PrintSheet(FarPoint.Win.Spread.SheetView)">
<summary>
Handles the printing of the specified sheet in a separate thread.
</summary>
<param name="sheet">Sheet to be printed</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SetPrintInfo(FarPoint.Win.Spread.PrintInfo,System.Int32)">
<summary>
Sets the <see cref="T:FarPoint.Win.Spread.PrintInfo"/> object for the specfied sheet.
</summary>
<param name="pi"><see cref="T:FarPoint.Win.Spread.PrintInfo"/> object</param>
<param name="sheet">Sheet for which to set PrintInfo; -1 to specify all sheets</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetOwnerPrintPageCount(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32)">
<summary>
Gets the number of pages required to print a given sheet into the supplied rectangle.
</summary>
<param name="g">Graphics object that handles printing</param>
<param name="rect">Rectangle area representing the area for printing</param>
<param name="sheet">Sheet to print</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetOwnerPrintColumnPageBreaks(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Boolean)">
<summary>
Gets the column page breaks for the specified sheet under the current printing conditions.
</summary>
<param name="g">Graphics object used for printing</param>
<param name="rect">Rectangle area representing the area for printing</param>
<param name="sheet">Sheet for which to calculate page breaks</param>
<param name="reCalc">Whether to recalcuate the page break</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetOwnerPrintRowPageBreaks(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Boolean)">
<summary>
Gets the row page breaks for the specified sheet under the current printing conditions.
</summary>
<param name="g">Graphics object used for printing</param>
<param name="rect">Rectangle area representing the area for printing</param>
<param name="sheet">Sheet for which to calculate page breaks</param>
<param name="reCalc">Whether to recalcuate page break</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OwnerPrintDraw(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32)">
<summary>
Prints the specified page of the specified sheet to a specified graphics interface with the specified size.
</summary>
<param name="g">Graphics device that handles printing</param>
<param name="rect">Location and size of a rectangular region</param>
<param name="sheet">Sheet from which to print</param>
<param name="page">Specific page of the sheet to print</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is out of range; must be between zero and the total number of sheets
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified page index is out of range; must be greater than one
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetPrintPageCount(System.Int32)">
<summary>
Gets the number of pages required to print the specified sheet.
</summary>
<param name="sheet">Index of sheet to print</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetColumnPageBreaks(System.Int32)">
<summary>
Gets the column page breaks for the specified sheet
under the current printing conditions.
</summary>
<param name="sheet">Index of sheet for which to return column page breaks</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetColumnPageBreaks(System.Int32,System.Boolean)">
<summary>
Gets the column page breaks for the specified sheet
under the current printing conditions with the option to recalculate.
</summary>
<param name="sheet">Index of sheet for which to return column page breaks</param>
<param name="reCalc">Whether to recalculate the page break</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetRowPageBreaks(System.Int32)">
<summary>
Gets the row page breaks for the specified sheet
under the current printing conditions.
</summary>
<param name="sheet">Index of sheet for which to return row page breaks</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetRowPageBreaks(System.Int32,System.Boolean)">
<summary>
Gets the row page breaks for the specified sheet
under the current printing conditions with the option to recalculate.
</summary>
<param name="sheet">Index of sheet for which to return row page breaks</param>
<param name="reCalc">Whether to recalculate the page break</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.Open(System.String)">
<summary>
Opens a saved XML file.
</summary>
<param name="fileName">Path and name of file from which to load the data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.Open(System.IO.Stream)">
<summary>
Opens saved XML from a stream.
</summary>
<param name="stream">Stream from which to load the data</param>
<exception cref="T:System.ArgumentNullException">
No stream specified or specified stream is null
</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OpenSpreadFile(System.String,System.Int32)">
<summary>
Opens a saved Spread file.
</summary>
<param name="fileName">Path and name of the Spread-compatible file from which to load the contents </param>
<param name="sheetIndex">Index of sheet into which to load the data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.IsSpreadXmlFile(System.String)">
<summary>
Opens the specified file and determines whether it meets the minimal requirements
to be considered a Spread XML file.
</summary>
<param name="fileName">String containing path and name of file</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.IsSpreadSSFile(System.String)">
<summary>
Opens the specified file and determines whether it meets the minimal requirements
to be considered a Spread SS file.
</summary>
<param name="fileName">String containing path and name of file</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.IsExcelFile(System.String)">
<summary>
Opens the specified file and determines whether it meets the minimal requirements
to be considered an Excel file.
</summary>
<param name="fileName">String containing path and name of file</param>
<returns>Boolean: true if it is an Excel file; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.IsExcelFile(System.String,FarPoint.Excel.ExcelWorkbookType@,System.Boolean@)">
<summary>
Opens the specified file and determines whether it meets the minimal requirements
to be considered a structured storage file containing an Excel workbook.
</summary>
<param name="fileName">Path and name of file </param>
<param name="workbookType">returns the type of Excel workbook</param>
<param name="isEncrypt">return true the file is encrypted; false otherwise </param>
<exception cref="T:System.IO.FileNotFoundException">Specified file is not found</exception>
<exception cref="T:System.ArgumentNullException">No file name is specified (or specified file name is null)</exception>
<exception cref="T:System.ArgumentException">No file name is specified (or specified file name is empty)</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.IsExcelFile(System.String,FarPoint.Excel.ExcelWorkbookType@)">
<summary>
Opens the specified file and determines whether it meets the minimal requirements
to be considered a structured storage file containing an Excel workbook.
</summary>
<param name="fileName">Path and name of file </param>
<param name="workbookType">returns the type of Excel workbook</param>
<exception cref="T:System.IO.FileNotFoundException">Specified file is not found</exception>
<exception cref="T:System.ArgumentNullException">No file name is specified (or specified file name is null)</exception>
<exception cref="T:System.ArgumentException">No file name is specified (or specified file name is empty)</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.IsExcelStream(System.IO.Stream,FarPoint.Excel.ExcelWorkbookType@)">
<summary>
Opens the specified file and determines whether it meets the minimal requirements
to be considered a stream containing an Excel workbook.
</summary>
<param name="stream">Stream</param>
<param name="workbookType">Workbook type</param>
<exception cref="T:System.ArgumentNullException">No stream specified or specified stream is null</exception>
<exception cref="T:System.ArgumentException">No stream specified or specified stream is empty</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.IsExcelStream(System.IO.Stream)">
<summary>
Opens the specified file and determines whether it meets the minimal requirements
to be considered an Excel-compatible stream.
</summary>
<param name="stream">Stream</param>
<returns>Boolean: true if it is an Excel stream; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.IsExcelStream(System.IO.Stream,FarPoint.Excel.ExcelWorkbookType@,System.Boolean@)">
<summary>
Opens the specified file and determines whether it meets the minimal requirements
to be considered a stream containing an Excel workbook.
</summary>
<param name="stream">Stream</param>
<param name="workbookType">Workbook type</param>
<param name="isEncrypt">isEncrypt</param>
<exception cref="T:System.ArgumentNullException">No stream specified or specified stream is null</exception>
<exception cref="T:System.ArgumentException">No stream specified or specified stream is empty</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OpenExcel(System.IO.Stream,FarPoint.Excel.ExcelOpenFlags)">
<summary>
Opens an Excel Compound Document File and loads it into Spread.
</summary>
<param name="stream">Stream</param>
<param name="openFlags">Open flag</param>
<exception cref="T:System.ArgumentNullException">No stream specified or specified stream is null</exception>
<exception cref="T:System.ArgumentException">No stream specified or specified stream is empty</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OpenExcel(System.IO.Stream,FarPoint.Excel.ExcelOpenFlags,System.String)">
<summary>
Opens an Excel Compound Document File and loads it into Spread.
</summary>
<param name="stream">Stream</param>
<param name="openFlags">Open flag</param>
<param name="password">Password of file</param>
<exception cref="T:System.ArgumentNullException">No stream specified or specified stream is null</exception>
<exception cref="T:System.ArgumentException">No stream specified or specified stream is empty</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OpenExcel(System.IO.Stream,FarPoint.Excel.ExcelOpenFlags,FarPoint.Excel.ExcelWarningList)">
<summary>
Opens an Excel Compound Document File and loads it into Spread with a list of warnings.
</summary>
<param name="stream">Stream</param>
<param name="openFlags">Open flag</param>
<param name="warningList">List of Excel warnings</param>
<exception cref="T:System.ArgumentNullException">No stream specified or specified stream is null</exception>
<exception cref="T:System.ArgumentException">No stream specified or specified stream is empty</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OpenExcel(System.IO.Stream,FarPoint.Excel.ExcelOpenFlags,FarPoint.Excel.ExcelWarningList,System.String)">
<summary>
Opens an Excel Compound Document File and loads it into Spread with a list of warnings.
</summary>
<param name="stream">Stream</param>
<param name="openFlags">Open flag</param>
<param name="warningList">List of Excel warnings</param>
<param name="password">Password of file</param>
<exception cref="T:System.ArgumentNullException">No stream specified or specified stream is null</exception>
<exception cref="T:System.ArgumentException">No stream specified or specified stream is empty</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OpenExcel(System.IO.Stream)">
<summary>
Opens an Excel Compound Document File and loads it into Spread.
</summary>
<param name="stream">Stream containing an Excel Compound Document File</param>
<exception cref="T:System.ArgumentNullException">No stream specified or specified stream is null</exception>
<exception cref="T:System.ArgumentException">No stream specified or specified stream is empty</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OpenExcel(System.IO.Stream,System.String)">
<summary>
Opens an Excel Compound Document File and loads it into Spread.
</summary>
<param name="stream">Stream containing an Excel Compound Document File</param>
<param name="password">Password of file</param>
<exception cref="T:System.ArgumentNullException">No stream specified or specified stream is null</exception>
<exception cref="T:System.ArgumentException">No stream specified or specified stream is empty</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OpenExcel(System.IO.Stream,FarPoint.Excel.ExcelWarningList)">
<summary>
Opens an Excel Compound Document File and loads it into Spread with a list of warnings.
</summary>
<param name="stream">Stream</param>
<param name="warningList">List of Excel warnings</param>
<exception cref="T:System.ArgumentNullException">No stream specified or specified stream is null</exception>
<exception cref="T:System.ArgumentException">No stream specified or specified stream is empty</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetExcelSheetNames(System.IO.Stream)">
<summary>
Gets an array of sheet names from the specified Excel stream.
</summary>
<param name="stream">Stream containing an Excel Compound Document File</param>
<exception cref="T:System.ArgumentNullException">No stream specified or specified stream is null</exception>
<exception cref="T:System.ArgumentException">No stream specified or specified stream is empty</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetExcelSheetNames(System.IO.Stream,System.String)">
<summary>
Gets an array of sheet names from the specified Excel stream.
</summary>
<param name="stream">Stream containing an Excel Compound Document File</param>
<param name="password">Password of file</param>
<exception cref="T:System.ArgumentNullException">No stream specified or specified stream is null</exception>
<exception cref="T:System.ArgumentException">No stream specified or specified stream is empty</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SaveExcel(System.IO.Stream)">
<summary>
Saves the contents of the FarPoint Spread component to the specified stream.
</summary>
<param name="stream">Stream to which to save the data</param>
<exception cref="T:System.ArgumentNullException">No stream specified or specified stream is null</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SaveExcel(System.IO.Stream,System.String)">
<summary>
Saves the contents of the FarPoint Spread component to the specified stream.
</summary>
<param name="stream">Stream to which to save the data</param>
<param name="password">Password of file</param>
<exception cref="T:System.ArgumentNullException">No stream specified or specified stream is null</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SaveExcel(System.IO.Stream,FarPoint.Excel.ExcelWarningList)">
<summary>
Saves the contents of the FarPoint Spread component to the specified stream
with a list of warnings.
</summary>
<param name="stream">Stream</param>
<param name="warningList">List of Excel warnings</param>
<exception cref="T:System.ArgumentNullException">No stream specified or specified stream is null</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SaveExcel(System.IO.Stream,FarPoint.Excel.ExcelSaveFlags)">
<summary>
Saves the contents of the FarPoint Spread component to the specified stream
with the headers exported as data.
</summary>
<param name="stream">Stream</param>
<param name="saveFlags">Save flag</param>
<exception cref="T:System.ArgumentNullException">No stream specified or specified stream is null</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SaveExcel(System.IO.Stream,FarPoint.Excel.ExcelSaveFlags,System.String)">
<summary>
Saves the contents of the FarPoint Spread component to the specified stream
with the headers exported as data.
</summary>
<param name="stream">Stream</param>
<param name="saveFlags">Save flag</param>
<param name="password">Password of file</param>
<exception cref="T:System.ArgumentNullException">No stream specified or specified stream is null</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SaveExcel(System.IO.Stream,FarPoint.Excel.ExcelSaveFlags,FarPoint.Excel.ExcelWarningList)">
<summary>
Saves the contents of the FarPoint Spread component to the specified stream
with headers and a list of warnings.
</summary>
<param name="stream">Stream</param>
<param name="saveFlags">Save flag</param>
<param name="warningList">List of Excel warnings</param>
<exception cref="T:System.ArgumentNullException">No stream specified or specified stream is null</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SaveExcel(System.IO.Stream,FarPoint.Excel.ExcelSaveFlags,FarPoint.Excel.ExcelWarningList,System.String)">
<summary>
Saves the contents of the FarPoint Spread component to the specified stream
with headers and a list of warnings.
</summary>
<param name="stream">Stream</param>
<param name="saveFlags">Save flag</param>
<param name="warningList">List of Excel warnings</param>
<param name="password">Password of file</param>
<exception cref="T:System.ArgumentNullException">No stream specified or specified stream is null</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SaveExcel(System.String,FarPoint.Excel.ExcelSaveFlags)">
<summary>
Saves the contents of the FarPoint Spread component to the specified Excel-compatible file
with the headers exported as data.
</summary>
<param name="fileName">Path and name of file</param>
<param name="saveFlags">Save flag</param>
<exception cref="T:System.IO.FileNotFoundException">Specified file is not found</exception>
<exception cref="T:System.ArgumentNullException">No file name is specified (or specified file name is null)</exception>
<exception cref="T:System.ArgumentException">No file name is specified (or specified file name is empty)</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SaveExcel(System.String,FarPoint.Excel.ExcelSaveFlags,System.String)">
<summary>
Saves the contents of the FarPoint Spread component to the specified Excel-compatible file
with the headers exported as data.
</summary>
<param name="fileName">Path and name of file</param>
<param name="saveFlags">Save flag</param>
<param name="password">Password of file</param>
<exception cref="T:System.IO.FileNotFoundException">Specified file is not found</exception>
<exception cref="T:System.ArgumentNullException">No file name is specified (or specified file name is null)</exception>
<exception cref="T:System.ArgumentException">No file name is specified (or specified file name is empty)</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SaveExcel(System.String,FarPoint.Excel.ExcelSaveFlags,FarPoint.Excel.ExcelWarningList)">
<summary>
Saves the contents of the FarPoint Spread component to the specified Excel-compatible file
with headers and a list of warnings.
</summary>
<param name="fileName">Path and name of file </param>
<param name="saveFlags">Save flag</param>
<param name="warningList">List of Excel warnings</param>
<exception cref="T:System.IO.FileNotFoundException">Specified file is not found</exception>
<exception cref="T:System.ArgumentNullException">No file name is specified (or specified file name is null)</exception>
<exception cref="T:System.ArgumentException">No file name is specified (or specified file name is empty)</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SaveExcel(System.String,FarPoint.Excel.ExcelSaveFlags,FarPoint.Excel.ExcelWarningList,System.String)">
<summary>
Saves the contents of the FarPoint Spread component to the specified Excel-compatible file
with headers and a list of warnings.
</summary>
<param name="fileName">Path and name of file </param>
<param name="saveFlags">Save flag</param>
<param name="warningList">List of Excel warnings</param>
<param name="password">Password of file</param>
<exception cref="T:System.IO.FileNotFoundException">Specified file is not found</exception>
<exception cref="T:System.ArgumentNullException">No file name is specified (or specified file name is null)</exception>
<exception cref="T:System.ArgumentException">No file name is specified (or specified file name is empty)</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OpenExcel(System.String,FarPoint.Excel.ExcelOpenFlags)">
<summary>
Opens an Excel-compatible file and loads it into Spread.
</summary>
<param name="fileName">Path and name of file </param>
<param name="openFlags">Open flag</param>
<exception cref="T:System.IO.FileNotFoundException">Specified file is not found</exception>
<exception cref="T:System.ArgumentNullException">No file name is specified (or specified file name is null)</exception>
<exception cref="T:System.ArgumentException">No file name is specified (or specified file name is empty)</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OpenExcel(System.String,FarPoint.Excel.ExcelOpenFlags,System.String)">
<summary>
Opens an Excel-compatible file and loads it into Spread.
</summary>
<param name="fileName">Path and name of file </param>
<param name="openFlags">Open flag</param>
<param name="password">Password of file</param>
<exception cref="T:System.IO.FileNotFoundException">Specified file is not found</exception>
<exception cref="T:System.ArgumentNullException">No file name is specified (or specified file name is null)</exception>
<exception cref="T:System.ArgumentException">No file name is specified (or specified file name is empty)</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OpenExcel(System.String,FarPoint.Excel.ExcelOpenFlags,FarPoint.Excel.ExcelWarningList)">
<summary>
Opens an Excel-compatible file and loads it into Spread with a list of warnings.
</summary>
<param name="fileName">Path and name of file </param>
<param name="openFlags">Open flag</param>
<param name="warningList">List of Excel warnings</param>
<exception cref="T:System.IO.FileNotFoundException">Specified file is not found</exception>
<exception cref="T:System.ArgumentNullException">No file name is specified (or specified file name is null)</exception>
<exception cref="T:System.ArgumentException">No file name is specified (or specified file name is empty)</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OpenExcel(System.String,FarPoint.Excel.ExcelOpenFlags,FarPoint.Excel.ExcelWarningList,System.String)">
<summary>
Opens an Excel-compatible file and loads it into Spread with a list of warnings.
</summary>
<param name="fileName">Path and name of file </param>
<param name="openFlags">Open flag</param>
<param name="warningList">List of Excel warnings</param>
<param name="password">Password of file</param>
<exception cref="T:System.IO.FileNotFoundException">Specified file is not found</exception>
<exception cref="T:System.ArgumentNullException">No file name is specified (or specified file name is null)</exception>
<exception cref="T:System.ArgumentException">No file name is specified (or specified file name is empty)</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OpenExcel(System.String)">
<summary>
Opens an Excel-compatible file and loads it into Spread.
</summary>
<param name="fileName">Path and name of file </param>
<exception cref="T:System.IO.FileNotFoundException">Specified file is not found</exception>
<exception cref="T:System.ArgumentNullException">No file name is specified (or specified file name is null)</exception>
<exception cref="T:System.ArgumentException">No file name is specified (or specified file name is empty)</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OpenExcel(System.String,System.String)">
<summary>
Opens an Excel-compatible file and loads it into Spread.
</summary>
<param name="fileName">Path and name of file </param>
<param name="password">Password of file</param>
<exception cref="T:System.IO.FileNotFoundException">Specified file is not found</exception>
<exception cref="T:System.ArgumentNullException">No file name is specified (or specified file name is null)</exception>
<exception cref="T:System.ArgumentException">No file name is specified (or specified file name is empty)</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OpenExcel(System.String,FarPoint.Excel.ExcelWarningList)">
<summary>
Opens an Excel-compatible file and loads it into Spread with a list of warnings.
</summary>
<param name="fileName">Path and name of file </param>
<param name="warningList">List of Excel warnings</param>
<exception cref="T:System.IO.FileNotFoundException">Specified file is not found</exception>
<exception cref="T:System.ArgumentNullException">No file name is specified (or specified file name is null)</exception>
<exception cref="T:System.ArgumentException">No file name is specified (or specified file name is empty)</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetExcelSheetNames(System.String)">
<summary>
Gets an array of sheet names from the specified Excel-compatible file.
</summary>
<param name="fileName">Path and name of file </param>
<exception cref="T:System.IO.FileNotFoundException">Specified file is not found</exception>
<exception cref="T:System.ArgumentNullException">No file name is specified (or specified file name is null)</exception>
<exception cref="T:System.ArgumentException">No file name is specified (or specified file name is empty)</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GetExcelSheetNames(System.String,System.String)">
<summary>
Gets an array of sheet names from the specified Excel-compatible file.
</summary>
<param name="fileName">Path and name of file </param>
<param name="password">Password of file</param>
<exception cref="T:System.IO.FileNotFoundException">Specified file is not found</exception>
<exception cref="T:System.ArgumentNullException">No file name is specified (or specified file name is null)</exception>
<exception cref="T:System.ArgumentException">No file name is specified (or specified file name is empty)</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SaveExcel(System.String)">
<summary>
Saves the contents of the FarPoint Spread component to the specified Excel-compatible file.
</summary>
<param name="fileName">Path and name of file </param>
<exception cref="T:System.IO.FileNotFoundException">Specified file is not found</exception>
<exception cref="T:System.ArgumentNullException">No file name is specified (or specified file name is null)</exception>
<exception cref="T:System.ArgumentException">No file name is specified (or specified file name is empty)</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SaveExcel(System.String,System.String)">
<summary>
Saves the contents of the FarPoint Spread component to the specified Excel-compatible file.
</summary>
<param name="fileName">Path and name of file</param>
<param name="password">Password of file</param>
<exception cref="T:System.IO.FileNotFoundException">Specified file is not found</exception>
<exception cref="T:System.ArgumentNullException">No file name is specified (or specified file name is null)</exception>
<exception cref="T:System.ArgumentException">No file name is specified (or specified file name is empty)</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SaveExcel(System.String,FarPoint.Excel.ExcelWarningList)">
<summary>
Saves the contents of the FarPoint Spread component to the specified Excel-compatible file
with a list of warnings.
</summary>
<param name="fileName">Path and name of file </param>
<param name="warningList">List of Excel warnings</param>
<exception cref="T:System.IO.FileNotFoundException">Specified file is not found</exception>
<exception cref="T:System.ArgumentNullException">No file name is specified (or specified file name is null)</exception>
<exception cref="T:System.ArgumentException">No file name is specified (or specified file name is empty)</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SaveExcel(System.String,FarPoint.Win.Spread.Model.IncludeHeaders)">
<summary>
Saves the contents of the FarPoint Spread component to the specified Excel-compatible file
with the headers exported as data.
</summary>
<param name="fileName">Path and name of file</param>
<param name="includeHeaders">Whether to include headers</param>
<exception cref="T:System.IO.FileNotFoundException">Specified file is not found</exception>
<exception cref="T:System.ArgumentNullException">No file name is specified (or specified file name is null)</exception>
<exception cref="T:System.ArgumentException">No file name is specified (or specified file name is empty)</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SaveExcel(System.String,FarPoint.Win.Spread.Model.IncludeHeaders,FarPoint.Excel.ExcelWarningList)">
<summary>
Saves the contents of the FarPoint Spread component to the specified Excel-compatible file
with headers and a list of warnings.
</summary>
<param name="fileName">Path and name of file </param>
<param name="includeHeaders">Whether to include headers</param>
<param name="warningList">List of Excel warnings</param>
<exception cref="T:System.IO.FileNotFoundException">Specified file is not found</exception>
<exception cref="T:System.ArgumentNullException">No file name is specified (or specified file name is null)</exception>
<exception cref="T:System.ArgumentException">No file name is specified (or specified file name is empty)</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.Save(System.String,System.Boolean)">
<summary>
Saves the contents of the FarPoint Spread component to the specified file.
</summary>
<param name="fileName">Path and name of file to which to save </param>
<param name="dataOnly">Whether to save data only</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.Save(System.IO.Stream,System.Boolean)">
<summary>
Saves the contents of the FarPoint Spread component to the specified stream.
</summary>
<param name="stream">Stream</param>
<param name="dataOnly">Whether to save data only</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnClipboardPasting(FarPoint.Win.Spread.ClipboardPastingEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ClipboardPasting"/> event.
</summary>
<param name="e">ClipboardPastingEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnClipboardPasted(FarPoint.Win.Spread.ClipboardPastedEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ClipboardPasted"/> event.
</summary>
<param name="e">EventArgs</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnSheetTabClick(FarPoint.Win.Spread.SheetTabClickEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.SheetTabClick"/> event.
</summary>
<param name="e">SheetTabClickEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnSheetTabDoubleClick(FarPoint.Win.Spread.SheetTabDoubleClickEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.SheetTabDoubleClick"/> event.
</summary>
<param name="e">SheetTabDoubleClickEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnActiveSheetChanging(FarPoint.Win.Spread.ActiveSheetChangingEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ActiveSheetChanging"/> event.
</summary>
<param name="e">ActiveSheetChangingEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnActiveSheetChanged(System.EventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ActiveSheetChanged"/> event.
</summary>
<param name="e">EventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnActiveSpreadViewChanging(System.EventArgs)">
<summary>
Raises the ActiveSpreadViewChanging event.
</summary>
<param name="e">EventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnActiveSpreadViewChanged(System.EventArgs)">
<summary>
Raises the ActiveSpreadViewChanged event.
</summary>
<param name="e">EventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnRowHeightChanged(FarPoint.Win.Spread.RowHeightChangedEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.RowHeightChanged"/> event.
</summary>
<param name="e">RowHeightChangedEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnRangeGroupStateChanging(FarPoint.Win.Spread.RangeGroupStateChangingEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.RangeGroupStateChanging"/> event.
</summary>
<param name="e">RangeGroupStateChangingEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnRangeGroupStateChanged(FarPoint.Win.Spread.RangeGroupStateChangedEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.RangeGroupStateChanged"/> event.
</summary>
<param name="e">RangeGroupStateChangedEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnColumnWidthChanging(FarPoint.Win.Spread.ColumnWidthChangingEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ColumnWidthChanging"/> event.
</summary>
<param name="e">ColumnWidthChangingEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnRowHeightChanging(FarPoint.Win.Spread.RowHeightChangingEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.RowHeightChanging"/> event.
</summary>
<param name="e">RowHeightChangingEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnColumnWidthChanged(FarPoint.Win.Spread.ColumnWidthChangedEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ColumnWidthChanged"/> event.
</summary>
<param name="e">ColumnWidthChangedEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnRowViewportHeightChanged(FarPoint.Win.Spread.RowViewportHeightChangedEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.RowViewportHeightChanged"/> event.
</summary>
<param name="e">RowViewportHeightChangedEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnColumnViewportWidthChanged(FarPoint.Win.Spread.ColumnViewportWidthChangedEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ColumnViewportWidthChanged"/> event.
</summary>
<param name="e">ColumnViewportWidthChangedEventArgs containing the event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnSelectionChanged(FarPoint.Win.Spread.SelectionChangedEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.SelectionChanged"/> event.
</summary>
<param name="e">SelectionChangedEventArgs containing the event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnSelectionChanging(FarPoint.Win.Spread.SelectionChangingEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.SelectionChanging"/> event.
</summary>
<param name="e">SelectionChangingEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnUserFormulaEntered(FarPoint.Win.Spread.UserFormulaEnteredEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.UserFormulaEntered"/> event.
</summary>
<param name="e">UserFormulaEnteredEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnHyperLinkClicked(FarPoint.Win.Spread.HyperLinkClickedEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.HyperLinkClicked"/> event.
</summary>
<param name="e">HyperLinkClickedEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnChildWorkbookCreated(FarPoint.Win.Spread.ChildWorkbookCreatedEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ChildWorkbookCreated"/> event.
</summary>
<param name="e">ChildWorkbookCreatedEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnClipboardChanging(System.EventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ClipboardChanging"/> event.
</summary>
<param name="e">EventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnUserZooming(FarPoint.Win.Spread.ZoomEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.UserZooming"/> event.
</summary>
<param name="e">ZoomEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnShapeActivated(System.EventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ShapeActivated"/> event.
</summary>
<param name="e">EventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnAnnotationModeStarting(FarPoint.Win.Spread.AnnotationModeEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.AnnotationModeStarting"/> event.
</summary>
<param name="e">EventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnAnnotationModeEnding(FarPoint.Win.Spread.AnnotationModeEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.AnnotationModeEnding"/> event.
</summary>
<param name="e">EventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnShapeDeactivated(System.EventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ShapeDeactivated"/> event.
</summary>
<param name="e">EventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnChildViewCreated(FarPoint.Win.Spread.ChildViewCreatedEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ChildViewCreated"/> event.
</summary>
<param name="e">ChildViewCreatedEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnTextTipFetch(FarPoint.Win.Spread.TextTipFetchEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.TextTipFetch"/> event.
</summary>
<param name="e">TextTipFetchEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnScrollTipFetch(FarPoint.Win.Spread.ScrollTipFetchEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ScrollTipFetch"/> event.
</summary>
<param name="e">ScrollTipFetchEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnPreviewRowFetch(FarPoint.Win.Spread.PreviewRowFetchEventArgs)">
<summary>
Raises the <see cref="E:PreviewRowFetch"/> event.
</summary>
<param name="e">The <see cref="T:FarPoint.Win.Spread.PreviewRowFetchEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnGrouping(FarPoint.Win.Spread.GroupingEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.Grouping"/> event.
</summary>
<param name="e">GroupingEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnGrouped(System.EventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.Grouped"/> event.
</summary>
<param name="e">GroupedEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnUngrouped(System.EventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.Grouped"/> event.
</summary>
<param name="e">GroupedEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnPaintGroupBarBackground(FarPoint.Win.Spread.PaintGroupBarBackgroundEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.PaintGroupBarBackground"/> event.
</summary>
<param name="e">PaintGroupBarBackgroundEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnCellClick(FarPoint.Win.Spread.CellClickEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.CellClick"/> event.
</summary>
<param name="e">CellClickEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnCellDoubleClick(FarPoint.Win.Spread.CellClickEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.CellDoubleClick"/> event.
</summary>
<param name="e">CellClickEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnAdvance(FarPoint.Win.Spread.AdvanceEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.Advance"/> event.
</summary>
<param name="e">AdvanceEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnChange(FarPoint.Win.Spread.ChangeEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.Change"/> event.
</summary>
<param name="e">ChangeEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnLeaveCell(FarPoint.Win.Spread.LeaveCellEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.LeaveCell"/> event.
</summary>
<param name="e">LeaveCellEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnEnterCell(FarPoint.Win.Spread.EnterCellEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.EnterCell"/> event.
</summary>
<param name="e">EnterCellEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnDragDropBlock(FarPoint.Win.Spread.DragDropBlockEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.DragDropBlock"/> event.
</summary>
<param name="e">DragDropBlockEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnDragDropBlockCompleted(FarPoint.Win.Spread.DragDropBlockCompletedEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.DragDropBlockCompleted"/> event.
</summary>
<param name="e">DragDropBlockCompletedEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnDragFillBlockCompleted(FarPoint.Win.Spread.DragFillBlockCompletedEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.DragFillBlockCompleted"/> event.
</summary>
<param name="e">DragFillBlockEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnColumnDragMove(FarPoint.Win.Spread.DragMoveEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ColumnDragMove"/> event.
</summary>
<param name="e">DragMoveEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnRowDragMove(FarPoint.Win.Spread.DragMoveEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.RowDragMove"/> event.
</summary>
<param name="e">DragMoveEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnColumnDragMoveCompleted(FarPoint.Win.Spread.DragMoveCompletedEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ColumnDragMoveCompleted"/> event.
</summary>
<param name="e">DragMoveCompletedEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnRowDragMoveCompleted(FarPoint.Win.Spread.DragMoveCompletedEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.RowDragMoveCompleted"/> event.
</summary>
<param name="e">DragMoveCompletedEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnDragFillBlock(FarPoint.Win.Spread.DragFillBlockEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.DragFillBlock"/> event.
</summary>
<param name="e">DragFillBlockEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnPrintMessageBox(FarPoint.Win.Spread.PrintMessageBoxEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.PrintMessageBox"/> event.
</summary>
<param name="e">PrintMessageBoxEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnPrintAbort(FarPoint.Win.Spread.PrintAbortEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.PrintAbort"/> event.
</summary>
<param name="e">PrintAbortEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnPrintPreviewShowing(FarPoint.Win.Spread.PrintPreviewShowingEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.PrintPreviewShowing"/> event.
</summary>
<param name="e">PrintPreviewShowingEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnPaintGrayArea(FarPoint.Win.Spread.PaintGrayAreaEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.PaintGrayArea"/> event.
</summary>
<param name="e">PaintGrayAreaEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnPaintTabStripTab(FarPoint.Win.Spread.PaintTabStripTabEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.PaintTabStripTab"/> event.
</summary>
<param name="e">PaintTabStripTabEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnPaintTabStrip(FarPoint.Win.Spread.PaintTabStripEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.PaintTabStrip"/> event.
</summary>
<param name="e">PaintTabStripEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnPaintTabStripButton(FarPoint.Win.Spread.PaintTabStripButtonEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.PaintTabStripButton"/> event.
</summary>
<param name="e">PaintTabStripButtonEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnPrintBackground(FarPoint.Win.Spread.PrintBackgroundEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.PrintBackground"/> event.
</summary>
<param name="e">PrintBackgroundEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnPrintCancelled(FarPoint.Win.Spread.PrintCancelledEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.PrintCancelled"/> event.
</summary>
<param name="e">PrintCancelledEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnPrintHeaderFooterArea(FarPoint.Win.Spread.PrintHeaderFooterAreaEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.PrintHeaderFooterArea"/> event.
</summary>
<param name="e">PrintHeaderFooterAreaEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnButtonClicked(FarPoint.Win.Spread.EditorNotifyEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ButtonClicked"/> event.
</summary>
<param name="e">EditorNotifyEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnComboCloseUp(FarPoint.Win.Spread.EditorNotifyEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ComboCloseUp"/> event.
</summary>
<param name="e">EditorNotifyEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnComboDropDown(FarPoint.Win.Spread.EditorNotifyEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ComboDropDown"/> event.
</summary>
<param name="e">EditorNotifyEventArgs object containing event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnSubEditorClosed(FarPoint.Win.Spread.SubEditorClosedEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.SubEditorClosed"/> event.
</summary>
<param name="e">SubEditorClosedEventArgs object containing event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnSubEditorOpening(FarPoint.Win.Spread.SubEditorOpeningEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.SubEditorOpening"/> event.
</summary>
<param name="e">SubEditorOpenEventArgs object containing event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnSearchDialogClosing(System.ComponentModel.CancelEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.SearchDialogClosing"/> event.
</summary>
<param name="e">SubEditorClosedEventArgs object containing event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnExpand(FarPoint.Win.Spread.ExpandEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.Expand"/> event.
</summary>
<param name="e">ExpandEventArgs object containing event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnComboSelChange(FarPoint.Win.Spread.EditorNotifyEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.ComboSelChange"/> event.
</summary>
<param name="e">EditorNotifyEventArgs object containing event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnEditorFocused(FarPoint.Win.Spread.EditorNotifyEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.EditorFocused"/> event.
</summary>
<param name="e">EditorNotifyEventArgs object containing event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnEditChange(FarPoint.Win.Spread.EditorNotifyEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.EditChange"/> event.
</summary>
<param name="e">EditorNotifyEventArgs object containing event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnEditError(FarPoint.Win.Spread.EditErrorEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.EditError"/> event.
</summary>
<param name="e">EditErrorEventArgs object containing event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnError(FarPoint.Win.Spread.ErrorEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.Error"/> event.
</summary>
<param name="e">ErrorEventArgs object containing event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnTopChange(FarPoint.Win.Spread.TopChangeEventArgs)">
<summary>
Raises the TopChange event. Internal use only.
</summary>
<param name="e">TopChangeEventArgs object containing event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnLeftChange(FarPoint.Win.Spread.LeftChangeEventArgs)">
<summary>
Raises the LeftChange event. Internal use only.
</summary>
<param name="e">LeftChangeEventArgs object containing event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the entire workbook to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the workbook</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.FarPoint#Win#ISerializeSettings#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the workbook settings to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the workbook settings</param>
<returns>true if successful; false otherwise</returns>
<remarks>
This consists of the workbook (SpreadView) properties and the properties of each sheet(SheetView).
</remarks>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.FarPoint#Win#ISerializeStyles#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the named styles for all the sheets to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the named styles</param>
<returns>true if successful; false otherwise</returns>
<remarks>
This consists of the named styles for each sheet (SheetView).
</remarks>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.FarPoint#Win#ISerializeData#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves all the data in all the sheets to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the data</param>
<returns>true if successful; false otherwise</returns>
<remarks>
This consists of the data models for each sheet.
</remarks>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.FarPoint#Win#ISerializeData#Serialize(System.Xml.XmlTextWriter,System.Boolean)">
<summary>
Saves the specified data in all the sheets to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the data</param>
<param name="saveDataSource">Whether to save the data source and bound data</param>
<returns>true if successful; false otherwise</returns>
<remarks>
Data consists of the data models for each sheet.
</remarks>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.FarPoint#Win#ISerializePresentation#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the formatting information (or presentation) of all the sheets to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the formatting information</param>
<returns>true if successful; false otherwise</returns>
<remarks>
This consists of the axis models, span models, and style models for each sheet.
</remarks>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.FarPoint#Win#ISerializeSettings#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the settings from XML.
</summary>
<param name="r">XmlNodeReader from which to load the settings</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.FarPoint#Win#ISerializeStyles#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the named styles from XML.
</summary>
<param name="r">XmlNodeReader from which to load the named styles</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.FarPoint#Win#ISerializeData#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the data from XML.
</summary>
<param name="r">XmlNodeReader from which to load the data</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.LoadFormulas(System.Boolean)">
Loads formulas that are deserialized during deserialization. But, not parsing yet.
This method is called after all the sheets has been created and deserialized.
<summary>
Loads formulas that are deserialized but not parsed yet,
to be used after all sheets have been created and deserialized.
</summary>
<param name="recalculate">Whether to recalculate all the formulas in cells on the sheet that have changed</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.FarPoint#Win#ISerializeDrawing#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the drawing object information of all the sheets to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the drawing information</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.FarPoint#Win#ISerializeDrawing#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the drawing object information from XML.
</summary>
<param name="r">XmlNodeReader from which to load the drawing information</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.FarPoint#Win#ISerializePresentation#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the formatting information (presentation) from XML.
</summary>
<param name="r">XmlNodeReader from which to load the formatting information</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.System#ComponentModel#ISupportInitialize#BeginInit">
<summary>
BeginInit ->false
EndInit ->true
for fix the code "Skin = SpreadSkin1" is generating code first after that the spreadSkin1 will set some property.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnAutoSortingColumn(FarPoint.Win.Spread.AutoSortingColumnEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.AutoSortingColumn"/> event.
</summary>
<param name="e">AutoSortingColumnEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnAutoSortedColumn(FarPoint.Win.Spread.AutoSortedColumnEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.AutoSortedColumn"/> event.
</summary>
<param name="e">AutoSortedColumnEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnAutoFilteringColumn(FarPoint.Win.Spread.AutoFilteringColumnEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.AutoFilteringColumn"/> event.
</summary>
<param name="e">AutoFilteringColumnEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnAutoFilteredColumn(FarPoint.Win.Spread.AutoFilteredColumnEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.AutoFilteredColumn"/> event.
</summary>
<param name="e">AutoFilteredColumnEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnDataColumnConfigure(FarPoint.Win.Spread.DataColumnConfigureEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpSpread.DataColumnConfigure"/> event.
</summary>
<param name="e">DataColumnConfigureEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SuspendLayout">
<summary>
Temporarily suspends the layout logic for this component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.PerformLayout">
<summary>
Forces the component to apply layout logic to its child controls.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.PerformLayout(System.Windows.Forms.Control,System.String)">
<summary>
Forces the component to apply layout logic to the specified child control
for the specified property change.
</summary>
<param name="affectedControl">Child control</param>
<param name="affectedProperty">Property that changed in the child control</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ResumeLayout">
<summary>
Resumes normal layout logic.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ResumeLayout(System.Boolean)">
<summary>
Resumes normal layout logic and optionally forces the component to apply layout logic
to its child controls.
</summary>
<param name="performLayout">Whether to perform layout logic on the child controls</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnHandleCreated(System.EventArgs)">
<summary>
Occurs when the handle is created.
</summary>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.WndProc(System.Windows.Forms.Message@)">
<summary>
Internal use only.
</summary>
<param name="m">Message</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnVisibleChanged(System.EventArgs)">
<summary>
Raises the VisibleChanged event.
</summary>
<param name="e">EventArgs event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnValidating(System.ComponentModel.CancelEventArgs)">
<summary>
Raises the Validating event.
</summary>
<param name="e">CancelEventArgs event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnClientSizeChanged(System.EventArgs)">
<summary>
Override to adjust the client area
</summary>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.StartInkNotation">
<summary>
Starts ink notation in the active viewport if the Microsoft.Ink assembly is found in the GAC.
</summary>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.StartInkNotation(System.Int32,System.Int32)">
<summary>
Starts ink notation in the specified viewport if the Microsoft.Ink assembly is found in the GAC.
</summary>
<param name="rowPaneIndex">viewport row index</param>
<param name="columnPaneIndex">viewport column index</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.StartInkNotation(System.Drawing.Color,System.Int32)">
<summary>
Starts ink notation in the active viewport with the specified notation background color,
if the Microsoft.Ink assembly is found in the GAC.
</summary>
<param name="inkBackColor">background color for the notation viewport</param>
<param name="alphaBlend">alphablending value for the notation viewport</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.StartInkNotation(System.Int32,System.Int32,System.Drawing.Color,System.Int32)">
<summary>
Starts ink notation in the specified viewport with the specified notation background color,
if the Microsoft.Ink assembly is found in the GAC.
</summary>
<param name="rowPaneIndex">viewport row index</param>
<param name="columnPaneIndex">viewport column index</param>
<param name="inkBackColor">background color for the notation viewport</param>
<param name="alphaBlend">alphablending value for the notation viewport</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ShouldSerializeGroupBarText">
<summary>
Indicates whether the GroupBarText property should be persisted.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.GoalSeek(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Double)">
<summary>
Attempts to find the value for one cell that produces the desired formula result
in another cell.
</summary>
<param name="variableSheet">Sheet index of cell that contains value to adjust</param>
<param name="variableRow">Row index of cell that contains to adjust</param>
<param name="variableColumn">Column index of cell that contains value to adjust</param>
<param name="formulaSheet">Sheet index of cell that contains formula</param>
<param name="formulaRow">Row index of cell that contains formula</param>
<param name="formulaColumn">Column index of cell that contains formula</param>
<param name="desiredResult">Formula result you wish to achieve</param>
<returns>true if value is found, false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.OnHelpRequested(System.Windows.Forms.HelpEventArgs)">
<summary>
Occurs when help is requested.
</summary>
<param name="hevent">Help event data</param>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.RootWorkbook">
<summary>
Gets or sets the main view (SpreadView object).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.TitleInfo">
<summary>
Gets or sets the collection of title information objects for the Spread
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.DesignMode">
<summary>
Gets a value that indicates whether the <see cref="T:System.ComponentModel.Component"/> is currently in design mode.
</summary>
<value></value>
<returns>true if the <see cref="T:System.ComponentModel.Component"/> is in design mode; otherwise, false.</returns>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ClipboardChanged">
<summary>
Occurs when a Clipboard change occurs that can affect the FarPoint Spread component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.AutoLaunchSpreadDesigner">
<summary>
Gets or sets whether Spread Designer automatically launches when a FarPoint Spread component is placed on a form.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.Name">
<summary>
Gets or sets the name of the FarPoint Spread component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.SearchDialog">
<summary>
Gets the dialog associated with searching for text in a cell
of a sheet in this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.SearchDialogPriv">
<summary>
Internal use only.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ActiveChartIndicator">
<summary>
Gets the active chart indicator.
</summary>
<value>The active chart indicator.</value>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ChartIndicatorActivated">
<summary>
Occurs when the chart indicator is activated.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ChartIndicatorDeactivated">
<summary>
Occurs when the chart indicator is deactivated.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ActiveWindowlessObject">
<summary>
Gets or sets the active windowless shape object of the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.SkipMouseProcessing">
<summary>
Sets the mouse processing flag of the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.AllowChildControlDesign">
<summary>
Gets or sets whether child controls allow user actions for design.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ActiveChildControlPriv">
<summary>
Internal use only. Gets or sets the active embedded child control object of the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ActiveChildControl">
<summary>
Gets or sets the active embedded child control object of the sheet.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ChildControlActivated">
<summary>
Occurs when a child control is activated.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ChildControlDeactivated">
<summary>
Occurs when a child control is deactivated.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.About">
<summary>
Gets the version information about the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.SheetCount">
<summary>
Gets or sets the number of sheets in the FarPoint Spread component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.Sheets">
<summary>
Gets the sheets (<see cref="T:FarPoint.Win.Spread.SheetView"/> objects) in the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ActiveSheet">
<summary>
Gets or sets the active sheet in the component.
</summary>
<exception cref="T:System.ArgumentException">
Specified sheet is not in the collection
</exception>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ActiveSheetIndex">
<summary>
Gets or sets the index of the active sheet in the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.NamedStyles">
<summary>
Gets or sets a pre-defined style (<see cref="T:FarPoint.Win.Spread.NamedStyleCollection"/> object).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.SaveNamedStyles">
<summary>
Saves the collection of custom styles.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.DataSource">
<summary>
Gets or sets the name of the data source that populates the active sheet
in this component.
</summary>
<exception cref="T:System.InvalidOperationException">
Sheet count is zero; must be at least one sheet before DataSource can be set
</exception>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.DataMember">
<summary>
Gets or sets the name of the data member that populates the active sheet
in this component.
</summary>
<exception cref="T:System.InvalidOperationException">
Sheet count is zero; must be at least one sheet before the data member can be set
</exception>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.DataModel">
<summary>
Gets or sets the data model associated with this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.RowHeaderDataModel">
<summary>
Gets or sets the data model associated with this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ColumnHeaderDataModel">
<summary>
Gets or sets the data model associated with this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.RowHeaderStyleModel">
<summary>
Gets or sets the style model associated with this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ColumnHeaderStyleModel">
<summary>
Gets or sets the style model associated with this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.SpanModel">
<summary>
Gets or sets the span model associated with this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.RowHeaderSpanModel">
<summary>
Gets or sets the span model associated with this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ColumnHeaderSpanModel">
<summary>
Gets or sets the span model associated with this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.RowAxisModel">
<summary>
Gets or sets the axis model associated with this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ColumnAxisModel">
<summary>
Gets or sets the axis model associated with this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.RowHeaderColumnAxisModel">
<summary>
Gets or sets the axis model associated with this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ColumnHeaderRowAxisModel">
<summary>
Gets or sets the axis model associated with this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.SelectionModel">
<summary>
Gets or sets the selection model associated with this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.CreateParams">
<summary>
Gets the required creation parameters when the component handle is created.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.DefaultSize">
<summary>
Gets the default size of the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.BorderStyle">
<summary>
Gets or sets the style of the border around the component.
</summary>
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
Specified value is not a valid border style
</exception>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.HorizontalScrollBarPolicy">
<summary>
Gets or sets when to display the horizontal scroll bars in this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.AllowCellOverflow">
<summary>
Gets or sets whether data can overflow into adjacent empty cells in the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.SuspendAnimations">
<summary>
Gets or sets whether to suspend animations such as an animated focus renderer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.AllowDragDrop">
<summary>
Gets or sets whether to allow the user to drag-and-drop a range of cells
in the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.AllowColumnMove">
<summary>
Gets or sets whether to allow the user to move columns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.AllowRowMove">
<summary>
Gets or sets whether to allow the user to move rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.AllowRowMoveDataAllowAddNew">
<summary>
Gets or sets a value that indicates whether to allow the user to move the add new row or asterisk row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.AllowColumnMoveMultiple">
<summary>
Gets or sets whether to allow the user to move multiple columns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.AllowRowMoveMultiple">
<summary>
Gets or sets whether to allow the user to move multiple rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.AllowDragFill">
<summary>
Gets or sets whether to allow the user to drag and fill cells in the component
with the contents of a cell or cells.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.AllowEditOverflow">
<summary>
Gets or sets whether data can overflow into adjacent empty cells
in the component while that cell is in edit mode.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.TextTipPolicy">
<summary>
Gets or sets whether to display text tips and cell notes
and the location of the tips and notes in this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.TextTipDelay">
<summary>
Gets or sets the time (in milliseconds) the component waits before displaying
the text tip for the cell or header under the pointer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.TextTipAppearance">
<summary>
Gets or sets the appearance of text tips in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.AllowUserFormulas">
<summary>
Gets or sets whether to allow the user to enter formulas in a cell in the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.EnableCrossSheetReference">
<summary>
Enables cross-sheet referencing for this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.AutoClipboard">
<summary>
Gets or sets whether the component handles the shortcut keys for Clipboard actions.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.BorderCollapse">
<summary>
Gets or sets whether adjacent cell borders are collapsed into a single line
for cells in the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.VisualStyles">
<summary>
Gets or sets whether to use visual styles when rendering objects in the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ButtonDrawMode">
<summary>
Gets or sets whether to display buttons in button and combo box cells
in the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.CellNoteIndicatorVisible">
<summary>
Gets or sets whether the cell note indicator appears in cells in the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.TabStripInsertTab">
<summary>
Gets or sets whether a special tab is displayed to allow inserting new sheets.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ClipboardOptions">
<summary>
Gets or sets whether headers are included when data is copied to or
pasted from the Clipboard in the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ClipboardPasteToFill">
<summary>
Gets or sets whether a single cell copied to the Clipboard fills the range
when pasted from the Clipboard to the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.EditModePermanent">
<summary>
Gets or sets whether edit mode remains on for any cell in the component
when that cell becomes active.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.EditMode">
<summary>
Gets or sets whether the active cell in the component is in edit mode.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.EditModeReplace">
<summary>
Gets or sets whether the existing contents of a cell in the component
are selected when that cell enters edit mode.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.EditingControl">
<summary>
Gets the Control object editing the active cell, or null if the component is not in edit mode.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.LeftTab">
<summary>
Gets or sets the leftmost sheet tab of the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.MoveActiveOnFocus">
<summary>
Gets or sets whether the location of the active cell moves when the user moves
the focus to the view using the mouse.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.RetainSelectionBlock">
<summary>
Gets or sets whether the selected range of cells remains highlighted
when the component loses the focus.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.SelectionRenderer">
<summary>
Gets or sets the selection renderer for drawing selections in the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.Skin">
<summary>
Gets or sets the skin for the spread.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.InterfaceRenderer">
<summary>
Gets or sets the tab strip renderer for drawing tab strip elements.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.FormulaCellRangeChoosed">
<summary>
Gets or sets whether [formula cell range choosed].
</summary>
<value>
<c>true</c> if [formula cell range choosed]; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.IsFormulaHolding">
<summary>
Gets whether this instance is formula holding.
</summary>
<value>
<c>true</c> if this instance is formula holding; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.CellNoteIndicatorRenderer">
<summary>
Gets or sets the cell note indicator renderer for drawing the cell note indicator
in the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.FocusRenderer">
<summary>
Gets or sets the focus indicator renderer for drawing the focus rectangle
in the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.SelectionBlockOptions">
<summary>
Gets or sets which type of selections in the component the user can make.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ScrollBarTrackPolicy">
<summary>
Gets or sets whether the sheet in the component scrolls when the user moves the scroll box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ScrollTipPolicy">
<summary>
Gets or sets whether scroll tips appear when the user moves the scroll box
in the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.HorizontalScrollBar">
<summary>
Gets horizontal scroll bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.VerticalScrollBar">
<summary>
Gets vertical scroll bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ScrollBarMaxAlign">
<summary>
Gets or sets whether the scroll bar aligns with the last row and column
of the active sheet in the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ScrollBarShowMax">
<summary>
Gets or sets whether the displayed scroll bars are based on the
entire number of columns and rows in the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.VerticalScrollBarPolicy">
<summary>
Gets or sets when to display the vertical scroll bars in this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.TabStrip">
<summary>
Gets the object representing the tab strip for this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.TabStripPlacement">
<summary>
Gets or sets the location of the tab strip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.TabStripPolicy">
<summary>
Gets or sets the display policy for the sheet tab strip for this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.TabStripRatio">
<summary>
Gets or sets the width of the tab strip for this component expressed
as a percentage of the overall horizontal scroll bar width.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ColumnSplitBoxPolicy">
<summary>
Gets or sets the display policy for the column split box for this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ColumnSplitBoxAlignment">
<summary>
Gets or sets the alignment of the column split box relative
to the horizontal scroll bar for this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.RowSplitBoxPolicy">
<summary>
Gets or sets the display policy of the row split box in this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.RowSplitBoxAlignment">
<summary>
Gets or sets the alignment of the row split box relative
to the vertical scroll bar for this component.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.EditModeStarting">
<summary>
Occurs when edit mode is about to start in the active sheet's active cell.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.EditModeOn">
<summary>
Occurs when edit mode is started.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.EditModeOff">
<summary>
Occurs when edit mode is stopped.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.DialogChar">
<summary>
Occurs during message preprocessing of dialog characters.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.DialogKey">
<summary>
Occurs during message preprocessing of dialog keys.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.TabStripInsertTabImage">
<summary>
Gets or sets the tabstrip insert-tab image.
</summary>
<value>The tabstrip inser-tab image.</value>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ZoomFactor">
<summary>
Gets or sets the scaling factor of the display of the active sheet in this component.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ClipboardPasting">
<summary>
Occurs when the user pastes from the clipboard.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ClipboardPasted">
<summary>
Occurs when the user pastes from the clipboard.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.SheetTabClick">
<summary>
Occurs when the user clicks the sheet tab.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.SheetTabDoubleClick">
<summary>
Occurs when the user double clicks the sheet tab.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ActiveSheetChanging">
<summary>
Occurs when the user changes the active sheet.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ActiveSheetChanged">
<summary>
Occurs when the user has changed the active sheet.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ActiveSpreadViewChanging">
<summary>
Occurs when the user changes the active SpreadView.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ActiveSpreadViewChanged">
<summary>
Occurs when the user has changed the active SpreadView.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.RowHeightChanged">
<summary>
Occurs when the row height has changed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.RangeGroupStateChanged">
<summary>
Occurs when the user changed the state of some outline (range group) of rows or columns.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.RangeGroupStateChanging">
<summary>
Occurs before user changes the state of some outline (range group) of rows or columns.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ColumnWidthChanging">
<summary>
Occurs when the column width is changing.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.RowHeightChanging">
<summary>
Occurs when the column width is changing.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ColumnWidthChanged">
<summary>
Occurs when the column width has changed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.RowViewportHeightChanged">
<summary>
Occurs when a viewport row height has changed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ColumnViewportWidthChanged">
<summary>
Occurs when a viewport column width has changed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.SelectionChanged">
<summary>
Occurs when the selection of cells on the sheet is changed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.SelectionChanging">
<summary>
Occurs when the selection of cells on the sheet is changing.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.UserFormulaEntered">
<summary>
Occurs when the user types a formula.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.Change">
<summary>
Occurs after the user modifies data in a cell.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.DragDropBlock">
<summary>
Occurs when the user drags and drops a range of cells.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.DragFillBlock">
<summary>
Occurs when the user drags to fill a range of cells.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.DragDropBlockCompleted">
<summary>
Occurs at the completion of the user dragging and dropping a range of cells.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.DragFillBlockCompleted">
<summary>
Occurs at the completion of the user dragging to fill a range of cells.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ColumnDragMove">
<summary>
Occurs when <see cref="P:FarPoint.Win.Spread.FpSpread.AllowColumnMove"/> is true and the user drags to move a column.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.RowDragMove">
<summary>
Occurs when <see cref="P:FarPoint.Win.Spread.FpSpread.AllowRowMove"/> is true and the user drags to move a row.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ColumnDragMoveCompleted">
<summary>
Occurs when the user finishes dragging to move a column.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.RowDragMoveCompleted">
<summary>
Occurs when the user finishes dragging to move a row.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.Advance">
<summary>
Occurs when the user tries to advance from first or last row in Spread.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.PrintAbort">
<summary>
Occurs continually as printing occurs in order to give the user the opportunity to discontinue a print job.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.PrintMessageBox">
<summary>
Occurs before and after a print job.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.PaintGrayArea">
<summary>
Occurs when the gray area needs painting.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.PaintTabStripTab">
<summary>
Occurs when a TabStrip tab needs painting.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.PaintTabStrip">
<summary>
Occurs when the TabStrip needs painting.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.PaintTabStripButton">
<summary>
Occurs when a TabStrip button needs painting.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.PrintBackground">
<summary>
Occurs before each page is printed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.PrintCancelled">
<summary>
Occurs when a print job is discontinued by the user.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.HyperLinkClicked">
<summary>
Occurs when the user clicks on a hyper link cell.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.PrintPreviewShowing">
<summary>
Occurs before preview dialog appears.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.PrintHeaderFooterArea">
<summary>
Occurs when header or footer needs printing.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.LeaveCell">
<summary>
Occurs when the user leaves a cell.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.EnterCell">
<summary>
Occurs when the user enters a cell.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.TextTipFetch">
<summary>
Occurs when the pointer (cursor) is over a cell and the text tip or cell note
should be displayed (the TextTip property is set to a value other than Off).
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.CellClick">
Note that CellClick fires when the mouse button is pressed, not when it is released.
<summary>
Occurs when the user presses down the left mouse button in a cell.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.CellDoubleClick">
Note that CellDoubleClick fires when the mouse button is pressed, not when it is released.
<summary>
Occurs when the user presses down the left mouse button twice (double clicks) in a cell.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ButtonClicked">
<summary>
Occurs when the user clicks a button, check box, or hyperlink in a cell.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ComboCloseUp">
<summary>
Occurs when the user closes a combo box in a cell.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ComboDropDown">
<summary>
Occurs when the user drops down a combo box in a cell.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ComboSelChange">
<summary>
Occurs when the user changes the selection in a combo box in a cell.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.EditChange">
<summary>
Occurs when the user changes the text in a cell in edit mode.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.EditError">
<summary>
Occurs when the user performs an invalid input operation.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.EditorFocused">
<summary>
Occurs when the editing control gets focus.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.Error">
<summary>
Occurs when the user performs an invalid operation.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.Grouping">
<summary>
Occurs when the user performs grouping.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.Grouped">
<summary>
Occurs when the grouping is finished.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.Ungrouped">
<summary>
Occurs when all the grouping is removed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.PaintGroupBarBackground">
<summary>
Occurs when the group bar background is painted.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.TopChange">
<summary>
Occurs when the top row changes.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.LeftChange">
<summary>
Occurs when left column changes.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.Expand">
<summary>
Occurs when a row is expanded or collapsed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.SubEditorClosed">
<summary>
Occurs when a subeditor is closed for a cell.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.SubEditorOpening">
<summary>
Occurs when a subeditor is about to be displayed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ChildWorkbookCreated">
<summary>
Occurs when a child workbook of the FarPoint Spread component is created.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ClipboardChanging">
<summary>
Occurs when the Clipboard is changing through a FarPoint Spread action.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.UserZooming">
<summary>
Occurs when the user zooms.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ShapeActivated">
<summary>
Occurs when the user changes the active shape object.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.AnnotationModeStarting">
<summary>
Occurs when the user begins annotation mode.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.AnnotationModeEnding">
<summary>
Occurs when the user ends annotation mode.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ShapeDeactivated">
<summary>
Occurs when the user deactivates the active shape object.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ChildViewCreated">
<summary>
Occurs when a child view of the FarPoint Spread component is created.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.ScrollTipFetch">
<summary>
Occurs when the user scrolls the FarPoint Spread component.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.PreviewRowFetch">
<summary>
Occurs when the user custom preview row of the FarPoint Spread component.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.SearchDialogClosing">
<summary>
Occurs when the search form is closing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.Cursor">
<summary>
Gets or sets the pointer to display in this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.Text">
<summary>
Not supported in this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.Font">
<summary>
Gets or sets the default Font for sheets in the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ForeColor">
<summary>
Not supported in this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.Tag">
<summary>
Gets or sets extra data for the application for this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.HorizontalScrollBarHeight">
<summary>
Gets or sets the height of horizontal scroll bars in this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.HorizontalScrollBarSmallChange">
<summary>
Gets or sets the small increment for the horizontal scrollbar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.VerticalScrollBarSmallChange">
<summary>
Gets or sets the small increment for the horizontal scrollbar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.VerticalScrollBarWidth">
<summary>
Gets or sets the width of vertical scroll bars in this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.AllowUserZoom">
<summary>
Gets or sets whether the user can scale the display of the component
using the Ctrl key and the mouse wheel.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.AutoSortingColumn">
<summary>
Occurs when a column is about to be automatically sorted.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.AutoSortedColumn">
<summary>
Occurs when a column has just been automatically sorted.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.AutoFilteringColumn">
<summary>
Occurs when a column is about to be automatically filtered.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.AutoFilteredColumn">
<summary>
Occurs when a column has just been automatically filtered.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpSpread.DataColumnConfigure">
<summary>
Occurs when the sheet is binding a column to a data source after it has been initialized.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.IsLayoutSuspended">
<summary>
Returns whether the layout is suspended in this component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.ScaleChildren">
<summary>
Internal use only.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.BackgroundImage">
<summary>
Gets or sets the image to paint in the background of the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.GroupBarText">
<summary>
Gets or sets the group bar text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.AllowUndo">
<summary>
Gets or sets whether to allow the user to undo edit operations.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.UndoManager">
<summary>
Gets or sets the undo manager for this FarPoint Spread component.
</summary>
<remarks>This property wraps GetRootWorkbook().UndoManager. You can set this property to null to recreate the UndoManager and clear the undo/redo state.</remarks>
</member>
<member name="P:FarPoint.Win.Spread.FpSpread.AllowSheetMove">
<summary>
Gets or sets whether sheets can be moved by drag-dropping the sheet tab.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.FpSpread.ButtonDrawModeEditor">
<summary>
Editor for the ButtonDrawMode property.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ButtonDrawModeEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
<summary>
Edits the cell type value.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="provider">IServiceProvider</param>
<param name="value">object</param>
<returns>object</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.ButtonDrawModeEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Gets the style of the type editor (which is drop-down).
</summary>
<param name="context">ITypeDescriptorContext</param>
<returns>UITypeEditorEditStyle</returns>
</member>
<member name="T:FarPoint.Win.Spread.FpSpread.SelectBlockOptionsEditor">
<summary>
Editor for the SelectBlockOptions property.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SelectBlockOptionsEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
<summary>
Edits the cell type value.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="provider">IServiceProvider</param>
<param name="value">object</param>
<returns>object</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpSpread.SelectBlockOptionsEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Gets the style of the type editor (which is drop-down).
</summary>
<param name="context">ITypeDescriptorContext</param>
<returns>UITypeEditorEditStyle</returns>
</member>
<member name="T:FarPoint.Win.Spread.CellType.IOOXmlSupport">
<summary>
Interface implemented by cell type objects that support export to Excel.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IOOXmlSupport.IsEquals(System.Object)">
<summary>
Determines whether the specified cell type is the same.
</summary>
<param name="cellType">Type of the cell</param>
<returns>
<c>true</c> if the specified cell type is the same; otherwise, <c>false</c>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IOOXmlSupport.ExcelNumberFormat">
<summary>
Gets the Excel file number format.
</summary>
<value>Excel file number format</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IOOXmlSupport.ExcelTextOrientation">
<summary>
Gets the Excel file text orientation.
</summary>
<value>Excel file text orientation</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IOOXmlSupport.ExcelTextRotationAngle">
<summary>
Gets the Excel file text rotation angle.
</summary>
<value>Excel file text rotation angle</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IOOXmlSupport.ExcelGetValue">
<summary>
Gets the Excel file get value.
</summary>
<value>Excel file get value.</value>
</member>
<member name="T:FarPoint.Win.Spread.CellType.IPluginCellTypeSetting">
<summary>
Interface implemented for plug-in cell type setting.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IPluginCellTypeSetting.GetProperty(System.String)">
<summary>
Gets the property by name.
</summary>
<param name="name">Property name</param>
<returns></returns>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IPluginCellTypeSetting.CellTypeSettingControl">
<summary>
Gets the cell type setting control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IPluginCellTypeSetting.CellType">
<summary>
Gets or sets the cell type.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.IEditor">
<summary>
Interface that defines the methods required by objects used as editors.
Editors allow the user to edit the cell contents.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IEditor.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the control associated with the editor.
</summary>
<param name="appearance">Appearance settings of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IEditor.GetEditorValue">
<summary>
Gets the value in the editor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IEditor.ShowSubEditor">
<summary>
Shows the subeditor control associated with the cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IEditor.SetEditorValue(System.Object)">
<summary>
Sets the value of the editor control.
</summary>
<param name="value">Value of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IEditor.StartEditing(System.EventArgs,System.Boolean,System.Boolean)">
<summary>
Starts the editing of a cell with the specified options.
</summary>
<param name="e">Event</param>
<param name="selectAll">Whether to select all</param>
<param name="autoClipboard">Whether to allow shortcut keys for Clipboard actions</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IEditor.CancelEditing">
<summary>
Cancels the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IEditor.StopEditing">
<summary>
Stops the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IEditor.IsReservedKey(System.Windows.Forms.KeyEventArgs)">
<summary>
Determines whether the specified key has special meaning to the editor control.
</summary>
<param name="e">Key the user pressed and whether any modifier keys (CTRL, ALT, and SHIFT) are pressed at the same time</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IEditor.IsReservedLocation(System.Drawing.Graphics,System.Int32,System.Int32,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Determines whether the specified cursor location has special meaning to the editor control.
</summary>
<param name="g">Graphics device interface for painting the editor control</param>
<param name="x">X-coordinate of pointer location</param>
<param name="y">Y-coordinate of pointer location</param>
<param name="rc">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="value">Object containing the name of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IEditor.IsValid(System.Object)">
<summary>
Determines whether the specified value is valid.
</summary>
<param name="value">Specified value of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IEditor.GetReservedCursor(System.Object)">
<summary>
Gets the cursor reserved for this editor.
</summary>
<param name="o">Object with the reserved cursor (pointer)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IEditor.GetPreferredSize(System.Windows.Forms.Control)">
<summary>
Gets the preferred (maximum needed) size of the cell for the editor control.
</summary>
<param name="editor">Name of the editor control</param>
</member>
<member name="E:FarPoint.Win.Spread.CellType.IEditor.EditingCanceled">
<summary>
Occurs when editing (the editor control) has been canceled by the user.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.CellType.IEditor.EditingStopped">
<summary>
Occurs when editing (the editor control) has been stopped by the user.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.INotifyEditorValueChanged">
<summary>
Interface implemented by cell ediotr objects that want to notify the value of ediotr is changed
</summary>
</member>
<member name="E:FarPoint.Win.Spread.CellType.INotifyEditorValueChanged.EditorValueChanged">
<summary>
Occurs when value of editor has been changed by the user.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.IReuseEditorControl">
<summary>
Interface implemented by cell type objects that want to create the cell editor once in each FpSpread using
the cell type, to increase performance.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IReuseEditorControl.GetEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the control associated with the editor for the specified parent control.
</summary>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings of the control</param>
<param name="zoomFactor">Numeric value for scaling the display of the control</param>
<returns>Control</returns>
<remarks>After creating the control the first time, add it to parent.Controls and return the same instance when called again for that parent.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IReuseEditorControl.InitializeEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initializes the editor control.
</summary>
<param name="control">Editor control to initialize</param>
<param name="appearance">Appearance settings</param>
<param name="zoomFactor">Numeric value for scaling the display of the control</param>
</member>
<member name="T:FarPoint.Win.Spread.CellType.IEditFormula">
<summary>
Interface implemented by cell type objects that default to editing formulas if there is a formula in the cell.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.IFormulaEditor">
<summary>
Interface implemented by cell editors that support editing formulas.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IFormulaEditor.IsFormulaValue">
<summary>
Determines whether the editor contains a formula.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.IRenderer">
<summary>
Interface that defines the methods and properties required by objects used as renderers.
Renderers are responsible for painting cells.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IRenderer.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Gets the preferred (maximum needed) size of the cell for the renderer control.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Preferred or maximum needed size</param>
<param name="appearance">Appearance settings of the renderer control</param>
<param name="value">Object containing the name of the renderer control</param>
<param name="zoomFactor">Numeric value for scaling the display of the renderer control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IRenderer.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the cell when not editing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IRenderer.CanOverflow">
<summary>
Determines whether this cell can overflow into an adjacent cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IRenderer.CanBeOverflown">
<summary>
Determines whether adjacent cells can overflow into this cell.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.IRenderCellGridLine">
<summary>
Interface that allows handling of painting grid lines for a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IRenderCellGridLine.PaintCellGridLine(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.Appearance)">
<summary>
Paints the grid lines for the cell.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X-coordinate of the cell</param>
<param name="y">Y-coordinate of the cell</param>
<param name="width">Width of the cell </param>
<param name="height">Height of the cell</param>
<param name="appearance">Appearance settings of the cell</param>
</member>
<member name="T:FarPoint.Win.Spread.CellType.IPdfSupport">
<summary>
Interface that supports printing to PDF.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IPdfSupport.PaintCell(FarPoint.PDF.PdfGraphics,System.Drawing.RectangleF,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints (prints) to PDF the cell when not editing.
</summary>
<param name="g">PDF graphics device interface</param>
<param name="r">Bounding rectangle to paint</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Value to paint</param>
<param name="isSelected">Whether the cell is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the painting of the cell</param>
</member>
<member name="T:FarPoint.Win.Spread.CellType.IRenderAlignment">
<summary>
Interface that defines the methods required to specify the alignment of content
that the renderer uses when rendering the content.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IRenderAlignment.GetHorizontalAlignment(System.Object)">
<summary>
Gets the horizontal alignment.
</summary>
<param name="value">Value of the horizontal alignment</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IRenderAlignment.GetVerticalAlignment(System.Object)">
<summary>
Gets the vertical alignment.
</summary>
<param name="value">Value of the vertical alignment</param>
</member>
<member name="T:FarPoint.Win.Spread.CellType.LeadingZero">
<summary>
Specifies whether to display leading zeros in numeric cell types.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.LeadingZero.UseRegional">
<summary>
Displays leading zeros according to the Windows regional settings
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.LeadingZero.No">
<summary>
Does not display leading zeros
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.LeadingZero.Yes">
<summary>
Displays leading zeros
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.DateTimeFormat">
<summary>
Specifies the formatting for date and time.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.DateTimeFormat.ShortDate">
<summary>
Uses the abbreviated form for the date
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.DateTimeFormat.LongDate">
<summary>
Uses the long form for the date
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.DateTimeFormat.ShortDateWithTime">
<summary>
Uses the abbreviated form for the date and time
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.DateTimeFormat.LongDateWithTime">
<summary>
Uses the long form for the date and time
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.DateTimeFormat.TimeOnly">
<summary>
Uses the time only (no date)
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.DateTimeFormat.UserDefined">
<summary>
Uses the user-defined date and time format
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.CharacterSet">
<summary>
Specifies the character set for valid cell contents.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CharacterSet.Ascii">
<summary>
Accepts any of the ASCII characters
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CharacterSet.Alpha">
<summary>
Accepts letters (alphabetic characters) only
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CharacterSet.AlphaNumeric">
<summary>
Accepts letters (alphabetic characters) or numbers (numeric characters) only
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CharacterSet.Numeric">
<summary>
Accepts numbers (numeric characters) only
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.CurrencyNegativeFormat">
<summary>
Specifies the formatting of the currency symbol and negative sign in currency.
</summary>
Enumerations for the negative formatting in an fpCurrency control.
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyNegativeFormat.UseRegional">
<summary>
[-1] Displays the currency symbol and the negative sign according to the Windows regional settings
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyNegativeFormat.ParenthesesSymbolBefore">
<summary>
[0] Displays the currency symbol and the value within parentheses, as in ($1)
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyNegativeFormat.SignSymbolBefore">
<summary>
[1] Displays the negative sign and the currency symbol before the value, as in -$1
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyNegativeFormat.SymbolSignBefore">
<summary>
[2] Displays the currency symbol and the negative sign before the value, as in $-1
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyNegativeFormat.SymbolBeforeSignAfter">
<summary>
[3] Displays the currency symbol appears before the value and the negative sign after, as in $1-
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyNegativeFormat.ParenthesesSymbolAfter">
<summary>
[4] Displays the currency symbol appears after the value and within parentheses, as in (1$)
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyNegativeFormat.SignBeforeSymbolAfter">
<summary>
[5] Displays the negative sign appears before the value and the currency symbol after, as in -1$
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyNegativeFormat.SignSymbolAfter">
<summary>
[6] Displays the negative sign and the currency symbol after the value, as in 1-$
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyNegativeFormat.SymbolSignAfter">
<summary>
[7] Displays the currency symbol and the negative sign after the value, as in 1$-
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyNegativeFormat.SignBeforeSpaceSymbolAfter">
<summary>
[8] Displays the negative sign appears before the value and the currency symbol after with a space, as in -1 $
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyNegativeFormat.SignSymbolSpaceBefore">
<summary>
[9] Displays the negative sign and the currency symbol with a space before the value, as in -$ 1
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyNegativeFormat.SpaceSymbolSignAfter">
<summary>
[10] Displays the currency symbol and the negative sign with a space after the value, as in 1 $-
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyNegativeFormat.SymbolSpaceBeforeSignAfter">
<summary>
[11] Displays the currency symbol with a space before the value and the negative sign after, as in $ 1-
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyNegativeFormat.SymbolSpaceSignBefore">
<summary>
[12] Displays the currency symbol, space, and negative sign before the value, as in $ -1
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyNegativeFormat.SignSpaceSymbolAfter">
<summary>
[13] Displays the negative sign, space, and currency symbol after the value, 1- $
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyNegativeFormat.ParenthesesSymbolSpaceBefore">
<summary>
[14] Displays the currency symbol and space before the value and within parentheses, as in ($ 1)
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyNegativeFormat.ParenthesesSpaceSymbolAfter">
<summary>
[15] Displays the currency symbol and a space after the value and within parentheses, as in (1 $)
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.EditorValue">
<summary>
Specifies what is written out to the data model for a selected item
from certain cell types that offer a selection of multiple values.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.EditorValue.String">
<summary>
[0] Writes to the model the text value of the selected item
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.EditorValue.Index">
<summary>
[1] Writes to the model the index of the selected item
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.EditorValue.ItemData">
<summary>
[2] Writes to the model the corresponding data of the selected item
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.DateTimeEditorValue">
<summary>
Specifies what is written out to the data model for a date-time cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.DateTimeEditorValue.String">
<summary>
[0] Writes to the model the text value of the cell
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.DateTimeEditorValue.DateTime">
<summary>
[1] Writes to the model the DateTime object of the cell
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.DateTimeEditorValue.DateSerial">
<summary>
[2] Writes to the model the serial value (double-precision, floating-point) of the date of the cell
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.EditorFocusCursorPosition">
<summary>
Specifies the position of the pointer when the edit control receives the focus.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.EditorFocusCursorPosition.Inherit">
<summary>
Position is determined by type of editor and/or selection policy
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.EditorFocusCursorPosition.MouseLocation">
<summary>
Positions the pointer at the location of the pointer device,
without any text selected
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.EditorFocusCursorPosition.FirstInputPosition">
<summary>
Positions the pointer at the first input position in the control,
without any text selected
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.EditorFocusCursorPosition.End">
<summary>
Positions the pointer at the end of the text in the control,
without any text selected
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.EditorFocusCursorPosition.SelectAll">
<summary>
Positions the pointer at the beginning of the text in the control
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.CurrencyPositiveFormat">
<summary>
Specifies the formatting of the currency symbol and positive sign in a currency cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyPositiveFormat.UseRegional">
<summary>
[-1] Displays the currency symbol according to the Windows regional setting
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyPositiveFormat.CurrencySymbolBefore">
<summary>
[0] Displays the currency symbol appears before the value
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyPositiveFormat.CurrencySymbolAfter">
<summary>
[1] Displays the currency symbol appears after the value
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyPositiveFormat.CurrencySymbolBeforeWithSpace">
<summary>
[2] Displays the currency symbol appears with a space before the value
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CurrencyPositiveFormat.CurrencySymbolAfterWithSpace">
<summary>
[3] Display the currency symbol appears with a space after the value
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.NegativeFormat">
<summary>
Specifies the display of the negative sign in cell contents.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.NegativeFormat.UseRegional">
<summary>
[-1] Displays the value according to the Windows regional settings
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.NegativeFormat.Parentheses">
<summary>
[0] Displays the value within parentheses, as in (1)
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.NegativeFormat.NegativeSignBefore">
<summary>
Displays the negative sign before (to the left) of the value, as in -1
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.NegativeFormat.NegativeSignBeforeWithSpace">
<summary>
Displays the negative sign with space before (to the left) of the value, as in - 1
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.NegativeFormat.NegativeSignAfter">
<summary>
Displays the negative sign after (to the right) of the value, as in 1-
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.NegativeFormat.NegativeSignAfterWithSpace">
<summary>
Displays the negative sign with space after (to the right) of the value, as in 1 -
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.PercentNegativeFormat">
<summary>
Specifies the display of negative values in a percent cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.PercentNegativeFormat.UseRegional">
<summary>
[-1] Displays the negative percent value in the format set by the Windows regional settings
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.PercentNegativeFormat.PercentAfterWithSpace">
<summary>
[0] Displays the negative percent value with a space and the percent symbol following the number
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.PercentNegativeFormat.PercentAfter">
<summary>
[1] Displays the negative percent value with the percent symbol following the number
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.PercentNegativeFormat.PercentBefore">
<summary>
[2] Displays the negative percent value with the percent symbol before the number
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.PercentPositiveFormat">
<summary>
Specifies the display of positive values in a percent cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.PercentPositiveFormat.UseRegional">
<summary>
[-1] Displays the positive percent value in the format set by the Windows regional settings
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.PercentPositiveFormat.PercentAfterWithSpace">
<summary>
[0] Displays the positive percent value with a space and the percent symbol following the number
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.PercentPositiveFormat.PercentAfter">
<summary>
[1] Displays the positive percent value with the percent symbol following the number
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.PercentPositiveFormat.PercentBefore">
<summary>
[2] Displays the positive percent value with the percent symbol before the number
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.PercentFormat">
<summary>
Specifies the display of the percent sign in cell contents.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.PercentFormat.PercentSignBefore">
<summary>
[0] Displays the percent sign immediately before the value
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.PercentFormat.PercentSignAfter">
<summary>
[1] Displays the percent sign immediately after the value
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.PercentFormat.PercentSignBeforeWithSpace">
<summary>
[2] Displays the percent sign with a single space before the value
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.PercentFormat.PercentSignAfterWithSpace">
<summary>
[3] Displays the percent sign with a single space after the value
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.IAutoCompleteSupport">
<summary>
Interface that supports automatic completion (type ahead) for users typing text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IAutoCompleteSupport.AutoCompleteMode">
<summary>
Gets or sets how auto completion works.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IAutoCompleteSupport.AutoCompleteSource">
<summary>
Gets or sets a value specifying the source of complete strings used for automatic completion.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IAutoCompleteSupport.AutoCompleteCustomSource">
<summary>
Gets or sets a custom System.Collections.Specialized.StringCollection for the AutoCompleteSource property is set to CustomSource.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IAutoCompleteSupport.AutoFillAutoCompleteCustomSource">
<summary>
Gets or sets a whether the AutoCompleteCustomSource is automatically filled with data from column.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.ISubEditorParentInfo">
<summary>
Interface that supports the subeditor parent information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ISubEditorParentInfo.EditorControl">
<summary>
Gets or sets the subeditor control.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.ISubEditor">
<summary>
Interface that defines the methods and properties required by objects
used as editors within the editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ISubEditor.GetValue">
<summary>
Gets the value from the subeditor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ISubEditor.SetValue(System.Object)">
<summary>
Sets the value into the subeditor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ISubEditor.GetSubEditorControl">
<summary>
Gets the control associated with the subeditor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ISubEditor.GetPreferredSize">
<summary>
Gets the preferred (maximum needed) size of the cell for the subeditor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ISubEditor.GetLocation(System.Drawing.Rectangle)">
<summary>
Gets the initial location of the subeditor control.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.CellType.ISubEditor.ValueChanged">
<summary>
Occurs when the value in the subeditor changes.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.CellType.ISubEditor.CloseUp">
<summary>
Occurs when the subeditor control goes away.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.IReadOnlySupport">
<summary>
Interface that signifies whether the cell type supports a ReadOnly property.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IReadOnlySupport.ReadOnly">
<summary>
Gets or sets whether the cell type is read-only.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.IStaticSupport">
<summary>
Interface that signifies whether the cell type supports a Static property.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IStaticSupport.Static">
<summary>
Gets or sets whether the cell type is static.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.IPropertyAllowedSupport">
<summary>
Interface that signifies whether the cell type supports specific properties.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.IPropertyAllowedSupport.IsPropertySupported(System.String)">
<summary>
Gets whether the cell type supports the named property.
</summary>
<param name="propertyName">Name of the property</param>
</member>
<member name="T:FarPoint.Win.Spread.CellType.IMultilineSupport">
<summary>
Interface that signifies whether the cell type supports a Multiline property.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IMultilineSupport.Multiline">
<summary>
Gets or sets whether the cell type supports multiple lines.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.ICommonDialogSupport">
<summary>
Interface that signifies whether the cell type supports showing a common dialog.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ICommonDialogSupport.DialogShowing">
<summary>
Returns whether the CommonDialog SubEditor is currently open.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.IWordWrapSupport">
<summary>
Interface that signifies whether the cell type supports a WordWrap property.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IWordWrapSupport.WordWrap">
<summary>
Gets or sets whether the cell type supports word wrapping.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.IFormatValueFlag">
<summary>
Marker interface for cell type objects which indicates that the value for the cell
should always be formatted for display or sorting purposes.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.FpCalculator.IsNumber(System.Object)">
<summary>
Determines whether the specified value is a numeric data type.
</summary>
<param name="value">Value of which to determine data type</param>
<returns>True if the value is numeric; otherwise false</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadDropDownCalculator.SetValue(System.Object)">
<summary>
Sets the value into the subeditor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadDropDownCalculator.GetSubEditorControl">
<summary>
Gets the control associated with the subeditor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadDropDownCalculator.GetPreferredSize">
<summary>
Gets the preferred (maximum needed) size of the subeditor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadDropDownCalculator.GetLocation(System.Drawing.Rectangle)">
<summary>
Gets the intial location of the subeditor control.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar">
<summary>
Represents a Windows control that enables the user to select a date using a visual monthly calendar display.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar.#ctor(System.Globalization.DateTimeFormatInfo,System.DateTime)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar"/> class.
</summary>
<param name="info">Defines how <see cref="T:System.DateTime"/> values are formatted and displayed.</param>
<param name="dateDefault">The default value for <see cref="T:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar"/></param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>
A new object that is a copy of this instance.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
<summary>
Raises the KeyDown event.
</summary>
<param name="e">An event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the MouseUp event.
</summary>
<param name="e">An event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar.OnDateChanged(System.Windows.Forms.DateRangeEventArgs)">
<summary>
Raises the ValueChanged event.
</summary>
<param name="drevent">An event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar.GetLocation(System.Drawing.Rectangle)">
<summary>
Gets the location of the <see cref="T:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar"/> object.
</summary>
<param name="rect"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar.GetSubEditorControl">
<summary>
Gets the sub editor control
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar.GetValue">
<summary>
Gets current value
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar.SetValue(System.Object)">
<summary>
Sets a value for specified <see cref="T:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar"/> object.
</summary>
<param name="value"></param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar.GetPreferredSize">
<summary>
Retrieves the size of a rectangular area into which a control can be fitted.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
The method that is invoked automatically when performs serializing <see cref="T:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar"/> object into a stream.
</summary>
<param name="info"></param>
<param name="context"></param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
The instructor method that is initialized automatically when performs deserializing.
</summary>
<param name="info">Object that holds the serialized object data.</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="E:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar.ValueChanged">
<summary>
Occurs when value changed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar.CloseUp">
<summary>
Occurs when the calendar closed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar.DateDefault">
<summary>
Gets or sets default value for <see cref="T:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar"/>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar.DateTimeInfo">
<summary>
Gets or sets a DateTimeFormatInfo for <see cref="T:FarPoint.Win.Spread.CellType.SpreadDropDownMonthCalendar"/>
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.SpreadMonthCalendar">
<summary>
Represents a month calendar window
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.#ctor">
<summary>
Initializes a new instance of <see cref="T:FarPoint.Win.Spread.CellType.SpreadMonthCalendar"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.#ctor(System.String,System.String,System.Globalization.DateTimeFormatInfo,System.String,System.DateTime)">
<summary>
Initializes a new instance of <see cref="T:FarPoint.Win.Spread.CellType.SpreadMonthCalendar"/> class.
</summary>
<param name="okText">A caption for the OK button</param>
<param name="cancelText">A caption for the Cancel button</param>
<param name="info">A <see cref="T:System.Globalization.DateTimeFormatInfo"/> for formatting and displaying <see cref="T:System.DateTime"/> values, depending on culture.</param>
<param name="calFormat"></param>
<param name="dateDefault">A default value</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.#ctor(FarPoint.Win.Spread.CellType.SpreadMonthCalendar)">
<summary>
Creates a new copy from the specified cell type. ("Copy constructor")
</summary>
<param name="g">Specified button cell type from which to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>
A new object that is a copy of this instance.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.GetLocation(System.Drawing.Rectangle)">
<summary>
Gets the location of <see cref="T:FarPoint.Win.Spread.CellType.SpreadMonthCalendar"/>
</summary>
<param name="rect">Rectangle area in which to paint</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.SetMinDate(System.DateTime)">
<summary>
Sets a minimum <see cref="T:System.DateTime"/> value.
</summary>
<param name="dt">Min value in DateTime</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.SetMaxDate(System.DateTime)">
<summary>
Sets a maximum <see cref="T:System.DateTime"/> value.
</summary>
<param name="dt">Max value in DateTime</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.GetSubEditorControl">
<summary>
Gets the specified SpreadMonthCalendar object as a sub-editor control.
</summary>
<returns>Control object containing the subeditor control</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.GetValue">
<summary>
Gets the current value of <see cref="T:FarPoint.Win.Spread.CellType.SpreadMonthCalendar"/>
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.SetValue(System.Object)">
<summary>
Sets a current value for <see cref="T:FarPoint.Win.Spread.CellType.SpreadMonthCalendar"/>
</summary>
<param name="value"></param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.GetPreferredSize">
<summary>
Retrieves the size of a rectangular area into which a control can be fitted.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a SerializationInfo with the data needed to serialize the target object.
</summary>
<param name="info">SerializationInfo to populate with data.</param>
<param name="context">Destination for this serialization.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a SpreadMonthCalendar from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="E:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.ValueChanged">
<summary>
Occurs when value changed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.CloseUp">
<summary>
Occurs when the calendar closed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.DateDefault">
<summary>
Gets or sets a default value
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.DateTimeInfo">
<summary>
Gets or sets a <see cref="T:System.Globalization.DateTimeFormatInfo"/>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.OkText">
<summary>
Gets or sets a caption for the OK button.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.CancelText">
<summary>
Gets or sets a caption for the Cancel button.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.SpreadMonthCalendar.CalendarFormat">
<summary>
Gets or sets a calendar format string
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.GeneralEditor">
<summary>
Represents the base control for the cell types derived from GeneralCellType.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.#ctor">
<summary>
Constructs a new general editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.Finalize">
<summary>
The destructor method
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.Reset">
<summary>
Resets the contents of the control to the default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.OnSubEditorClosed(System.EventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.CellType.GeneralEditor.SubEditorClosed"/> event.
</summary>
<param name="e">EventArgs object that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.OnSubEditorOpening(FarPoint.Win.Spread.CellType.GeneralEditor.SubEditorCancelEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.CellType.GeneralEditor.SubEditorOpening"/> event.
</summary>
<param name="e">EventArgs object that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.OnAfterFocus(System.EventArgs)">
<summary>
Raises the AfterFocus event.
</summary>
<param name="e">An event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.Button_MouseUp(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.HandleValidKey(System.Int32)">
<summary>
Internal use only. Determines whether the key is handled by the control.
</summary>
method override from SuperEditBase
<param name="c">Numerical value for an ASCII character</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.HandleValidCharacter(System.Int32@)">
<summary>
Internal use only. Determines whether the character is handled by the control.
</summary>
method override from SuperEditBase
<param name="c">Numerical value for an ASCII character</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.OnEditKeyDown(System.Object,System.Windows.Forms.KeyEventArgs)">
<summary>
Internal use only. Occurs when the edit key is pressed down.
</summary>
<param name="sender">Source object of the event</param>
<param name="e">KeyEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.OnEditTextPasting(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
Internal use only. Occurs when the edit text is pasting.
</summary>
<param name="sender">Source object of the event</param>
<param name="e">CancelEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.OnEditTextPasted(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
Internal use only. Occurs when the edit text is pasted.
</summary>
<param name="sender">Source object of the event</param>
<param name="e">CancelEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.OnEditMouseUp(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Internal use only. Occurs when the mouse is up on an edit.
</summary>
<param name="sender">Source object of the event</param>
<param name="e">MouseEventArgs event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.OnEditMouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Internal use only. Occurs when the mouse is down on an edit.
</summary>
<param name="sender">Source object of the event</param>
<param name="e">MouseEventArgs event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.WndProc(System.Windows.Forms.Message@)">
<summary>
Internal use only.
</summary>
<param name="m">Message</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Internal use only.
</summary>
<param name="e">MouseEventArgs event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.DropDownDefaultAction">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.PopUpDefaultAction">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.SpinUpDefaultAction">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.IsCaretInIntegerPortion">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.ShowSubEditor(System.Boolean)">
<summary>
Shows or hides the subeditor control associated with the cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.SpinDownDefaultAction">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.OnGotFocus(System.EventArgs)">
<summary>
Internal use only.
</summary>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.OnEditTextChanged(System.Object,System.EventArgs)">
<summary>
Internal use only.
</summary>
<param name="sender">Source object</param>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.GetDrawingStringFormat(System.Drawing.Rectangle@)">
<summary>
Gets the format for drawing the string.
</summary>
<param name="drawRect">Rectangular bounding of the drawing</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.Dispose(System.Boolean)">
<summary>
Internal use only.
</summary>
<param name="disposing">Whether disposing</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.Select(System.Boolean,System.Boolean)">
<summary>
Selects a control with the specified direction in the tab order
from which to select the control.
</summary>
<param name="directed">
true to specify the direction of the control to select; false otherwise
</param>
<param name="forward">
true to move forward in the tab order; false to move backward in the tab order
</param>
</member>
<member name="E:FarPoint.Win.Spread.CellType.GeneralEditor.SubEditorClosed">
<summary>
Occurs when the subeditor for a cell closes.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.CellType.GeneralEditor.SubEditorOpening">
<summary>
Occurs when the subeditor for a cell opens.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.CellType.GeneralEditor.AfterFocus">
<summary>
Occurs after control got focus.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralEditor.AutoAdvance">
<summary>
Gets or sets whether the focus moves to another control when the pointer is moved with the arrow keys.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralEditor.OriginalValue">
<summary>
Gets or sets the editor's original value.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralEditor.IntegerIncrement">
<summary>
Sets the amount by which the value increments when the cursor is in the integer portion.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralEditor.DecimalIncrement">
<summary>
Sets the amount by which the value increments when the cursor is in the decimal portion.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralEditor.SubEditor">
<summary>
Gets or sets the subeditor in the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralEditor.CellType">
<summary>
Gets or sets the type of cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralEditor.CharacterSet">
<summary>
Gets or sets which character set to use.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralEditor.WordWrap">
<summary>
Gets or sets whether text that is too long to fit in the cell wraps to additional lines.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralEditor.ReadOnly">
<summary>
Gets or sets whether the cell is read-only (and thus cannot be edited).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralEditor.BorderStyle">
<summary>
Gets or sets the style of the border.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralEditor.AutoCompleteMode">
<summary>
Gets or sets how automatic completion works.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralEditor.AutoCompleteSource">
<summary>
Gets or sets the source of complete strings used for automatic completion.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralEditor.AutoCompleteCustomSource">
<summary>
Gets or sets a custom System.Collections.Specialized.StringCollection when the AutoCompleteSource property is set to CustomSource.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralEditor.Multiline">
<summary>
Gets or sets whether the text box has multiple lines.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralEditor.AcceptsReturn">
<summary>
Gets or sets whether it accepts a return.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralEditor.AcceptsArrowKeys">
<summary>
Gets or sets whether to accept arrow keys.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralEditor.PasswordChar">
<summary>
Gets or sets which character to substitute when user types in password.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralEditor.MaximumLength">
<summary>
Gets or sets the maximum number of characters allowed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralEditor.ScrollBars">
<summary>
Gets or sets the use of scroll bars.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralEditor.CharacterCasing">
<summary>
Gets or sets the character casing.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.GeneralEditor.SubEditorCancelEventHandler">
<summary>
Represents a defined method that handles the canceling of the
<see cref="E:FarPoint.Win.Spread.CellType.GeneralEditor.SubEditorOpening"/> event for the FpSpread component.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.GeneralEditor.SubEditorCancelEventArgs">
<summary>
Represents the event data for the canceling of the
<see cref="E:FarPoint.Win.Spread.CellType.GeneralEditor.SubEditorOpening"/> event for the FpSpread component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralEditor.SubEditorCancelEventArgs.#ctor">
<summary>
Creates a new object with the SubEditorCancel event arguments.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralEditor.SubEditorCancelEventArgs.Cancel">
<summary>
Gets or sets whether to cancel the default processing.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.ICellType">
<summary>
Interface that defines the methods and properties required by objects used as cell types.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BaseCellType">
<summary>
Represents the base class for other cell type classes.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.GetPreferredSize(System.Windows.Forms.Control)">
<summary>
Gets the preferred (maximum needed) size of the cell for the editor control.
</summary>
<param name="editor">Name of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.GetEditorValue">
<summary>
Gets the unformatted value in the editor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.SetEditorValue(System.Object)">
<summary>
Sets the value of the editor control.
</summary>
<param name="value">Value of editor control (as object)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.IsValid(System.Object)">
<summary>
Determines whether the specified value is valid.
</summary>
<param name="value">Value to validate (as object)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.IsPropertySupported(System.String)">
<summary>
Gets whether the cell type supports the named property.
</summary>
<param name="propertyName">Name of the property</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.StartEditing(System.EventArgs,System.Boolean,System.Boolean)">
<summary>
Starts the editing of a cell.
</summary>
<param name="e">Event</param>
<param name="selectAll">Whether to select all</param>
<param name="autoClipboard">Whether to allow shortcut keys for Clipboard actions</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.ShowSubEditor">
<summary>
Shows the subeditor control associated with the cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.CancelEditing">
<summary>
Cancels the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.StopEditing">
<summary>
Stops the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.IsReservedKey(System.Windows.Forms.KeyEventArgs)">
<summary>
Determines whether the specified key has special meaning to the editor control.
</summary>
<param name="e">
Key the user pressed and whether any modifier keys (CTRL, ALT, and SHIFT)
are pressed at the same time
</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.IsReservedLocation(System.Drawing.Graphics,System.Int32,System.Int32,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Determines whether the specified cursor location has special meaning to the editor control.
</summary>
<param name="g">Graphics device interface for painting the editor control</param>
<param name="x">X-coordinate of pointer location</param>
<param name="y">Y-coordinate of pointer location</param>
<param name="rc">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="value">Object containing the name of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.GetReservedCursor(System.Object)">
<summary>
Gets the cursor reserved for this cell type.
</summary>
<param name="o">Object that is the reserved cursor (pointer)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.FireEditingCanceled">
<summary>
Fires the EditingCanceled event if there are any delegates attached.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.FireEditorValueChanged(System.EventArgs)">
<summary>
Fires the EditorValueChanged event if there are any delegates attached.
</summary>
<param name="e">EventArgs object that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.FireEditingStopped">
<summary>
Fires the EditingStopped event if there are any delegates attached.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the cell when not in edit mode to the specified graphics interface with the specified appearance settings.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Object containing the name of the renderer control of the cell</param>
<param name="isSelected">Whether the cell is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.PaintCell(FarPoint.PDF.PdfGraphics,System.Drawing.RectangleF,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints (prints) to PDF the cell when not in edit mode to the specified graphics interface
with the specified appearance settings.
</summary>
<param name="g">PDF graphics device interface for painting the cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Object containing the name of the renderer control of the cell</param>
<param name="isSelected">Whether the cell is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the painting of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Gets the preferred (maximum needed) size of the cell for the renderer control.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Preferred or maximum needed size</param>
<param name="appearance">Appearance settings of the renderer control</param>
<param name="value">Object containing the name of the renderer control</param>
<param name="zoomFactor">Numeric value for scaling the display of the renderer control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.Format(System.Object)">
<summary>
Formats the specified data into the format of the cell type and returns it as a string.
</summary>
<param name="obj">Object in the data model with cell data to format</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.Parse(System.String)">
<summary>
Parses the specified string to the data type of the cell type and returns it as an object.
</summary>
<param name="s">Specified string from the cell on the sheet to parse</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.CanOverflow">
<summary>
Determines whether a cell can overflow its data into an adjacent cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.CanBeOverflown">
<summary>
Determines whether data from another cell can overflow into this cell
(whether this cell can be overflowed into).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.ToString">
<summary>
Converts the name of the cell type to a string.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.Clone">
<summary>
Creates and returns a base cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BaseCellType.GetReusableEditorControl(FarPoint.Win.Spread.CellType.IReuseEditorControl,System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Implementation of IReuseEditorControl.GetEditorControl for use by cell types
</summary>
<param name="irec">Editor control to reuse</param>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings</param>
<param name="zoomFactor">Numeric value for scaling the display of the control</param>
<returns>Control</returns>
<remarks>After calling this method, if initialized is false, you must call IReuseEditorControl.InitializeEditorControl to
make the editor control ready for editing.</remarks>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BaseCellType.SubEditor">
<summary>
Gets or sets the subeditor.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.CellType.BaseCellType.EditingCanceled">
<summary>
Occurs when editing (the editor control) has been canceled by the user.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.CellType.BaseCellType.EditorValueChanged">
<summary>
Occurs when value (the editor control) has been changed by the user.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.CellType.BaseCellType.EditingStopped">
<summary>
Occurs when editing (the editor control) has been stopped by the user.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.IGeneralFormatSupport">
<summary>
Interface that supports the general formatting of date-time and numeric cells.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IGeneralFormatSupport.IsDateFormat">
<summary>
Gets or sets the whether the format is date-time.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IGeneralFormatSupport.DateTimeFormat">
<summary>
Gets or sets the date-time format information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IGeneralFormatSupport.NumberFormat">
<summary>
Gets or sets the numeric format information.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.GeneralCellType">
<summary>
Represents the default cell.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.EditBaseCellType">
<summary>
Represents the basis for all editable cells.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.IFormulaEditingSupport">
<summary>
Indicates the cell editor can handle formula input.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.EditBaseCellType.theme">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.#ctor">
<summary>
Creates a new editable cell with default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.Finalize">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.Dispose">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.#ctor(FarPoint.Win.Spread.CellType.EditBaseCellType)">
<summary>
Copies properties from the specified EditBaseCellType ("copy constructor").
</summary>
<param name="g">Specified base cell type from which to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new editable cell from serialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.Clone">
<summary>
Creates and returns an editable base cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the cell type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.IsValid(System.Object)">
<summary>
Determines whether the specified value is valid.
</summary>
<param name="value">Value to validate (as object)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.ShowSubEditor">
<summary>
Shows the subeditor control associated with the cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.SetCurrentCulture(System.Globalization.CultureInfo)">
<summary>
Gets or sets the current culture.
</summary>
<param name="culture">Culture information setting</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.Format(System.Object)">
<summary>
Formats the specified data into the format of the cell type and returns it as a string.
</summary>
<param name="obj">Object in the data model with cell data to format</param>
<exception cref="T:System.ArgumentException">
Specified object to format is not valid
</exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.Parse(System.String)">
<summary>
Parses the specified string to the data type of the cell type and returns it as an object.
</summary>
<param name="s">Specified string from the cell on the sheet to parse</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.ToHorizontalAlignment(FarPoint.Win.Spread.CellHorizontalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellHorizontalAlignment value to the corresponding FarPoint.Win.HorizontalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellHorizontalAlignment value</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.ToVerticalAlignment(FarPoint.Win.Spread.CellVerticalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellVerticalAlignment value to the corresponding FarPoint.Win.VerticalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellVerticalAlignment</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.GetReusableEditorControl(FarPoint.Win.Spread.CellType.IReuseEditorControl,System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Implementation of IReuseEditorControl.GetEditorControl for use by cell types
</summary>
<param name="irec">Editor control to reuse</param>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings</param>
<param name="zoomFactor">Numeric value for scaling the display of the control</param>
<returns>Control</returns>
<remarks>After calling this method, if initialized is false, you must call IReuseEditorControl.InitializeEditorControl to
make the editor control ready for editing.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.GetEditorValue">
<summary>
Gets the unformatted value in the editor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.SetEditorValue(System.Object)">
<summary>
Sets the value of the editor control.
</summary>
<param name="value">Value of editor control (as object)</param>
<exception cref="T:System.ArgumentException">
Specified value to set is not valid
</exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.StartEditing(System.EventArgs,System.Boolean,System.Boolean)">
<summary>
Starts the editing of a cell.
</summary>
<param name="e">Event</param>
<param name="selectAll">Whether to select all</param>
<param name="autoClipboard">Whether to allow shortcut keys for Clipboard actions</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.CancelEditing">
<summary>
Cancels the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.StopEditing">
<summary>
Stops the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.IsReservedKey(System.Windows.Forms.KeyEventArgs)">
<summary>
Determines whether the specified key has special meaning to the editor control.
</summary>
<param name="e">KeyEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.IsReservedLocation(System.Drawing.Graphics,System.Int32,System.Int32,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Determines whether the specified cursor location has special meaning to the editor control.
</summary>
<param name="g">Graphics device interface for drawing editor control </param>
<param name="x">X-coordinate of pointer location </param>
<param name="y">Y-coordinate of pointer location </param>
<param name="rc">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="value">Object containing the name of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.GetReservedCursor(System.Object)">
<summary>
Gets the cursor reserved for this cell type.
</summary>
<param name="o">Object that is the reserved cursor (pointer)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.GetTextRectangle(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Font,FarPoint.Win.Spread.Appearance,System.Drawing.Rectangle@,System.String)">
<summary>
Gets the rectangle in which text is drawn.
</summary>
<param name="g">Graphics device interface for painting the text</param>
<param name="r">Cell rectangle</param>
<param name="f">Font</param>
<param name="appearance">Appearance settings of the rectangle</param>
<param name="rText">Text rectangle returned</param>
<param name="paintString">String to be painted</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.GetHorizontalAlignment(System.Object)">
<summary>
Gets the horizontal alignment based on the value.
</summary>
<param name="value">Value of the horizontal alignment</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.GetVerticalAlignment(System.Object)">
<summary>
Gets the vertical alignment based on the value.
</summary>
<param name="value">Value of the vertical alignment</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the cell when not in edit mode to the specified graphics interface with the specified appearance settings.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Object containing the name of the renderer control of the cell</param>
<param name="isSelected">Whether the cell is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.PaintCell(FarPoint.PDF.PdfGraphics,System.Drawing.RectangleF,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints (prints) to PDF the cell.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Object containing the name of the renderer control of the cell</param>
<param name="isSelected">Whether the cell is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the painting of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.GetTextRect(FarPoint.Win.Spread.Appearance,System.Drawing.RectangleF,System.Single)">
<summary>
Calculate the rectangle for drawing text
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="r">Container rectangle of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Gets the preferred (maximum needed) size of the cell for the renderer control.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Preferred or maximum needed size</param>
<param name="appearance">Appearance settings of the renderer control</param>
<param name="value">Object containing the name of the renderer control</param>
<param name="zoomFactor">Numeric value for scaling the display of the renderer control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.GetPreferredSize(System.Windows.Forms.Control)">
<summary>
Gets the preferred (maximum needed) size of the cell for the editor control.
</summary>
<param name="editor">Name of editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.CanOverflow">
<summary>
Determines whether the cell can overflow into adjacent cells.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.CanBeOverflown">
<summary>
Determines whether data from another cell can overflow into this cell
(whether this cell can be overflowed into).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EditBaseCellType.InitializeEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initializes the editor control.
</summary>
<param name="control">Editor control to initialize</param>
<param name="appearance">Appearance settings</param>
<param name="zoomFactor">Numeric value for scaling the display of the control</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EditBaseCellType.SubEditor">
<summary>
Gets or sets the subeditor.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EditBaseCellType.AcceptsArrowKeys">
<summary>
Gets or sets how arrow keys are processed by the edit control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EditBaseCellType.BackgroundImage">
<summary>
Gets or sets the background image for the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EditBaseCellType.TextOrientation">
<summary>
Gets or sets how text orients itself when painting the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EditBaseCellType.TextRotationAngle">
<summary>
Gets or sets the rotation angle of the text for the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EditBaseCellType.DropDownButton">
<summary>
Gets or sets whether a drop-down button is displayed in the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EditBaseCellType.ButtonAlign">
<summary>
Gets or sets where the buttons are displayed in the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EditBaseCellType.FocusPosition">
<summary>
Gets or sets the initial cursor position.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EditBaseCellType.EnableSubEditor">
<summary>
Gets or sets whether the SubEditor is available
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EditBaseCellType.Static">
<summary>
Gets or sets whether the cell is static, which prohibits user interaction.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EditBaseCellType.ReadOnly">
<summary>
Gets or sets whether the cell is read-only (and thus cannot be modified).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EditBaseCellType.AutoCompleteMode">
<summary>
Gets or sets how automatic completion works.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EditBaseCellType.AutoCompleteSource">
<summary>
Gets or sets the source of complete strings used for automatic completion.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EditBaseCellType.AutoCompleteCustomSource">
<summary>
Gets or sets a custom string collection when the AutoCompleteSource property is set to CustomSource.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EditBaseCellType.AutoFillAutoCompleteCustomSource">
<summary>
Gets or sets a whether the AutoCompleteCustomSource is automatically filled with data
from other cells in the column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EditBaseCellType.NullDisplay">
<summary>
Gets or sets the text to display for null values.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EditBaseCellType.StringTrim">
<summary>
Gets or sets how to trim characters that do not fit in the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EditBaseCellType.WordWrap">
<summary>
Gets or sets whether text that is too long to fit in the cell wraps to additional lines.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralCellType.#ctor">
<summary>
Creates a new general (default) cell with default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new general (default) cell from serialization.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the cell type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralCellType.Clone">
<summary>
Creates and returns a general (default) cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralCellType.SetCurrentCulture(System.Globalization.CultureInfo)">
<summary>
Sets the current culture information.
</summary>
<param name="culture">Culture information</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralCellType.Parse(System.String)">
<summary>
Parses the specified string to the data type of the cell type and returns it as an object.
</summary>
<param name="s">Specified string from the cell on the sheet to parse</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralCellType.Format(System.Object)">
<summary>
Formats the specified data into the format of the cell type and returns it as a string.
</summary>
<param name="obj">Object in the data model with cell data to format</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralCellType.StartEditing(System.EventArgs,System.Boolean,System.Boolean)">
<summary>
Starts the editing of a cell.
</summary>
<param name="e">Event</param>
<param name="selectAll">Whether to select all </param>
<param name="autoClipboard">Whether to allow shortcut keys for Clipboard actions </param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralCellType.SetFormatString(System.String,System.Boolean)">
<summary>
Sets the format string for formatting values.
</summary>
<param name="value">Format string for formatting values</param>
<param name="isDateFormat">Whether to consider the number as a date and time</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralCellType.GetParseFormat(System.Int32,System.Int32,System.String@,System.IFormatProvider@)">
<summary>
Gets the parse format string and IFormatProvider for formatting when the format string is not set.
</summary>
<param name="row">Ignored</param>
<param name="column">Ignored</param>
<param name="formatString">Format string</param>
<param name="info">IFormatProvider to handle formatting</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralCellType.SetParseFormat(System.Int32,System.Int32,System.String,System.IFormatProvider)">
<summary>
Sets the parse format string and IFormatProvider for formatting when the format string is not set.
</summary>
<param name="row">Ignored</param>
<param name="column">Ignored</param>
<param name="formatString">Format string</param>
<param name="info">IFormatProvider for formatting</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralCellType.GetEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralCellType.InitializeEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initialize the editor control.
</summary>
<param name="control">Control</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GeneralCellType.SetEditorValue(System.Object)">
<summary>
Sets the value of the editor control.
</summary>
<param name="value">Value of editor control (as object)</param>
<exception cref="T:System.ArgumentException">
Specified value to set is not valid
</exception>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralCellType.NegativeRed">
<summary>
Gets or sets whether negative values are displayed in red.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralCellType.FormatString">
<summary>
Gets or sets the format string used to format the value.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralCellType.IsDateFormat">
<summary>
Gets or sets whether the format string should be interpreted as a date-time format (true)
or a number format (false).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralCellType.DateTimeFormat">
<summary>
Gets or sets a DateTimeFormatInfo object that defines the format for displaying dates and times.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralCellType.NumberFormat">
<summary>
Gets or sets a NumberFormatInfo object that defines the format for displaying a numeric value.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GeneralCellType.IsFormulaValue">
<summary>
Determines whether the editor contains a formula.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.TextCellType">
<summary>
Represents a text cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextCellType.#ctor">
<summary>
Creates a new text cell with default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextCellType.Clone">
<summary>
Creates and returns a text cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new text cell from serialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextCellType.#ctor(FarPoint.Win.Spread.CellType.TextCellType)">
<summary>
Creates a new copy from the specified cell type. ("Copy constructor")
</summary>
<param name="g">Specified text cell type from which to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the cell type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextCellType.IsValid(System.Object)">
<summary>
Determines whether the specified value is valid.
</summary>
<param name="value">Specified value in the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextCellType.Parse(System.String)">
<summary>
Parses the specified string to the data type of the cell type and returns it as an object.
</summary>
<param name="s">Specified string from the cell on the sheet to parse</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextCellType.Format(System.Object)">
<summary>
Formats the specified data into the format of the cell type and returns it as a string.
</summary>
<param name="obj">Object in the data model with cell data to format</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextCellType.SetEditorValue(System.Object)">
<summary>
Sets the value of the editor control.
</summary>
<param name="value">Value of editor control (as object)</param>
<exception cref="T:System.ArgumentException">
Specified value to set is not valid
</exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextCellType.InitializeEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initialize the editor control.
</summary>
<param name="control">Control</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextCellType.GetTextRectangle(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Font,FarPoint.Win.Spread.Appearance,System.Drawing.Rectangle@,System.String)">
<summary>
Gets the rectangle in which text is drawn.
</summary>
<param name="g">Graphics device interface for painting the text</param>
<param name="r">Cell rectangle</param>
<param name="f">Font</param>
<param name="appearance">Appearance settings of the rectangle</param>
<param name="rText">Text rectangle returned</param>
<param name="paintString">String to be painted</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextCellType.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the cell when not in edit mode to the specified graphics interface with the specified appearance settings.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Object containing the name of the renderer control of the cell</param>
<param name="isSelected">Whether the cell is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextCellType.GetPreferredSize(System.Windows.Forms.Control)">
<summary>
Gets the preferred (maximum needed) size of the cell for the editor control.
</summary>
<param name="editor">Name of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextCellType.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Gets the preferred (maximum needed) size of the cell for the renderer control.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Preferred or maximum needed size</param>
<param name="appearance">Appearance settings of the renderer control</param>
<param name="value">Object containing the name of the renderer control of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the renderer control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextCellType.CanOverflow">
<summary>
Determines whether the cell can overflow into adjacent cells.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextCellType.GetEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.TextCellType.ScrollBars">
<summary>
Gets or sets which scroll bars to display for the text cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.TextCellType.HotkeyPrefix">
<summary>
Gets or sets whether the ampersand character underlines text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.TextCellType.CharacterCasing">
<summary>
Gets or sets the case of characters in the text cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.TextCellType.CharacterSet">
<summary>
Gets or sets what characters to allow for the text cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.TextCellType.PasswordChar">
<summary>
Gets or sets the character for masking data in the text cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.TextCellType.MaxLength">
<summary>
Gets or sets the maximum number of characters allowed in the text cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.TextCellType.Multiline">
<summary>
Gets or sets whether multiple lines of text are allowed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.ButtonCellType">
<summary>
Represents a button cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.#ctor">
<summary>
Creates a new button cell with default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.#ctor(FarPoint.Win.Spread.CellType.ButtonCellType)">
<summary>
Creates a new copy from the specified cell type. ("Copy constructor")
</summary>
<param name="g">Specified button cell type from which to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new button cell from serialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates the SerializationInfo class with information about the button cell type settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.ToHorizontalAlignment(FarPoint.Win.Spread.CellHorizontalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellHorizontalAlignment value to the corresponding FarPoint.Win.HorizontalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellHorizontalAlignment value</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.ToVerticalAlignment(FarPoint.Win.Spread.CellVerticalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellVerticalAlignment value to the corresponding FarPoint.Win.VerticalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellVerticalAlignment</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.Format(System.Object)">
<summary>
Formats the specified data into the format of the cell type and returns it as a string.
</summary>
<param name="o">Object in the data model to format</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.Parse(System.String)">
<summary>
Parses the specified string to the data type of the cell type and returns it as an object.
</summary>
<param name="s">Specified string from the cell on the sheet to parse</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.GetEditorValue">
<summary>
Gets the unformatted value in the editor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.SetEditorValue(System.Object)">
<summary>
Sets the value of the editor control.
</summary>
<param name="value">Object - value of the editor control</param>
<exception cref="T:System.ArgumentException">
Specified value to set is not valid
</exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.StartEditing(System.EventArgs,System.Boolean,System.Boolean)">
<summary>
Starts the editing of a cell.
</summary>
<param name="e">Event</param>
<param name="selectAll">Whether to select all </param>
<param name="autoClipboard">Whether to allow shortcut keys for Clipboard actions</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.CancelEditing">
<summary>
Cancels the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.StopEditing">
<summary>
Stops the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.IsReservedKey(System.Windows.Forms.KeyEventArgs)">
<summary>
Determines whether the specified key has special meaning to the editor control.
</summary>
<param name="e">KeyEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.IsReservedLocation(System.Drawing.Graphics,System.Int32,System.Int32,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Determines whether the specified cursor location has special meaning to the editor control.
</summary>
<param name="g">Graphics device interface for drawing editor control </param>
<param name="x">X-coordinate of pointer location </param>
<param name="y">Y-coordinate of pointer location </param>
<param name="rc">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="value">Object containing the name of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.GetReservedCursor(System.Object)">
<summary>
Gets the cursor reserved for this cell type.
</summary>
<param name="o">Object that is the reserved cursor (pointer)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the cell when not in edit mode to the specified graphics interface with the specified appearance settings.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Object containing the name of the renderer control of the cell</param>
<param name="isSelected">Whether the cell is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Gets the preferred (maximum needed) size of the cell for the renderer control.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Preferred or maximum needed size</param>
<param name="appearance">Appearance settings of the renderer control</param>
<param name="value">Object containing the name of the renderer control</param>
<param name="zoomFactor">Numeric value for scaling the display of the renderer control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.InitializeEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initializes the editor control for editing.
</summary>
<param name="control">Control</param>
<param name="appearance">Appearance of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ButtonCellType.GetEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ButtonCellType.ButtonColor">
<summary>
Gets or sets the color for the button.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ButtonCellType.HotkeyPrefix">
<summary>
Gets or sets whether the ampersand character underlines text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ButtonCellType.TextColor">
<summary>
Gets or sets the color for the button text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ButtonCellType.DarkColor">
<summary>
Gets or sets the shadow color for the button.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ButtonCellType.LightColor">
<summary>
Gets or sets the highlight color for the button.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ButtonCellType.Picture">
<summary>
Gets or sets the image for the button.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ButtonCellType.PictureDown">
<summary>
Gets or sets the image for the down state of the button.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ButtonCellType.ShadowSize">
<summary>
Gets or sets the width (in pixels) of the shadow around the button.
</summary>
<exception cref="T:System.ArgumentException">
Specified width is not valid; must be between 0 and 256
</exception>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ButtonCellType.Text">
<summary>
Gets or sets the button text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ButtonCellType.TextDown">
<summary>
Gets or sets the text for the button down state.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ButtonCellType.TextOrientation">
<summary>
Gets or sets how text orients itself when painting the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ButtonCellType.UseVisualStyleBackColor">
<summary>
Gets or sets whether to use the visual style setting background color.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ButtonCellType.TextRotationAngle">
<summary>
Gets or sets the rotation angle of the text for the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ButtonCellType.TextAlign">
<summary>
Gets or sets how the text aligns itself in relation to the button image.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ButtonCellType.TwoState">
<summary>
Gets or sets whether the button has two states.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ButtonCellType.ButtonColor2">
<summary>
Gets or sets the secondary color used when drawing a gradient button.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ButtonCellType.GradientMode">
<summary>
Gets or sets the drawing style of a gradient button.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ButtonCellType.BackgroundStyle">
<summary>
Gets or sets how the background is rendered.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ButtonCellType.WordWrap">
<summary>
Gets or sets whether text that is too long to fit in the cell wraps to additional lines.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.IDateTimeCellType">
<summary>
An interface supports CellType objects that want to display data as <see cref="T:System.DateTime"/> type.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IDateTimeCellType.DateTimeFormat">
<summary>
Gets or sets a <see cref="P:FarPoint.Win.Spread.CellType.IDateTimeCellType.DateTimeFormat"/>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IDateTimeCellType.DateSeparator">
<summary>
Gets or sets a date separator string
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IDateTimeCellType.TimeSeparator">
<summary>
Gets or sets a time separator string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IDateTimeCellType.UserDefinedFormat">
<summary>
Gets or sets a custom date format string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IDateTimeCellType.AMString">
<summary>
Gets or sets AM string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IDateTimeCellType.PMString">
<summary>
Gets or sets PM string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IDateTimeCellType.TextOrientation">
<summary>
Gets or sets text orientation.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IDateTimeCellType.TextRotationAngle">
<summary>
Gets or sets a text rotation angle.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IDateTimeCellType.WordWrap">
<summary>
Gets or sets a value indicates whether text is wrapped or not.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IDateTimeCellType.DayNames">
<summary>
Gets or sets array of names of days.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IDateTimeCellType.MonthNames">
<summary>
Gets or sets array of names of months.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IDateTimeCellType.Calendar">
<summary>
Gets or sets a <see cref="P:FarPoint.Win.Spread.CellType.IDateTimeCellType.Calendar"/> object
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.DateTimeCellType">
<summary>
Represents a date-time cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.Format(System.Object)">
<summary>
Formats the specified data into the format of the cell type and returns it as a string.
</summary>
<param name="obj">Object in the data model with cell data to format</param>
<exception cref="T:System.ArgumentException">
Specified object to format is not valid
</exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.Clone">
<summary>
Creates and returns a date-time cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.#ctor">
<summary>
Creates a new date-time cell with default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.#ctor(FarPoint.Win.Spread.CellType.DateTimeCellType)">
<summary>
Creates a new copy from the specified cell type. ("Copy constructor")
</summary>
<param name="g">Specified date-time cell type from which to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new date-time cell from serialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the cell type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Gets the preferred (maximum needed) size of the cell for the editor control.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Preferred or maximum needed size</param>
<param name="appearance">Appearance settings of the renderer control</param>
<param name="value">Object containing the name of the renderer control</param>
<param name="zoomFactor">Numeric value for scaling the display of the renderer control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="F:FarPoint.Win.Spread.CellType.DateTimeCellType.IncompleteValue">
<summary>
Get the value that return from editor if the editing value is partial and not empty.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.GetEditorValue">
<summary>
Gets the unformatted value in the editor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.SetEditorValue(System.Object)">
<summary>
Sets the value of the editor control.
</summary>
<param name="value">Value of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.SetCalendarText(System.String[],System.String[],System.String[],System.String[],System.String,System.String)">
<summary>
Sets the various text elements for the pop-up calendar,
including the day and month names and the button text.
</summary>
<param name="dayNames">Set of day names</param>
<param name="monthNames">Set of month names</param>
<param name="shortdayNames">Set of abbreviated day names</param>
<param name="shortmonthNames">Set of abbreviated month names</param>
<param name="okText">Text for the OK button</param>
<param name="cancelText">Text for the Cancel button</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.SetCalendarText(System.String[],System.String[],System.String[],System.String[],System.String,System.String,System.String)">
<summary>
Sets the various text elements for the pop-up calendar,
including the day and month names, the today text, and the button text.
</summary>
<param name="dayNames">Set of day names</param>
<param name="monthNames">Set of month names</param>
<param name="shortdayNames">Set of abbreviated day names</param>
<param name="shortmonthNames">Set of abbreviated month names</param>
<param name="okText">Text for the OK button</param>
<param name="cancelText">Text for the Cancel button</param>
<param name="currentText">Text for the Today button or Now button</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.SetCalendarText(System.String,System.String)">
<summary>
Sets the various text elements for the pop-up calendar,
namely the button text.
</summary>
<param name="okText">Text for the OK button</param>
<param name="cancelText">Text for the Cancel button</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.SetCalendarFormat(System.String)">
<summary>
Sets the format to be used for the pop-up calendar header.
</summary>
<param name="calFormat">Format of the header of the calendar</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.GetDayNames">
<summary>
Gets the long day names for formatting date values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.GetMonthNames">
<summary>
Gets the long month names for formatting date values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.GetShortDayNames">
<summary>
Gets the short day names for formatting date values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.GetShortMonthNames">
<summary>
Gets the short month names for formatting date values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.GetTimeFormat">
<summary>
Gets the time format for formatting time values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.GetShortDateFormat">
<summary>
Gets the short date format for formatting date values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.GetLongDateFormat">
<summary>
Gets the long date format for formatting date values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.GetFormatString">
<summary>
Gets the format string for formatting date values or time values or both.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.GetNewFormat">
<summary>
Gets the new format for formatting date values or time values or both.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.FixUpSpecialLiterals(System.String)">
<summary>
Used to change .net embedded literals into SuperEdit embedded literals
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.SetNewFormat">
<summary>
Sets the new format (returned by GetNewFormat) into the internal cell formatter.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.GetDateSeparatorString">
<summary>
Gets the date separator string for formatting date values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.GetTimeSeparatorString">
<summary>
Gets the time separator string for formatting time values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.GetAMStringDesignator">
<summary>
Gets the AM string for formatting time values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.GetPMStringDesignator">
<summary>
Gets the PM string for formatting time values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.IsValid(System.Object)">
<summary>
Determines whether the specified value can be converted to a date-time value and is between
the minimum and maximum allowed values.
</summary>
<param name="value">Value to validate (as object)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.InitializeEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initialize the editor control.
</summary>
<param name="control">Control</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DateTimeCellType.GetEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.SimpleEdit">
<summary>
Gets or sets whether celltype ignore invalid character input while editing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarDayBackColor">
<summary>
Gets or sets the background color of the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarDayForeColor">
<summary>
Gets or sets the text color of the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarDayFont">
<summary>
Gets or sets the text font of the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarWeekdayBackColor">
<summary>
Gets or sets the background color of the weekday part of
the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarWeekdayForeColor">
<summary>
Gets or sets the text color of the weekday part of
the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarWeekdayFont">
<summary>
Gets or sets the text font of the weekday part of
the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarYearBackColor">
<summary>
Gets or sets the background color of the year part of
the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarYearForeColor">
<summary>
Gets or sets the text color of the year part of
the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarYearFont">
<summary>
Gets or sets the text font of the year part of
the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarMonthBackColor">
<summary>
Gets or sets the background color of the month part of
the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarMonthForeColor">
<summary>
Gets or sets the text color of the month part of
the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarMonthFont">
<summary>
Gets or sets the text font of the month part of
the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarWeekdayHeaderDock">
<summary>
Gets or sets how to dock the weekday header of
the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarWeekdayHeaderHeight">
<summary>
Gets or sets the height of the weekday header of
the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarYearHeaderDock">
<summary>
Gets or sets how to dock the year header of
the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarMonthHeaderDock">
<summary>
Gets or sets how to dock the month header of
the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarYearHeaderStyle">
<summary>
Gets or sets the style of the year header of
the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarMonthHeaderStyle">
<summary>
Gets or sets the style of the month header of
the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarYearHeaderHeight">
<summary>
Gets or sets the height of the year header of
the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarMonthHeaderHeight">
<summary>
Gets or sets the height of the month header of
the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarShowSurroundingDays">
<summary>
Gets or sets whether to show the surrounding days in
the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarSurroundingDaysColor">
<summary>
Gets or sets the color of the surrounding days of
the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.CalendarSingleLineHeader">
<summary>
Gets or sets the single line header of
the pop-up calendar in the date-time cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.EditorValue">
<summary>
Gets or sets what value is written to the underlying data model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.DateDefault">
<summary>
Gets or sets the default date for the control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.TimeDefault">
<summary>
Gets or sets the default time used in the control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.SpinButton">
<summary>
Gets or sets whether a spin button is displayed while editing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.UserDefinedFormat">
<summary>
Gets or sets the format used when date-time format is user-defined.
</summary>
<exception cref="T:System.ArgumentException">
Specified format is not valid
</exception>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.ShortDayNames">
<summary>
Gets or sets alternate short day names for the control. (Use with UserDefinedFormat.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.ShortMonthNames">
<summary>
Gets or sets alternate short month names for the control. (Use with UserDefinedFormat.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.MonthNames">
<summary>
Gets or sets alternate month names for the control. (Use with UserDefinedFormat.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.DayNames">
<summary>
Gets or sets alternate day names for the control. (Use with UserDefinedFormat.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.DateTimeFormat">
<summary>
Gets or sets the format for displaying dates and times.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.MinimumTime">
<summary>
Gets or sets the minimum time value allowed for user entry.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified value out of range; must be between 00:00:00 and 23:59:59.9999999
</exception>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.MaximumTime">
<summary>
Gets or sets the maximum time value allowed for user entry.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified value out of range; must be between 00:00:00 and 23:59:59
</exception>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.MinimumDate">
<summary>
Gets or sets the minimum date value allowed for user entry.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.MaximumDate">
<summary>
Gets or sets the maximum date value allowed for user entry.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.DateSeparator">
<summary>
Gets or sets the string that separates the portions of a date value.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.TimeSeparator">
<summary>
Gets or sets the string that separates the portions of a time value.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.AMString">
<summary>
Gets or sets the string to indicate morning for 12-hour time format.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.PMString">
<summary>
Gets or sets the string to indicate afternoon and evening for 12-hour time format.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.Calendar">
<summary>
Gets or sets the calendar for formatting date values.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.DateTimeCellType.TwoDigitYearMax">
<summary>
Gets or sets the last year of a 100-year range that can be represented by a 2-digit year.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified value is out of range for Gregorian calendar; must be between 100 and 9999
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified value is out of range for Hijri calendar; must be between 100 and 9666
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified value is out of range for Hebrew calendar; must be between 5343 and 6000
</exception>
</member>
<member name="T:FarPoint.Win.Spread.CellType.FractionDenominatorPrecision">
<summary>
Specifies the precision of the fraction denominator for numeric cells displaying as fractions.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.FractionDenominatorPrecision.Auto">
<summary>
Sets the precision automatically.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.FractionDenominatorPrecision.Halves">
<summary>
Sets the precision to halves.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.FractionDenominatorPrecision.Quarters">
<summary>
Sets the precision to quarters.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.FractionDenominatorPrecision.Eighths">
<summary>
Sets the precision to eighths.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.FractionDenominatorPrecision.Sixteenths">
<summary>
Sets the precision to sixteenths.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.FractionDenominatorPrecision.ThirtySeconds">
<summary>
Sets the precision to thirty-seconds.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.FractionDenominatorPrecision.SixtyFourths">
<summary>
Sets the precision to sixty-fourths.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.FractionDenominatorPrecision.Tenths">
<summary>
Sets the precision to tenths.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.FractionDenominatorPrecision.Hundredths">
<summary>
Sets the precision to hundredths.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.FractionDenominatorPrecision.Thousandths">
<summary>
Sets the precision to thousandths.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.FractionDenominatorPrecision.Custom">
<summary>
Sets the precision to a custom value.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.NumberCellType">
<summary>
Represents a numeric cell with formatting that you can specify.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.Clone">
<summary>
Creates and returns a numeric cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.#ctor">
<summary>
Creates a new numeric cell with default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.#ctor(FarPoint.Win.Spread.CellType.NumberCellType)">
<summary>
Creates a new copy from the specified cell type. ("Copy constructor")
</summary>
<param name="g">Specified number cell type from which to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new numeric cell from serialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the cell type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.SetCalculatorText(System.String,System.String)">
<summary>
Sets the text for the pop-up calculator.
</summary>
<param name="okText">Text for the OK button</param>
<param name="cancelText">Text for the Cancel button</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.Round(System.Double,System.Int32)">
<summary>
Function to perform "plain" rounding, not "bankers" rounding
</summary>
<param name="value">Double value to round</param>
<param name="decimalPlaces">Decimal places of precision</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.Format(System.Object)">
<summary>
Formats the specified data into the format of the cell type and returns it as a string.
</summary>
<param name="obj">Object in the data model with cell data to format</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.Parse(System.String)">
<summary>
Parses the specified string to the data type of the cell type and returns it as an object.
</summary>
<param name="s">Specified string from the cell on the sheet to parse</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.ApplyNegativeFormat">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.GetNegativeFormatValue">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.GetNewFormat">
<summary>
Gets the format string for formatting the numeric value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.GetDecimalPlacesValue">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.GetDecimalSeparatorString">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.GetSeparatorCharacter">
<summary>
Gets the separator character for formatting the numeric value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.IsValid(System.Object)">
<summary>
Determines whether the specified value can be converted to a double-precision,
floating point value and is between the minimum and maximum allowed values.
</summary>
<param name="value">Value to validate</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.SetEditorValue(System.Object)">
<summary>
Sets the value of the editor control.
</summary>
<param name="value">Value of editor control (as object)</param>
<exception cref="T:System.ArgumentException">
Specified value to set is not valid
</exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Gets the preferred (maximum needed) size of the cell for the editor control.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Preferred or maximum needed size</param>
<param name="appearance">Appearance settings of the renderer control</param>
<param name="value">Object containing the name of the renderer control</param>
<param name="zoomFactor">Numeric value for scaling the display of the renderer control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.FractionParse(System.String,System.Boolean@)">
<summary>
Parses the input string with fraction support.
</summary>
<param name="input">The input.</param>
<param name="isSuccess">if set to <c>true</c>, parsing fraction number is successful. Otherwise, failed.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Overrides the PaintCell to provide fraction support.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.FractionFormat(System.Object)">
<summary>
Formats the input object as a string with fraction support.
</summary>
<param name="inputValue"></param>
<returns>String containing the fraction representation</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.IsNumber(System.Object)">
<summary>
Returns whether the input is a numeric data type.
</summary>
<param name="val"></param>
<returns>True or false, if the input value is a numeric data type</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.GetEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.NumberCellType.InitializeEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initialize the editor control.
</summary>
<param name="control">Control</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.NumberCellType.FractionCustomFormat">
<summary>
Gets or sets how values are displayed as fractions with custom formatting.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.NumberCellType.FractionDenominatorDigits">
<summary>
Gets or sets the number of digits when values are displayed as fractions.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.NumberCellType.FractionDenominatorPrecision">
<summary>
Gets or sets the precision when values are displayed as fractions.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.NumberCellType.FractionConvertWholeNumbers">
<summary>
Gets or sets whether to convert whole numbers to fractions when values are displayed as fractions.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.NumberCellType.FractionRenderOnly">
<summary>
Gets or sets whether to allow fractions in edit mode when values are displayed as fractions.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.NumberCellType.FractionMode">
<summary>
Gets or sets whether values are represented as fractions.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.NumberCellType.LeadingZero">
<summary>
Gets or sets whether leading zeros are displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.NumberCellType.SpinIntegerIncrement">
<summary>
Gets or sets the amount by which the value increments when using the
spin buttons and the cursor is in the integer portion.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.NumberCellType.SpinDecimalIncrement">
<summary>
Gets or sets the amount by which the value increments when using the
spin buttons and the cursor is in the decimal portion.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.NumberCellType.SpinButton">
<summary>
Gets or sets whether a spin button is displayed when editing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.NumberCellType.SpinWrap">
<summary>
Gets or sets whether the value wraps when the minimum or maximum is reached.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.NumberCellType.NegativeFormat">
<summary>
Gets or sets how the value is formatted for negative values.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.NumberCellType.DecimalSeparator">
<summary>
Gets or sets the decimal character.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.NumberCellType.DecimalPlaces">
<summary>
Gets or sets the number of decimal places.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.NumberCellType.FixedPoint">
<summary>
Gets or sets whether to display zeros as placeholders in the decimal portion
of the number for a fixed-point numeric display.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.NumberCellType.OverflowCharacter">
<summary>
Gets or sets the character for replacing the value if it does not fit the width of the display.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.NumberCellType.NegativeRed">
<summary>
Gets or sets whether negative numeric values are displayed in red.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.NumberCellType.MaximumValue">
<summary>
Gets or sets the maximum value allowed for user input.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified value is beyond accepted limits
</exception>
</member>
<member name="P:FarPoint.Win.Spread.CellType.NumberCellType.MinimumValue">
<summary>
Gets or sets the minimum value allowed for user entry.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified value is beyond accepted limits
</exception>
</member>
<member name="P:FarPoint.Win.Spread.CellType.NumberCellType.Separator">
<summary>
Gets or sets the string used to separate thousands in a numeric value.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.NumberCellType.ShowSeparator">
<summary>
Gets or sets whether to display the thousands separator string.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.MaskCellType">
<summary>
Represents a mask cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MaskCellType.Clone">
<summary>
Creates and returns a mask cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MaskCellType.#ctor">
<summary>
Creates a new mask cell with default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MaskCellType.#ctor(FarPoint.Win.Spread.CellType.MaskCellType)">
<summary>
Creates a new copy from the specified cell type. ("Copy constructor")
</summary>
<param name="g">Specified mask cell type from which to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MaskCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new mask cell from serialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MaskCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the cell type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MaskCellType.GetEditorValue">
<summary>
Gets the unformatted value in the editor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MaskCellType.IsValid(System.Object)">
<summary>
Determines whether the specified value is valid.
</summary>
<param name="value">Value to validate (as object)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MaskCellType.Format(System.Object)">
<summary>
Formats the specified data into the format of the cell type and returns it as a string.
</summary>
<param name="obj">Object in the data model with cell data to format</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MaskCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MaskCellType.OnCustomMaskCharacter(System.Object,FarPoint.Win.SuperEdit.CustomMaskEventArgs)">
<summary>
Handles the CustomMask event.
</summary>
<param name="sender">Object that raised the event </param>
<param name="e">CustomMaskEventArgs object containing event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MaskCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MaskCellType.GetEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MaskCellType.InitializeEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initialize the editor control.
</summary>
<param name="control">Control</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MaskCellType.Mask">
<summary>
Gets or sets the mask string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MaskCellType.MaskChar">
<summary>
Gets or sets the placeholder character.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MaskCellType.CustomMaskCharacters">
<summary>
Gets or sets the custom characters for the mask.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.CheckBoxCellType">
<summary>
Represents a check box cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.Clone">
<summary>
Creates and returns a check box cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.#ctor">
<summary>
Creates a new check box cell with default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.#ctor(FarPoint.Win.Spread.CellType.CheckBoxCellType)">
<summary>
Creates a new copy from the specified cell type. ("Copy constructor")
</summary>
<param name="g">Specified check box cell type from which to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new check box cell from serialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the cell type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.ToHorizontalAlignment(FarPoint.Win.Spread.CellHorizontalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellHorizontalAlignment value to the corresponding FarPoint.Win.HorizontalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellHorizontalAlignment value</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.ToVerticalAlignment(FarPoint.Win.Spread.CellVerticalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellVerticalAlignment value to the corresponding FarPoint.Win.VerticalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellVerticalAlignment</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.Format(System.Object)">
<summary>
Formats the specified data into the format of the cell type and returns it as a string.
</summary>
<param name="o">Object in the data model to format</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.Parse(System.String)">
<summary>
Parses the specified string to the data type of the cell type and returns it as an object.
</summary>
<param name="s">Specified string from the cell on the sheet to parse</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.GetEditorValue">
<summary>
Gets the unformatted value in the editor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.SetEditorValue(System.Object)">
<summary>
Sets the value of the editor control.
</summary>
<param name="value">Value of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.StartEditing(System.EventArgs,System.Boolean,System.Boolean)">
<summary>
Starts the editing of a cell.
</summary>
<param name="e">Event</param>
<param name="selectAll">Whether to select all </param>
<param name="autoClipboard">Whether to allow shortcut keys for Clipboard actions </param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.CancelEditing">
<summary>
Cancels the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.StopEditing">
<summary>
Stops the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.IsReservedKey(System.Windows.Forms.KeyEventArgs)">
<summary>
Determines whether the specified key has special meaning to the editor control.
</summary>
<param name="e">KeyEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.IsReservedLocation(System.Drawing.Graphics,System.Int32,System.Int32,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Determines whether the specified cursor location has special meaning to the editor control.
</summary>
<param name="g">Graphics device interface for drawing editor control </param>
<param name="x">X-coordinate of pointer location </param>
<param name="y">Y-coordinate of pointer location </param>
<param name="rc">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="value">Object containing the name of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.GetReservedCursor(System.Object)">
<summary>
Gets the cursor reserved for this cell type.
</summary>
<param name="o">Object that is the reserved cursor (pointer)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the cell when not in edit mode to the specified graphics interface with the specified appearance settings.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Object containing the name of the renderer control of the cell</param>
<param name="isSelected">Whether the cell is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Gets the preferred (maximum needed) size of the cell for the renderer control.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Preferred or maximum needed size</param>
<param name="appearance">Appearance settings of the renderer control</param>
<param name="value">Object containing the name of the renderer control</param>
<param name="zoomFactor">Numeric value for scaling the display of the renderer control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.InitializeEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initializes the check box for editing.
</summary>
<param name="control">Control</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CheckBoxCellType.GetEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CheckBoxCellType.BackgroundImage">
<summary>
Gets or sets the background image for the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CheckBoxCellType.FocusRectangle">
<summary>
Gets or sets whether the focus rectangle is displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CheckBoxCellType.Caption">
<summary>
Gets or sets the text in the check box regardless of the state,
overriding TextTrue, TextFalse, and TextIndeterminate.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CheckBoxCellType.HotkeyPrefix">
<summary>
Gets or sets whether the ampersand character underlines text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CheckBoxCellType.TextTrue">
<summary>
Gets or sets the text for true state.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CheckBoxCellType.TextFalse">
<summary>
Gets or sets the text for false state.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CheckBoxCellType.TextIndeterminate">
<summary>
Gets or sets the indeterminate state text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CheckBoxCellType.TextAlign">
<summary>
Gets or sets how the text is aligned in the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CheckBoxCellType.ThreeState">
<summary>
Gets or sets whether the check box has three states.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CheckBoxCellType.Picture">
<summary>
Gets or sets the images for the states of the check box.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.SliderCellType">
<summary>
Represents a slider cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.Clone">
<summary>
Creates and returns a slider cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.#ctor">
<summary>
Creates a new slider cell with default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.#ctor(FarPoint.Win.Spread.CellType.SliderCellType)">
<summary>
Creates a new copy from the specified cell type. ("Copy constructor")
</summary>
<param name="g">Specified slider cell type from which to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new slider cell from serialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the cell type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.Format(System.Object)">
<summary>
Formats the specified data into the format of the cell type and returns it as a string.
</summary>
<param name="o">Object in the data model to format</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.Parse(System.String)">
<summary>
Parses the specified string to the data type of the cell type and returns it as an object.
</summary>
<param name="s">Specified string from the cell on the sheet to parse</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.InitializeEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initialize the editor control.
</summary>
<param name="control">Control</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.GetEditorValue">
<summary>
Gets the unformatted value in the editor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.SetEditorValue(System.Object)">
<summary>
Sets the value of the editor control.
</summary>
<param name="value">Value of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.StartEditing(System.EventArgs,System.Boolean,System.Boolean)">
<summary>
Starts the editing of a cell.
</summary>
<param name="e">Event</param>
<param name="selectAll">Whether to select all </param>
<param name="autoClipboard">Whether to allow shortcut keys for Clipboard actions </param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.CancelEditing">
<summary>
Cancels the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.StopEditing">
<summary>
Stops the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.IsReservedKey(System.Windows.Forms.KeyEventArgs)">
<summary>
Determines whether the specified key has special meaning to the editor control.
</summary>
<param name="e">KeyEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.IsReservedLocation(System.Drawing.Graphics,System.Int32,System.Int32,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Determines whether the specified cursor location has special meaning to the editor control.
</summary>
<param name="g">Graphics device interface for drawing editor control </param>
<param name="x">X-coordinate of pointer location </param>
<param name="y">Y-coordinate of pointer location </param>
<param name="rc">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="value">Object containing the name of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.GetReservedCursor(System.Object)">
<summary>
Gets the cursor reserved for this cell type.
</summary>
<param name="o">Object that is the reserved cursor (pointer)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the cell when not in edit mode to the specified graphics interface with the specified appearance settings.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Object containing the name of the renderer control of the cell</param>
<param name="isSelected">Whether the cell is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Gets the preferred (maximum needed) size of the cell for the renderer control.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Preferred or maximum needed size</param>
<param name="appearance">Appearance settings of the renderer control</param>
<param name="value">Object containing the name of the renderer control</param>
<param name="zoomFactor">Numeric value for scaling the display of the renderer control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.IsValid(System.Object)">
<summary>
Determines whether the specified value can be converted to an integer value and
is between the minimum and maximum allowed values.
</summary>
<param name="value">Value to validate (as object)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.SliderCellType.GetEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.SliderCellType.BackgroundImage">
<summary>
Gets or sets the background image for the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.SliderCellType.KnobColor">
<summary>
Gets or sets the color of the knob of the slider.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.SliderCellType.TickColor">
<summary>
Gets or sets the color of the tick marks in the slider.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.SliderCellType.TrackColor">
<summary>
Gets or sets the color of the track of the slider.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.SliderCellType.TrackPicture">
<summary>
Gets or sets the image for the track of the slider.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.SliderCellType.KnobWidth">
<summary>
Gets or sets the width (in pixels) of the knob of the slider.
</summary>
<exception cref="T:System.ArgumentException">
Specified value is out of range; must be between 0 and 255
</exception>
</member>
<member name="P:FarPoint.Win.Spread.CellType.SliderCellType.TrackWidth">
<summary>
Gets or sets the width (in pixels) of the track of the slider.
</summary>
<exception cref="T:System.ArgumentException">
Specified value is out of range; must be between 0 and 255
</exception>
</member>
<member name="P:FarPoint.Win.Spread.CellType.SliderCellType.TickLength">
<summary>
Gets or sets the width (in pixels) of the ticks of the slider.
</summary>
<exception cref="T:System.ArgumentException">
Specified value is out of range; must be between 0 and 255
</exception>
</member>
<member name="P:FarPoint.Win.Spread.CellType.SliderCellType.KnobPicture">
<summary>
Gets or sets the image for the knob for the slider.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.SliderCellType.Minimum">
<summary>
Gets or sets the minimum value for user entry.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.SliderCellType.Maximum">
<summary>
Gets or sets the maximum value for user entry.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.SliderCellType.TickSpacing">
<summary>
Gets or sets how frequently to space the tick marks in the slider.
</summary>
<exception cref="T:System.ArgumentException">
Specified value is out of range; must be between 0 and 255
</exception>
</member>
<member name="P:FarPoint.Win.Spread.CellType.SliderCellType.ChangeOnFocus">
<summary>
Gets or sets whether the slider moves with the initial click.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.SliderCellType.Orientation">
<summary>
Gets or sets the orientation of the slider.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.FpColorPicker">
<summary>
Represents the FarPoint color picker control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.FpColorPicker.#ctor">
<summary>
Creates a new FarPoint color picker control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.FpColorPicker.OnValueChanged(System.EventArgs)">
<summary>
Raises the ValueChanged event.
</summary>
<param name="e">EventArgs containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.FpColorPicker.ShowColorDialog">
<summary>
Displays the color dialog.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.FpColorPicker.OnGotFocus(System.EventArgs)">
<summary>
Raises the GotFocus event.
</summary>
<param name="e">An <see cref="T:System.EventArgs"/> for contains event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.FpColorPicker.OnAfterFocus(System.EventArgs)">
<summary>
Raises the AfterFocus event
</summary>
<param name="e">An <see cref="T:System.EventArgs"/> for contains event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.FpColorPicker.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Processes the mouse down event.
</summary>
<param name="e">MouseEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.FpColorPicker.IsInputKey(System.Windows.Forms.Keys)">
<summary>
Determines whether the specified key is an input key that the component can handle without preprocessing.
</summary>
<param name="keyData">Key to check</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.FpColorPicker.ProcessDialogChar(System.Char)">
<summary>
Determines whether to process the dialog character.
</summary>
<param name="charCode">Character code</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.FpColorPicker.ProcessDialogKey(System.Windows.Forms.Keys)">
<summary>
Determines whether to process the dialog key.
</summary>
<param name="keyData">Key</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.FpColorPicker.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)">
<summary>
Processes the key press event.
</summary>
<param name="e">KeyPressEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.FpColorPicker.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
<summary>
Processes the key down event.
</summary>
<param name="e">KeyEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.FpColorPicker.DoPaint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,System.Drawing.Color,System.String,FarPoint.Win.HorizontalAlignment,FarPoint.Win.VerticalAlignment,FarPoint.Win.Spread.CellType.ColorPickerStyle,FarPoint.Win.Spread.CellType.UnknownTextStyle,System.String,System.Boolean,System.Int32)">
<summary>
Paints the cell.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="backColor">Background color</param>
<param name="foreColor">Text (foreground) color</param>
<param name="font">Font</param>
<param name="c">Color</param>
<param name="caption">Caption text</param>
<param name="horizontalAlignment">Horizontal alignment</param>
<param name="verticalAlignment">Vertical alignment</param>
<param name="style">Style</param>
<param name="textStyle">Text Style</param>
<param name="unknownText">Text for unknown color</param>
<param name="rightToLeft">Whether right to left orientation</param>
<param name="boxWidth">Width of the box in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.FpColorPicker.DoPaint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,System.Drawing.Color,System.String,FarPoint.Win.HorizontalAlignment,FarPoint.Win.VerticalAlignment,FarPoint.Win.Spread.CellType.ColorPickerStyle,FarPoint.Win.Spread.CellType.UnknownTextStyle,System.String,System.Boolean,System.Int32,System.Single)">
<summary>
Paints the cell.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="backColor">Background color</param>
<param name="foreColor">Text (foreground) color</param>
<param name="font">Font</param>
<param name="c">Color</param>
<param name="caption">Caption text</param>
<param name="horizontalAlignment">Horizontal alignment</param>
<param name="verticalAlignment">Vertical alignment</param>
<param name="style">Style</param>
<param name="textStyle">Text Style</param>
<param name="unknownText">Text for unknown color</param>
<param name="rightToLeft">Whether right to left orientation</param>
<param name="boxWidth">Width of the box in pixels</param>
<param name="zoomFactor">The zoom factor.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.FpColorPicker.OnPaint(System.Windows.Forms.PaintEventArgs)">
<summary>
Handles the paint event.
</summary>
<param name="e">PaintEventArgs object containing the event data</param>
</member>
<member name="E:FarPoint.Win.Spread.CellType.FpColorPicker.AfterFocus">
<summary>
Occurs after the control got focus.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.CellType.FpColorPicker.ValueChanged">
<summary>
Occurs when the value changes.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.FpColorPicker.Text">
<summary>
Gets or sets the text associated with this control.
</summary>
<value></value>
<returns>
The text associated with this control.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.CellType.FpColorPicker.AlignHorz">
<summary>
Gets or sets the horizontal alignment of the color picker.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.FpColorPicker.AlignVert">
<summary>
Gets or sets the vertical alignment of the color picker.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.FpColorPicker.AllowFullOpen">
<summary>
Gets or sets whether to allow the color picker dialog to open fully.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.FpColorPicker.BoxWidth">
<summary>
Gets or sets the width (in pixels) of the box in the color picker.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.FpColorPicker.Style">
<summary>
Gets or sets the style of the color picker.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.FpColorPicker.AnyColor">
<summary>
Gets or sets whether any color is allowed
(typically for systems that can handle the full set of colors).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.FpColorPicker.SolidColorOnly">
<summary>
Gets or sets whether solid color only are displayed
(typically for systems that can handle a limited set of colors).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.FpColorPicker.DropDown">
<summary>
Gets or sets whether to drop down the color picker dialog by default.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.FpColorPicker.FullOpen">
<summary>
Gets or sets whether to display the color picker dialog fully open.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.FpColorPicker.CustomColors">
<summary>
Gets or sets the array of custom colors to display in the color picker dialog.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.FpColorPicker.IsShowing">
<summary>
Gets or sets whether the color picker dialog is showing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.FpColorPicker.UnknownTextStyle">
<summary>
Gets or sets the style of text for unknown colors.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.FpColorPicker.UnknownText">
<summary>
Gets or sets the text for unknown colors.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.FpColorPicker.Color">
<summary>
Gets or sets the color in the color picker dialog.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.ColorPickerStyle">
<summary>
Specifies how the color picker cell renders.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.ColorPickerStyle.Fill">
<summary>
Fills the entire client area with the color
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.ColorPickerStyle.FillWithText">
<summary>
Fills the entire client area with text overlay
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.ColorPickerStyle.Boxed">
<summary>
Displays the color in a box in the client area
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.ColorPickerStyle.BoxedWithText">
<summary>
Displays the color in a box in the client area with text displayed alongside the box
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.UnknownTextStyle">
<summary>
Specifies which text is displayed for an indeterminate color value in the color picker.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.UnknownTextStyle.Blank">
<summary>
Does not display any text
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.UnknownTextStyle.Name">
<summary>
Displays the color object name
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.UnknownTextStyle.Custom">
<summary>
Displays the custom value for unknown colors
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.ColorPickerCellType">
<summary>
Represents a color picker cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColorPickerCellType.ShowSubEditor">
<summary>
Displays a color editor dialog.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColorPickerCellType.#ctor">
<summary>
Creates a new color picker cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColorPickerCellType.#ctor(FarPoint.Win.Spread.CellType.ColorPickerCellType)">
<summary>
Creates a new color picker cell by copying from the specified ColorPickerCellType ("copy constructor").
</summary>
<param name="g">Specified color picker cell type from which to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColorPickerCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new color picker cell from serialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColorPickerCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the cell type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColorPickerCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColorPickerCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColorPickerCellType.ToHorizontalAlignment(FarPoint.Win.Spread.CellHorizontalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellHorizontalAlignment value to the corresponding FarPoint.Win.HorizontalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellHorizontalAlignment value</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColorPickerCellType.ToVerticalAlignment(FarPoint.Win.Spread.CellVerticalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellVerticalAlignment value to the corresponding FarPoint.Win.VerticalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellVerticalAlignment</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColorPickerCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the editor control.
</summary>
<param name="appearance">Appearance of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColorPickerCellType.InitializeEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initializes the editor control.
</summary>
<param name="control">Control</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColorPickerCellType.GetEditorValue">
<summary>
Gets the unformatted value in the editor control.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColorPickerCellType.SetEditorValue(System.Object)">
<summary>
Sets the unformatted value in the editor control.
</summary>
<param name="value"></param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColorPickerCellType.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the cell when not in edit mode to the specified graphics interface with the specified appearance settings.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Object containing the name of the renderer control of the cell</param>
<param name="isSelected">Whether the cell is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColorPickerCellType.IsReservedLocation(System.Drawing.Graphics,System.Int32,System.Int32,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Determines whether the specified cursor location has special meaning to the editor control.
</summary>
<param name="g">Graphics device interface for painting the editor control</param>
<param name="x">X-coordinate of pointer location</param>
<param name="y">Y-coordinate of pointer location</param>
<param name="rc">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="value">Object containing the name of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColorPickerCellType.GetReservedCursor(System.Object)">
<summary>
Gets the cursor reserved for this cell type.
</summary>
<param name="o">Object that is the reserved cursor (pointer)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColorPickerCellType.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Gets the preferred (maximum) size of the cell.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Size of the cell</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Object containing the name of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColorPickerCellType.Parse(System.String)">
<summary>
Parses the specified string to the data type of the cell type and returns it as an object.
</summary>
<param name="s">Specified string from the cell on the sheet to parse</param>
<returns>Object containing the results of the parsing to put in the data model</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColorPickerCellType.Format(System.Object)">
<summary>
Formats the specified data into the format of the cell type and returns it as a string.
</summary>
<param name="o">Object in the data model with cell data to format</param>
<returns>String containing the formatted data to put in the cell</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColorPickerCellType.GetEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ColorPickerCellType.Style">
<summary>
Gets or sets the style of the color picker.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ColorPickerCellType.AllowFullOpen">
<summary>
Gets or sets whether to allow the color picker dialog to open fully.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ColorPickerCellType.Caption">
<summary>
Gets or sets the caption to display in the color picker cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ColorPickerCellType.AnyColor">
<summary>
Gets or sets whether any color is allowed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ColorPickerCellType.UnknownTextStyle">
<summary>
Gets or sets the style of text for unknown colors.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ColorPickerCellType.UnknownText">
<summary>
Gets or sets the text for unknown colors.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ColorPickerCellType.SolidColorOnly">
<summary>
Gets or sets whether solid colors only are displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ColorPickerCellType.FullOpen">
<summary>
Gets or sets whether to display the color picker dialog fully open.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ColorPickerCellType.DropDown">
<summary>
Gets or sets whether to drop down the color picker dialog by default.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ColorPickerCellType.CustomColors">
<summary>
Gets or sets the custom colors for the color picker dialog.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ColorPickerCellType.DialogShowing">
<summary>
Gets or sets whether the color picker dialog is showing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ColorPickerCellType.BoxWidth">
<summary>
Gets or sets the width (in pixels) of the box in the color picker cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnList.#ctor">
<summary>
Creates a new multiple-column list.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnList.MultiColumnList_MouseMove(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Internal use only. Raise the mouse move event.
</summary>
<param name="sender">Source of event</param>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnList.MultiColumnList_KeyUp(System.Object,System.Windows.Forms.KeyEventArgs)">
<summary>
Internal use only. Raises the key up event.
</summary>
<param name="sender">Source of event</param>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnList.OnSelectedIndexChanged(System.EventArgs)">
<summary>
Internal use only. Raises the SelectedIndexChanged event.
</summary>
<param name="e">EventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnList.SearchList(System.String,System.Int32,System.Int32,System.Int32,System.Int32@)">
<summary>
Internal use only.
</summary>
<param name="searchText"></param>
<param name="startRow"></param>
<param name="column"></param>
<param name="endRow"></param>
<param name="fRow"></param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnList.MultiColumnList_SelectionChanged(System.Object,FarPoint.Win.Spread.SelectionChangedEventArgs)">
<summary>
Internal use only. Raises the selection changed event.
</summary>
<param name="sender">Source of event</param>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnList.GetDataColumnIndex">
<summary>
Gets the column index of the bound data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnList.GetColumnEditIndex">
<summary>
Gets the column index of the column to edit.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnList.MultiColumnList_CellDoubleClick(System.Object,FarPoint.Win.Spread.CellClickEventArgs)">
<summary>
Internal use only. Raises the cell double-click event.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnList.MultiColumnList_CellClick(System.Object,FarPoint.Win.Spread.CellClickEventArgs)">
<summary>
Internal use only. Raises the cell click event.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnList.GetValue">
<summary>
Gets the value from the subeditor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnList.SetValue(System.Object)">
<summary>
Sets the value into the subeditor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnList.GetSubEditorControl">
<summary>
Gets the control associated with the subeditor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnList.GetPreferredSize">
<summary>
Gets the preferred (maximum needed) size of the cell for the subeditor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnList.GetLocation(System.Drawing.Rectangle)">
<summary>
Gets the initial location of the subeditor control.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.CellType.MultiColumnList.SelectedIndexChanged">
<summary>
Occurs when the index of the selected item in the combo box list has changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnList.ListResizeColumns">
<summary>
Gets or sets how the columns in the list are sized when displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnList.AutoSearch">
<summary>
Gets or sets how to perform an automatic search.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnList.ListOffset">
<summary>
Gets or sets the offset of the list.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnList.ListAlignment">
<summary>
Gets or sets the alignment of the list.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnList.EditorControl">
<summary>
Gets or sets the editing control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnList.MaxDrop">
<summary>
Gets or sets the maximum number of items to display at one time in the list.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnList.ListWidth">
<summary>
Gets or sets the width of the list.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnList.ColumnEdit">
<summary>
Gets or sets which list column (by index) serves as the edit portion
of the combo box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnList.ColumnDataName">
<summary>
Gets or sets which list column (by name) serves as the data portion
of the combo box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnList.ColumnEditName">
<summary>
Gets or sets which list column (by name) serves as the edit portion
of the combo box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnList.ColumnData">
<summary>
Gets or sets which list column (by index) serves as the data portion
of the combo box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnList.DataSource">
<summary>
Gets or sets the name of the data source that populates the active sheet
in this component.
</summary>
<exception cref="T:System.InvalidOperationException">
Sheet count is zero; must be at least one sheet before DataSource can be set
</exception>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnList.DataMember">
<summary>
Gets or sets the name of the data member that populates the active sheet
in this component.
</summary>
<exception cref="T:System.InvalidOperationException">
Sheet count is zero; must be at least one sheet before the data member can be set
</exception>
</member>
<member name="T:FarPoint.Win.Spread.CellType.MultiColumnEditor">
<summary>
Represents the editor control for the multiple-column combo box cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnEditor.IsInputKey(System.Windows.Forms.Keys)">
<summary>
Determines whether the specified key is an input key or a special key that requires preprocessing.
</summary>
<param name="keyData">Key to check</param>
<returns>Boolean: true if the character can be sent directly and not preprocessed; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnEditor.OnKeyDown(System.Object,System.Windows.Forms.KeyEventArgs)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnEditor.WndProc(System.Windows.Forms.Message@)">
<summary>
Internal use only.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.ListResizeColumns">
<summary>
Specifies how the columns in the drop-down list are sized when displayed.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.ListResizeColumns.None">
<summary>
[0] Does not size the columns
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.ListResizeColumns.ByDataType">
<summary>
[1] Sizes columns based on their data type
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.ListResizeColumns.FitWidestItem">
<summary>
[2] Sizes the columns by fitting the widest item
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType">
<summary>
Represents a multiple-column combo box cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.theme">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.#ctor">
<summary>
Creates a new multiple-column combo box cell with default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.Finalize">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.Dispose(System.Boolean)">
<summary>
Internal use only.
</summary>
<param name="disposing">Whether disposing.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.Dispose">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.#ctor(FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType)">
<summary>
Creates a new copy from the specified cell type. ("Copy constructor")
</summary>
<param name="g">Specified multiple-column combo box cell type from which to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new multiple-column combo box cell from serialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.Clone">
<summary>
Creates and returns an editable base cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the cell type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.IsValid(System.Object)">
<summary>
Determines whether the specified value is valid.
</summary>
<param name="value">Value to validate (as object)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.ShowSubEditor">
<summary>
Shows the subeditor control associated with the cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.Format(System.Object)">
<summary>
Formats the specified data into the format of the cell type and returns it as a string.
</summary>
<param name="obj">Object in the data model with cell data to format</param>
<exception cref="T:System.ArgumentException">
Specified object to format is not valid
</exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.Parse(System.String)">
<summary>
Parses the specified string to the data type of the cell type and returns it as an object.
</summary>
<param name="s">Specified string from the cell on the sheet to parse</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.ToHorizontalAlignment(FarPoint.Win.Spread.CellHorizontalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellHorizontalAlignment value to the corresponding FarPoint.Win.HorizontalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellHorizontalAlignment value</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.ToVerticalAlignment(FarPoint.Win.Spread.CellVerticalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellVerticalAlignment value to the corresponding FarPoint.Win.VerticalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellVerticalAlignment</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.GetEditorValue">
<summary>
Gets the unformatted value in the editor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.SetEditorValue(System.Object)">
<summary>
Sets the value of the editor control.
</summary>
<param name="value">Value of editor control (as object)</param>
<exception cref="T:System.ArgumentException">
Specified value to set is not valid
</exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.StartEditing(System.EventArgs,System.Boolean,System.Boolean)">
<summary>
Starts the editing of a cell.
</summary>
<param name="e">Event</param>
<param name="selectAll">Whether to select all</param>
<param name="autoClipboard">Whether to allow shortcut keys for Clipboard actions</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.CancelEditing">
<summary>
Cancels the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.StopEditing">
<summary>
Stops the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.IsReservedKey(System.Windows.Forms.KeyEventArgs)">
<summary>
Determines whether the specified key has special meaning to the editor control.
</summary>
<param name="e">KeyEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.IsReservedLocation(System.Drawing.Graphics,System.Int32,System.Int32,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Determines whether the specified cursor location has special meaning to the editor control.
</summary>
<param name="g">Graphics device interface for drawing editor control </param>
<param name="x">X-coordinate of pointer location </param>
<param name="y">Y-coordinate of pointer location </param>
<param name="rc">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="value">Object containing the name of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.GetReservedCursor(System.Object)">
<summary>
Gets the cursor reserved for this cell type.
</summary>
<param name="o">Object that is the reserved cursor (pointer)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.GetTextRectangle(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Font,FarPoint.Win.Spread.Appearance,System.Drawing.Rectangle@,System.String)">
<summary>
Gets the rectangle in which text is drawn.
</summary>
<param name="g">Graphics device interface for painting the text</param>
<param name="r">Cell rectangle</param>
<param name="f">Font</param>
<param name="appearance">Appearance settings of the rectangle</param>
<param name="rText">Text rectangle returned</param>
<param name="paintString">String to be painted</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.GetHorizontalAlignment(System.Object)">
<summary>
Gets the horizontal alignment based on the value.
</summary>
<param name="value">Value of the horizontal alignment</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.GetVerticalAlignment(System.Object)">
<summary>
Gets the vertical alignment based on the value.
</summary>
<param name="value">Value of the vertical alignment</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the cell when not in edit mode to the specified graphics interface with the specified appearance settings.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Object containing the name of the renderer control of the cell</param>
<param name="isSelected">Whether the cell is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Gets the preferred (maximum needed) size of the cell for the renderer control.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Preferred or maximum needed size</param>
<param name="appearance">Appearance settings of the renderer control</param>
<param name="value">Object containing the name of the renderer control</param>
<param name="zoomFactor">Numeric value for scaling the display of the renderer control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.GetPreferredSize(System.Windows.Forms.Control)">
<summary>
Gets the preferred (maximum needed) size of the cell for the editor control.
</summary>
<param name="editor">Name of editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.CanOverflow">
<summary>
Determines whether the cell can overflow into adjacent cells.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.CanBeOverflown">
<summary>
Determines whether data from another cell can overflow into this cell
(whether this cell can be overflowed into).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.InitializeEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initialize the editor control.
</summary>
<param name="control">Control</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.GetEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.DataSourceList">
<summary>
Gets or sets the data source for the list portion of the combo box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.DataMemberList">
<summary>
Gets or sets the name of the data member that populates the list in list portion of the combo box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.DataColumn">
<summary>
Gets or sets which list column (by index) serves as the data portion
of the combo box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.DataColumnName">
<summary>
Gets or sets which list column (by name) serves as the data portion
of the combo box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.ColumnEditName">
<summary>
Gets or sets which list column (by name) serves as the edit portion
of the combo box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.ListOffset">
<summary>
Gets or sets how much the list offsets from the editor.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.AutoSearch">
<summary>
Gets or sets how the list is searched based on input of a character key.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.ListAlignment">
<summary>
Gets or sets to which side of the editor the list aligns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.ColumnEdit">
<summary>
Gets or sets which list column (by index) serves as the edit portion
of the combo box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.MaxDrop">
<summary>
Gets or sets the maximum number of items to display at one time in the list.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.ListWidth">
<summary>
Gets or sets the width of the list.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.AcceptsArrowKeys">
<summary>
Gets or sets how arrow keys are processed by the edit control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.BackgroundImage">
<summary>
Gets or sets the background image of the multiple-column combo box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.ButtonAlign">
<summary>
Gets or sets where the buttons are displayed in the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.StringTrim">
<summary>
Gets or sets how to trim characters that do not fit in the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.ShowGridLines">
<summary>
Gets or sets whether grid lines are displayed in the drop-down list.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.ListBorderStyle">
<summary>
Gets or sets the type of border style for the drop-down list.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.ShowColumnHeaders">
<summary>
Gets or sets whether column headers are displayed in the drop-down list.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType.ListResizeColumns">
<summary>
Gets or sets how the columns in the drop-down list are sized when displayed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.ComboBoxCellType">
<summary>
Represents an ordinary combo box cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.ComboBoxCellType.theme">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.Clone">
<summary>
Creates and returns an ordinary combo box cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.#ctor">
<summary>
Creates a new combo box cell with default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.Finalize">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.Dispose(System.Boolean)">
<summary>
Internal use only.
</summary>
<param name="disposing">Whether disposing.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.Dispose">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.#ctor(FarPoint.Win.Spread.CellType.ComboBoxCellType)">
<summary>
Creates a new copy from the specified cell type. ("Copy constructor")
</summary>
<param name="g">Specified combo box cell type from which to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new combo box cell from serialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.ToHorizontalAlignment(FarPoint.Win.Spread.CellHorizontalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellHorizontalAlignment value to the corresponding FarPoint.Win.HorizontalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellHorizontalAlignment value</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.ToVerticalAlignment(FarPoint.Win.Spread.CellVerticalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellVerticalAlignment value to the corresponding FarPoint.Win.VerticalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellVerticalAlignment</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the cell type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.ShowSubEditor">
<summary>
Shows the subeditor control associated with the cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.Format(System.Object)">
<summary>
Formats the specified data into the format of the cell type and returns it as a string.
</summary>
<param name="o">Object in the data model to format</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.IsValid(System.Object)">
<summary>
Determines whether the specified value is valid.
</summary>
<param name="value">Specified value in the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.Parse(System.String)">
<summary>
Parses the specified string to the data type of the cell type and returns it as an object.
</summary>
<param name="s">Specified string from the cell on the sheet to parse</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.GetEditorValue">
<summary>
Gets the unformatted value in the editor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.SetEditorValue(System.Object)">
<summary>
Sets the value of the editor control.
</summary>
<param name="value">Value of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.StartEditing(System.EventArgs,System.Boolean,System.Boolean)">
<summary>
Starts the editing of a cell.
</summary>
<param name="e">Event</param>
<param name="selectAll">Whether to select all </param>
<param name="autoClipboard">Whether to allow shortcut keys for Clipboard actions </param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.CancelEditing">
<summary>
Cancels the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.StopEditing">
<summary>
Stops the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.IsReservedKey(System.Windows.Forms.KeyEventArgs)">
<summary>
Determines whether the specified key has special meaning to the editor control.
</summary>
<param name="e">KeyEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.IsReservedLocation(System.Drawing.Graphics,System.Int32,System.Int32,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Determines whether the specified cursor location has special meaning to the editor control.
</summary>
<param name="g">Graphics device interface for drawing editor control </param>
<param name="x">X-coordinate of pointer location </param>
<param name="y">Y-coordinate of pointer location </param>
<param name="rc">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="value">Object containing the name of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.GetReservedCursor(System.Object)">
<summary>
Gets the cursor reserved for this cell type.
</summary>
<param name="o">Object that is the reserved cursor (pointer)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.GetTextRectangle(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Font,FarPoint.Win.Spread.Appearance,System.Drawing.Rectangle@,System.String)">
<summary>
Gets the rectangle in which text is drawn.
</summary>
<param name="g">Graphics device interface for painting the text</param>
<param name="r">Cell rectangle</param>
<param name="f">Font</param>
<param name="appearance">Appearance settings of the rectangle</param>
<param name="rText">Text rectangle returned</param>
<param name="paintString">String to be painted</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the cell when not in edit mode to the specified graphics interface with the specified appearance settings.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Object containing the name of the renderer control of the cell</param>
<param name="isSelected">Whether the cell is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Gets the preferred (maximum needed) size of the cell for the renderer control.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Preferred or maximum needed size</param>
<param name="appearance">Appearance settings of the renderer control</param>
<param name="value">Object containing the name of the renderer control</param>
<param name="zoomFactor">Numeric value for scaling the display of the renderer control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.Clear">
<summary>
Removes all items from the list.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.RemoveItem(System.Int32)">
<summary>
Removes the individual item specified by index from the list.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.InitializeEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initialize the editor control.
</summary>
<param name="control">Control</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ComboBoxCellType.GetEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ComboBoxCellType.AutoCompleteMode">
<summary>
Gets or sets how the automatic completion works for entries in the combo box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ComboBoxCellType.AutoCompleteSource">
<summary>
Gets or sets the source for automatic completion of entries in the combo box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ComboBoxCellType.AutoCompleteCustomSource">
<summary>
Gets or sets the custom source (of strings) for automatic completion of entries in the combo box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ComboBoxCellType.AutoFillAutoCompleteCustomSource">
<summary>
Gets or sets a whether the AutoCompleteCustomSource is automatically filled with data from the column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ComboBoxCellType.CharacterCasing">
<summary>
Gets or sets the case of characters in the text cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ComboBoxCellType.CharacterSet">
<summary>
Gets or sets what characters to allow for the text cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ComboBoxCellType.ButtonAlign">
<summary>
Gets or sets where buttons are displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ComboBoxCellType.EditorValue">
<summary>
Gets or sets what value is written to the underlying data model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ComboBoxCellType.ListAlignment">
<summary>
Gets or sets the side of the cell on which the list aligns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ComboBoxCellType.ImageList">
<summary>
Gets or sets the image list of a combo box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ComboBoxCellType.ListControl">
<summary>
Gets or sets the control for the list portion.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ComboBoxCellType.AcceptsArrowKeys">
<summary>
Gets or sets how arrow keys are processed by the combo box control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ComboBoxCellType.Editable">
<summary>
Gets or sets whether you can type into the edit portion of the combo box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ComboBoxCellType.ListOffset">
<summary>
Gets or sets how many pixels to offset the list from the aligned edge of the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ComboBoxCellType.ListWidth">
<summary>
Gets or sets the width (in pixels) of the drop-down list.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ComboBoxCellType.MaxLength">
<summary>
Gets or sets the maximum number of characters allowed in the combo box cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ComboBoxCellType.AutoSearch">
<summary>
Gets or sets how a list of items in a combo box is searched based on input of a character key.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ComboBoxCellType.MaxDrop">
<summary>
Gets or sets the number of items to display at one time in the list portion.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ComboBoxCellType.Items">
<summary>
Gets or sets the items for the drop-down list in the combo box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ComboBoxCellType.ItemData">
<summary>
Gets or sets the corresponding data for the items in the drop-down list in the combo box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ComboBoxCellType.BackgroundImage">
<summary>
Gets or sets the image to paint in the background of the combo box edit portion.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.HyperLinkCellType">
<summary>
Represents the hyperlink cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.CanBeOverflown">
<summary>
Determines whether a cell can overflow its data into an adjacent cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.Clone">
<summary>
Creates and returns a hyperlink cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.#ctor">
<summary>
Creates a new hyperlink cell with default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.#ctor(FarPoint.Win.Spread.CellType.HyperLinkCellType)">
<summary>
Creates a new copy from the specified cell type. ("Copy constructor")
</summary>
<param name="g">Specified hyperlink cell type from which to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new hyperlink cell from serialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the cell type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.Format(System.Object)">
<summary>
Formats the specified data into the format of the cell type and returns it as a string.
</summary>
<param name="o">Object in the data model to format</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.Parse(System.String)">
<summary>
Parses the specified string to the data type of the cell type and returns it as an object.
</summary>
<param name="s">Specified string from the cell on the sheet to parse</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.ToHorizontalAlignment(FarPoint.Win.Spread.CellHorizontalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellHorizontalAlignment value to the corresponding FarPoint.Win.HorizontalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellHorizontalAlignment value</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.ToVerticalAlignment(FarPoint.Win.Spread.CellVerticalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellVerticalAlignment value to the corresponding FarPoint.Win.VerticalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellVerticalAlignment</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.GetEditorValue">
<summary>
Gets the unformatted value in the editor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.SetEditorValue(System.Object)">
<summary>
Sets the value of the editor control.
</summary>
<param name="value">Value of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.StartEditing(System.EventArgs,System.Boolean,System.Boolean)">
<summary>
Starts the editing of a cell.
</summary>
<param name="e">Event</param>
<param name="selectAll">Whether to select all </param>
<param name="autoClipboard">Whether to allow shortcut keys for Clipboard actions </param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.CancelEditing">
<summary>
Cancels the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.StopEditing">
<summary>
Stops the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.IsReservedKey(System.Windows.Forms.KeyEventArgs)">
<summary>
Determines whether the specified key has special meaning to the editor control.
</summary>
<param name="e">KeyEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.IsReservedLocation(System.Drawing.Graphics,System.Int32,System.Int32,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Determines whether the specified cursor location has special meaning to the editor control.
</summary>
<param name="g">Graphics device interface for drawing editor control </param>
<param name="x">X-coordinate of pointer location </param>
<param name="y">Y-coordinate of pointer location </param>
<param name="rc">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="value">Object containing the name of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.GetReservedCursor(System.Object)">
<summary>
Gets the cursor reserved for this cell type.
</summary>
<param name="o">Object that is the reserved cursor (pointer)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the cell when not in edit mode to the specified graphics interface with the specified appearance settings.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Object containing the name of the renderer control of the cell</param>
<param name="isSelected">Whether the cell is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Gets the preferred (maximum needed) size of the cell for the renderer control.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Preferred or maximum needed size</param>
<param name="appearance">Appearance settings of the renderer control</param>
<param name="value">Object containing the name of the renderer control</param>
<param name="zoomFactor">Numeric value for scaling the display of the renderer control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.InitializeEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initialize the editor control.
</summary>
<param name="control">Control</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.HyperLinkCellType.GetEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.HyperLinkCellType.BackgroundImage">
<summary>
Gets or sets the background image for the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.HyperLinkCellType.Link">
<summary>
Gets or sets the hyperlink.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.HyperLinkCellType.LinkArea">
<summary>
Gets or sets the area of the text that is the hyperlink.
</summary>
<exception cref="T:System.ArgumentException">
Specified start is invalid; must be positive
</exception>
<exception cref="T:System.ArgumentException">
Specified length is invalid; must be positive
</exception>
<exception cref="T:System.ArgumentException">
Specified length is invalid; must be less than or equal to the length of the entire text
</exception>
</member>
<member name="P:FarPoint.Win.Spread.CellType.HyperLinkCellType.Links">
<summary>
Gets or sets the hyperlinks.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.HyperLinkCellType.LinkToolTips">
<summary>
Gets or sets tool tips for the hyperlinks.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.HyperLinkCellType.StringTrim">
<summary>
Gets or sets how to trim characters that do not fit in the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.HyperLinkCellType.Text">
<summary>
Gets or sets the text string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.HyperLinkCellType.VisitedLinkColor">
<summary>
Gets or sets the color of visited links.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.HyperLinkCellType.LinkColor">
<summary>
Gets or sets the color of links.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.HyperLinkCellType.LinkAreas">
<summary>
Gets or sets the area of the text that is the hyperlink.
</summary>
<exception cref="T:System.ArgumentException">
Specified start is invalid; must be positive
</exception>
<exception cref="T:System.ArgumentException">
Specified length is invalid; must be positive
</exception>
<exception cref="T:System.ArgumentException">
Specified length is invalid; must be less than or equal to the length of the entire text
</exception>
</member>
<member name="T:FarPoint.Win.Spread.CellType.ProgressCellType">
<summary>
Represents a progress indicator cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.Clone">
<summary>
Creates and returns a progress indicator cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.#ctor">
<summary>
Creates a new progress indicator cell with default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.#ctor(FarPoint.Win.Spread.CellType.ProgressCellType)">
<summary>
Creates a new copy from the specified cell type. ("Copy constructor")
</summary>
<param name="g">Specified progress indicator cell type from which to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new progress indicator cell from serialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the cell type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.ToHorizontalAlignment(FarPoint.Win.Spread.CellHorizontalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellHorizontalAlignment value to the corresponding FarPoint.Win.HorizontalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellHorizontalAlignment value</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.ToVerticalAlignment(FarPoint.Win.Spread.CellVerticalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellVerticalAlignment value to the corresponding FarPoint.Win.VerticalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellVerticalAlignment</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.Format(System.Object)">
<summary>
Formats the specified data into the format of the cell type and returns it as a string.
</summary>
<param name="o">Object in the data model to format</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.Parse(System.String)">
<summary>
Parses the specified string to the data type of the cell type and returns it as an object.
</summary>
<param name="s">Specified string from the cell on the sheet to parse</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.GetEditorValue">
<summary>
Gets the unformatted value in the editor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.SetEditorValue(System.Object)">
<summary>
Sets the value of the editor control.
</summary>
<param name="value">Value of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.StartEditing(System.EventArgs,System.Boolean,System.Boolean)">
<summary>
Starts the editing of a cell.
</summary>
<param name="e">Event</param>
<param name="selectAll">Whether to select all </param>
<param name="autoClipboard">Whether to allow shortcut keys for Clipboard actions </param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.CancelEditing">
<summary>
Cancels the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.StopEditing">
<summary>
Stops the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.IsReservedKey(System.Windows.Forms.KeyEventArgs)">
<summary>
Determines whether the specified key has special meaning to the editor control.
</summary>
<param name="e">KeyEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.IsReservedLocation(System.Drawing.Graphics,System.Int32,System.Int32,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Determines whether the specified cursor location has special meaning to the editor control.
</summary>
<param name="g">Graphics device interface for drawing editor control </param>
<param name="x">X-coordinate of pointer location </param>
<param name="y">Y-coordinate of pointer location </param>
<param name="rc">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="value">Object containing the name of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.GetReservedCursor(System.Object)">
<summary>
Gets the cursor reserved for this cell type.
</summary>
<param name="o">Object that is the reserved cursor (pointer)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the cell when not in edit mode to the specified graphics interface with the specified appearance settings.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Object containing the name of the renderer control of the cell</param>
<param name="isSelected">Whether the cell is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Gets the preferred (maximum needed) size of the cell for the renderer control.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Preferred or maximum needed size</param>
<param name="appearance">Appearance settings of the renderer control</param>
<param name="value">Object containing the name of the renderer control</param>
<param name="zoomFactor">Numeric value for scaling the display of the renderer control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ProgressCellType.IsValid(System.Object)">
<summary>
Determines whether the specified value can be converted to an integer value and
is between the minimum and maximum allowed values.
</summary>
<param name="value">Value to validate (as object)</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ProgressCellType.BackgroundImage">
<summary>
Gets or sets the background image for the progress indicator cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ProgressCellType.Orientation">
<summary>
Gets or sets the orientation of the progress indicator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ProgressCellType.Picture">
<summary>
Gets or sets the image to display for the progress indicator
when indicator style is set to display a picture.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ProgressCellType.FillColor2">
<summary>
Gets or sets the second fill color to display for the progress indicator
when indicator style is set to display a gradient.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ProgressCellType.GradientMode">
<summary>
Gets or sets the gradient style to display for the progress indicator
when indicator style is set to display a gradient.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ProgressCellType.TextStyle">
<summary>
Gets or sets how the text portion of the progress indicator is displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ProgressCellType.Text">
<summary>
Gets or sets the text string to use in the progress indicator
when the text style is set to display custom text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ProgressCellType.Style">
<summary>
Gets or sets the display type of the progress indicator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ProgressCellType.ShowText">
<summary>
Gets or sets whether the percent filled string is displayed in the progress indicator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ProgressCellType.Maximum">
<summary>
Gets or sets the maximum value for user entry in the progress indicator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ProgressCellType.Minimum">
<summary>
Gets or sets the minimum value for user entry in the progress indicator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ProgressCellType.FillColor">
<summary>
Gets or sets the color for the filled part of the progress indicator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ProgressCellType.FillTextColor">
<summary>
Gets or sets the color for the text in the progress indicator.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.MultiOptionCellType">
<summary>
Represents a multiple option button cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.Clone">
<summary>
Creates and returns a multiple option button cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.#ctor">
<summary>
Creates a new multiple option button cell with default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.#ctor(FarPoint.Win.Spread.CellType.MultiOptionCellType)">
<summary>
Creates a new copy from the specified cell type. ("Copy constructor")
</summary>
<param name="g">Specified multiple-option cell type from which to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new multiple option button cell from serialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the cell type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.ToHorizontalAlignment(FarPoint.Win.Spread.CellHorizontalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellHorizontalAlignment value to the corresponding FarPoint.Win.HorizontalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellHorizontalAlignment value</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.ToVerticalAlignment(FarPoint.Win.Spread.CellVerticalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellVerticalAlignment value to the corresponding FarPoint.Win.VerticalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellVerticalAlignment</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.Format(System.Object)">
<summary>
Formats the specified data into the format of the cell type and returns it as a string.
</summary>
<param name="o">Object in the data model to format</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.Parse(System.String)">
<summary>
Parses the specified string to the data type of the cell type and returns it as an object.
</summary>
<param name="s">Specified string from the cell on the sheet to parse</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.InitializeEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initialize the editor control.
</summary>
<param name="control">Control</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.GetEditorValue">
<summary>
Gets the unformatted value in the editor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.SetEditorValue(System.Object)">
<summary>
Sets the value of the editor control.
</summary>
<param name="value">Value of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.StartEditing(System.EventArgs,System.Boolean,System.Boolean)">
<summary>
Starts the editing of a cell.
</summary>
<param name="e">Event</param>
<param name="selectAll">Whether to select all </param>
<param name="autoClipboard">Whether to allow shortcut keys for Clipboard actions </param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.CancelEditing">
<summary>
Cancels the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.StopEditing">
<summary>
Stops the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.IsReservedKey(System.Windows.Forms.KeyEventArgs)">
<summary>
Determines whether the specified key has special meaning to the editor control.
</summary>
<param name="e">KeyEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.IsReservedLocation(System.Drawing.Graphics,System.Int32,System.Int32,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Determines whether the specified cursor location has special meaning to the editor control.
</summary>
<param name="g">Graphics device interface for drawing editor control </param>
<param name="x">X-coordinate of pointer location </param>
<param name="y">Y-coordinate of pointer location </param>
<param name="rc">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="value">Object containing the name of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.GetReservedCursor(System.Object)">
<summary>
Gets the cursor reserved for this cell type.
</summary>
<param name="o">Object that is the reserved cursor (pointer)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the cell when not in edit mode to the specified graphics interface with the specified appearance settings.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Object containing the name of the renderer control of the cell</param>
<param name="isSelected">Whether the cell is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Gets the preferred (maximum needed) size of the cell for the renderer control.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Preferred or maximum needed size</param>
<param name="appearance">Appearance settings of the renderer control</param>
<param name="value">Object containing the name of the renderer control</param>
<param name="zoomFactor">Numeric value for scaling the display of the renderer control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.MultiOptionCellType.GetEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiOptionCellType.ItemData">
<summary>
Gets or sets the corresponding data for the items in the list of options.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiOptionCellType.EditorValue">
<summary>
Gets or sets what value is written to the underlying data model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiOptionCellType.BackgroundImage">
<summary>
Gets or sets the background image for the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiOptionCellType.UseMnemonic">
<summary>
Gets or sets whether hot keys are used in the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiOptionCellType.TextAlign">
<summary>
Gets or sets how text aligns in the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiOptionCellType.Orientation">
<summary>
Gets or sets the orientation of the option buttons.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiOptionCellType.Items">
<summary>
Gets or sets the list for the option buttons.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.MultiOptionCellType.Picture">
<summary>
Gets or sets the image for the option buttons.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.CurrencyCellType">
<summary>
Represents a numeric cell formatted as currency.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.Clone">
<summary>
Creates and returns a currency cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.#ctor">
<summary>
Creates a new currency cell with default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.#ctor(FarPoint.Win.Spread.CellType.CurrencyCellType)">
<summary>
Creates a new copy from the specified cell type. ("Copy constructor")
</summary>
<param name="g">Specified currency cell type from which to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new currency cell from serialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the cell type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.ApplyNegativeFormat">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.Parse(System.String)">
<summary>
Parses the specified string to the data type of the cell type and returns it as an object.
</summary>
<param name="s">Specified string from the cell on the sheet to parse</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Gets the preferred (maximum needed) size of the cell for the editor control.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Preferred or maximum needed size</param>
<param name="appearance">Appearance settings of the renderer control</param>
<param name="value">Object containing the name of the renderer control</param>
<param name="zoomFactor">Numeric value for scaling the display of the renderer control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.SetCalculatorText(System.String,System.String)">
<summary>
Sets the text for the pop-up calculator.
</summary>
<param name="okText">Text for the OK button</param>
<param name="cancelText">Text for the Cancel button</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.GetNegativeFormatValue">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.ApplyPositiveFormat">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.GetPositiveFormatValue">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.GetCurrencySymbolString">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.GetCurrencyGroupSeparatorString">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.GetCurrencyDecimalSeparator">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.GetNewFormat">
<summary>
Gets the format string for formatting currency values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.SetNewFormat">
<summary>
Sets the new format string (returned by GetNewFormat) into the internal cell formatter.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.GetDecimalPlacesValue">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.GetDecimalSeparatorString">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.GetSeparatorCharacter">
<summary>
Gets the separator character for formatting currency values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.IsValid(System.Object)">
<summary>
Determines whether the specified value can be converted to a decimal value and is between
the minimum and maximum allowed value.
</summary>
<param name="value">Value to validate (as object)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.GetEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CurrencyCellType.InitializeEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initialize the editor control.
</summary>
<param name="control">Control</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CurrencyCellType.CurrencySymbol">
<summary>
Gets or sets the string for the currency symbol in displaying currency values.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CurrencyCellType.NegativeFormat">
<summary>
Gets or sets the format for displaying a negative value.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CurrencyCellType.PositiveFormat">
<summary>
Gets or sets the format for displaying a positive value.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CurrencyCellType.LeadingZero">
<summary>
Gets or sets whether leading zeros are displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CurrencyCellType.SpinIntegerIncrement">
<summary>
Gets or sets the amount by which the value increments when using the
spin buttons and the cursor is in the integer portion.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CurrencyCellType.SpinDecimalIncrement">
<summary>
Gets or sets the amount by which the value increments when using the
spin buttons and the cursor is in the decimal portion.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CurrencyCellType.SpinButton">
<summary>
Gets or sets whether a spin button is displayed when editing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CurrencyCellType.SpinWrap">
<summary>
Gets or sets whether the value wraps when the minimum or maximum is reached.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CurrencyCellType.DecimalSeparator">
<summary>
Gets or sets the decimal character.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CurrencyCellType.DecimalPlaces">
<summary>
Gets or sets the number of decimal places.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CurrencyCellType.OverflowCharacter">
<summary>
Gets or sets the character for replacing the value if it does not fit the width of the display.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CurrencyCellType.NegativeRed">
<summary>
Gets or sets whether negative numeric values are displayed in red.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CurrencyCellType.FixedPoint">
<summary>
Gets or sets whether to display zeros as placeholders in the decimal portion
of the number for a fixed-point numeric display.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CurrencyCellType.MaximumValue">
<summary>
Gets or sets the maximum value allowed for user entry.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified value is beyond accepted limits
</exception>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CurrencyCellType.MinimumValue">
<summary>
Gets or sets the minimum value allowed for user entry.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified value is beyond accepted limits
</exception>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CurrencyCellType.Separator">
<summary>
Gets or sets the string used to separate thousands in a numeric value.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CurrencyCellType.ShowSeparator">
<summary>
Gets or sets whether to display the thousands separator string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.CurrencyCellType.ShowCurrencySymbol">
<summary>
Gets or sets whether to display the currency symbol.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.IHeaderImages">
<summary>
Interface for supporting user modifiable images in headers
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.IHeaderImages.Images">
<summary>
Gets or sets the images.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.GradientHeaderRenderer">
<summary>
Represents the painter of a gradient header.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer">
<summary>
Represents the painter of column header cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.appearance">
<summary>
Creates the appearance.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.headerTheme">
<summary>
Creates a visual style (theme) for the header.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.#ctor">
<summary>
Creates a new column header renderer.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.Finalize">
<summary>
The destructor method.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.PaintSortIndicator(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Paints the sorting indicator in the column header with the specified appearance settings.
</summary>
<param name="g">Graphics device interface for painting the indicator</param>
<param name="r">Location and size of the rectangular region in which to paint the indicator</param>
<param name="appearance">Appearance settings of the indicator</param>
<param name="zoomFactor">Numeric value for scaling the display of the indicator</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.PaintFilterIndicator(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Paints the filtering indicator in the column header with the specified appearance settings.
</summary>
<param name="g">Graphics device interface for painting the indicator</param>
<param name="r">Location and size of the rectangular region in which to paint the indicator</param>
<param name="appearance">Appearance settings of the indicator</param>
<param name="zoomFactor">Numeric value for scaling the display of the indicator</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.PaintRowSelector(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Paints the row header selector in the row header of the selected row.
</summary>
<param name="g">Graphics device interface for painting the row header selector.</param>
<param name="r">Location and size of the rectangular region in which to paint the row header selector.</param>
<param name="appearance">Appearance settings of the row header selector.</param>
<param name="zoomFactor">Numeric value for scaling the display of the row header selector.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.ToHorizontalAlignment(FarPoint.Win.Spread.CellHorizontalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellHorizontalAlignment value
to the corresponding FarPoint.Win.HorizontalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellHorizontalAlignment value</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.ToVerticalAlignment(FarPoint.Win.Spread.CellVerticalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellVerticalAlignment value
to the corresponding FarPoint.Win.VerticalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellVerticalAlignment</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.PaintHeader(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.HorizontalAlignment,FarPoint.Win.VerticalAlignment,System.Boolean,System.Boolean,System.String,System.String,FarPoint.Win.ButtonTextAlign,FarPoint.Win.TextOrientation,System.Boolean,System.Int32,System.Drawing.Color,System.Drawing.Color,System.Drawing.Image,System.Drawing.Image,System.Boolean,System.Drawing.Text.HotkeyPrefix,FarPoint.Win.VisualStyles,System.Boolean,System.Boolean,FarPoint.Win.Spread.Appearance,System.Double)">
<summary>
Paints the column header cell.
</summary>
<param name="g">Graphics device interface for painting the header cell</param>
<param name="r">Location and size of a rectangular region bounding the header cell</param>
<param name="rectTextIn">Rectangular region for the text</param>
<param name="backColor">Background color for the header cell</param>
<param name="foreColor">Text color for the header cell</param>
<param name="font">Font for the header cell</param>
<param name="halign">Horizontal alignment of text in the header cell</param>
<param name="valign">Vertical alignment of text in the header cell</param>
<param name="pressed">Whether the header cell appears as a pressed button</param>
<param name="focus">Whether the header cell has the focus (is active)</param>
<param name="text">Text string to appear in the header cell</param>
<param name="textDown">Text string to appear in the header cell if it is pressed (as a button)</param>
<param name="nAlign">Alignment of button in the column header cell</param>
<param name="textOrientation">Orientation of the text with respect to the button picture in the header</param>
<param name="wordWrap">Whether the text wraps to multiple lines if needed</param>
<param name="shadowSize">Thickness in pixels of the shadow</param>
<param name="darkColor">Color for the dark line part of the shadow</param>
<param name="lightColor">Color for the light line part of the shadow</param>
<param name="pictUp">Picture to display when the button is not pressed</param>
<param name="pictDown">Picture to display when the button is pressed</param>
<param name="bLocked">Whether the header cell is locked</param>
<param name="prefix">Letter to underline as a hotkey prefix</param>
<param name="style">Visual style (XP theme)</param>
<param name="mouseOver">Whether mouse over</param>
<param name="rightToLeft">Whether to draw the header cell with a right-to-left orientation</param>
<param name="appearance">Appearance settings</param>
<param name="textRotationAngle">Text rotation angle</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.PaintHeader(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.HorizontalAlignment,FarPoint.Win.VerticalAlignment,System.Boolean,System.Boolean,System.String,System.String,FarPoint.Win.ButtonTextAlign,FarPoint.Win.TextOrientation,System.Boolean,System.Int32,System.Drawing.Color,System.Drawing.Color,System.Drawing.Image,System.Drawing.Image,System.Boolean,System.Drawing.Text.HotkeyPrefix,FarPoint.Win.VisualStyles,System.Boolean,System.Boolean,FarPoint.Win.Spread.Appearance,System.Double,System.Single)">
<summary>
Paints the column header cell.
</summary>
<param name="g">Graphics device interface for painting the header cell</param>
<param name="r">Location and size of a rectangular region bounding the header cell</param>
<param name="rectTextIn">Rectangular region for the text</param>
<param name="backColor">Background color for the header cell</param>
<param name="foreColor">Text color for the header cell</param>
<param name="font">Font for the header cell</param>
<param name="halign">Horizontal alignment of text in the header cell</param>
<param name="valign">Vertical alignment of text in the header cell</param>
<param name="pressed">Whether the header cell appears as a pressed button</param>
<param name="focus">Whether the header cell has the focus (is active)</param>
<param name="text">Text string to appear in the header cell</param>
<param name="textDown">Text string to appear in the header cell if it is pressed (as a button)</param>
<param name="nAlign">Alignment of button in the column header cell</param>
<param name="textOrientation">Orientation of the text with respect to the button picture in the header</param>
<param name="wordWrap">Whether the text wraps to multiple lines if needed</param>
<param name="shadowSize">Thickness in pixels of the shadow</param>
<param name="darkColor">Color for the dark line part of the shadow</param>
<param name="lightColor">Color for the light line part of the shadow</param>
<param name="pictUp">Picture to display when the button is not pressed</param>
<param name="pictDown">Picture to display when the button is pressed</param>
<param name="bLocked">Whether the header cell is locked</param>
<param name="prefix">Letter to underline as a hotkey prefix</param>
<param name="style">Visual style (XP theme)</param>
<param name="mouseOver">Whether mouse over</param>
<param name="rightToLeft">Whether to draw the header cell with a right-to-left orientation</param>
<param name="appearance">Appearance settings</param>
<param name="textRotationAngle">Text rotation angle</param>
<param name="zoomFactor">Numeric value for scaling the display of the header cells</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.PaintHeader(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.HorizontalAlignment,FarPoint.Win.VerticalAlignment,System.Boolean,System.Boolean,System.String,System.String,FarPoint.Win.ButtonTextAlign,FarPoint.Win.TextOrientation,System.Boolean,System.Int32,System.Drawing.Color,System.Drawing.Color,System.Drawing.Image,System.Drawing.Image,System.Boolean,System.Drawing.Text.HotkeyPrefix,FarPoint.Win.VisualStyles,System.Boolean,System.Boolean)">
<summary>
Paints the column header cell.
</summary>
<param name="g">Graphics device interface for painting the header cell</param>
<param name="r">Location and size of a rectangular region bounding the header cell</param>
<param name="rectTextIn">Rectangular region for the text</param>
<param name="backColor">Background color for the header cell</param>
<param name="foreColor">Text color for the header cell</param>
<param name="font">Font for the header cell</param>
<param name="halign">Horizontal alignment of text in the header cell</param>
<param name="valign">Vertical alignment of text in the header cell</param>
<param name="pressed">Whether the header cell appears as a pressed button</param>
<param name="focus">Whether the header cell has the focus (is active)</param>
<param name="text">Text string to appear in the header cell</param>
<param name="textDown">Text string to appear in the header cell if it is pressed (as a button)</param>
<param name="nAlign">Alignment of button in the column header cell</param>
<param name="textOrientation">Orientation of the text with respect to the button picture in the header</param>
<param name="wordWrap">Whether the text wraps to multiple lines if needed</param>
<param name="shadowSize">Thickness in pixels of the shadow</param>
<param name="darkColor">Color for the dark line part of the shadow</param>
<param name="lightColor">Color for the light line part of the shadow</param>
<param name="pictUp">Picture to display when the button is not pressed</param>
<param name="pictDown">Picture to display when the button is pressed</param>
<param name="bLocked">Whether the header cell is locked</param>
<param name="prefix">Letter to underline as a hotkey prefix</param>
<param name="style">Visual style (XP theme)</param>
<param name="mouseOver">Whether mouse over</param>
<param name="rightToLeft">Whether to draw the header cell with a right-to-left orientation</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.PaintHeader(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.HorizontalAlignment,FarPoint.Win.VerticalAlignment,System.Boolean,System.Boolean,System.String,System.String,FarPoint.Win.ButtonTextAlign,FarPoint.Win.TextOrientation,System.Boolean,System.Int32,System.Drawing.Color,System.Drawing.Color,System.Drawing.Image,System.Drawing.Image,System.Boolean,System.Drawing.Text.HotkeyPrefix,FarPoint.Win.VisualStyles,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the column header cell.
</summary>
<param name="g">Graphics device interface for painting the header cell</param>
<param name="r">Location and size of a rectangular region bounding the header cell</param>
<param name="rectTextIn">Rectangular region for the text</param>
<param name="backColor">Background color for the header cell</param>
<param name="foreColor">Text color for the header cell</param>
<param name="font">Font for the header cell</param>
<param name="halign">Horizontal alignment of text in the header cell</param>
<param name="valign">Vertical alignment of text in the header cell</param>
<param name="pressed">Whether the header cell appears as a pressed button</param>
<param name="focus">Whether the header cell has the focus (is active)</param>
<param name="text">Text string to appear in the header cell</param>
<param name="textDown">Text string to appear in the header cell if it is pressed (as a button)</param>
<param name="nAlign">Alignment of button in the column header cell</param>
<param name="textOrientation">Orientation of the text with respect to the button picture in the header</param>
<param name="wordWrap">Whether the text wraps to multiple lines if needed</param>
<param name="shadowSize">Thickness in pixels of the shadow</param>
<param name="darkColor">Color for the dark line part of the shadow</param>
<param name="lightColor">Color for the light line part of the shadow</param>
<param name="pictUp">Picture to display when the button is not pressed</param>
<param name="pictDown">Picture to display when the button is pressed</param>
<param name="bLocked">Whether the header cell is locked</param>
<param name="prefix">Letter to underline as a hotkey prefix</param>
<param name="style">Visual style (XP theme)</param>
<param name="mouseOver">Whether mouse over</param>
<param name="rightToLeft">Whether to draw the header cell with a right-to-left orientation</param>
<param name="zoomFactor">Numeric value for scaling the display of the header cells</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.PaintBackground(System.Drawing.Graphics,System.Boolean@,System.Boolean,System.Boolean,System.Boolean,System.Drawing.Rectangle,System.Int32,System.Int32,FarPoint.Win.VisualStyles,System.Boolean,System.Drawing.Color)">
<summary>
Paints the background of the enhanced header cell.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="useXpStyles">Whether to use XP themes</param>
<param name="toscreen">Whether painting to screen</param>
<param name="pressed">Whether in a pressed state</param>
<param name="focus">Whether in focus</param>
<param name="r">Bounding rectangle</param>
<param name="dpx">Integer number of resolution (DPI) along the x-axis</param>
<param name="dpy">Integer number of resolution (DPI) along the y-axis</param>
<param name="style">Whether to turn on visual styles</param>
<param name="rightToLeft">Whether drawing right to left</param>
<param name="backColor">Cell background color</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the column header cell when not in edit mode to the specified graphics interface
with the specified appearance settings.
</summary>
<param name="g">Graphics device interface for painting the column header cell</param>
<param name="r">Location and size of a rectangular region for painting the column header cell</param>
<param name="appearance">Appearance settings of the column header cell</param>
<param name="value">Object containing the name of the renderer control of the column header cell</param>
<param name="isSelected">Whether the column header cell is selected</param>
<param name="isLocked">Whether the column header cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the display of the column header cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.PaintCell(FarPoint.PDF.PdfGraphics,System.Drawing.RectangleF,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints (prints) to PDF the cell.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Object containing the name of the renderer control of the cell</param>
<param name="isSelected">Whether the cell is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the painting of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.GetTextRect(FarPoint.Win.Spread.Appearance,System.Drawing.RectangleF,System.Single)">
<summary>
Calculate the rectangle for drawing text
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="r">Container rectangle of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.GetImageBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Font,FarPoint.Win.HorizontalAlignment,FarPoint.Win.VerticalAlignment,System.String,FarPoint.Win.ButtonTextAlign,System.Drawing.Image)">
<summary>
Returns information about the image.
</summary>
<param name="g">Image graphic</param>
<param name="r">Image rectangle</param>
<param name="font">Font</param>
<param name="halign">Horizontal alignment</param>
<param name="valign">Vertical alignment</param>
<param name="text">Text</param>
<param name="nAlign">Button text alignment</param>
<param name="pict">Image</param>
<returns>Rectangle object for image</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.GetImageBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Font,FarPoint.Win.HorizontalAlignment,FarPoint.Win.VerticalAlignment,System.String,FarPoint.Win.ButtonTextAlign,System.Drawing.Image,System.Int32)">
<summary>
Returns information about the image.
</summary>
<param name="g">Image graphic</param>
<param name="r">Image rectangle</param>
<param name="font">Font</param>
<param name="halign">Horizontal alignment</param>
<param name="valign">Vertical alignment</param>
<param name="text">Text</param>
<param name="nAlign">Button text alignment</param>
<param name="pict">Image</param>
<param name="textIndent">TextIndent</param>
<returns>Rectangle object for image</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Gets the preferred (maximum needed) size of the cell for the renderer control.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Preferred or maximum needed size</param>
<param name="appearance">Appearance settings</param>
<param name="value">Object containing the name of the renderer control</param>
<param name="zoomFactor">Numeric value for zoom factor for scaling the display of the renderer control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.CanOverflow">
<summary>
Determines whether data in cells can overflow into adjacent cells.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.CanBeOverflown">
<summary>
Determines whether data in adjacent cells can overflow these cells.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.Dispose(System.Boolean)">
<summary>
Internal use only.
</summary>
<param name="disposing">Whether disposing</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new painter of the column header cells from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info"><see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data</param>
<param name="context">Destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.ToString">
<summary>
Returns the name of the renderer.
</summary>
<returns></returns>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.Images">
<summary>
Gets or sets user override images for the headers. Use the SpreadView static image constants for the array indexes.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.Size">
<summary>
Gets or sets the size.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.TabIndex">
<summary>
Gets or sets the index of the tab.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ColumnHeaderRenderer.Location">
<summary>
Gets or sets the location.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GradientHeaderRenderer.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info"><see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data</param>
<param name="context">Destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GradientHeaderRenderer.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new painter of the gradient header from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GradientHeaderRenderer.#ctor">
<summary>
Creates a new renderer for a gradient header.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GradientHeaderRenderer.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Drawing2D.LinearGradientMode,System.Drawing.Color,System.Drawing.Color)">
<summary>
Creates a new renderer for a gradient header with color and mode specified.
</summary>
<param name="topColor">Color at the top of the gradient</param>
<param name="bottomColor">Color at the bottom of the gradient</param>
<param name="activeTopColor">Color at the top when the header cell is active</param>
<param name="activeBottomColor">Color at the bottom when the header cell is active</param>
<param name="mode">Mode of the linear gradient</param>
<param name="selTopColor">Color at the top of gradient when the column or row of header cell contains a selection</param>
<param name="selBottomColor">Color at the bottom of the gradient when the column or row of header cell contains a selection</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GradientHeaderRenderer.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents this instance.
</summary>
<returns>
A <see cref="T:System.String"/> that represents this instance.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GradientHeaderRenderer.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Drawing2D.LinearGradientMode)">
<summary>
Creates a new renderer for a gradient header with color and mode specified.
</summary>
<param name="topColor">Color at the top of the gradient</param>
<param name="bottomColor">Color at the bottom of the gradient</param>
<param name="activeTopColor">Color at the top when the header cell is active</param>
<param name="activeBottomColor">Color at the bottom when the header cell is active</param>
<param name="mode">Mode of the linear gradient</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GradientHeaderRenderer.PaintBackground(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints the background of the gradient header cell.
</summary>
<param name="g">Graphics device interface for painting the indicator</param>
<param name="r">Location and size of the rectangular region in which to paint</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GradientHeaderRenderer.GetAppearance">
<summary>
Returns the appearance attributes for the current header cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GradientHeaderRenderer.DrawHeader(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Drawing2D.LinearGradientMode,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.HorizontalAlignment,FarPoint.Win.VerticalAlignment,System.Boolean,System.String,System.String,FarPoint.Win.ButtonTextAlign,FarPoint.Win.TextOrientation,System.Boolean,System.Int32,System.Drawing.Color,System.Drawing.Color,System.Drawing.Image,System.Drawing.Image,System.Boolean,System.Drawing.Text.HotkeyPrefix,FarPoint.Win.Spread.Appearance)">
<summary>
Paints the gradient header cell.
</summary>
<param name="g">Graphics device interface for painting the header cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="rectTextIn">Rectangular region for the text</param>
<param name="topColor">Color at the top of the gradient</param>
<param name="bottomColor">Color at the bottom of the gradient</param>
<param name="activeTopColor">Color at the top of the gradient when active</param>
<param name="activeBottomColor">Color at the bottom of the gradient when active</param>
<param name="mode">Mode of the linear gradient</param>
<param name="foreColor">Color of the text</param>
<param name="font">Font of the text</param>
<param name="halign">Horizontal alignment of the text</param>
<param name="valign">Vertical alignment of the text</param>
<param name="pressed">State of the header being pressed</param>
<param name="text">Text to display in the header</param>
<param name="textDown">Text to display in the header when pressed</param>
<param name="nAlign">Alignment of the text</param>
<param name="textOrientation">Orientation of the text with respect to the button picture in the header</param>
<param name="wordWrap">Whether to wrap text to multiple lines</param>
<param name="shadowSize">Size in pixels of the shadow</param>
<param name="darkColor">Dark color</param>
<param name="lightColor">Light color</param>
<param name="pictUp">Picture to display when the button is not pressed</param>
<param name="pictDown">Picture to display when the button is pressed</param>
<param name="bLocked">Whether the button is locked</param>
<param name="prefix">Letter to underline as a hotkey prefix</param>
<param name="appearance">Appearance settings of the header cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GradientHeaderRenderer.DrawHeader(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Drawing2D.LinearGradientMode,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.HorizontalAlignment,FarPoint.Win.VerticalAlignment,System.Boolean,System.String,System.String,FarPoint.Win.ButtonTextAlign,FarPoint.Win.TextOrientation,System.Boolean,System.Int32,System.Drawing.Color,System.Drawing.Color,System.Drawing.Image,System.Drawing.Image,System.Boolean,System.Drawing.Text.HotkeyPrefix,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Paints the gradient header cell.
</summary>
<param name="g">Graphics device interface for painting the header cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="rectTextIn">Rectangular region for the text</param>
<param name="topColor">Color at the top of the gradient</param>
<param name="bottomColor">Color at the bottom of the gradient</param>
<param name="activeTopColor">Color at the top of the gradient when active</param>
<param name="activeBottomColor">Color at the bottom of the gradient when active</param>
<param name="mode">Mode of the linear gradient</param>
<param name="foreColor">Color of the text</param>
<param name="font">Font of the text</param>
<param name="halign">Horizontal alignment of the text</param>
<param name="valign">Vertical alignment of the text</param>
<param name="pressed">State of the header being pressed</param>
<param name="text">Text to display in the header</param>
<param name="textDown">Text to display in the header when pressed</param>
<param name="nAlign">Alignment of the text</param>
<param name="textOrientation">Orientation of the text with respect to the button picture in the header</param>
<param name="wordWrap">Whether to wrap text to multiple lines</param>
<param name="shadowSize">Size in pixels of the shadow</param>
<param name="darkColor">Dark color</param>
<param name="lightColor">Light color</param>
<param name="pictUp">Picture to display when the button is not pressed</param>
<param name="pictDown">Picture to display when the button is pressed</param>
<param name="bLocked">Whether the button is locked</param>
<param name="prefix">Letter to underline as a hotkey prefix</param>
<param name="appearance">Appearance settings of the header cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the header cells</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.GradientHeaderRenderer.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the column header cell when not in edit mode to the specified graphics interface
with the specified appearance settings.
</summary>
<param name="g">Graphics device interface for painting the column header cell</param>
<param name="r">Location and size of a rectangular region for painting the column header cell</param>
<param name="appearance">Appearance settings of the column header cell</param>
<param name="value">Object containing the name of the renderer control of the column header cell</param>
<param name="isSelected">Whether the column header cell is selected</param>
<param name="isLocked">Whether the column header cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the display of the column header cell</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GradientHeaderRenderer.TopColor">
<summary>
Gets or sets the color of the top of the gradient.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GradientHeaderRenderer.BottomColor">
<summary>
Gets or sets the color of the bottom of the gradient.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GradientHeaderRenderer.ActiveTopColor">
<summary>
Gets or sets the color of the top of the gradient when the header cell is active.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GradientHeaderRenderer.ActiveBottomColor">
<summary>
Gets or sets the color of the bottom of the gradient when the header cell is active.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GradientHeaderRenderer.SelectionTopColor">
<summary>
Gets or sets the color of the top of the gradient when the column or row of header cell contains a selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GradientHeaderRenderer.SelectionBottomColor">
<summary>
Gets or sets the color of the bottom of the gradient when the column or row of header cell contains a selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.GradientHeaderRenderer.Mode">
<summary>
Gets or sets the mode of the linear gradient.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer">
<summary>
Represents the painting of the column header cells with the look and feel of Excel 2007.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color)">
<summary>
Creates a new painter of the column header cells with the specified values.
</summary>
<param name="activeBackgroundColor">Color of the background when in focus</param>
<param name="normalBackgroundColor">Color of the background when not in focus</param>
<param name="normalGridLineColor">Color of the grid line when not in focus</param>
<param name="selectedActiveBackgroundColor">Color of the background when selected and in focus</param>
<param name="selectedBackgroundColor">Color of the background when selected but not in focus</param>
<param name="selectedGridLineColor">Color of the grid line when selected</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer.#ctor">
<summary>
Creates a new painter of the column header cells from default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new painter of the column header cells from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer.PaintHeader(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.HorizontalAlignment,FarPoint.Win.VerticalAlignment,System.Boolean,System.Boolean,System.String,System.String,FarPoint.Win.ButtonTextAlign,FarPoint.Win.TextOrientation,System.Boolean,System.Int32,System.Drawing.Color,System.Drawing.Color,System.Drawing.Image,System.Drawing.Image,System.Boolean,System.Drawing.Text.HotkeyPrefix,FarPoint.Win.VisualStyles,System.Boolean,System.Boolean,FarPoint.Win.Spread.Appearance,System.Double)">
<summary>
Paints the header cell with the look and feel of Excel 2007.
</summary>
<param name="g">Graphics device interface for painting the header cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="rectTextIn">Rectangular region for the text</param>
<param name="backColor">Cell's back color</param>
<param name="foreColor">Color of the text</param>
<param name="font">Font of the text</param>
<param name="halign">Horizontal alignment of the text</param>
<param name="valign">Vertical alignment of the text</param>
<param name="pressed">State of the header being pressed</param>
<param name="focus">Whether in focus</param>
<param name="text">Text to display in the header</param>
<param name="textDown">Text to display in the header when pressed</param>
<param name="nAlign">Alignment of the text and image</param>
<param name="textOrientation">Orientation of the text with respect to the button picture in the header</param>
<param name="wordWrap">Whether to wrap text to multiple lines</param>
<param name="shadowSize">Size of the shadow</param>
<param name="darkColor">DarkColor</param>
<param name="lightColor">LightColor</param>
<param name="pictUp">Picture to display when the button is not pressed</param>
<param name="pictDown">Picture to display when the button is pressed</param>
<param name="bLocked">Whether the button is locked</param>
<param name="prefix">Letter to underline as a hotkey prefix</param>
<param name="style">Visual styles</param>
<param name="mouseOver">Whether the mouse is over the cell</param>
<param name="rightToLeft">Whether drawing right to left</param>
<param name="appearance">Appearance settings of the header cell</param>
<param name="textRotationAngle">Text rotation angle</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer.PaintHeader(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.HorizontalAlignment,FarPoint.Win.VerticalAlignment,System.Boolean,System.Boolean,System.String,System.String,FarPoint.Win.ButtonTextAlign,FarPoint.Win.TextOrientation,System.Boolean,System.Int32,System.Drawing.Color,System.Drawing.Color,System.Drawing.Image,System.Drawing.Image,System.Boolean,System.Drawing.Text.HotkeyPrefix,FarPoint.Win.VisualStyles,System.Boolean,System.Boolean,FarPoint.Win.Spread.Appearance,System.Double,System.Single)">
<summary>
Paints the header cell with the look and feel of Excel 2007.
</summary>
<param name="g">Graphics device interface for painting the header cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="rectTextIn">Rectangular region for the text</param>
<param name="backColor">Cell's back color</param>
<param name="foreColor">Color of the text</param>
<param name="font">Font of the text</param>
<param name="halign">Horizontal alignment of the text</param>
<param name="valign">Vertical alignment of the text</param>
<param name="pressed">State of the header being pressed</param>
<param name="focus">Whether in focus</param>
<param name="text">Text to display in the header</param>
<param name="textDown">Text to display in the header when pressed</param>
<param name="nAlign">Alignment of the text and image</param>
<param name="textOrientation">Orientation of the text with respect to the button picture in the header</param>
<param name="wordWrap">Whether to wrap text to multiple lines</param>
<param name="shadowSize">Size of the shadow</param>
<param name="darkColor">DarkColor</param>
<param name="lightColor">LightColor</param>
<param name="pictUp">Picture to display when the button is not pressed</param>
<param name="pictDown">Picture to display when the button is pressed</param>
<param name="bLocked">Whether the button is locked</param>
<param name="prefix">Letter to underline as a hotkey prefix</param>
<param name="style">Visual styles</param>
<param name="mouseOver">Whether the mouse is over the cell</param>
<param name="rightToLeft">Whether drawing right to left</param>
<param name="appearance">Appearance settings of the header cell</param>
<param name="textRotationAngle">Text rotation angle</param>
<param name="zoomFactor">Numeric value for scaling the display of the header cells</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer.PaintBackground(System.Drawing.Graphics,System.Boolean@,System.Boolean,System.Boolean,System.Boolean,System.Drawing.Rectangle,System.Int32,System.Int32,FarPoint.Win.VisualStyles,System.Boolean,System.Drawing.Color)">
<summary>
Paints the background of the enhanced header cell.
</summary>
<param name="g">Graphics device interface for painting the header cell</param>
<param name="useXpStyles">Whether to paint visual styles (XP themes)</param>
<param name="toscreen">Whether to paint the header cell to the screen</param>
<param name="pressed">Whether to paint the header cell as pressed</param>
<param name="focus">Whether the header cell has focus</param>
<param name="r">Bounding rectangle</param>
<param name="dpx">Integer number of resolution (DPI) along the x-axis</param>
<param name="dpy">Integer number of resolution (DPI) along the y-axis</param>
<param name="style">Visual styles setting</param>
<param name="rightToLeft">Whether to display as right-to-left</param>
<param name="backColor">Background color of the header cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer.PaintCellGridLine(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.Appearance)">
<summary>
Paints the grid lines for the cell
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X coordinate of the cell</param>
<param name="y">Y coordinate of the cell</param>
<param name="width">Width of the cell </param>
<param name="height">Height of the cell</param>
<param name="appearance">Appearance settings of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Gets the object data.
</summary>
<param name="info">SerializationInfo to populate with data</param>
<param name="context">Destination (see StreamingContext) for this serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer.ToString">
<summary>
Returns the name of the renderer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer.NormalBackgroundColor">
<summary>
Gets or sets the color of the normal background.
</summary>
<value>Color of the normal background</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer.SelectedBackgroundColor">
<summary>
Gets or sets the color of the selected background.
</summary>
<value>Color of the background when the cell is selected</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer.ActiveBackgroundColor">
<summary>
Gets or sets the color of the active background.
</summary>
<value>Color of the background when the cell is active</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer.SelectedActiveBackgroundColor">
<summary>
Gets or sets the color of the selected active background.
</summary>
<value>Color of the background when the cell is active and selected</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer.NormalGridLineColor">
<summary>
Gets or sets the color of the normal grid line.
</summary>
<value>Color of the grid line for the cells</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer.SelectedGridLineColor">
<summary>
Gets or sets the color of the selected grid line.
</summary>
<value>Color of the grid line when the cells are selected</value>
</member>
<member name="T:FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer">
<summary>
Represents the painting of the row header cells with the look and feel of Excel 2007.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color)">
<summary>
Creates a new painter of the row header cells with the specified values.
</summary>
<param name="activeBackgroundColor">Color of the background when in focus</param>
<param name="normalBackgroundColor">Color of the background when not in focus</param>
<param name="normalGridLineColor">Color of the grid line when not in focus</param>
<param name="selectedActiveBackgroundColor">Color of the background when selected and in focus</param>
<param name="selectedBackgroundColor">Color of the background when selected but not in focus</param>
<param name="selectedGridLineColor">Color of the grid line when selected</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer.#ctor">
<summary>
Creates a new painter of the row header cells with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new painter of the row header cells from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer.PaintHeader(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.HorizontalAlignment,FarPoint.Win.VerticalAlignment,System.Boolean,System.Boolean,System.String,System.String,FarPoint.Win.ButtonTextAlign,FarPoint.Win.TextOrientation,System.Boolean,System.Int32,System.Drawing.Color,System.Drawing.Color,System.Drawing.Image,System.Drawing.Image,System.Boolean,System.Drawing.Text.HotkeyPrefix,FarPoint.Win.VisualStyles,System.Boolean,System.Boolean,FarPoint.Win.Spread.Appearance,System.Double)">
<summary>
Paints the header cell with the look and feel of Excel 2007.
</summary>
<param name="g">Graphics device interface for painting the header cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="rectTextIn">Rectangular region for the text</param>
<param name="backColor">Background color of the header cell</param>
<param name="foreColor">Color of the text</param>
<param name="font">Font of the text</param>
<param name="halign">Horizontal alignment of the text</param>
<param name="valign">Vertical alignment of the text</param>
<param name="pressed">Whether to paint the header cell as pressed</param>
<param name="focus">Whether the header cell has focus</param>
<param name="text">Text to display in the header cell</param>
<param name="textDown">Text to display in the header cell when pressed</param>
<param name="nAlign">Alignment of the text and image in the header cell</param>
<param name="textOrientation">Orientation of the text with respect to the button picture in the header cell</param>
<param name="wordWrap">Whether to wrap text to multiple lines</param>
<param name="shadowSize">Size of the shadow</param>
<param name="darkColor">DarkColor</param>
<param name="lightColor">LightColor</param>
<param name="pictUp">Picture to display when the button is not pressed</param>
<param name="pictDown">Picture to display when the button is pressed</param>
<param name="bLocked">Whether the button is locked</param>
<param name="prefix">Letter to underline as a hotkey prefix</param>
<param name="style">Visual styles setting</param>
<param name="mouseOver">Whether the mouse is over the header cell</param>
<param name="rightToLeft">Whether to draw as right-to-left</param>
<param name="appearance">Appearance settings of the header cell</param>
<param name="textRotationAngle">Text rotation angle</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer.PaintHeader(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.HorizontalAlignment,FarPoint.Win.VerticalAlignment,System.Boolean,System.Boolean,System.String,System.String,FarPoint.Win.ButtonTextAlign,FarPoint.Win.TextOrientation,System.Boolean,System.Int32,System.Drawing.Color,System.Drawing.Color,System.Drawing.Image,System.Drawing.Image,System.Boolean,System.Drawing.Text.HotkeyPrefix,FarPoint.Win.VisualStyles,System.Boolean,System.Boolean,FarPoint.Win.Spread.Appearance,System.Double,System.Single)">
<summary>
Paints the header cell with the look and feel of Excel 2007.
</summary>
<param name="g">Graphics device interface for painting the header cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="rectTextIn">Rectangular region for the text</param>
<param name="backColor">Background color of the header cell</param>
<param name="foreColor">Color of the text</param>
<param name="font">Font of the text</param>
<param name="halign">Horizontal alignment of the text</param>
<param name="valign">Vertical alignment of the text</param>
<param name="pressed">Whether to paint the header cell as pressed</param>
<param name="focus">Whether the header cell has focus</param>
<param name="text">Text to display in the header cell</param>
<param name="textDown">Text to display in the header cell when pressed</param>
<param name="nAlign">Alignment of the text and image in the header cell</param>
<param name="textOrientation">Orientation of the text with respect to the button picture in the header cell</param>
<param name="wordWrap">Whether to wrap text to multiple lines</param>
<param name="shadowSize">Size of the shadow</param>
<param name="darkColor">DarkColor</param>
<param name="lightColor">LightColor</param>
<param name="pictUp">Picture to display when the button is not pressed</param>
<param name="pictDown">Picture to display when the button is pressed</param>
<param name="bLocked">Whether the button is locked</param>
<param name="prefix">Letter to underline as a hotkey prefix</param>
<param name="style">Visual styles setting</param>
<param name="mouseOver">Whether the mouse is over the header cell</param>
<param name="rightToLeft">Whether to draw as right-to-left</param>
<param name="appearance">Appearance settings of the header cell</param>
<param name="textRotationAngle">Text rotation angle</param>
<param name="zoomFactor">Numeric value for scaling the display of the header cells</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer.PaintBackground(System.Drawing.Graphics,System.Boolean@,System.Boolean,System.Boolean,System.Boolean,System.Drawing.Rectangle,System.Int32,System.Int32,FarPoint.Win.VisualStyles,System.Boolean,System.Drawing.Color)">
<summary>
Paints the background of the enhanced header cell.
</summary>
<param name="g">Graphics device interface for painting the header cell</param>
<param name="useXpStyles">Whether to paint visual styles (XP themes)</param>
<param name="toscreen">Whether to paint the header cell to the screen</param>
<param name="pressed">Whether to paint the header cell as pressed</param>
<param name="focus">Whether the header cell has focus</param>
<param name="r">Bounding rectangle</param>
<param name="dpx">Integer number of resolution (DPI) along the x-axis</param>
<param name="dpy">Integer number of resolution (DPI) along the y-axis</param>
<param name="style">Visual styles setting</param>
<param name="rightToLeft">Whether to draw as right-to-left</param>
<param name="backColor">Background color of the header cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer.PaintCellGridLine(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.Appearance)">
<summary>
Paints the grid lines for the cell
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X coordinate of the cell</param>
<param name="y">Y coordinate of the cell</param>
<param name="width">Width of the cell </param>
<param name="height">Height of the cell</param>
<param name="appearance">Appearance settings of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Gets the object data.
</summary>
<param name="info">SerializationInfo to populate with data</param>
<param name="context">Destination (see StreamingContext) for this serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer.ToString">
<summary>
Returns the name of the renderer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer.NormalBackgroundColor">
<summary>
Gets or sets the color of the normal background.
</summary>
<value>Color of the background of the cell</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer.SelectedBackgroundColor">
<summary>
Gets or sets the color of the selected background.
</summary>
<value>Color of the background when the cell is selected</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer.SelectedActiveBackgroundColor">
<summary>
Gets or sets the color of the selected active background.
</summary>
<value>Color of the background when the cell is active and selected</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer.ActiveBackgroundColor">
<summary>
Gets or sets the color of the active background.
</summary>
<value>Color of the background when the cell is active</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer.NormalGridLineColor">
<summary>
Gets or sets the color of the normal grid lines.
</summary>
<value>Color of the grid lines for the cells</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer.SelectedGridLineColor">
<summary>
Gets or sets the color of the selected grid lines.
</summary>
<value>Color of the grid lines when cells are selected</value>
</member>
<member name="T:FarPoint.Win.Spread.CellType.EnhancedCornerRenderer">
<summary>
Represents the painting of the corner cells with the look and feel of Excel 2007.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.CornerRenderer">
<summary>
Represents the painter of the corner cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.CornerRenderer.appearance">
<summary>
Sets the appearance.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CornerRenderer.#ctor">
<summary>
Creates a new painter of the corner cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CornerRenderer.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new painter of the corner cell from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CornerRenderer.ToHorizontalAlignment(FarPoint.Win.Spread.CellHorizontalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellHorizontalAlignment value
to the corresponding FarPoint.Win.HorizontalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellHorizontalAlignment value</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CornerRenderer.ToVerticalAlignment(FarPoint.Win.Spread.CellVerticalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellVerticalAlignment value
to the corresponding FarPoint.Win.VerticalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellVerticalAlignment</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CornerRenderer.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Gets the preferred (maximum needed) size of the cell for the renderer control.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Preferred or maximum needed size</param>
<param name="appearance">Appearance settings of the renderer control</param>
<param name="value">Object containing the name of the renderer control</param>
<param name="zoomFactor">Numeric value for zoom factor for scaling the display of the renderer control</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CornerRenderer.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the corner cell when not in edit mode to the specified graphics interface
with the specified appearance settings.
</summary>
<param name="g">Graphics device interface for painting the corner cell</param>
<param name="r">Location and size of a rectangular region for painting the corner cell</param>
<param name="appearance">Appearance settings of the corner cell</param>
<param name="value">Object containing the name of the renderer control of the corner cell</param>
<param name="isSelected">Whether the corner cell is selected</param>
<param name="isLocked">Whether the corner cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the display of the corner cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CornerRenderer.PaintCorner(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.HorizontalAlignment,FarPoint.Win.VerticalAlignment,System.String,FarPoint.Win.TextOrientation,System.Boolean,System.Drawing.Text.HotkeyPrefix,System.Drawing.StringTrimming,FarPoint.Win.VisualStyles,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the corner cell.
</summary>
<param name="g">Graphics device interface for painting the corner cell</param>
<param name="r">Location and size of a rectangular region for painting the corner cell</param>
<param name="backColor">Background color of the corner cell</param>
<param name="foreColor">Foreground color of the corner cell</param>
<param name="f">Font</param>
<param name="horizontalAlignment">Horizontal alignment of corner cell content</param>
<param name="verticalAlignment">Vertical alignment of the corner cell content</param>
<param name="s">String to paint</param>
<param name="textOrientation">Orientation of the text</param>
<param name="wordWrap">Whether wrap words to multiple lines</param>
<param name="hotkeyPrefix">Whether to show hotkey effect</param>
<param name="stringTrim">String trimming mode</param>
<param name="visualStyles">Visual styles</param>
<param name="mouseOver">Whether the mouse is over the corner cell</param>
<param name="rightToLeft">Whether to display right to left</param>
<param name="zoomFactor">Numeric value for scaling the display of the corner cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CornerRenderer.CanOverflow">
<summary>
Determines whether this cell can overflow into an adjacent cell.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CornerRenderer.CanBeOverflown">
<summary>
Determines whether adjacent cells can overflow into this cell.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CornerRenderer.PaintCell(FarPoint.PDF.PdfGraphics,System.Drawing.RectangleF,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints (prints) to PDF the cell.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Object containing the name of the renderer control of the cell</param>
<param name="isSelected">Whether the cell is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the painting of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CornerRenderer.GetTextRect(FarPoint.Win.Spread.Appearance,System.Drawing.RectangleF,System.Single)">
<summary>
Calculate the rectangle for drawing text
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="r">Container rectangle of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CornerRenderer.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info"><see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data</param>
<param name="context">Destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CornerRenderer.ToString">
<summary>
Returns the name of the corner renderer.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CornerRenderer.Serialize(System.Xml.XmlTextWriter)">
<summary>
Serialize.
</summary>
<param name="w"></param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.CornerRenderer.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Deserialize.
</summary>
<param name="r"></param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedCornerRenderer.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Color)">
<summary>
Creates a new painter of corner cells with more up to date look.
</summary>
<param name="activeBackgroundColor">Color of the active background</param>
<param name="gridLineColor">Color of the grid line</param>
<param name="normalBackgroundColor">Color of the normal background</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedCornerRenderer.#ctor">
<summary>
Creates a new painter for the corner cell with the default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedCornerRenderer.Finalize">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedCornerRenderer.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new painter of the corner cell from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedCornerRenderer.PaintCorner(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.HorizontalAlignment,FarPoint.Win.VerticalAlignment,System.String,FarPoint.Win.TextOrientation,System.Boolean,System.Drawing.Text.HotkeyPrefix,System.Drawing.StringTrimming,FarPoint.Win.VisualStyles,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the sheet corner.
</summary>
<param name="g">Graphics device interface for painting the sheet corner</param>
<param name="r">Location and size of a rectangular region for painting the sheet corner</param>
<param name="backColor">Background color of the cell</param>
<param name="foreColor">Text color of the cell</param>
<param name="f">Font of the text</param>
<param name="horizontalAlignment">Horizontal alignment of cell content</param>
<param name="verticalAlignment">Vertical alignment of the cell content</param>
<param name="s">String to draw</param>
<param name="textOrientation">Orientation of the text</param>
<param name="wordWrap">Whether to wrap words to multiple lines</param>
<param name="hotkeyPrefix">Whether to show hotkey effect</param>
<param name="stringTrim">String trimming mode</param>
<param name="visualStyles">Visual styles setting</param>
<param name="mouseOver">Whether the mouse is over the cell</param>
<param name="rightToLeft">Right to left</param>
<param name="zoomFactor">Numeric value for scaling the display of the sheet corner</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedCornerRenderer.DrawTriangle(System.Drawing.Graphics,System.Drawing.Rectangle,System.Single)">
<summary>
Draws the triangle in the corner of the cell.
</summary>
<param name="g">Graphics device interface for drawing the rectangle</param>
<param name="rcTriangle">Bounded triangle</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedCornerRenderer.PaintCellGridLine(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.Appearance)">
<summary>
Paints the grid lines for the cell
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X coordinate of the cell</param>
<param name="y">Y coordinate of the cell</param>
<param name="width">Width of the cell </param>
<param name="height">Height of the cell</param>
<param name="appearance">Appearance settings of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedCornerRenderer.Dispose(System.Boolean)">
<summary>
Cleans up any resources being used.
</summary>
<param name="disposing">
Whether the object is disposed through the IDisposable interface (true)
or finalized by the garbage collector (false)
</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedCornerRenderer.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedCornerRenderer.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Gets the object data.
</summary>
<param name="info">SerializationInfo to populate with data</param>
<param name="context">Destination (see StreamingContext) for this serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EnhancedCornerRenderer.ToString">
<summary>
Returns the name of the renderer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EnhancedCornerRenderer.NormalBackgroundColor">
<summary>
Gets or sets the color of the normal background.
</summary>
<value>Color of the background for the cell</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EnhancedCornerRenderer.ActiveBackgroundColor">
<summary>
Gets or sets the color of the active background.
</summary>
<value>Color of the background when the cell is active</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EnhancedCornerRenderer.GridLineColor">
<summary>
Gets or sets the color of the grid line.
</summary>
<value>Color of the grid lines for the cells</value>
</member>
<member name="T:FarPoint.Win.Spread.CellType.RowHeaderRenderer">
<summary>
Represents the painter of the row header.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RowHeaderRenderer.#ctor">
<summary>
Creates a new painter of the row header with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RowHeaderRenderer.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new painter of the row header from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RowHeaderRenderer.PaintHeader(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.HorizontalAlignment,FarPoint.Win.VerticalAlignment,System.Boolean,System.Boolean,System.String,System.String,FarPoint.Win.ButtonTextAlign,FarPoint.Win.TextOrientation,System.Boolean,System.Int32,System.Drawing.Color,System.Drawing.Color,System.Drawing.Image,System.Drawing.Image,System.Boolean,System.Drawing.Text.HotkeyPrefix,FarPoint.Win.VisualStyles,System.Boolean,System.Boolean)">
<summary>
Paints the row header cell.
</summary>
<param name="g">Graphics device interface for painting the header cell</param>
<param name="r">Location and size of a rectangular region bounding the header cell</param>
<param name="rectTextIn">Rectangular region for the text</param>
<param name="backColor">Background color for the header cell</param>
<param name="foreColor">Text color for the header cell</param>
<param name="font">Font for the header cell</param>
<param name="halign">Horizontal alignment of text in the header cell</param>
<param name="valign">Vertical alignment of text in the header cell</param>
<param name="pressed">Whether the header cell appears as a pressed button</param>
<param name="focus">Whether the header cell has the focus (is active)</param>
<param name="text">Text string to appear in the header cell</param>
<param name="textDown">Text string to appear in the header cell if it is pressed (as a button)</param>
<param name="nAlign">Alignment of button in the column header cell</param>
<param name="textOrientation">Orientation of the text with respect to the button picture in the header</param>
<param name="wordWrap">Whether the text wraps to multiple lines if needed</param>
<param name="shadowSize">Thickness in pixels of the shadow</param>
<param name="darkColor">Color for the dark line part of the shadow</param>
<param name="lightColor">Color for the light line part of the shadow</param>
<param name="pictUp">Picture to display when the button is not pressed</param>
<param name="pictDown">Picture to display when the button is pressed</param>
<param name="bLocked">Whether the header cell is locked</param>
<param name="prefix">Letter to underline as a hotkey prefix</param>
<param name="style">Visual style (XP theme)</param>
<param name="mouseOver">Whether mouse over</param>
<param name="rightToLeft">Whether to draw the header cell with a right-to-left orientation</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RowHeaderRenderer.PaintHeader(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.HorizontalAlignment,FarPoint.Win.VerticalAlignment,System.Boolean,System.Boolean,System.String,System.String,FarPoint.Win.ButtonTextAlign,FarPoint.Win.TextOrientation,System.Boolean,System.Int32,System.Drawing.Color,System.Drawing.Color,System.Drawing.Image,System.Drawing.Image,System.Boolean,System.Drawing.Text.HotkeyPrefix,FarPoint.Win.VisualStyles,System.Boolean,System.Boolean,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Paints the row header cell.
</summary>
<param name="g">Graphics device interface for painting the header cell</param>
<param name="r">Location and size of a rectangular region bounding the header cell</param>
<param name="rectTextIn">Rectangular region for the text</param>
<param name="backColor">Background color for the header cell</param>
<param name="foreColor">Text color for the header cell</param>
<param name="font">Font for the header cell</param>
<param name="halign">Horizontal alignment of text in the header cell</param>
<param name="valign">Vertical alignment of text in the header cell</param>
<param name="pressed">Whether the header cell appears as a pressed button</param>
<param name="focus">Whether the header cell has the focus (is active)</param>
<param name="text">Text string to appear in the header cell</param>
<param name="textDown">Text string to appear in the header cell if it is pressed (as a button)</param>
<param name="nAlign">Alignment of button in the column header cell</param>
<param name="textOrientation">Orientation of the text with respect to the button picture in the header</param>
<param name="wordWrap">Whether the text wraps to multiple lines if needed</param>
<param name="shadowSize">Thickness in pixels of the shadow</param>
<param name="darkColor">Color for the dark line part of the shadow</param>
<param name="lightColor">Color for the light line part of the shadow</param>
<param name="pictUp">Picture to display when the button is not pressed</param>
<param name="pictDown">Picture to display when the button is pressed</param>
<param name="bLocked">Whether the header cell is locked</param>
<param name="prefix">Letter to underline as a hotkey prefix</param>
<param name="style">Visual style (XP theme)</param>
<param name="mouseOver">Whether mouse over</param>
<param name="rightToLeft">Whether to draw the header cell with a right-to-left orientation</param>
<param name="appearance">Appearance settings of the header cells</param>
<param name="zoomFactor">Numeric value for scaling the display of the header cells</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RowHeaderRenderer.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the column header cell when not in edit mode to the specified graphics interface
with the specified appearance settings.
</summary>
<param name="g">Graphics device interface for painting the column header cell</param>
<param name="r">Location and size of a rectangular region for painting the column header cell</param>
<param name="appearance">Appearance settings of the column header cell</param>
<param name="value">Object containing the name of the renderer control of the column header cell</param>
<param name="isSelected">Whether the column header cell is selected</param>
<param name="isLocked">Whether the column header cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the display of the column header cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RowHeaderRenderer.GetTextRect(FarPoint.Win.Spread.Appearance,System.Drawing.RectangleF,System.Single)">
<summary>
Calculate the rectangle for drawing text
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="r">Container rectangle of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RowHeaderRenderer.ToString">
<summary>
Returns the name of the renderer.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.FpList">
<summary>
Represents a list box control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.FpList.#ctor">
<summary>
Creates a new list box control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.FpList.OnGotFocus(System.EventArgs)">
<summary>
Raises the GotFocus event.
</summary>
<param name="e">An <see cref="T:System.EventArgs"/> for contains event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.FpList.OnAfterFocus(System.EventArgs)">
<summary>
Raises the AfterFocus event
</summary>
<param name="e">An <see cref="T:System.EventArgs"/> for contains event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.FpList.FpList_DrawItem(System.Object,System.Windows.Forms.DrawItemEventArgs)">
<summary>
Draws a list box item.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.FpList.DrawListBoxItem(System.String,System.Windows.Forms.ImageList,System.Windows.Forms.DrawItemEventArgs,System.Boolean)">
<summary>
Draws one of the list box items.
</summary>
<param name="strText">Text of the item in the list box</param>
<param name="images">List of images for the list box</param>
<param name="e">DrawItem event containing the item</param>
<param name="rightToLeft">Whether to draw the object with a right to left orientation</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.FpList.DrawListBoxItem(System.String,System.Windows.Forms.ImageList,System.Windows.Forms.DrawItemEventArgs,System.Boolean,System.Windows.Forms.SelectionMode,System.Drawing.Color,System.Drawing.Color)">
<summary>
Draws one of the list box items.
</summary>
<param name="strText">Text of the item in the list box</param>
<param name="images">List of images for the list box</param>
<param name="e">DrawItem event containing the item</param>
<param name="rightToLeft">Whether to draw the object with a right to left orientation</param>
<param name="selMode">SelectionMode of the ListBox</param>
<param name="itemBackColor">The back color for item</param>
<param name="itemForeColor">The fore color for item</param>
</member>
<member name="E:FarPoint.Win.Spread.CellType.FpList.AfterFocus">
<summary>
Occurs after the control got focus.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.FpList.ItemData">
<summary>
Gets or sets the item data list of a combo box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.FpList.ImageList">
<summary>
Gets or sets the image list of a combo box.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.ListBoxCellType">
<summary>
Represents a list box cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.Clone">
<summary>
Creates and returns a list box cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.#ctor">
<summary>
Creates a new list box cell with default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.#ctor(FarPoint.Win.Spread.CellType.ListBoxCellType)">
<summary>
Creates a new copy from the specified cell type. ("Copy constructor")
</summary>
<param name="g">Specified list box cell type from which to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new list box cell from serialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the cell type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.ToHorizontalAlignment(FarPoint.Win.Spread.CellHorizontalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellHorizontalAlignment value to the corresponding FarPoint.Win.HorizontalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellHorizontalAlignment value</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.ToVerticalAlignment(FarPoint.Win.Spread.CellVerticalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellVerticalAlignment value to the corresponding FarPoint.Win.VerticalAlignment value.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellVerticalAlignment</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.Format(System.Object)">
<summary>
Formats the specified data into the format of the cell type and returns it as a string.
</summary>
<param name="o">Object in the data model to format</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.SubFormat(System.Object)">
<summary>
Formats the specified data into the format of the cell type and returns it as a string. This is called by the Format function.
This is a sub function of the Format function for code reuse purpose.
</summary>
<param name="o">Object in the data model to format</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.Parse(System.String)">
<summary>
Parses the specified string to the data type of the cell type and returns it as an object.
</summary>
<param name="s">Specified string from the cell on the sheet to parse</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.SubParse(System.String)">
<summary>
Parses the specified string to the data type of the cell type and returns it as an object. This function is called by the Parse
function. This acts as a sub function of the Parse function for code reuse purpose.
</summary>
<param name="s">Specified string from the cell on the sheet to parse</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.GetEditorValue">
<summary>
Gets the unformatted value in the editor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.SetEditorValue(System.Object)">
<summary>
Sets the value of the editor control.
</summary>
<param name="value">Value of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.SubSetEditorValue(System.Object)">
<summary>
Sets the value of the editor control. This function is called by the SetEditorValue. This function is a sub function of
the SetEditorValue function, and it is created for code reuse purpose.
</summary>
<param name="value">Value of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.StartEditing(System.EventArgs,System.Boolean,System.Boolean)">
<summary>
Starts the editing of a cell.
</summary>
<param name="e">Event</param>
<param name="selectAll">Whether to select all </param>
<param name="autoClipboard">Whether to allow shortcut keys for Clipboard actions </param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.CancelEditing">
<summary>
Cancels the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.StopEditing">
<summary>
Stops the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.IsReservedLocation(System.Drawing.Graphics,System.Int32,System.Int32,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Determines whether the specified cursor location has special meaning to the editor control.
</summary>
<param name="g">Graphics device interface for drawing editor control </param>
<param name="x">X-coordinate of pointer location </param>
<param name="y">Y-coordinate of pointer location </param>
<param name="rc">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="value">Object containing the name of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.GetReservedCursor(System.Object)">
<summary>
Gets the cursor reserved for this cell type.
</summary>
<param name="o">Object that is the reserved cursor (pointer)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.DoPaint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.HorizontalAlignment,FarPoint.Win.VerticalAlignment,System.Collections.ArrayList,System.Array,System.Boolean,System.Windows.Forms.ImageList,System.Int32,System.Boolean,System.Windows.Forms.SelectionMode)">
<summary>
Paints the list box cell.
</summary>
<param name="g">Graphics device interface for painting the column header cell</param>
<param name="r">Rectangle bounding the column header cell</param>
<param name="backColor">Background color for the column header cell</param>
<param name="foreColor">Text color for the column header cell</param>
<param name="font">Font for the column header cell</param>
<param name="halign">Horizontal alignment of text in the column header cell</param>
<param name="valign">Vertical alignment of text in the column header cell</param>
<param name="radioList">List of items</param>
<param name="selectedItems">Selected items from the list</param>
<param name="bLocked">Whether the list is locked</param>
<param name="imgList">List of pictures that correspond with the items</param>
<param name="itemHeight">Height in pixels of each item</param>
<param name="rightToLeft">Whether to draw the object with a right-to-left orientation</param>
<param name="selMode">The selection mode indicates how the specified <see cref="T:FarPoint.Win.Spread.CellType.ListBoxCellType"/> control is selected.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.DoPaint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.HorizontalAlignment,FarPoint.Win.VerticalAlignment,System.Collections.ArrayList,System.Int32,System.Boolean,System.Windows.Forms.ImageList,System.Int32,System.Boolean)">
<summary>
Paints the list box cell.
</summary>
<param name="g">Graphics device interface for painting the column header cell</param>
<param name="r">Rectangle bounding the column header cell</param>
<param name="backColor">Background color for the column header cell</param>
<param name="foreColor">Text color for the column header cell</param>
<param name="font">Font for the column header cell</param>
<param name="halign">Horizontal alignment of text in the column header cell</param>
<param name="valign">Vertical alignment of text in the column header cell</param>
<param name="radioList">List of items</param>
<param name="selectedItem">Selected item from the list</param>
<param name="bLocked">Whether the list is locked</param>
<param name="imgList">List of pictures that correspond with the items</param>
<param name="itemHeight">Height in pixels of each item</param>
<param name="rightToLeft">Whether to draw the object with a right-to-left orientation</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.DoPaint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.HorizontalAlignment,FarPoint.Win.VerticalAlignment,System.Collections.ArrayList,System.Int32,System.Boolean,System.Windows.Forms.ImageList,System.Int32,System.Boolean,System.Windows.Forms.SelectionMode)">
<summary>
Paints the list box cell.
</summary>
<param name="g">Graphics device interface for painting the column header cell</param>
<param name="r">Rectangle bounding the column header cell</param>
<param name="backColor">Background color for the column header cell</param>
<param name="foreColor">Text color for the column header cell</param>
<param name="font">Font for the column header cell</param>
<param name="halign">Horizontal alignment of text in the column header cell</param>
<param name="valign">Vertical alignment of text in the column header cell</param>
<param name="radioList">List of items</param>
<param name="selectedItem">Selected item from the list</param>
<param name="bLocked">Whether the list is locked</param>
<param name="imgList">List of pictures that correspond with the items</param>
<param name="itemHeight">Height in pixels of each item</param>
<param name="rightToLeft">Whether to draw the object with a right-to-left orientation</param>
<param name="selMode">SelectionMode of ListBox</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the list box cell when not in edit mode to the specified graphics interface
with the specified appearance settings.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Object containing the name of the renderer control of the cell</param>
<param name="isSelected">Whether the cell is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.GetSelectedItemIndex(System.Object)">
<summary>
This function is called by the PaintCell method
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Gets the preferred (maximum needed) size of the cell for the renderer control.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Preferred or maximum needed size</param>
<param name="appearance">Appearance settings</param>
<param name="value">Object containing the name of the renderer control</param>
<param name="zoomFactor">Numeric value for scaling the display of the renderer control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.InitializeEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initialize the editor control.
</summary>
<param name="control">Control</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ListBoxCellType.GetEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ListBoxCellType.ImageList">
<summary>
Gets or sets the list of images for the list box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ListBoxCellType.SelectionMode">
<summary>
Gets or sets the selection mode for the list.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ListBoxCellType.ItemHeight">
<summary>
Gets or sets the height of each item in the list.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ListBoxCellType.ItemData">
<summary>
Gets or sets the corresponding data for the items in the list box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ListBoxCellType.EditorValue">
<summary>
Gets or sets what value is written to the underlying data model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ListBoxCellType.Items">
<summary>
Gets or sets the list of items for the list box.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.PercentCellType">
<summary>
Represents a numeric cell formatted as a percent value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.Clone">
<summary>
Creates and returns a percent cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.#ctor">
<summary>
Creates a new percent cell with default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.#ctor(FarPoint.Win.Spread.CellType.PercentCellType)">
<summary>
Creates a new copy from the specified cell type. ("Copy constructor")
</summary>
<param name="g">Specified percent cell type from which to copy</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new percent cell from serialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the cell type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.ApplyNegativeFormat">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.SetCalculatorText(System.String,System.String)">
<summary>
Sets the text for the pop-up calculator.
</summary>
<param name="okText">Text for the OK button</param>
<param name="cancelText">Text for the Cancel button</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.GetNegativeFormatValue">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.ApplyPositiveFormat">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.GetPositiveFormatValue">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.GetPercentSignString">
<summary>
Gets the percent symbol string for formatting percent values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.GetNewFormat">
<summary>
Gets the new format string for formatting percent values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.SetNewFormat">
<summary>
Sets the new format (returned by GetNewFormat) into the internal cell formatter.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.GetDecimalPlacesValue">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.GetDecimalSeparatorString">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.GetSeparatorCharacter">
<summary>
Gets the separator character string for formatting percent values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.Parse(System.String)">
<summary>
Parses the specified string to the data type of the cell type and returns it as an object.
</summary>
<param name="s">Specified string from the cell on the sheet to parse</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.Format(System.Object)">
<summary>
Formats the specified data into the format of the cell type and returns it as a string.
</summary>
<param name="obj">Object in the data model with cell data to format</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Retrieves the size of a rectangular area into which a control can be fitted.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Preferred or maximum needed size</param>
<param name="appearance">Appearance settings of the renderer control</param>
<param name="value">Object containing the name of the renderer control</param>
<param name="zoomFactor">Numeric value for scaling the display of the renderer control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.GetEditorValue">
<summary>
Gets the unformatted value in the editor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.SetEditorValue(System.Object)">
<summary>
Sets the value of the editor control.
</summary>
<param name="value">Value of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.IsValid(System.Object)">
<summary>
Determines whether the specified value can be converted to a double-precision,
floating point value and is between the minimum and maximum allowed values.
</summary>
<param name="value">Value to validate (as object)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.GetEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.PercentCellType.InitializeEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initialize the editor control.
</summary>
<param name="control">Control</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.PercentCellType.NegativeFormat">
<summary>
Gets or sets the format for displaying a negative value.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.PercentCellType.PositiveFormat">
<summary>
Gets or sets the format for displaying a positive value.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.PercentCellType.PercentSign">
<summary>
Gets or sets the character to display as the percent sign.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.PercentCellType.LeadingZero">
<summary>
Gets or sets whether leading zeros are displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.PercentCellType.SpinIntegerIncrement">
<summary>
Gets or sets the amount by which the value increments when using the
spin buttons and the cursor is in the integer portion.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.PercentCellType.SpinDecimalIncrement">
<summary>
Gets or sets the amount by which the value increments when using the
spin buttons and the cursor is in the decimal portion.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.PercentCellType.SpinButton">
<summary>
Gets or sets whether a spin button is displayed when editing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.PercentCellType.SpinWrap">
<summary>
Gets or sets whether the value wraps when the minimum or maximum is reached.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.PercentCellType.DecimalSeparator">
<summary>
Gets or sets the decimal character.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.PercentCellType.DecimalPlaces">
<summary>
Gets or sets the number of decimal places.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.PercentCellType.NegativeRed">
<summary>
Gets or sets whether negative numeric values are displayed in red.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.PercentCellType.FixedPoint">
<summary>
Gets or sets whether to display zeros as placeholders in the decimal portion
of the number for a fixed-point numeric display.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.PercentCellType.MaximumValue">
<summary>
Gets or sets the maximum value allowed for user entry.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified value exceeds the expected limit.
</exception>
</member>
<member name="P:FarPoint.Win.Spread.CellType.PercentCellType.MinimumValue">
<summary>
Gets or sets the minimum value allowed for user entry.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified value is beyond accepted limits
</exception>
</member>
<member name="P:FarPoint.Win.Spread.CellType.PercentCellType.Separator">
<summary>
Gets or sets the string used to separate thousands in a numeric value.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.PercentCellType.ShowSeparator">
<summary>
Gets or sets whether to display the thousands separator string.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.RegularExpressionCellType">
<summary>
Represents a regular expression cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RegularExpressionCellType.Clone">
<summary>
Creates and returns a regular expression cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RegularExpressionCellType.#ctor">
<summary>
Creates a new regular expression cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RegularExpressionCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new regular expression cell from serialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RegularExpressionCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the cell type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RegularExpressionCellType.Format(System.Object)">
<summary>
Formats the specified data into the format of the cell type and returns it as a string.
</summary>
<param name="obj">Object in the data model with cell data to format</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RegularExpressionCellType.Parse(System.String)">
<summary>
Parses the specified string to the data type of the cell type and returns it as an object.
</summary>
<param name="s">Specified string from the cell on the sheet to parse</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RegularExpressionCellType.IsValid(System.Object)">
<summary>
Determines whether the specified value is valid.
</summary>
<param name="value">Value to validate (as object)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RegularExpressionCellType.SetEditorValue(System.Object)">
<summary>
Sets the value of the editor control.
</summary>
<param name="value">Value of editor control (as object)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RegularExpressionCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RegularExpressionCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RegularExpressionCellType.InitializeEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initialize the editor control.
</summary>
<param name="control">Control</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RegularExpressionCellType.GetEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RegularExpressionCellType.RegularExpression">
<summary>
Gets or sets the regular expression string.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.ImageCellType">
<summary>
Represents an image cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.#ctor">
<summary>
Creates a new image cell with default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.#ctor(FarPoint.Win.RenderStyle)">
<summary>
Creates a new image cell with the specified render style.
</summary>
<param name="style">RenderStyle</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.#ctor(FarPoint.Win.RenderStyle,System.Drawing.Color)">
<summary>
Creates a new image cell with the specified render style and transparency color.
</summary>
<param name="style">Render style</param>
<param name="transparencyColor">Color to set as transparent</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.#ctor(FarPoint.Win.RenderStyle,System.Drawing.Color,System.Int32)">
<summary>
Creates a new image cell with the specified render style, transparency color and tolerance.
</summary>
<param name="style">Render style</param>
<param name="transparencyColor">Color to set as transparent</param>
<param name="transparencyTolerance">Amount of tolerance of transparency from the color set as transparent</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new image cell from serialization.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the image cell.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.IsPropertySupported(System.String)">
<summary>
Gets whether the cell type supports the named property.
</summary>
<param name="propertyName">Name of the property</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.GetImage(System.Object)">
<summary>
Gets an Image object from its base-64 string encoding, byte array, or stream serialization.
</summary>
<param name="o">Object containing base-64 string encoding, byte array, etc. from which to get image</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.GetBytes(System.Drawing.Image)">
<summary>
Gets the byte array serialization for the image.
</summary>
<param name="image">Image</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.GetBase64String(System.Drawing.Image)">
<summary>
Gets the base-64 string encoding for the byte array serialization of the image.
</summary>
<param name="image">Image</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the control used by the image cell (returns null since this cell type does not support editing).
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.GetEditorValue">
<summary>
Gets the unformatted value in the editor control (does nothing since this cell type does not support editing).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.SetEditorValue(System.Object)">
<summary>
Sets the value of the editor control (does nothing since this cell type does not support editing).
</summary>
<param name="value">Value of editor control (as object)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.IsValid(System.Object)">
<summary>
Determines whether the specified value is valid (Image).
</summary>
<param name="value">Value to validate (as object)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the image cell when not in edit mode to the specified graphics interface
with the specified appearance settings.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="r">Location and size of a rectangular region of the image cell</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Object containing the name of the renderer control of the image cell</param>
<param name="isSelected">Whether the cell is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Gets the preferred (maximum needed) size of the image cell for the renderer control.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Preferred or maximum needed size</param>
<param name="appearance">Appearance settings of the image cell</param>
<param name="value">Object containing the name of the renderer control</param>
<param name="zoomFactor">Numeric value for scaling the display of the renderer control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.Format(System.Object)">
<summary>
Formats the specified data into the format of the cell type, and since this
cell type does not support formatting, it does nothing.
</summary>
<param name="obj">Object in the data model with cell data to format</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.Parse(System.String)">
<summary>
Parses the specified string to the data type of the cell type (does nothing since this cell type does not support parsing).
</summary>
<param name="s">Specified string from the cell on the sheet to parse</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.CanOverflow">
<summary>
Determines whether a cell can overflow its data into an adjacent cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.CanBeOverflown">
<summary>
Determines whether data from another cell can overflow into this cell
(whether this cell can be overflowed into).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.ImageCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ImageCellType.Style">
<summary>
Gets or sets the render style of the image.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ImageCellType.TransparencyColor">
<summary>
Gets or sets the transparency color in the image.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.ImageCellType.TransparencyTolerance">
<summary>
Gets or sets the transparency tolerance in the image.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCodeDisplayMode">
<summary>
Specifies the display mode of the barcode.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCodeDisplayMode.Image">
<summary>
Displays the image of the barcode
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCodeDisplayMode.Text">
<summary>
Displays the value of the barcode in plain text
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.BarCodeCellType">
<summary>
Represents a barcode cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCodeCellType.barcode">
<summary>
Represents the barcode data.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCodeCellType.autoStretch">
<summary>
Indicates whether barcode resize itself when its cell's size change
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCodeCellType.needToRestoreSize">
<summary>
Indicates if previous user set BarSize value need to be restored when changing autoStretch
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCodeCellType.displayMode">
<summary>
Indicates whether to display the image of the barcode or just display it's value in text
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.BarCodeCellType.editBox">
<summary>
Stores the editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.#ctor">
<summary>
Creates a new barcode cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new barcode cell for deserialization.
</summary>
<param name="info"></param>
<param name="context"></param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.CanOverflow">
<summary>
Determines whether a cell can overflow its data into an adjacent cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.CanBeOverflown">
<summary>
Determines whether data from another cell can overflow into this cell
(whether this cell can be overflowed into).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.GetPreferredSize(System.Windows.Forms.Control)">
<summary>
Gets the preferred (maximum needed) size of the cell for the editor control.
</summary>
<param name="editor">Name of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.GetReservedCursor(System.Object)">
<summary>
Gets the cursor reserved for this cell type.
</summary>
<param name="o">Object that is the reserved cursor (pointer)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.IsReservedLocation(System.Drawing.Graphics,System.Int32,System.Int32,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Determines whether the specified cursor location has special meaning to the editor control.
</summary>
<param name="g">Graphics device interface for painting the editor control</param>
<param name="x">X-coordinate of pointer location</param>
<param name="y">Y-coordinate of pointer location</param>
<param name="rc">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="value">Object containing the name of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.CancelEditing">
<summary>
Cancels the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.StopEditing">
<summary>
Stops the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.IsReservedKey(System.Windows.Forms.KeyEventArgs)">
<summary>
Determines whether the specified key has special meaning to the editor control.
</summary>
<param name="e">
Key the user pressed and whether any modifier keys (CTRL, ALT, and SHIFT)
are pressed at the same time
</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.ShowSubEditor">
<summary>
Shows the subeditor control associated with the cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.IsValid(System.Object)">
<summary>
Determines whether the specified value is valid.
</summary>
<param name="value">Value to validate (as object)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.StartEditing(System.EventArgs,System.Boolean,System.Boolean)">
<summary>
Starts the editing of a cell.
</summary>
<param name="e">Event</param>
<param name="selectAll">Whether to select all</param>
<param name="autoClipboard">Whether to allow shortcut keys for Clipboard actions</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Returns the barcode editor control (BarCodeValueEditor).
</summary>
<param name="appearance">Appearance settings of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.GetEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.InitializeEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initializes the editor control.
</summary>
<param name="control">Editor control to initialize</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.GetEditorValue">
<summary>
Returns the text entered by the user in the editor control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.SetEditorValue(System.Object)">
<summary>
Sets the value to the editor when it appears.
</summary>
<param name="value">Value object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Creates an image of the barcode and draws it inside the cell.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="r">Location and size of a rectangular region</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Object containing the name of the renderer control</param>
<param name="isSelected">Whether the cell is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Determines the default fixed size of the barcode in pixels.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Size of the barcode</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Value to display</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.Format(System.Object)">
<summary>
No formatting needed
</summary>
<param name="obj"></param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.Parse(System.String)">
<summary>
No formatting needed
</summary>
<param name="s"></param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info"><see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data</param>
<param name="context">Destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.Clone">
<summary>
Clones this cell type object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.CreateMetafile(System.Object)">
<summary>
Creates the image metafile from the barcode.
</summary>
<param name="value">The new value of the barcode</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.CreateMetafile(System.Int32,System.Object)">
<summary>
Creates the image metafile from the barcode with the specified resolution (in DPI).
</summary>
<param name="dpi">Resolution in DPI (dots-per-inch)</param>
<param name="value">The new value of the barcode</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.CreateMetafile(System.Int32,System.Int32,System.Object)">
<summary>
Creates the image metafile from the barcode with the specified resolution (in DPI for X and Y).
</summary>
<param name="dpiX">X-axis resolution in DPI (dots-per-inch)</param>
<param name="dpiY">Y-axis resolution in DPI (dots-per-inch)</param>
<param name="value">The new value of the barcode</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.CreateBitmap(System.Object)">
<summary>
Creates the bitmap image of the barcode.
</summary>
<param name="value">The new value of the barcode</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.CreateBitmap(System.Int32,System.Object)">
<summary>
Creates the bitmap image of the barcode.
</summary>
<param name="dpi">Resolution in DPI (dots-per-inch)</param>
<param name="value">The new value of the barcode</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.CreateBitmap(System.Int32,System.Int32,System.Object)">
<summary>
Creates the bitmap image of the barcode.
</summary>
<param name="dpiX">X-axis resolution in DPI (dots-per-inch)</param>
<param name="dpiY">Y-axis resolution in DPI (dots-per-inch)</param>
<param name="value">The new value of the barcode</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.BarCodeCellType.ResetBarCodeBase">
<summary>
Reset the barcode base so that new changes are applied
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCodeCellType.AcceptsCheckDigit">
<summary>
Gets or sets whether to accept the check digit in the input.
</summary>
<value><c>true</c> if check digit is accepted; <c>false</c> otherwise.</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCodeCellType.Type">
<summary>
Gets or sets the bar type in the barcode.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCodeCellType.FixedLength">
<summary>
Gets or sets the number of the fixed digits of the value of the barcode.
Only can be set if barcode type is PostNet,ITF,or Code39.
If bar type is PostNet, the value must be 5 or 10, or 12.
</summary>
<value>Number of the fixed digits of value of the barcode</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCodeCellType.Rotation">
<summary>
Gets or sets the rotation angle of the barcode.
</summary>
<value>Rotation angle setting</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCodeCellType.MessagePosition">
<summary>
Gets or sets the display position message associated with the barcode.
</summary>
<value>Position of the message</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCodeCellType.MessageValue">
<summary>
Gets or sets the message string.
</summary>
<value>Message string</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCodeCellType.Message">
<summary>
Gets or sets whether to show the message string with the barcode.
</summary>
<value>if message visible; </value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCodeCellType.DisplayCheckDigit">
<summary>
Gets or sets whether the check digit is visible.
</summary>
<value><c>true</c> if check digit is visible; <c>false</c> otherwise</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCodeCellType.Unit">
<summary>
Gets or sets the measurement unit of the barcode.
</summary>
<value>Unit of measure</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCodeCellType.AdjustSize">
<summary>
Gets or sets whether the barcode adjusts its size according to the BarSize property.
</summary>
<value><c>true</c> if true the barcode adjusts its size; <c>false</c> otherwise</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCodeCellType.BarCodePadding">
<summary>
Gets or sets the left and right padding of the barcode.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCodeCellType.BarSize">
<summary>
Gets or sets the height and width of the barcode.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCodeCellType.BarAdjust">
<summary>
Gets or sets the width of the adjust bar for fine tuning the placement.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCodeCellType.ModuleSize">
<summary>
Gets or sets the size of the barcode module.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCodeCellType.Resolution">
<summary>
Gets or sets the resolution (in dots-per-inch) of the output image of the barcode.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCodeCellType.MinimumHeight">
<summary>
Gets or sets the minimum height of entire barcode.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCodeCellType.AutoStretch">
<summary>
Gets or sets whether the barcode automatically resizes itself when the cell size changes.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCodeCellType.DisplayMode">
<summary>
Gets or sets how the barcode is displayed in the cell.
</summary>
<value>Display mode</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCodeCellType.BarCode">
<summary>
Gets the barcode.
</summary>
<value>Barcode object</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.BarCodeCellType.IsFormulaValue">
<summary>
Determines whether the editor contains a formula.
</summary>
<value></value>
</member>
<member name="T:FarPoint.Win.Spread.CellType.TextRotationSettingControl">
<summary>
Represents a form for setting the rotation angle of the text.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextRotationSettingControl.#ctor(System.Object,System.Windows.Forms.Design.IWindowsFormsEditorService)">
<summary>
Initializes a new instance of the <see cref="T:TextRotationSettingControl"/> class.
</summary>
<param name="value">Object with the control</param>
<param name="service">Service</param>
</member>
<member name="F:FarPoint.Win.Spread.CellType.TextRotationSettingControl.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextRotationSettingControl.Dispose(System.Boolean)">
<summary>
Cleans up any resources being used.
</summary>
<param name="disposing">true if managed resources should be disposed; otherwise, false</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextRotationSettingControl.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextRotationSettingControl.buttonOK_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the buttonOK control and returns the user selected value.
</summary>
<param name="sender">Source of the event</param>
<param name="e"><see cref="T:System.EventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextRotationSettingControl.buttonCancel_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the buttonCancel control and returns the cached value.
</summary>
<param name="sender">Source of the event</param>
<param name="e"><see cref="T:System.EventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextRotationSettingControl.clock1_ValueChanged(System.Object,System.EventArgs)">
<summary>
Handles the ValueChanged event of the clock1 control.
</summary>
<param name="sender">Source of the event</param>
<param name="e"><see cref="T:System.EventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextRotationSettingControl.numericUpDownDegree_ValueChanged(System.Object,System.EventArgs)">
<summary>
Handles the ValueChanged event of the numericUpDownDegree control.
</summary>
<param name="sender">Source of the event</param>
<param name="e"><see cref="T:System.EventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextRotationSettingControl.numericUpDownDegree_Validated(System.Object,System.EventArgs)">
<summary>
Handles the Validated event of the numericUpDownDegree control.
</summary>
<param name="sender">Source of the event</param>
<param name="e"><see cref="T:System.EventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.TextRotationSettingControl.numericUpDownDegree_TextChanged(System.Object,System.EventArgs)">
<summary>
Handles the TextChanged event of the numericUpDownDegree control.
</summary>
<param name="sender">Source of the event</param>
<param name="e"><see cref="T:System.EventArgs"/> instance containing the event data</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.TextRotationSettingControl.Value">
<summary>
Gets the value returned from the user control.
</summary>
<value>Object containing the value of the control</value>
</member>
<member name="T:FarPoint.Win.Spread.CellType.RotationAngle">
<summary>
Represents a displayed clock to set the text rotation angle.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RotationAngle.DegreeToCoordinate(System.Int32)">
<summary>
Converts a degree value to a coordinate location.
</summary>
<param name="degree">Degree value</param>
<returns>
Return a <see cref="T:FarPoint.Win.Spread.CellType.RotationAngle.Coordinate"/> indicates the coordinate location.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RotationAngle.#ctor">
<summary>
Creates a new clock (rotation angle) control.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.RotationAngle._minimumValue">
<value>
An <b>int</b> indicates the minimum value.
</value>
</member>
<member name="F:FarPoint.Win.Spread.CellType.RotationAngle._maximumValue">
<value>
An <b>int</b> indicates the maximum value.
</value>
</member>
<member name="F:FarPoint.Win.Spread.CellType.RotationAngle._value">
<value>
An <b>int</b> indicates the value.
</value>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RotationAngle.OnValueChanged(System.EventArgs)">
<summary>
Raises the ValueChanged event.
</summary>
<param name="e">
An <see cref="T:System.EventArgs"/> contains the event arguments.
</param>
</member>
<member name="F:FarPoint.Win.Spread.CellType.RotationAngle._counterclockwise">
<summary>
A <b>bool</b> indicates whether is counterclockwise direction.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.RotationAngle._tickColor">
<summary>
A <see cref="T:System.Drawing.Color"/> indicates the mark color.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.RotationAngle._selectedTickColor">
<summary>
A <see cref="T:System.Drawing.Color"/> indicates the selected mark color.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.RotationAngle._minimumScale">
<value>
An <b>int</b> indicates the minimum mark angle in degree
</value>
</member>
<member name="F:FarPoint.Win.Spread.CellType.RotationAngle._maximumScale">
<value>
An <b>int</b> indicates the maximum mark angle in degree
</value>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RotationAngle.CalculateAlignment">
<summary>
Gets the alignment by the marks.
</summary>
<returns><see cref="T:System.Drawing.ContentAlignment"/> that indicates the alignment</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RotationAngle.CalculateTickArc(System.Drawing.Rectangle,System.Drawing.Point@,System.Int32@)">
<summary>
Calculates the round of mark arc.
</summary>
<param name="bounds">
A <see cref="T:System.Drawing.Rectangle"/> indicates the bounds.
</param>
<param name="origin">
Retrieves the origin point of the mark arc.
</param>
<param name="radius">
Retrieves the radius of the mark arc.
</param>
</member>
<member name="F:FarPoint.Win.Spread.CellType.RotationAngle._marks">
<summary>
A <see cref="T:System.Collections.ArrayList"/> save the marks.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.RotationAngle._origin">
<summary>
A <see cref="T:System.Drawing.Point"/> save the origin position.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.RotationAngle._radius">
<summary>
An <b>int</b> save the radious.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RotationAngle.OnLayout(System.Windows.Forms.LayoutEventArgs)">
<summary>
Layouts the control.
</summary>
<param name="levent">
A <see cref="T:System.Windows.Forms.LayoutEventArgs"/> indicates the event arguments.
</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RotationAngle.OnPaint(System.Windows.Forms.PaintEventArgs)">
<summary>
Paints the control.
</summary>
<param name="e"><see cref="T:System.Windows.Forms.PaintEventArgs"/> contains the event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RotationAngle.OnParentEnabledChanged(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.EnabledChanged"></see> event when the <see cref="P:System.Windows.Forms.Control.Enabled"></see> property value of the control's container changes.
</summary>
<param name="e"><see cref="T:System.EventArgs"></see> that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RotationAngle.DrawTicks(System.Drawing.Graphics)">
<summary>
Draws the ticks.
</summary>
<param name="g">Graphics device interface for painting the marks</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RotationAngle.DrawHand(System.Drawing.Graphics)">
<summary>
Draws the pointer.
</summary>
<param name="g">Graphics device interface for painting the pointer</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RotationAngle.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Overridden, processes the mouse down event.
</summary>
<param name="e"><see cref="T:System.Windows.Forms.MouseEventArgs"/> indicates the event argument</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RotationAngle.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
Overridden, processes the mouse move event.
</summary>
<param name="e">
A <see cref="T:System.Windows.Forms.MouseEventArgs"/> indicates the event argument.
</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RotationAngle.MouseSelect(System.Drawing.Point)">
<summary>
Processses the mouse selection.
</summary>
<param name="mousePosition"><see cref="T:System.Drawing.Point"/> indicates the mouse position</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RotationAngle.MinimumValue">
<summary>
Gets or sets the minimum value.
</summary>
<value>
An <b>int</b> indicates the minimum value.
</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RotationAngle.MaximumValue">
<summary>
Gets or sets the maximum value.
</summary>
<value>
An <b>int</b> indicates the maximum value.
</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RotationAngle.Value">
<summary>
Gets or sets the value.
</summary>
<value>
An <b>int</b> indicates the value.
</value>
</member>
<member name="E:FarPoint.Win.Spread.CellType.RotationAngle.ValueChanged">
<summary>
Occurs when the value changes.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RotationAngle.Counterclockwise">
<summary>
Gets or sets whether the direction of the rotation is counterclockwise.
</summary>
<value>
A <b>bool</b> indicates whether is counterclockwise direction.
</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RotationAngle.TickColor">
<summary>
Gets or sets the tick color.
</summary>
<value>
A <see cref="T:System.Drawing.Color"/> indicates the tick color.
</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RotationAngle.SelectedTickColor">
<summary>
Gets or sets the selected tick color.
</summary>
<value>
A <see cref="T:System.Drawing.Color"/> indicates the selected tick color.
</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RotationAngle.Text">
<summary>
Gets or sets the text.
</summary>
<value>
A <b>string</b> indicates the text.
</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RotationAngle.MinimumScale">
<summary>
Gets or sets the minimum mark angle in degree.
</summary>
<value>
An <b>int</b> indicates the minimum mark angle in degree
</value>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RotationAngle.MaximumScale">
<summary>
Gets or sets the maximum mark angle in degree.
</summary>
<value>
An <b>int</b> indicates the maximum mark angle in degree
</value>
</member>
<member name="T:FarPoint.Win.Spread.CellType.RotationAngle.Coordinate">
<summary>
Specifies the location coordinate on a four-quadrant graph.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.RotationAngle.Coordinate.PositiveXAxis">
<summary>
Specifies the positive X-axis
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.RotationAngle.Coordinate.FirstQuadrant">
<summary>
Specifies the first quadrant
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.RotationAngle.Coordinate.PositiveYAxis">
<summary>
Specifies the positive Y-axis
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.RotationAngle.Coordinate.SecondQuadrant">
<summary>
Specifies the second quadrant
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.RotationAngle.Coordinate.NegativeXAxis">
<summary>
Specifies the negative X-axis
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.RotationAngle.Coordinate.ThirdQuadrant">
<summary>
Specifies the third quadrant
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.RotationAngle.Coordinate.NegativeYAxis">
<summary>
Specifies the negative Y-axis.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.RotationAngle.Coordinate.FourthQuadrant">
<summary>
Specifies the fourth quadrant
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.RotationAngle.Mark">
<summary>
Defines a class save the mark position and value.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.RotationAngle.Mark.Position">
<summary>
A <see cref="T:System.Drawing.Point"/> indicates the mark's position.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellType.RotationAngle.Mark.Value">
<summary>
A <b>int</b> indicates the value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RotationAngle.Mark.#ctor(System.Drawing.Point,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.CellType.RotationAngle.Mark"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RotationTypeEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Gets the editor style used by the <see cref="M:System.Drawing.Design.UITypeEditor.EditValue(System.IServiceProvider,System.Object)"></see> method.
</summary>
<param name="context"><see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that can be used to gain additional context information</param>
<returns>
A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle"></see> value that indicates the style of editor used by the <see cref="M:System.Drawing.Design.UITypeEditor.EditValue(System.IServiceProvider,System.Object)"></see> method. If the <see cref="T:System.Drawing.Design.UITypeEditor"></see> does not support this method, then <see cref="M:System.Drawing.Design.UITypeEditor.GetEditStyle"></see> will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RotationTypeEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
<summary>
Edits the specified object's value using the editor style indicated by the <see cref="M:System.Drawing.Design.UITypeEditor.GetEditStyle"></see> method.
</summary>
<param name="context"><see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that can be used to gain additional context information</param>
<param name="provider"><see cref="T:System.IServiceProvider"></see> that this editor can use to obtain services</param>
<param name="value">Object to edit</param>
<returns>
The new value of the object. If the value of the object has not changed, this should return the same object it was passed.
</returns>
</member>
<member name="T:FarPoint.Win.Spread.CellType.RichTextBoxWrapper">
<summary>
Represents a wrapper object for the rich text box for additional rich text support.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextBoxWrapper.#ctor">
<summary>
Creates a wrapper object for the rich text box.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextBoxWrapper.ConvertToTwips(System.Single,System.Int32)">
<summary>
Converts to twips (1/1440 inch, used by Win32 API calls).
</summary>
<param name="dpi">Dots per inch</param>
<param name="n">Value in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextBoxWrapper.ConvertToTwips(System.Single,System.Single)">
<summary>
Converts to twips (1/1440 inch, used by Win32 API calls).
</summary>
<param name="dpi">Dots per inch</param>
<param name="f">Value in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextBoxWrapper.SetSelectionFont(System.String)">
<summary>
Sets the font only for the selected part of the rich text box
without modifying the other properties like size or style.
</summary>
<param name="face">Name of the font for the selected part</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextBoxWrapper.SetSelectionSize(System.Single)">
<summary>
Sets the font size only for the selected part of the rich text box
without modifying the other properties like font or style.
</summary>
<param name="size">Point size for the selected part</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextBoxWrapper.SetSelectionBold(System.Boolean)">
<summary>
Sets the bold style only for the selected part of the rich text box
without modifying the other properties like font or size.
</summary>
<param name="bold">true to make selection bold; false to make it regular</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextBoxWrapper.SetSelectionItalic(System.Boolean)">
<summary>
Sets the italic style only for the selected part of the rich text box
without modifying the other properties like font or size.
</summary>
<param name="italic">true to make selection italics; false to make it regular</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextBoxWrapper.SetSelectionUnderlined(System.Boolean)">
<summary>
Sets the underlined style only for the selected part of the rich text box
without modifying the other properties like font or size
</summary>
<param name="underlined">true to underline selection; false to make it regular</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextBoxWrapper.SetSelectionStyle(System.UInt32,System.UInt32)">
<summary>
Sets the style only for the selected part of the rich text box
with the possibility to mask out some styles that are not to be modified.
</summary>
<param name="mask">Mask of selection to not modify</param>
<param name="effect">New values for the styles</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextBoxWrapper.Render(System.Drawing.Graphics,System.Drawing.Rectangle,System.Single)">
<summary>
Performs painting of contents to graphics with specified size.
</summary>
<param name="g">Graphics device interface for painting the contents</param>
<param name="r">Rectangle from which to render</param>
<param name="zoomFactor">A numeric number indicates how the control is scaled when painting</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextBoxWrapper.Render(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Performs painting of contents to graphics with specified size.
</summary>
<param name="g">Graphics device interface for painting the contents</param>
<param name="r">Rectangle from which to render</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextBoxWrapper.WndProc(System.Windows.Forms.Message@)">
<summary>
Internal use only.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.RichTextEditor">
<summary>
Represents the base control for the rich text cell type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.OnParentChanged(System.EventArgs)">
<summary>
Raises the ParentChanged event.
</summary>
<param name="e">An <see cref="T:System.EventArgs"/> contains event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.#ctor">
<summary>
Creates a new rich text editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.#ctor(System.Boolean)">
<summary>
Creates a new rich text editor with a required user interface.
</summary>
<param name="requiresUI"></param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.OnSubEditorClosed(System.EventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.CellType.RichTextEditor.SubEditorClosed"/> event.
</summary>
<param name="e">EventArgs object that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.OnGotFocus(System.EventArgs)">
<summary>
Raises the GotFocus event.
</summary>
<param name="e">An <see cref="T:System.EventArgs"/> for contains event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.OnAfterFocus(System.EventArgs)">
<summary>
Raises the AfterFocus event
</summary>
<param name="e">An <see cref="T:System.EventArgs"/> for contains event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.OnVisibleChanged(System.EventArgs)">
<summary>
Raises the VisibleChanged event.
</summary>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.OnEnter(System.EventArgs)">
<summary>
Raises the Enter event.
</summary>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.OnSubEditorOpening(FarPoint.Win.Spread.CellType.RichTextEditor.SubEditorCancelEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.CellType.RichTextEditor.SubEditorOpening"/> event.
</summary>
<param name="e">EventArgs object that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.OnUserError(FarPoint.Win.SuperEdit.UserErrorEventArgs)">
<summary>
Raises the UserError event.
</summary>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.ProcessDialogKey(System.Windows.Forms.Keys)">
<summary>
Processes the specified dialog key by the control.
</summary>
<param name="keyData">Key for the control to process</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.Cut_Clicked(System.Object,System.EventArgs)">
<summary>
Occurs when the cut to the Clipboard choice is selected.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Object of EventArgs class that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.Copy_Clicked(System.Object,System.EventArgs)">
<summary>
Occurs when the copy to the Clipboard choice is selected.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Object of EventArgs class that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.Copy">
<summary>
Copies when use of Clipboard is allowed.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.Cut">
<summary>
Cuts when use of Clipboard is allowed.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.Paste">
<summary>
Pastes when use of Clipboard is allowed.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.Paste(System.Windows.Forms.DataFormats.Format)">
<summary>
Pastes with formatting when use of Clipboard is allowed.
</summary>
<param name="clipFormat"></param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.Paste_Clicked(System.Object,System.EventArgs)">
<summary>
Occurs when the paste from the Clipboard choice is selected.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Object of EventArgs class that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.Delete_Clicked(System.Object,System.EventArgs)">
<summary>
Occurs when the delete selection choice is selected.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Object of EventArgs class that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.ClearAll_Clicked(System.Object,System.EventArgs)">
<summary>
Occurs when the clear all selection choice is selected.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Object of EventArgs class that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.SelectAll_Clicked(System.Object,System.EventArgs)">
<summary>
Occurs when the select all choice is selected.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Object of EventArgs class that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.Color_Clicked(System.Object,System.EventArgs)">
<summary>
Occurs when the color is selected.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Object of EventArgs class that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.Font_Clicked(System.Object,System.EventArgs)">
<summary>
Occurs when the font is selected.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Object of EventArgs class that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.Size_Clicked(System.Object,System.EventArgs)">
<summary>
Occurs when the size is selected.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Object of EventArgs class that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.ContextMenu_Popup(System.Object,System.EventArgs)">
<summary>
Occurs when the context menu is displayed.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Object of EventArgs class that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.Bold_Clicked(System.Object,System.EventArgs)">
<summary>
Occurs when the bold style is selected.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Object of EventArgs class that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.Italic_Clicked(System.Object,System.EventArgs)">
<summary>
Occurs when the italic style is selected.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Object of EventArgs class that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.Underline_Clicked(System.Object,System.EventArgs)">
<summary>
Occurs when the underline style is selected.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Object of EventArgs class that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.AlignLeft_Clicked(System.Object,System.EventArgs)">
<summary>
Occurs when the left alignment is selected.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Object of EventArgs class that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.AlignCenter_Clicked(System.Object,System.EventArgs)">
<summary>
Occurs when the center alignment is selected.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Object of EventArgs class that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.AlignRight_Clicked(System.Object,System.EventArgs)">
<summary>
Occurs when the right alignment is selected.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Object of EventArgs class that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.LoadFile_Clicked(System.Object,System.EventArgs)">
<summary>
Occurs when the load file is selected.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Object of EventArgs class that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.DisableContextMenu(System.Boolean)">
<summary>
Determines if the context menu is disabled.
</summary>
<param name="disable"></param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Handles mouse down processing.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.SetBackgroundImageRenderDimensions(System.Int32,System.Int32)">
<summary>
Sets the dimensions of the background image renderer.
</summary>
<param name="width">Width of the renderer</param>
<param name="height">Height of the renderer</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.SetRenderDimensions(System.Int32,System.Int32)">
<summary>
Sets the dimensions of the renderer.
</summary>
<param name="width">Width of the renderer</param>
<param name="height">Height of the renderer</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.BitmapPaint">
<summary>
Paints a bitmap.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.BitmapPaint(FarPoint.Win.Picture)">
<summary>
Paints the specified background image as a bitmap.
</summary>
<param name="imgBackground">Background image</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.BitmapPaint(FarPoint.Win.Picture,System.Single)">
<summary>
Paints the specified background image as a bitmap with the specified scaling.
</summary>
<param name="imgBackground">Background image</param>
<param name="zoomFactor">Numeric value for scaling the display of the image</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.BitmapPaint(FarPoint.Win.Picture,System.Drawing.Rectangle)">
<summary>
Paints the specified background image as a bitmap in the specified rectangle.
</summary>
<param name="imgBackground">Background image</param>
<param name="r">Bounding rectangle</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.BitmapPaint(FarPoint.Win.Picture,System.Drawing.Rectangle,System.Single)">
<summary>
Paints the specified background image as a bitmap in the specified rectangle
with the specified scaling.
</summary>
<param name="imgBackground">Background image</param>
<param name="r">Bounding rectangle</param>
<param name="zoomFactor">Numeric value for scaling the display of the image</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.WndProc(System.Windows.Forms.Message@)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.OnMouseWheel(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the MouseWheel event.
</summary>
<param name="e">MouseEventArgs event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
<summary>
Occurs when key is down. Internal use only.
</summary>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.OnHandleDestroyed(System.EventArgs)">
<summary>
Occurs when the handle is destroyed.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.IsInputKey(System.Windows.Forms.Keys)">
<summary>
Determines whether to processes the specified key by the control.
</summary>
<param name="keyData">Key for the control to process</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.ShowSubEditor(System.Boolean)">
<summary>
Shows or hides the subeditor control associated with the cell.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.CellType.RichTextEditor.AfterFocus">
<summary>
Occurs after the control got focus.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.CellType.RichTextEditor.SubEditorClosed">
<summary>
Occurs when the subeditor for a cell closes.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.CellType.RichTextEditor.SubEditorOpening">
<summary>
Occurs when the subeditor for a cell opens.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.CellType.RichTextEditor.UserError">
<summary>
Occurs when content is provided that cannot be processed or is invalid.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.CellType.RichTextEditor.VisibleChanged">
<summary>
Occurs when the System.Windows.Forms.Control.Visible property value changes.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.CellType.RichTextEditor.Enter">
<summary>
Occurs when the control is entered.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RichTextEditor.AllowClipboard">
<summary>
Gets or sets whether the use of the Clipboard is allowed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RichTextEditor.Value">
<summary>
Gets or sets the value.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RichTextEditor.SubEditor">
<summary>
Gets or sets the subeditor to use.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.RichTextEditor.SubEditorCancelEventHandler">
<summary>
Represents a defined method that handles the canceling of the
<see cref="E:FarPoint.Win.Spread.CellType.RichTextEditor.SubEditorOpening"/> event for the FpSpread component.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Object of RichTextEditor.SubEditorCancelEventArgs class that contains event data</param>
</member>
<member name="T:FarPoint.Win.Spread.CellType.RichTextEditor.SubEditorCancelEventArgs">
<summary>
Represents the event data for the canceling of the
<see cref="E:FarPoint.Win.Spread.CellType.RichTextEditor.SubEditorOpening"/> event for the FpSpread component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextEditor.SubEditorCancelEventArgs.#ctor">
<summary>
Creates a new object with the SubEditorCancel event arguments.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RichTextEditor.SubEditorCancelEventArgs.Cancel">
<summary>
Gets or sets whether to cancel the default processing.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.RichTextCellType">
<summary>
Represents a rich text formatted text cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.#ctor">
<summary>
Creates a new rich text cell with default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.Clone">
<summary>
Creates and returns a rich text cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new rich text cell from serialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the cell type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.Parse(System.String)">
<summary>
Parses the string.
</summary>
<param name="s">String to parse</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.Format(System.Object)">
<summary>
Formats the object.
</summary>
<param name="o">Object to format</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.IsValid(System.Object)">
<summary>
Returns whether the entry is valid.
</summary>
<param name="o">Object containing the entry</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.StartEditing(System.EventArgs,System.Boolean,System.Boolean)">
<summary>
Starts the editing of a cell.
</summary>
<param name="e">Event</param>
<param name="selectAll">Whether to select all</param>
<param name="autoClipboard">Whether to allow shortcut keys for Clipboard actions</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.CancelEditing">
<summary>
Cancels the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.StopEditing">
<summary>
Stops the editing of a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.GetEditorValue">
<summary>
Gets the unformatted value in the edit control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.ShowSubEditor">
<summary>
Shows the subeditor control associated with the cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.PaintCell(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.Appearance,System.Object,System.Boolean,System.Boolean,System.Single)">
<summary>
Paints the rich text cell.
</summary>
<param name="g">Graphics device interface for painting the header cell</param>
<param name="r">Location and size of a rectangular region bounding the cell</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="value">Object containing value</param>
<param name="isSelected">Whether the cell is selected</param>
<param name="isLocked">Whether the cell is locked</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.SetEditorValue(System.Object)">
<summary>
Sets the value of the edit control.
</summary>
<param name="value">Object containing the edit control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.MeasureString(System.Drawing.Graphics,System.Drawing.Size,System.Object)">
<summary>
Measures the string size.
</summary>
<param name="g">Graphics device interface for painting the string</param>
<param name="defaultSize">Default size</param>
<param name="value">Value</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.GetPreferredSize(System.Drawing.Graphics,System.Drawing.Size,FarPoint.Win.Spread.Appearance,System.Object,System.Single)">
<summary>
Gets the preferred (maximum needed) size of the cell for the renderer control.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="size">Preferred or maximum needed size</param>
<param name="appearance">Appearance settings of the renderer control</param>
<param name="value">Object containing the name of the renderer control</param>
<param name="zoomFactor">Numeric value for scaling the display of the renderer control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.GetPreferredSize(System.Windows.Forms.Control)">
<summary>
Gets the preferred (maximum needed) size of the editor control.
</summary>
<param name="editor">Name of editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.GetReservedCursor(System.Object)">
<summary>
Gets the cursor reserved for this cell type.
</summary>
<param name="o">Object containing the reserved cursor (pointer)</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.CanOverflow">
<summary>
Determines whether the cell can overflow into adjacent cells.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.InitializeEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Initialize the editor control.
</summary>
<param name="control">Control</param>
<param name="appearance">Appearance settings of the editor control</param>
<param name="zoomFactor">Numeric value for scaling the display of the editor control</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.RichTextCellType.GetEditorControl(System.Windows.Forms.Control,FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the edit control for this cell type with the specified appearance and scaling.
</summary>
<param name="parent">Parent control</param>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RichTextCellType.BackgroundImage">
<summary>
Gets or sets the background image for the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RichTextCellType.ScrollBars">
<summary>
Gets or sets which scroll bars to display for the rich text cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RichTextCellType.MaxLength">
<summary>
Gets or sets the maximum number of characters allowed in the rich text cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RichTextCellType.Multiline">
<summary>
Gets or sets whether multiple lines of text are allowed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RichTextCellType.WordWrap">
<summary>
Gets or sets whether text that is too long to fit in the cell wraps to additional lines.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RichTextCellType.SubEditor">
<summary>
Gets or sets the subeditor.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RichTextCellType.ReadOnly">
<summary>
Gets or sets whether text is read only.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RichTextCellType.Static">
<summary>
Gets or sets whether text can be selected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RichTextCellType.FarPoint#Win#Spread#CellType#IStaticSupport#Static">
<summary>
Gets or sets whether text can be selected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RichTextCellType.FarPoint#Win#Spread#CellType#IReadOnlySupport#ReadOnly">
<summary>
Gets or sets whether text is read only.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.RichTextCellType.IsFormulaValue">
<summary>
Determines whether the editor contains a formula.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.EmptyCellType">
<summary>
Represents an empty cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EmptyCellType.#ctor">
<summary>
Creates a new empty cell with default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EmptyCellType.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new empty cell from serialization.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EmptyCellType.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the cell type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EmptyCellType.GetEditorControl(FarPoint.Win.Spread.Appearance,System.Single)">
<summary>
Gets the control used by the given cell type.
</summary>
<param name="appearance">Appearance settings of the cell</param>
<param name="zoomFactor">Numeric value for scaling the display of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.EmptyCellType.CancelEditing">
<summary>
Cancels the editing of a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EmptyCellType.AcceptsArrowKeys">
<summary>
Gets or sets how arrow keys are processed by the edit control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EmptyCellType.TextOrientation">
<summary>
Gets or sets how text orients itself when painting the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EmptyCellType.TextRotationAngle">
<summary>
Gets or sets the rotation angle of the text for the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellType.EmptyCellType.StringTrim">
<summary>
Gets or sets how to trim characters that do not fit into the cell.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellType.DropDownCalendar">
<summary>
Editor for date properties.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DropDownCalendar.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
<summary>
Edits the date value.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="provider">IServiceProvider</param>
<param name="value">object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DropDownCalendar.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Gets the style of the type editor (which is drop-down).
</summary>
<param name="context">ITypeDescriptorContext</param>
</member>
<member name="T:FarPoint.Win.Spread.CellType.DropDownClock">
<summary>
Editor for date properties.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DropDownClock.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
<summary>
Edits the date value.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="provider">IServiceProvider</param>
<param name="value">object</param>
</member>
<member name="M:FarPoint.Win.Spread.CellType.DropDownClock.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Gets the style of the type editor (which is drop-down).
</summary>
<param name="context">ITypeDescriptorContext</param>
</member>
<member name="T:FarPoint.Win.Spread.ColumnLayout">
<summary>
Class represents the location and size of a column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ColumnLayout.#ctor(System.Int32,System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ColumnLayout.ContainsX(System.Int32)">
<summary>
Checks whether or not this column contains the specified
point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ColumnLayout.Intersects(System.Drawing.Rectangle)">
<summary>
Checks whether or not this column interects with the
specified rectangle.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnLayout.Column">
<summary>
Gets the column index.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnLayout.X">
<summary>
Gets the x coordinate of the left side of the column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnLayout.Width">
<summary>
Gets the width of the column.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ColumnLayoutModel">
<summary>
Class represents a collection of columns along with their
locations and sizes.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ColumnLayoutModel.#ctor">
<summary>
Creates a new column layout model that is initially empty.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ColumnLayoutModel.Add(FarPoint.Win.Spread.ColumnLayout)">
<summary>
Adds a layout to the model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ColumnLayoutModel.FindColumn(System.Int32)">
<summary>
Finds the layout for the specified column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ColumnLayoutModel.FindX(System.Int32)">
<summary>
Finds the layout that contains the specified point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ColumnLayoutModel.FindNearX(System.Int32)">
<summary>
Finds the layout that contains or is near the specified point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ColumnLayoutModel.FindMinimumColumn">
<summary>
Finds the column with min X in the model
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ColumnLayoutModel.FindMaximumColumn">
<summary>
Find the column with max X in the model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnLayoutModel.Item(System.Int32)">
<summary>
Gets the element at the specified index.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnLayoutModel.Count">
<summary>
Gets the number of layouts in the model.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ModelessForm">
<summary>
Represents an abstract modeless form which allow user to select cell ranges from Spread.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.ModelessForm"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.CloseInternal">
<summary>
Closes the form. This function is used for internal only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.HideCompactPanel">
<summary>
Hides the compact panel.
</summary>
<remarks>
Because of a strange bug in handling ACTIVE, DEACTIVATE status of window, if we set Visible property of form or its child control,
ModelessForm won't be able hanlde mouse event. Up to this time, I don't find a straight solution for that problem yet.
So, I approach this problem by Location property. If we can not see a control, it looks like to be hidden.
</remarks>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.ShowCompactPanel">
<summary>
Shows the compact panel.
</summary>
<remarks>
Because of a strange bug in handling ACTIVE, DEACTIVATE status of window, if we set Visible property of form or its child control,
ModelessForm won't be able hanlde mouse event. Up to this time, I don't find a straight solution for that problem yet.
So, I approach this problem by Location property. If we can not see a control, it looks like to be hidden.
</remarks>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.WndProc(System.Windows.Forms.Message@)">
<summary>
This function handles all messages which is dispatched to the window.
</summary>
<param name="m">The m.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.#ctor(FarPoint.Win.Spread.FpSpread)">
<summary>
Initializes a new instance of the ModelessForm class.
</summary>
<param name="spread">The spread.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.OnAfterSelectionChanging(FarPoint.Win.Spread.Model.CellRange)">
<summary>
Called when [after selection changing].
</summary>
<param name="cellRange">The cell range.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.spread_AfterSelectionChanging(System.Object,FarPoint.Win.Spread.SelectionChangingEventArgs)">
<summary>
Handles the AfterSelectionChanging event of the spread control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:FarPoint.Win.Spread.SelectionChangingEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.Sheets_Changed(System.Object,System.ComponentModel.CollectionChangeEventArgs)">
<summary>
Handles the Changed event of the Sheets control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.ComponentModel.CollectionChangeEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.spread_SelectionChanged(System.Object,FarPoint.Win.Spread.SelectionChangedEventArgs)">
<summary>
Handles the SelectionChanged event of the spread control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:FarPoint.Win.Spread.SelectionChangedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.spread_SelectionChanging(System.Object,FarPoint.Win.Spread.SelectionChangingEventArgs)">
<summary>
Handles the SelectionChanging event of the spread control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:FarPoint.Win.Spread.SelectionChangingEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.OnSelectionChanged(FarPoint.Win.Spread.Model.CellRange,FarPoint.Win.Spread.Model.CellRange[])">
<summary>
Called when user finished selecting cell range.
</summary>
<param name="cellRange">The cell range.</param>
<param name="allSelectedCellRanges">Array of selected cell ranges</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.OnSelectionChanging(FarPoint.Win.Spread.Model.CellRange,FarPoint.Win.Spread.Model.CellRange[])">
<summary>
Called when user is selecting cell range.
</summary>
<param name="cellRange">The cell range.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.UpdateSelectionCellRange(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.Model.CellRange[])">
<summary>
Updates the selection cell range.
</summary>
<param name="sheetView">The sheet view.</param>
<param name="allSelectedCellRanges">All selected cell ranges.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.DetachEvents">
<summary>
Releases all resources used by the <see cref="T:System.ComponentModel.Component"/>.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.value_Activated(System.Object,System.EventArgs)">
<summary>
Handles the Activated event of the value control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.value_Deactivate(System.Object,System.EventArgs)">
<summary>
Handles the Deactivate event of the value control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.Show">
<summary>
Displays the control to the user.
</summary>
<PermissionSet>
<IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
<IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence"/>
<IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
</PermissionSet>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.TransformToCompactMode">
<summary>
Transforms to compact mode.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.RestoreFromCompactMode">
<summary>
Restores from compact mode.
</summary>
<returns>true if the validating of textbox should be fired.</returns>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.ClearSelectionInSheets">
<summary>
Clears the selection in other sheets.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.ShowSelectedCellRange(FarPoint.Win.Spread.Chart.SeriesDataField)">
<summary>
Shows the selected cell range.
</summary>
<param name="cellRange">The cell range.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.OnActivatingTextBoxEnter">
<summary>
Called when user put focus on activating text box.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.OnActivatingTextBoxLeave">
<summary>
Called when user leave focus from activating text box.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.OnClosed(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Form.Closed"/> event.
</summary>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.ProcessDialogKey(System.Windows.Forms.Keys)">
<summary>
Processes a dialog box key.
</summary>
<param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys"/> values that represents the key to process.</param>
<returns>
true if the keystroke was processed and consumed by the control; otherwise, false to allow further processing.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.ProcessMnemonic(System.Char)">
<summary>
Processes the mnemonic.
</summary>
<param name="charCode">The char code.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.OnClosing(System.ComponentModel.CancelEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Form.Closing"/> event.
</summary>
<param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.Show(System.Windows.Forms.IWin32Window)">
<summary>
Shows the form with the specified owner to the user.
</summary>
<param name="owner">Any object that implements <see cref="T:System.Windows.Forms.IWin32Window"/> and represents the top-level window that will own this form.</param>
<exception cref="T:System.ArgumentException">
The form specified in the <paramref name="owner"/> parameter is the same as the form being shown.
</exception>
<PermissionSet>
<IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
<IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence"/>
<IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
</PermissionSet>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.ChartDataIndicatorButton_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the ChartDataIndicatorButton control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.SelectCellRangeTextBoxBase_KeyDown(System.Object,System.Windows.Forms.KeyEventArgs)">
<summary>
Handles the KeyDown event of the SelectCellRangeTextBoxBase control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.KeyEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.activatingTextBox_Leave(System.Object,System.EventArgs)">
<summary>
Handles the Leave event of the activatingTextBox control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.activatingTextBox_Enter(System.Object,System.EventArgs)">
<summary>
Handles the Enter event of the activatingTextBox control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.activatingTextBox_TextChanged(System.Object,System.EventArgs)">
<summary>
Handles the TextChanged event of the activatingTextBox control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.activatingTextBox_KeyDown(System.Object,System.Windows.Forms.KeyEventArgs)">
<summary>
Handles the KeyDown event of the activatingTextBox control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.KeyEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.IsEmpty(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32)">
<summary>
Determines whether the specified sheet view is empty.
</summary>
<param name="sheetView">The sheet view.</param>
<param name="row">The row.</param>
<param name="column">The column.</param>
<returns>
<c>true</c> if the specified sheet view is empty; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.GetNextHybridEmptyRow(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32)">
<summary>
Gets the next hybrid empty row.
</summary>
<param name="sheetView">The sheet view.</param>
<param name="row">The row.</param>
<param name="column">The column.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.GetPreviousHybridEmptyRow(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32)">
<summary>
Gets the previous empty row.
</summary>
<param name="sheetView">The sheet view.</param>
<param name="row">The row.</param>
<param name="column">The column.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.GetNextHybridEmptyColumn(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32)">
<summary>
Gets the next hybrid empty column.
</summary>
<param name="sheetView">The sheet view.</param>
<param name="row">The row.</param>
<param name="column">The column.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.GetPreviousHybridEmptyColumn(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32)">
<summary>
Gets the previous hybrid empty column.
</summary>
<param name="sheetView">The sheet view.</param>
<param name="row">The row.</param>
<param name="column">The column.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.GetCurrentSheetCellRange">
<summary>
Gets the current sheet cell range.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.GetCurrentTextBoxState(System.String@,System.Int32@,System.Int32@)">
<summary>
Gets the state of the current text box.
</summary>
<param name="text">The text.</param>
<param name="end">The end.</param>
<param name="begin">The begin.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.ReplaceCurrentSheetCellRange(FarPoint.Win.Spread.Chart.SheetCellRange)">
<summary>
Replaces the current sheet cell range.
</summary>
<param name="cellRange">The cell range.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.AutoCorrectFormula(System.String)">
<summary>
Autoes the correct formula.
</summary>
<param name="formula">The formula.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.SelectCellRangeTextBoxBase_Enter(System.Object,System.EventArgs)">
<summary>
Handles the Enter event of the SelectCellRangeTextBoxBase control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.GetFormula(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.Model.CellRange)">
<summary>
Gets the formula string of a sheet cell range.
</summary>
<param name="sheetView">The sheet view.</param>
<param name="cellRange">The cell range.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.GetFormula(FarPoint.Win.Spread.Chart.SheetCellRange[],System.Boolean)">
<summary>
Gets the formula string of multiple sheet cell ranges.
</summary>
<param name="cellRanges">The cell ranges.</param>
<param name="useOpeningQuote">if set to <c>true</c> [use opening quote].</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.GetSheetCellRangeArray(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.Model.CellRange[])">
<summary>
Gets the sheet cell range array.
</summary>
<param name="sheetView">The sheet view.</param>
<param name="allSelectedCellRanges">All selected cell ranges.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.ParseCellRanges(System.String,System.Boolean)">
<summary>
Parses the cell ranges.
</summary>
<param name="formula">The formula.</param>
<param name="errorAsNull">if set to <c>true</c>, we will tread all invalid formula as null expression.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.ActiveSheetView(System.String,FarPoint.Win.Spread.SheetView)">
<summary>
Actives the sheet view.
</summary>
<param name="formula">The formula.</param>
<param name="defaultSheetView">The default sheet view.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.ParseCellRange(System.String)">
<summary>
Parses the cell range.
</summary>
<param name="formula">The formula.</param>
<returns></returns>
</member>
<member name="F:FarPoint.Win.Spread.ModelessForm.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ModelessForm.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:FarPoint.Win.Spread.ModelessForm.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ModelessForm.CompactPanel">
<summary>
Indicates the panel which contains control elements when the current form is in compact mode. It's used internal only.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ModelessForm.SelectButtonBase">
<summary>
Indicates the button in compact mode. It's used internal only.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ModelessForm.IgnoreUpdateSelection">
<summary>
Gets or sets a value indicating whether [ignore update selection].
</summary>
<value>
<c>true</c> if [ignore update selection]; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.ModelessForm.NativeWindow">
<summary>
Gets the native window.
</summary>
<value>The native window.</value>
</member>
<member name="P:FarPoint.Win.Spread.ModelessForm.SuppendSelecting">
<summary>
Gets or sets a value indicating whether selecting is suppend. In the most case, it will be assigned if the form open a new modeless form.
</summary>
<value><c>true</c> if selecting is suppend; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.Win.Spread.ModelessForm.Owner">
<summary>
Gets or sets the form that owns this form.
</summary>
<value></value>
<returns>A <see cref="T:System.Windows.Forms.Form"/> that represents the form that is the owner of this form.</returns>
<exception cref="T:System.Exception">A top-level window cannot have an owner. </exception>
<PermissionSet>
<IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
<IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence"/>
<IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
</PermissionSet>
</member>
<member name="P:FarPoint.Win.Spread.ModelessForm.AlwaysInCompact">
<summary>
Gets or sets a value indicating whether the form will be always in compact mode.
</summary>
<value><c>true</c> if the form will be always in compact mode; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.Win.Spread.ModelessForm.AutoCompact">
<summary>
Gets or sets a value indicating whether the form will transform to compact mode automatically (when user is selecting).
</summary>
<value><c>true</c> if the form will transform to compact mode automatically; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.Win.Spread.ModelessForm.IsInCompactMode">
<summary>
Gets a value indicating whether this instance is in compact mode.
</summary>
<value>
<c>true</c> if this instance is in compact mode; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.ModelessForm.RestoreCompactButton">
<summary>
Gets the restore compact button.
</summary>
<value>The restore compact button.</value>
</member>
<member name="P:FarPoint.Win.Spread.ModelessForm.ActivatingTextBox">
<summary>
Gets or sets the activating text box. An activating text box will allow user to use keyboard for selecting cell ranges.
</summary>
<value>The activating text box.</value>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.ProcessTabKey(System.Boolean)">
<summary>
</summary>
<param name="forward">true to cycle forward through the controls in the <see cref="T:System.Windows.Forms.ContainerControl"/>; otherwise, false.</param>
<returns>
true if a control is selected; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.CellRangeSelector"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.LocalizeGUIStrings">
<summary>
Localize GUI strings of this instance
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.#ctor(FarPoint.Win.Spread.FpSpread,FarPoint.Win.Spread.Chart.SpreadChart,System.Type,System.Boolean,System.String,System.String,FarPoint.Win.Spread.Chart.SeriesDataField,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.CellRangeSelector"/> class.
</summary>
<param name="formTitle">The form title.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.ProcessDialogKey(System.Windows.Forms.Keys)">
<summary>
Processes a dialog box key.
</summary>
<param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys"/> values that represents the key to process.</param>
<returns>
true if the keystroke was processed and consumed by the control; otherwise, false to allow further processing.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.OnShown(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Form.Shown"/> event.
</summary>
<param name="e">A <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.OnClosing(System.ComponentModel.CancelEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Form.Closing"/> event.
</summary>
<param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.WndProc(System.Windows.Forms.Message@)">
<summary>
This function handles all messages which is dispatched to the window.
</summary>
<param name="m">The m.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.OnClosed(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Form.Closed"/> event.
</summary>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.GetFormulaText(FarPoint.Win.Spread.Chart.SeriesDataField)">
<summary>
Gets the formula text.
</summary>
<param name="dataField">The data field.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.CreateOneEditArea(System.String,FarPoint.Win.Spread.Chart.SeriesDataField)">
<summary>
Creates the one edit area.
</summary>
<param name="labelText">The label text.</param>
<param name="cellRange">The cell range.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.panel_Enter(System.Object,System.EventArgs)">
<summary>
Handles the Enter event of the panel control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.OK_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the OK control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.Cancel_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the Cancel control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.GetExampleText(FarPoint.Win.Spread.Chart.SeriesDataField,System.Boolean)">
<summary>
Gets the example text.
</summary>
<param name="dataField">The data field.</param>
<param name="vertical">if set to <c>true</c> [vertical].</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.CheckExampleLabel(System.Windows.Forms.Label)">
<summary>
Checks the example label.
</summary>
<param name="example">The example.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.IsControlVisible(System.Windows.Forms.Control)">
<summary>
Determines whether the control is visible in current form. A control is out-of-client rectangle will be count as hidden.
</summary>
<param name="control">The control.</param>
<returns>
<c>true</c> if the control is visible; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.ProcessMnemonic(System.Char)">
<summary>
Processes the mnemonic.
</summary>
<param name="charCode">The char code.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.CellRangeTextBox_Validating(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
Handles the Validating event of the CellRangeTextBox control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.ComponentModel.CancelEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.IsSingleCellRange(System.Collections.Generic.IList{FarPoint.Win.Spread.Chart.ISegmentData})">
<summary>
Determines whether [is single cell range] [the specified segments].
</summary>
<param name="segments">The segments.</param>
<returns>
<c>true</c> if [is single cell range] [the specified segments]; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.CellRangeSelectButton_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the CellRangeSelectButton control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.RestoreFromCompactMode">
<summary>
Restores from compact mode.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.CellRangeTextBox_Enter(System.Object,System.EventArgs)">
<summary>
Handles the Enter event of the CellRangeTextBox control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.OnSelectionChanged(FarPoint.Win.Spread.Model.CellRange,FarPoint.Win.Spread.Model.CellRange[])">
<summary>
Called when user finished selecting cell range.
</summary>
<param name="cellRange">The cell range.</param>
<param name="allSelectedCellRanges"></param>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.UpdateSelectionCellRange(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.Model.CellRange[])">
<summary>
Updates the selection cell range.
</summary>
<param name="sheetView">The sheet view.</param>
<param name="allSelectedCellRanges">All selected cell ranges.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.CellRangeTextBox_Leave(System.Object,System.EventArgs)">
<summary>
Handles the Leave event of the CellRangeTextBox control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.CellRangeSelectButton_Enter(System.Object,System.EventArgs)">
<summary>
Handles the Enter event of the CellRangeSelectButton control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.Cancel_KeyDown(System.Object,System.Windows.Forms.KeyEventArgs)">
<summary>
Handles the KeyDown event of the Cancel control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.KeyEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.CellRangeTextBox_TextChanged(System.Object,System.EventArgs)">
<summary>
Handles the TextChanged event of the CellRangeTextBox control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.GetSeriesDataField(System.String)">
<summary>
Gets the series data field.
</summary>
<param name="formula">The formula.</param>
<returns></returns>
</member>
<member name="F:FarPoint.Win.Spread.CellRangeSelector.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellRangeSelector.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:FarPoint.Win.Spread.CellRangeSelector.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellRangeSelector.DataRangeSources">
<summary>
Gets the data range sources.
</summary>
<value>The data range sources.</value>
</member>
<member name="E:FarPoint.Win.Spread.CellRangeSelector.CellRangeChanged">
<summary>
Occurs when [cell range changed].
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ChartEmptyCellSetting.LocalizeGUIStrings">
<summary>
Localize all GUI strings of this instance
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ChartEmptyCellSetting.OnShown(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Form.Shown"/> event.
</summary>
<param name="e">A <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.ChartEmptyCellSetting.OnClosed(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Form.Closed"/> event.
</summary>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.ChartEmptyCellSetting.OnClosing(System.ComponentModel.CancelEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Form.Closing"/> event.
</summary>
<param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.ChartEmptyCellSetting.OK_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the OK control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.ChartEmptyCellSetting.Cancel_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the Cancel control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="F:FarPoint.Win.Spread.ChartEmptyCellSetting.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ChartEmptyCellSetting.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:FarPoint.Win.Spread.ChartEmptyCellSetting.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ChartEmptyCellSetting.ShowHiddenData">
<summary>
Gets a value indicating whether [show hidden data].
</summary>
<value><c>true</c> if [show hidden data]; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.Win.Spread.ChartEmptyCellSetting.EmptyValueStyle">
<summary>
Gets the empty value style.
</summary>
<value>The empty value style.</value>
</member>
<member name="T:FarPoint.Win.Spread.Chart.ChartSelectDataSource">
<summary>
Represents SelectData dialog for SpreadChart.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.ProcessTabKey(System.Boolean)">
<summary>
</summary>
<param name="forward">true to cycle forward through the controls in the <see cref="T:System.Windows.Forms.ContainerControl"/>; otherwise, false.</param>
<returns>
true if a control is selected; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.ChartSelectDataSource"/> class.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.ChartSelectDataSource.manager">
<summary>
Variable used for localization job
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.LocalizeGUIStrings">
<summary>
Localize all GUI strings of this instance
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.#ctor(FarPoint.Win.Spread.FpSpread,FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.ChartSelectDataSource"/> class.
</summary>
<param name="spread">The spread.</param>
<param name="chart">The chart.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.SheetView_RemovedFromSpread(System.Object,System.EventArgs)">
<summary>
Handles the RemovedFromSpread event of the SheetView control.
</summary>
<param name="sender">The source of the event. Null indicates that we should close modeless forms of current FpSpread only.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.GetImageForButtons">
<summary>
Gets the image for buttons.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.RefreshControlViews(System.Boolean)">
<summary>
Refreshes the control views.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.ShowChartFomular">
<summary>
Shows the chart fomular.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.OnSelectionChanged(FarPoint.Win.Spread.Model.CellRange,FarPoint.Win.Spread.Model.CellRange[])">
<summary>
Called when user finished selecting cell range.
</summary>
<param name="cellRange">The cell range.</param>
<param name="allSelectedCellRanges"></param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.UpdateSelectionCellRange(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.Model.CellRange[])">
<summary>
Updates the selection cell range.
</summary>
<param name="sheetView">The sheet view.</param>
<param name="allSelectedCellRanges">All selected cell ranges.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.InitializeData">
<summary>
Initializes the data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.CloseInternal">
<summary>
Closes the form. This function is used for internal only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.OnClosing(System.ComponentModel.CancelEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Form.Closing"/> event.
</summary>
<param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.ReleaseResources">
<summary>
Releases the resources.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.ReleaseIndicators">
<summary>
Releases the resources.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.OnShown(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Form.Shown"/> event.
</summary>
<param name="e">A <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.OnClosed(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Form.Closed"/> event.
</summary>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.OK_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the OK control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.Cancel_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the Cancel control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.DataIndicators_SelectedIndexChanged(System.Object,System.EventArgs)">
<summary>
Handles the SelectedIndexChanged event of the DataIndicators control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.ShowCategoryNames">
<summary>
Shows the category names.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.CanMoveUp">
<summary>
Determines whether we can move up the selected series.
</summary>
<returns>
<c>true</c> if this instance [can move up]; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.CanMoveDown">
<summary>
Determines whether we can move down the selected series.
</summary>
<returns>
<c>true</c> if this instance [can move down]; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.DataIndicatorUp_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the DataIndicatorUp control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.DataIndicatorDown_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the DataIndicatorDown control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.DataIndicatorRemove_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the DataIndicatorRemove control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.ValidateChartDataIndicatorTextBox">
<summary>
Validates the chart data indicator text box.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.AxisLabelsEdit_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the AxisLabelsEdit control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.formAxisLabel_FormClosed(System.Object,System.Windows.Forms.FormClosedEventArgs)">
<summary>
Handles the FormClosed event of the formAxisLabel control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.FormClosedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.DataIndicatorEdit_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the DataIndicatorEdit control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.Hide">
<summary>
Conceals the control from the user.
</summary>
<PermissionSet>
<IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
<IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence"/>
<IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
</PermissionSet>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.Show">
<summary>
Displays the control to the user.
</summary>
<PermissionSet>
<IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
<IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence"/>
<IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
</PermissionSet>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.form_CellRangeChanged(System.Object,System.EventArgs)">
<summary>
Handles the CellRangeChanged event of the form control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.form_FormClosed(System.Object,System.Windows.Forms.FormClosedEventArgs)">
<summary>
Handles the FormClosed event of the form control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.FormClosedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.GetTitleNameForEditingSeries(System.Type)">
<summary>
Gets the title name for editing series.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.DataIndicatorAdd_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the DataIndicatorAdd control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.formAdd_CellRangeChanged(System.Object,System.EventArgs)">
<summary>
Handles the CellRangeChanged event of the formAdd control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.formAdd_FormClosed(System.Object,System.Windows.Forms.FormClosedEventArgs)">
<summary>
Handles the FormClosed event of the formAdd control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.FormClosedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.ModifyIndicator(FarPoint.Win.Spread.Chart.ChartSelectDataSource.SeriesIndicatorListItem,FarPoint.Win.Spread.Chart.SeriesDataSource,System.Collections.Generic.List{FarPoint.Win.Spread.Chart.SeriesDataField})">
<summary>
Modifies the indicator.
</summary>
<param name="dataSource">The data source.</param>
<param name="sources">The sources.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.SwitchRowColumn_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the SwitchRowColumn control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.HiddenEmptyCells_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the HiddenEmptyCells control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.ProcessMnemonic(System.Char)">
<summary>
Processes the mnemonic.
</summary>
<param name="charCode">The char code.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.ChartDataIndicatorTextBox_Validating(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
Handles the Validating event of the ChartDataIndicatorTextBox control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.ComponentModel.CancelEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.ChartDataIndicatorButton_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the ChartDataIndicatorButton control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.RestoreFromCompactMode">
<summary>
Restores from compact mode.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.WndProc(System.Windows.Forms.Message@)">
<summary>
This function handles all messages which is dispatched to the window.
</summary>
<param name="m">The m.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.ProcessDialogKey(System.Windows.Forms.Keys)">
<summary>
Processes a dialog box key.
</summary>
<param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys"/> values that represents the key to process.</param>
<returns>
true if the keystroke was processed and consumed by the control; otherwise, false to allow further processing.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.ChartDataIndicatorTextBox_Enter(System.Object,System.EventArgs)">
<summary>
Handles the Enter event of the ChartDataIndicatorTextBox control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.ActiveSheetView(System.String,FarPoint.Win.Spread.SheetView)">
<summary>
Actives the sheet view.
</summary>
<param name="formula">The formula.</param>
<param name="defaultSheetView">The default sheet view.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.ChartDataIndicatorTextBox_Leave(System.Object,System.EventArgs)">
<summary>
Handles the Leave event of the ChartDataIndicatorTextBox control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.ChartDataIndicatorButton_Enter(System.Object,System.EventArgs)">
<summary>
Handles the Enter event of the ChartDataIndicatorButton control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.ChartDataIndicatorTextBox_KeyDown(System.Object,System.Windows.Forms.KeyEventArgs)">
<summary>
Handles the KeyDown event of the ChartDataIndicatorTextBox control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.KeyEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.CompactPanel_Enter(System.Object,System.EventArgs)">
<summary>
Handles the Enter event of the CompactPanel control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.ChartDataIndicatorTextBox_TextChanged(System.Object,System.EventArgs)">
<summary>
Handles the TextChanged event of the ChartDataIndicatorTextBox control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.GenerateChart(System.ComponentModel.CancelEventArgs)">
<summary>
Generates the chart.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.AxisLabels_Leave(System.Object,System.EventArgs)">
<summary>
Handles the Leave event of the AxisLabels control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="F:FarPoint.Win.Spread.Chart.ChartSelectDataSource.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.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:FarPoint.Win.Spread.Chart.ChartSelectDataSource.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Chart.ChartSelectDataSource.SeriesIndicatorListItem">
<summary>
Represents an Listbox item in SelectData dialog.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.SeriesIndicatorListItem.#ctor(FarPoint.Win.Spread.Chart.SpreadChart,FarPoint.Win.Chart.Series)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.ChartSelectDataSource.SeriesIndicatorListItem"/> class.
</summary>
<param name="chart">The chart.</param>
<param name="series">The series.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.SeriesIndicatorListItem.#ctor(FarPoint.Win.Spread.Chart.SpreadChart,FarPoint.Win.Chart.Series,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.ChartSelectDataSource.SeriesIndicatorListItem"/> class.
</summary>
<param name="chart">The chart.</param>
<param name="series">The series.</param>
<remarks>This constructor works for XYZSurfaceSeries only</remarks>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartSelectDataSource.SeriesIndicatorListItem.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartSelectDataSource.SeriesIndicatorListItem.Series">
<summary>
Gets the series.
</summary>
<value>The series.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartSelectDataSource.SeriesIndicatorListItem.Index">
<summary>
Gets the index.
</summary>
<value>The index.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartSelectDataSource.SeriesIndicatorListItem.CanModifyCategory">
<summary>
Gets a value indicating whether this instance can modify category.
</summary>
<value>
<c>true</c> if this instance can modify category; otherwise, <c>false</c>.
</value>
</member>
<member name="T:FarPoint.Win.Spread.Chart.ExListBox">
<summary>
Represents a standard ListBox which provide a way to Refresh item's visual.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ExListBox.RefreshItem(System.Int32)">
<summary>
Refreshes the item contained at the specified index.
</summary>
<param name="index">The zero-based index of the element to refresh.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ExListBox.IndexOf(FarPoint.Win.Chart.Series)">
<summary>
Return the index of series in the list.
</summary>
<param name="series">The series.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.CustomizableButton.IsInputKey(System.Windows.Forms.Keys)">
<summary>
Determines whether the specified key is an input key or a special key that requires preprocessing.
</summary>
<param name="keyData">One of the key's values.</param>
<returns>
true if the specified key is an input key; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.SizeableTextBox.FireValidating(System.ComponentModel.CancelEventArgs)">
<summary>
Fires the validating.
</summary>
<param name="e">The <see cref="T:System.ComponentModel.CancelEventArgs"/> instance containing the event data.</param>
</member>
<member name="T:FarPoint.Win.Spread.DelayedEventDispatcher">
<summary>
The class implements an event dispatcher which implement "delayed event handling" (DEH) technique.
This technique allow us to response as fast as expected but doesn't slow the application.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DelayedEventDispatcher.#ctor(System.Delegate)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.DelayedEventDispatcher"/> class with the specified event delegate.
</summary>
<param name="processEventDelegate">
The delegate that actually raises or processes the delayed event.
</param>
</member>
<member name="M:FarPoint.Win.Spread.DelayedEventDispatcher.#ctor(System.Delegate,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.DelayedEventDispatcher"/> class with the specified
event delegate and the amount of milliseconds the event has to be postponed.
</summary>
<param name="processEventDelegate">
The delegate that actually raises or processes the delayed event.
</param>
<param name="delayMilliseconds">
The number of milliseconds the event has to be postponed.
</param>
</member>
<member name="M:FarPoint.Win.Spread.DelayedEventDispatcher.#ctor(System.Delegate,System.Int32,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.DelayedEventDispatcher"/> class with the specified
event delegate and the amount of milliseconds the event has to be postponed.
</summary>
<param name="processEventDelegate">
The delegate that actually raises or processes the delayed event.
</param>
<param name="delayMilliseconds">
The number of milliseconds the event has to be postponed.
</param>
<param name="delayMouseEvents">
The flag indicates whether events should be delayed for events caused by mouse input.
</param>
</member>
<member name="M:FarPoint.Win.Spread.DelayedEventDispatcher.RegisterAuthenticEvent(System.Object,System.EventArgs)">
<summary>
Registers the authentic event.
</summary>
<param name="sender">The sender.</param>
<param name="args">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.DelayedEventDispatcher.timer_Tick(System.Object,System.EventArgs)">
<summary>
Checks to see if an event to be raised is available and the required amount of time already passed and raises the event.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DelayedEventDispatcher.HandleEvent">
<summary>
Handles the event.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DelayedEventDispatcher.Dispose(System.Boolean)">
<summary>
Releases unmanaged and - optionally - managed resources
</summary>
<param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
</member>
<member name="M:FarPoint.Win.Spread.DelayedEventDispatcher.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DelayedEventDispatcher.Finalize">
<summary>
Releases unmanaged resources and performs other cleanup operations before the
<see cref="T:FarPoint.Win.Spread.DelayedEventDispatcher"/> is reclaimed by garbage collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DelayedEventDispatcher.DelayInternal">
<summary>
Sets or returns the interval the associated event has to be delayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DelayedEventDispatcher.Enabled">
<summary>
Sets or returns a flag indicating whether the delayed event handling feature is active.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DelayedEventDispatcher.DelayMouseEvents">
<summary>
Sets or returns a flag indicating whether the delayed event handling feature is active for events caused by mouse input.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ModelessFormSubClassNativeWindow">
<summary>
This native window class is used to handle some related activation messages of Spread's parent form.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ModelessFormSubClassNativeWindow.modelessForm_FormClosed(System.Object,System.Windows.Forms.FormClosedEventArgs)">
<summary>
Handles the FormClosed event of the modelessForm control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.FormClosedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.ModelessFormSubClassNativeWindow.WndProc(System.Windows.Forms.Message@)">
<summary>
Invokes the default window procedure associated with this window.
</summary>
<param name="m">A <see cref="T:System.Windows.Forms.Message"/> that is associated with the current Windows message.</param>
</member>
<member name="T:FarPoint.Win.Spread.Chart.MoveChart">
<summary>
Represetns a form which is used to move chart to another SheetView.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.MoveChart.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.MoveChart"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.MoveChart.LocalizeGUIStrings">
<summary>
Localize all GUI Strings of this instance
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.MoveChart.#ctor(FarPoint.Win.Spread.FpSpread,FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.MoveChart"/> class.
</summary>
<param name="spread">The spread.</param>
<param name="chart">The chart.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.MoveChart.OnShown(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Form.Shown"/> event.
</summary>
<param name="e">A <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.MoveChart.BtnCancel_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the BtnCancel control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.MoveChart.BtnOK_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the BtnOK control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="F:FarPoint.Win.Spread.Chart.MoveChart.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.MoveChart.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:FarPoint.Win.Spread.Chart.MoveChart.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NativeMethods.AnimateWindow(System.IntPtr,System.Int32,FarPoint.Win.Spread.NativeMethods.AnimateWindowSettings)">
<summary>
The AnimateWindow function enables you to produce special effects when showing or hiding windows.
There are four types of animation: roll, slide, collapse or expand, and alpha-blended fade.
</summary>
<param name="hwand">Handle to the window to animate. The calling thread must own this window.</param>
<param name="dwTime">Specifies how long it takes to play the animation, in milliseconds. Typically, an animation takes 200 milliseconds to play.</param>
<param name="dwFlags">Specifies the type of animation. Note that, by default, these flags take effect when showing a window.
To take effect when hiding a window, use AW_HIDE and a logical OR operator with the appropriate flags.</param>
<remarks>
When using slide or roll animation, you must specify the direction.
It can be either AW_HOR_POSITIVE, AW_HOR_NEGATIVE, AW_VER_POSITIVE, or AW_VER_NEGATIVE.
You can combine AW_HOR_POSITIVE or AW_HOR_NEGATIVE with AW_VER_POSITIVE or AW_VER_NEGATIVE to animate a window diagonally.
The window procedures for the window and its child windows should handle any WM_PRINT or WM_PRINTCLIENT messages.
Dialog boxes, controls, and common controls already handle WM_PRINTCLIENT. The default window procedure already handles WM_PRINT.
If a child window is displayed partially clipped, when it is animated it will have holes where it is clipped.
</remarks>
<returns>If the function succeeds, the return value is nonzero. Otherwise, the return value is zero.</returns>
</member>
<member name="T:FarPoint.Win.Spread.NativeMethods.AnimateWindowSettings">
<summary>
Specifies the type of animation for showing window.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.AnimateWindowSettings.AW_HOR_POSITIVE">
<summary>
Animates the window from left to right. This flag can be used with roll or slide animation.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.AnimateWindowSettings.AW_HOR_NEGATIVE">
<summary>
Animates the window from right to left. This flag can be used with roll or slide animation.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.AnimateWindowSettings.AW_VER_POSITIVE">
<summary>
Animates the window from top to bottom. This flag can be used with roll or slide animation.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.AnimateWindowSettings.AW_VER_NEGATIVE">
<summary>
Animates the window from bottom to top. This flag can be used with roll or slide animation.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.AnimateWindowSettings.AW_CENTER">
<summary>
Makes the window appear to collapse inward if AW_HIDE is used or expand outward if the AW_HIDE is not used.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.AnimateWindowSettings.AW_HIDE">
<summary>
Hides the window. By default, the window is shown.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.AnimateWindowSettings.AW_ACTIVATE">
<summary>
Activates the window.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.AnimateWindowSettings.AW_SLIDE">
<summary>
Uses slide animation. By default, roll animation is used.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.AnimateWindowSettings.AW_BLEND">
<summary>
Uses a fade effect. This flag can be used only if hwnd is a top-level window.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.NativeMethods.EnhancedCursor">
<summary>
The standard Cursor class, which is included in .NET Framework, can't load animated cursors nor cursors that have more than 16 colors.
So, I implement this class to solve that limitation :|
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.tagINITCOMMONCONTROLSEX.dwSize">
<summary>
size of this structure
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.tagINITCOMMONCONTROLSEX.dwICC">
<summary>
flags indicating which classes to be initialized.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.WindowStyle.TTS_ALWAYSTIP">
<summary>
Indicates that the ToolTip control appears when the cursor is on a tool, even if the ToolTip control's owner window is inactive.
Without this style, the ToolTip appears only when the tool's owner window is active.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.WindowStyle.TTS_NOPREFIX">
<summary>
Prevents the system from stripping ampersand characters from a string or terminating a string at a tab character.
Without this style, the system automatically strips ampersand characters and terminates a string at the first tab character.
This allows an application to use the same string as both a menu item and as text in a ToolTip control.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.WindowStyle.TTS_NOANIMATE">
<summary>
Disables sliding ToolTip animation on Microsoft Windows 98 and Windows 2000 systems. This style is ignored on earlier systems.
</summary>
<remarks>Supported from Shell and Common Controls Versions 5.8.</remarks>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.WindowStyle.TTS_NOFADE">
<summary>
Disables fading ToolTip animation on Windows 2000 systems. This style is ignored on earlier Microsoft Windows NT systems,
and on Windows 95 and Windows 98.
</summary>
<remarks>Supported from Shell and Common Controls Versions 5.8.</remarks>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.WindowStyle.TTS_BALLOON">
<summary>
Indicates that the ToolTip control has the appearance of a cartoon "balloon," with rounded corners and a stem pointing to the item.
</summary>
<remarks>Supported from Shell and Common Controls Versions 5.8.</remarks>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.WindowStyle.TTS_CLOSE">
<summary>
Displays a Close button on the ToolTip. Valid only when the ToolTip has the TTS_BALLOON style and a title; see TTM_SETTITLE.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.WindowStyle.TTS_USEVISUALSTYLE">
<summary>
Uses themed hyperlinks. The theme will define the styles for any links in the ToolTip.
This style always requires TTF_PARSELINKS to be set.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.CustomDrawStages.CDDS_PREPAINT">
<summary>
Before the paint cycle begins.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.CustomDrawStages.CDDS_POSTPAINT">
<summary>
After the paint cycle is complete.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.CustomDrawStages.CDDS_PREERASE">
<summary>
Before the erase cycle begins.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.CustomDrawStages.CDDS_POSTERASE">
<summary>
After the erase cycle is complete.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.CustomDrawStages.CDDS_ITEM">
<summary>
Each of the preceding values can be combined with the CDDS_ITEM flag to specify draw stages specific to items.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.CustomDrawStages.CDDS_ITEMPREPAINT">
<summary>
Before an item is drawn.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.CustomDrawStages.CDDS_ITEMPOSTPAINT">
<summary>
After an item has been drawn.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.CustomDrawStages.CDDS_ITEMPREERASE">
<summary>
Before an item is erased.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.CustomDrawStages.CDDS_ITEMPOSTERASE">
<summary>
After an item has been erased.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.CustomDrawStages.CDDS_SUBITEM">
<summary>
Flag combined with CDDS_ITEMPREPAINT or CDDS_ITEMPOSTPAINT if a subitem is being drawn.
This will only be set if CDRF_NOTIFYITEMDRAW is returned from CDDS_PREPAINT.
</summary>
<remarks>Supported from Shell and Common Controls Versions 4.71.</remarks>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.CustomDrawReturnValues.CDRF_DODEFAULT">
<summary>
The control will draw itself. It will not send additional NM_CUSTOMDRAW notifications for this paint cycle.
This flag cannot be used with any other flag.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.CustomDrawReturnValues.CDRF_NEWFONT">
<summary>
Your application specified a new font for the item; the control will use the new font.
</summary>
<remarks>Supported from Shell and Common Controls Versions 6.0.</remarks>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.CustomDrawReturnValues.CDRF_SKIPDEFAULT">
<summary>
Your application drew the item manually. The control will not draw the item. This occurs when dwDrawStage equals CDDS_ITEMPREPAINT.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.CustomDrawReturnValues.CDRF_NOTIFYPOSTPAINT">
<summary>
The control will send an NM_CUSTOMDRAW notification when the painting cycle for the entire control is complete.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.CustomDrawReturnValues.CDRF_NOTIFYITEMDRAW">
<summary>
The control will notify the parent of any item-specific drawing operations.
It will send NM_CUSTOMDRAW notification messages before and after it draws items.
This occurs when dwDrawStage equals CDDS_PREPAINT.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.CustomDrawReturnValues.CDRF_NOTIFYSUBITEMDRAW">
<summary>
Your application will receive an NM_CUSTOMDRAW message with dwDrawStage set to CDDS_ITEMPREPAINT | CDDS_SUBITEM
before each list-view subitem is drawn. You can then specify font and color for each subitem separately or return
CDRF_DODEFAULT for default processing. This occurs when dwDrawStage equals CDDS_ITEMPREPAINT.
</summary>
<remarks>Supported from Shell and Common Controls Versions 4.71.</remarks>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.CustomDrawReturnValues.CDRF_NOTIFYPOSTERASE">
<summary>
The control will notify the parent after erasing an item. This occurs when dwDrawStage equals CDDS_PREPAINT.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.CustomDrawReturnValues.CDRF_NOTIFYITEMERASE">
<summary>
</summary>
</member>
<member name="T:FarPoint.Win.Spread.NativeMethods.NCHITTEST">
<summary>
Location of cursor hot spot returnet in WM_NCHITTEST.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTERROR">
<summary>
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:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTTRANSPARENT">
<summary>
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:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTNOWHERE">
<summary>
On the screen background or on a dividing line between windows.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTCLIENT">
<summary>In a client area.</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTCAPTION">
<summary>In a title bar.</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTSYSMENU">
<summary>In a window menu or in a Close button in a child window.</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTGROWBOX">
<summary>In a size box (same as HTSIZE).</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTMENU">
<summary>In a menu.</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTHSCROLL">
<summary>In a horizontal scroll bar.</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTVSCROLL">
<summary>In the vertical scroll bar.</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTMINBUTTON">
<summary>In a Minimize button.</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTMAXBUTTON">
<summary>In a Maximize button.</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTLEFT">
<summary>In the left border of a resizable window
(the user can click the mouse to resize the window horizontally).</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTRIGHT">
<summary>
In the right border of a resizable window
(the user can click the mouse to resize the window horizontally).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTTOP">
<summary>In the upper-horizontal border of a window.</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTTOPLEFT">
<summary>In the upper-left corner of a window border.</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTTOPRIGHT">
<summary>In the upper-right corner of a window border.</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTBOTTOM">
<summary> 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:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTBOTTOMLEFT">
<summary>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:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTBOTTOMRIGHT">
<summary> 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:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTBORDER">
<summary>In the border of a window that does not have a sizing border.</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTCLOSE">
<summary>In a Close button.</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCHITTEST.HTHELP">
<summary>In a Help button.</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.ShowWindowOptions.SW_FORCEMINIMIZE">
<summary>
Windows 2000/XP: 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="F:FarPoint.Win.Spread.NativeMethods.ShowWindowOptions.SW_HIDE">
<summary>
Hides the window and activates another window.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.ShowWindowOptions.SW_MAXIMIZE">
<summary>
Maximizes the specified window.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.ShowWindowOptions.SW_MINIMIZE">
<summary>
Minimizes the specified window and activates the next top-level window in the Z order.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.ShowWindowOptions.SW_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:FarPoint.Win.Spread.NativeMethods.ShowWindowOptions.SW_SHOW">
<summary>
Activates the window and displays it in its current size and position.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.ShowWindowOptions.SW_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:FarPoint.Win.Spread.NativeMethods.ShowWindowOptions.SW_SHOWMAXIMIZED">
<summary>
Activates the window and displays it as a maximized window.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.ShowWindowOptions.SW_SHOWMINIMIZED">
<summary>
Activates the window and displays it as a minimized window.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.ShowWindowOptions.SW_SHOWMINNOACTIVE">
<summary>
Displays the window as a minimized window. This value is similar to SW_SHOWMINIMIZED, except the window is not activated.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.ShowWindowOptions.SW_SHOWNA">
<summary>
Displays the window in its current size and position. This value is similar to SW_SHOW, except the window is not activated.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.ShowWindowOptions.SW_SHOWNOACTIVATE">
<summary>
Displays a window in its most recent size and position. This value is similar to SW_SHOWNORMAL, except the window is not actived.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.ShowWindowOptions.SW_SHOWNORMAL">
<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:FarPoint.Win.Spread.NativeMethods.MINMAXINFO.ptReserved">
POINT->tagPOINT
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.MINMAXINFO.ptMaxSize">
POINT->tagPOINT
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.MINMAXINFO.ptMaxPosition">
POINT->tagPOINT
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.MINMAXINFO.ptMinTrackSize">
POINT->tagPOINT
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.MINMAXINFO.ptMaxTrackSize">
POINT->tagPOINT
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.POINT.x">
LONG->int
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.POINT.y">
LONG->int
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.ShowWindowStatus.SW_PARENTCLOSING">
<summary>
The window's owner window is being minimized.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.ShowWindowStatus.SW_OTHERZOOM">
<summary>
The window is being covered by another window that has been maximized.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.ShowWindowStatus.SW_PARENTOPENING">
<summary>
The window's owner window is being restored.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.ShowWindowStatus.SW_OTHERUNZOOM">
<summary>
The window is being uncovered because a maximize window was restored or minimized.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCCALCSIZE_PARAMS.rectProposed">
<summary>
Contains the new coordinates of a window that has been moved or resized, that is, it is the proposed new window coordinates.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCCALCSIZE_PARAMS.rectBeforeMove">
<summary>
Contains the coordinates of the window before it was moved or resized.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCCALCSIZE_PARAMS.rectClientBeforeMove">
<summary>
Contains the coordinates of the window's client area before the window was moved or resized.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.NCCALCSIZE_PARAMS.lpPos">
<summary>
Pointer to a WINDOWPOS structure that contains the size and position values specified in the operation that moved or resized the window.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.WNDCLASSEX.cbSize">
<summary>
Specifies the size, in bytes, of this structure. Set this member to sizeof(WNDCLASSEX).
Be sure to set this member before calling the GetClassInfoEx function.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.WNDCLASSEX.style">
<summary>
Specifies the class style(s).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.WNDCLASSEX.lpfnWndProc">
<summary>
Pointer to the window procedure.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.WNDCLASSEX.cbClsExtra">
<summary>
Specifies the number of extra bytes to allocate following the window-class structure. The system initializes the bytes to zero.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.WNDCLASSEX.cbWndExtra">
<summary>
Specifies the number of extra bytes to allocate following the window instance. The system initializes the bytes to zero.
If an application uses WNDCLASSEX to register a dialog box created by using the CLASS directive in the resource file,
it must set this member to DLGWINDOWEXTRA.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.WNDCLASSEX.hInstance">
<summary>
Handle to the instance that contains the window procedure for the class.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.WNDCLASSEX.hIcon">
<summary>
Handle to the class icon. This member must be a handle to an icon resource. If this member is NULL, the system provides a default icon.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.WNDCLASSEX.hCursor">
<summary>
Handle to the class cursor. This member must be a handle to a cursor resource.
If this member is NULL, an application must explicitly set the cursor shape whenever the mouse moves into the application's window.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.WNDCLASSEX.hbrBackground">
<summary>
Handle to the class background brush. This member can be a handle to the physical brush to be used for painting the background,
or it can be a color value. A color value must be one of the following standard system colors (the value 1 must be added to the chosen color).
If a color value is given, you must convert it to one of defined HBRUSH types.
The system automatically deletes class background brushes when the class is unregistered by using UnregisterClass.
An application should not delete these brushes.
When this member is NULL, an application must paint its own background whenever it is requested to paint in its client area.
To determine whether the background must be painted, an application can either process the WM_ERASEBKGND message or
test the fErase member of the PAINTSTRUCT structure filled by the BeginPaint function.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.WNDCLASSEX.lpszMenuName">
<summary>
Pointer to a null-terminated character string that specifies the resource name of the class menu, as the name appears in the resource file.
If you use an integer to identify the menu, use the MAKEINTRESOURCE macro. If this member is NULL, windows belonging to this class have no default menu.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.WNDCLASSEX.lpszClassName">
<summary>
Pointer to a null-terminated string or is an atom. If this parameter is an atom, it must be a class atom created by a previous call to the RegisterClass
or RegisterClassEx function. The atom must be in the low-order word of lpszClassName; the high-order word must be zero.
If lpszClassName is a string, it specifies the window class name. The class name can be any name registered with RegisterClass or RegisterClassEx,
or any of the predefined control-class names.
The maximum length for lpszClassName is 256. If lpszClassName is greater than the maximum length, the RegisterClassEx function will fail.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.WNDCLASSEX.hIconSm">
<summary>
Handle to a small icon that is associated with the window class.
If this member is NULL, the system searches the icon resource specified by the hIcon member for an icon of the appropriate size to use as the small icon.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.TooltipDuration.TTDT_AUTOMATIC">
<summary>
Set all three delay times to default proportions. The autopop time will be ten times the initial time and the reshow time will be
one fifth the initial time. If this flag is set, use a positive value of iTime to specify the initial time, in milliseconds.
Set iTime to a negative value to return all three delay times to their default values.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.TooltipDuration.TTDT_RESHOW">
<summary>
Set the amount of time it takes for subsequent ToolTip windows to appear as the pointer moves from one tool to another.
To return the reshow delay time to its default value, set iTime to -1.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.TooltipDuration.TTDT_AUTOPOP">
<summary>
Set the amount of time a ToolTip window remains visible if the pointer is stationary within a tool's bounding rectangle.
To return the autopop delay time to its default value, set iTime to -1.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NativeMethods.TooltipDuration.TTDT_INITIAL">
<summary>
Set the amount of time a pointer must remain stationary within a tool's bounding rectangle before the ToolTip window appears.
To return the initial delay time to its default value, set iTime to -1.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.ButtonPressedGradientBegin">
<summary>
Gets the starting color of the gradient used when the button is pressed down.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.ButtonPressedGradientEnd">
<summary>
Gets the end color of the gradient used when the button is pressed down.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.ButtonPressedGradientMiddle">
<summary>
Gets the middle color of the gradient used when the button is pressed down.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.ButtonSelectedGradientBegin">
<summary>
Gets the starting color of the gradient used when the button is selected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.ButtonSelectedGradientEnd">
<summary>
Gets the end color of the gradient used when the button is selected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.ButtonSelectedGradientMiddle">
<summary>
Gets the middle color of the gradient used when the button is selected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.ButtonSelectedHighlightBorder">
<summary>
Gets the border color to use with ButtonSelectedHighlight.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.CheckBackground">
<summary>
Gets the solid color to use when the check box is selected and gradients are being used.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.GripDark">
<summary>
Gets the color to use for shadow effects on the grip or move handle.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.GripLight">
<summary>
Gets the color to use for highlight effects on the grip or move handle.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.ImageMarginGradientBegin">
<summary>
Gets the starting color of the gradient used in the image margin of a ToolStripDropDownMenu.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.MenuBorder">
<summary>
Gets the border color or a MenuStrip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.MenuItemPressedGradientBegin">
<summary>
Gets the starting color of the gradient used when a top-level ToolStripMenuItem is pressed down.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.MenuItemPressedGradientEnd">
<summary>
Gets the end color of the gradient used when a top-level ToolStripMenuItem is pressed down.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.MenuItemPressedGradientMiddle">
<summary>
Gets the middle color of the gradient used when a top-level ToolStripMenuItem is pressed down.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.MenuItemSelectedGradientBegin">
<summary>
Gets the starting color of the gradient used when the ToolStripMenuItem is selected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.MenuItemSelectedGradientEnd">
<summary>
Gets the end color of the gradient used when the ToolStripMenuItem is selected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.MenuStripGradientBegin">
<summary>
Gets the starting color of the gradient used in the MenuStrip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.MenuStripGradientEnd">
<summary>
Gets the end color of the gradient used in the MenuStrip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.OverflowButtonGradientBegin">
<summary>
Gets the starting color of the gradient used in the ToolStripOverflowButton.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.OverflowButtonGradientEnd">
<summary>
Gets the end color of the gradient used in the ToolStripOverflowButton.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.OverflowButtonGradientMiddle">
<summary>
Gets the middle color of the gradient used in the ToolStripOverflowButton.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.RaftingContainerGradientBegin">
<summary>
Gets the starting color of the gradient used in the ToolStripContainer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.RaftingContainerGradientEnd">
<summary>
Gets the end color of the gradient used in the ToolStripContainer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.SeparatorDark">
<summary>
Gets the color to use to for shadow effects on the ToolStripSeparator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.SeparatorLight">
<summary>
Gets the color to use to for highlight effects on the ToolStripSeparator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.StatusStripGradientBegin">
<summary>
Gets the starting color of the gradient used on the StatusStrip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.StatusStripGradientEnd">
<summary>
Gets the end color of the gradient used on the StatusStrip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.ToolStripBorder">
<summary>
Gets the border color to use on the bottom edge of the ToolStrip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.ToolStripContentPanelGradientBegin">
<summary>
Gets the starting color of the gradient used in the ToolStripContentPanel.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.ToolStripContentPanelGradientEnd">
<summary>
Gets the end color of the gradient used in the ToolStripContentPanel.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.ToolStripDropDownBackground">
<summary>
Gets the solid background color of the ToolStripDropDown.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.ToolStripGradientBegin">
<summary>
Gets the starting color of the gradient used in the ToolStrip background.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.ToolStripGradientEnd">
<summary>
Gets the end color of the gradient used in the ToolStrip background.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.ToolStripGradientMiddle">
<summary>
Gets the middle color of the gradient used in the ToolStrip background.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.ToolStripPanelGradientBegin">
<summary>
Gets the starting color of the gradient used in the ToolStripPanel.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Office2007BlueSchemeColorTable.ToolStripPanelGradientEnd">
<summary>
Gets the end color of the gradient used in the ToolStripPanel.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Office2007ToolStripRenderer.#ctor">
<summary>
Initialize a new instance of the Office2007Renderer class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Office2007ToolStripRenderer.OnRenderArrow(System.Windows.Forms.ToolStripArrowRenderEventArgs)">
<summary>
Raises the RenderArrow event.
</summary>
<param name="e">An ToolStripArrowRenderEventArgs containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Office2007ToolStripRenderer.OnRenderButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
<summary>
Raises the RenderButtonBackground event.
</summary>
<param name="e">An ToolStripItemRenderEventArgs containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Office2007ToolStripRenderer.OnRenderDropDownButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
<summary>
Raises the RenderDropDownButtonBackground event.
</summary>
<param name="e">An ToolStripItemRenderEventArgs containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Office2007ToolStripRenderer.OnRenderItemCheck(System.Windows.Forms.ToolStripItemImageRenderEventArgs)">
<summary>
Raises the RenderItemCheck event.
</summary>
<param name="e">An ToolStripItemImageRenderEventArgs containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Office2007ToolStripRenderer.OnRenderItemText(System.Windows.Forms.ToolStripItemTextRenderEventArgs)">
<summary>
Raises the RenderItemText event.
</summary>
<param name="e">An ToolStripItemTextRenderEventArgs containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Office2007ToolStripRenderer.OnRenderItemImage(System.Windows.Forms.ToolStripItemImageRenderEventArgs)">
<summary>
Raises the RenderItemImage event.
</summary>
<param name="e">An ToolStripItemImageRenderEventArgs containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Office2007ToolStripRenderer.CreateGrayscaleImage(System.Drawing.Bitmap)">
<summary>
Creates the grayscale image.
</summary>
<param name="normalImage">The normal image.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Office2007ToolStripRenderer.OnRenderMenuItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
<summary>
Raises the RenderMenuItemBackground event.
</summary>
<param name="e">An ToolStripItemRenderEventArgs containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Office2007ToolStripRenderer.OnRenderSplitButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
<summary>
Raises the RenderSplitButtonBackground event.
</summary>
<param name="e">An ToolStripItemRenderEventArgs containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Office2007ToolStripRenderer.OnRenderStatusStripSizingGrip(System.Windows.Forms.ToolStripRenderEventArgs)">
<summary>
Raises the RenderStatusStripSizingGrip event.
</summary>
<param name="e">An ToolStripRenderEventArgs containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Office2007ToolStripRenderer.OnRenderToolStripContentPanelBackground(System.Windows.Forms.ToolStripContentPanelRenderEventArgs)">
<summary>
Raises the RenderToolStripContentPanelBackground event.
</summary>
<param name="e">An ToolStripContentPanelRenderEventArgs containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Office2007ToolStripRenderer.OnRenderSeparator(System.Windows.Forms.ToolStripSeparatorRenderEventArgs)">
<summary>
Raises the RenderSeparator event.
</summary>
<param name="e">An ToolStripSeparatorRenderEventArgs containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Office2007ToolStripRenderer.OnRenderToolStripBackground(System.Windows.Forms.ToolStripRenderEventArgs)">
<summary>
Raises the RenderToolStripBackground event.
</summary>
<param name="e">An ToolStripRenderEventArgs containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Office2007ToolStripRenderer.OnRenderImageMargin(System.Windows.Forms.ToolStripRenderEventArgs)">
<summary>
Raises the RenderImageMargin event.
</summary>
<param name="e">An ToolStripRenderEventArgs containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Office2007ToolStripRenderer.OnRenderToolStripBorder(System.Windows.Forms.ToolStripRenderEventArgs)">
<summary>
Raises the RenderToolStripBorder event.
</summary>
<param name="e">An ToolStripRenderEventArgs containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Office2007ToolStripRenderer.GradientSetColors.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,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 <see cref="T:FarPoint.Win.Spread.Office2007ToolStripRenderer.GradientSetColors"/> class.
</summary>
<param name="insideTop1">The inside top1.</param>
<param name="insideTop2">The inside top2.</param>
<param name="insideBottom1">The inside bottom1.</param>
<param name="insideBottom2">The inside bottom2.</param>
<param name="fillTop1">The fill top1.</param>
<param name="fillTop2">The fill top2.</param>
<param name="fillBottom1">The fill bottom1.</param>
<param name="fillBottom2">The fill bottom2.</param>
<param name="border1">The border1.</param>
<param name="border2">The border2.</param>
</member>
<member name="P:FarPoint.Win.Spread.Office2007ToolStripRenderer.GradientSetColors.InsideTop1">
<summary>
Gets the inside top1.
</summary>
<value>The inside top1.</value>
</member>
<member name="P:FarPoint.Win.Spread.Office2007ToolStripRenderer.GradientSetColors.InsideTop2">
<summary>
Gets the inside top2.
</summary>
<value>The inside top2.</value>
</member>
<member name="P:FarPoint.Win.Spread.Office2007ToolStripRenderer.GradientSetColors.InsideBottom1">
<summary>
Gets the inside bottom1.
</summary>
<value>The inside bottom1.</value>
</member>
<member name="P:FarPoint.Win.Spread.Office2007ToolStripRenderer.GradientSetColors.InsideBottom2">
<summary>
Gets the inside bottom2.
</summary>
<value>The inside bottom2.</value>
</member>
<member name="P:FarPoint.Win.Spread.Office2007ToolStripRenderer.GradientSetColors.FillTop1">
<summary>
Gets the fill top1.
</summary>
<value>The fill top1.</value>
</member>
<member name="P:FarPoint.Win.Spread.Office2007ToolStripRenderer.GradientSetColors.FillTop2">
<summary>
Gets the fill top2.
</summary>
<value>The fill top2.</value>
</member>
<member name="P:FarPoint.Win.Spread.Office2007ToolStripRenderer.GradientSetColors.FillBottom1">
<summary>
Gets the fill bottom1.
</summary>
<value>The fill bottom1.</value>
</member>
<member name="P:FarPoint.Win.Spread.Office2007ToolStripRenderer.GradientSetColors.FillBottom2">
<summary>
Gets the fill bottom2.
</summary>
<value>The fill bottom2.</value>
</member>
<member name="P:FarPoint.Win.Spread.Office2007ToolStripRenderer.GradientSetColors.Border1">
<summary>
Gets the border1.
</summary>
<value>The border1.</value>
</member>
<member name="P:FarPoint.Win.Spread.Office2007ToolStripRenderer.GradientSetColors.Border2">
<summary>
Gets the border2.
</summary>
<value>The border2.</value>
</member>
<member name="M:FarPoint.Win.Spread.GdiPlusHelper.CreateRoundRectangle(System.Drawing.RectangleF,System.Single,System.Single,System.Single,System.Single)">
<summary>
Creates the round rectangle.
</summary>
<param name="rectangle">The rectangle.</param>
<param name="topLeftRadius">The top left radius.</param>
<param name="topRightRadius">The top right radius.</param>
<param name="bottomRightRadius">The bottom right radius.</param>
<param name="bottomLeftRadius">The bottom left radius.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.PivotTableFieldListMenuStripRenderer.OnRenderMenuItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
<summary>
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.PivotTableFieldListMenuStripRenderer.OnRenderItemImage(System.Windows.Forms.ToolStripItemImageRenderEventArgs)">
<summary>
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemImageRenderEventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.PivotTableFieldListMenuStripRenderer.OnRenderItemCheck(System.Windows.Forms.ToolStripItemImageRenderEventArgs)">
<summary>
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemImageRenderEventArgs"/> that contains the event data.</param>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SpreadChartBoundingContextMenuStrip">
<summary>
Represents the context menu for moving chart by mouse's right-button.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartBoundingContextMenuStrip.#ctor(FarPoint.Win.Spread.Chart.ChartShape,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChartBoundingContextMenuStrip"/> class.
</summary>
<param name="chart">The chart.</param>
<param name="move">Indicates whether to show the Move menu item or Resize menu item.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartBoundingContextMenuStrip.Dispose(System.Boolean)">
<summary>
Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.ContextMenuStrip"/> and optionally releases the managed resources.
</summary>
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartBoundingContextMenuStrip.OnItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.ToolStrip.ItemClicked"/> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartBoundingContextMenuStrip.OnClosing(System.Windows.Forms.ToolStripDropDownClosingEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.ToolStripDropDown.Closing"/> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.ToolStripDropDownClosingEventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartBoundingContextMenuStrip.RefreshChartAndBoundingShape(System.Drawing.Rectangle)">
<summary>
Refreshes the chart and bounding shape.
</summary>
<param name="boudingRect">The bouding rect.</param>
</member>
<member name="T:FarPoint.Win.Spread.Chart.ChartDesignerLoader">
<summary>
Implement dynamic loading for ChartDesigner
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip">
<summary>
Represent the default context menu for SpreadChart.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.Dispose(System.Boolean)">
<summary>
Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.ContextMenuStrip"/> and optionally releases the managed resources.
</summary>
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.OnGotFocus(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.GotFocus"/> event.
</summary>
<param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.OnCopyItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
<summary>
Performs "Copy" command from the context menu.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.OnCutItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
<summary>
Performs "Cut" command from the context menu.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.OnPasteItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
<summary>
Performs "Paste" command from the context menu.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.OnDeleteItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
<summary>
Performs "Delete" command from the context menu.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.OnSwitchRowColumnItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
<summary>
Performs "Switch Row and Column" command from the context menu.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.OnMoveChartItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
<summary>
Performs "Move Chart" command from the context menu.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.CreateMoveChartForm(FarPoint.Win.Spread.FpSpread,FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Creates the move chart form.
</summary>
<param name="spread">The spread.</param>
<param name="chart">The chart.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.OnChangeChartTypeItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
<summary>
Performs "Change Chart Type" command from the context menu.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.insertChartDlg_Shown(System.Object,System.EventArgs)">
<summary>
Handles the Shown event of the insertChartDlg control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.OnSelectDataItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
<summary>
Performs "Select Data" command from the context menu.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.CreateChartSelectDataSourceForm(FarPoint.Win.Spread.FpSpread,FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Creates the chart select data source form.
</summary>
<param name="spread">The spread.</param>
<param name="chart">The chart.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.OnChangeChartViewTypeItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
<summary>
Performs "Change Chart View Type" command from the context menu.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.OnChartDesignerItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
<summary>
Performs "Chart Designer" command from the context menu.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.OnItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.ToolStrip.ItemClicked"/> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.OnFormatPlotAreaItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
<summary>
Raises the <see cref="E:FormatPlotAreaItemClicked"/> event.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.CreateFormatPlotAreaForm(FarPoint.Win.Chart.ChartModel,FarPoint.Win.Chart.ChartViewType,FarPoint.Win.Chart.PlotArea)">
<summary>
Creates the format plot area form.
</summary>
<param name="model">The model.</param>
<param name="viewType">Type of the view.</param>
<param name="plotArea">The plot area.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.OnFormatLegendAreaItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
<summary>
Raises the <see cref="E:FormatLegendAreaItemClicked"/> event.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.CreateFormatLegendAreaForm(FarPoint.Win.Chart.ChartModel,FarPoint.Win.Chart.ChartViewType,FarPoint.Win.Chart.LegendArea)">
<summary>
Creates the format legend area form.
</summary>
<param name="model">The model.</param>
<param name="viewType">Type of the view.</param>
<param name="legendArea">The legend area.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.OnFormatLabelAreaItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
<summary>
Raises the <see cref="E:FormatLabelAreaItemClicked"/> event.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.CreateLabelAreaForm(FarPoint.Win.Chart.ChartModel,FarPoint.Win.Chart.ChartViewType,FarPoint.Win.Chart.LabelArea)">
<summary>
Creates the label area form.
</summary>
<param name="model">The model.</param>
<param name="viewType">Type of the view.</param>
<param name="labelArea">The label area.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.OnFormatSeriesItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
<summary>
Raises the <see cref="E:FormatSeriesItemClicked"/> event.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.CreateFormatSeriesForm(FarPoint.Win.Chart.ChartModel,FarPoint.Win.Chart.ChartViewType,FarPoint.Win.Chart.ICompositeSeries,FarPoint.Win.Chart.Series)">
<summary>
Creates the format series form.
</summary>
<param name="model">The model.</param>
<param name="viewType">Type of the view.</param>
<param name="series">The series.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.OnFormatChartItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
<summary>
Raises the <see cref="E:FormatChartItemClicked"/> event.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.CreateFormatChartAreaForm(FarPoint.Win.Chart.ChartModel,FarPoint.Win.Chart.ChartViewType)">
<summary>
Creates the chart select data source form.
</summary>
<param name="model">The model.</param>
<param name="viewType">Type of the view.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.OnFormatDataLabelItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
<summary>
Raises the <see cref="E:FormatDataLabelItemClicked"/> event.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.CreateFormatDataLabelForm(FarPoint.Win.Chart.ChartModel,FarPoint.Win.Chart.ChartViewType,FarPoint.Win.Chart.Series)">
<summary>
Creates the format data label form.
</summary>
<param name="model">The model.</param>
<param name="viewType">Type of the view.</param>
<param name="series">The series.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.OnFormatDataPointItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
<summary>
Raises the <see cref="E:FormatDataPointItemClicked"/> event.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.CreateFormatDataPointForm(FarPoint.Win.Chart.ChartModel,FarPoint.Win.Chart.ChartViewType,FarPoint.Win.Chart.Series,System.Int32)">
<summary>
Creates the format data point form.
</summary>
<param name="model">The model.</param>
<param name="viewType">Type of the view.</param>
<param name="series">The series.</param>
<param name="pointIndex">Index of the point.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.formSelect_FormClosed(System.Object,System.Windows.Forms.FormClosedEventArgs)">
<summary>
Handles the FormClosed event of the formSelect control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.FormClosedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.OnClosed(System.Windows.Forms.ToolStripDropDownClosedEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.ToolStripDropDown.Closed"/> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.ToolStripDropDownClosedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.UpdateContextMenuItems">
<summary>
Updates the context menu items.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStrip.Items">
<summary>
Gets all the items that belong to a <see cref="T:System.Windows.Forms.ToolStrip"/>.
</summary>
<value></value>
<returns>
An object of type <see cref="T:System.Windows.Forms.ToolStripItemCollection"/>, representing all the elements contained by a <see cref="T:System.Windows.Forms.ToolStrip"/>.
</returns>
</member>
<member name="T:FarPoint.Win.Spread.Chart.TooltipEventHandler">
<summary>
Represents the method that will handle an event that need to show tooltip.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Chart.TooltipEventArgs">
<summary>
Represents the data structure which will be provided to show the tooltip.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.TooltipEventArgs.#ctor(System.Drawing.Point,System.String,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.TooltipEventArgs"/> class.
</summary>
<param name="location">The location.</param>
<param name="text">The text.</param>
</member>
<member name="T:FarPoint.Win.Spread.Chart.TooltipWindow">
<summary>
Represents a custom tooltip window.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.TooltipWindow.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.TooltipWindow"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.TooltipWindow.#ctor(System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.TooltipWindow"/> class.
</summary>
<param name="animation">if set to <c>true</c> [animation].</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.TooltipWindow.#ctor(System.Boolean,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.TooltipWindow"/> class.
</summary>
<param name="animation">if set to <c>true</c> [animation].</param>
<param name="animationInterval">The animation interval.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.TooltipWindow.AdjustSize">
<summary>
Adjusts the size.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.TooltipWindow.CreateRegion">
<summary>
Creates the region.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.TooltipWindow.Dispose(System.Boolean)">
<summary>
Disposes of the resources (other than memory) used by the <see cref="T:System.Windows.Forms.Form"/>.
</summary>
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.TooltipWindow.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
<summary>
Paints the background of the control.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.TooltipWindow.OnPaint(System.Windows.Forms.PaintEventArgs)">
<summary>
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.TooltipWindow.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.MouseMove"/> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.TooltipWindow.WndProc(System.Windows.Forms.Message@)">
<summary>
WNDs the proc.
</summary>
<param name="m">The m.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.TooltipWindow.Show">
<summary>
Displays the control to the user.
</summary>
<PermissionSet>
<IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
<IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence"/>
<IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
</PermissionSet>
</member>
<member name="M:FarPoint.Win.Spread.Chart.TooltipWindow.Show(System.Drawing.Point)">
<summary>
Shows the specified p.
</summary>
<param name="p">The p.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.TooltipWindow.Hide">
<summary>
Conceals the control from the user.
</summary>
<PermissionSet>
<IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
<IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence"/>
<IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
</PermissionSet>
</member>
<member name="P:FarPoint.Win.Spread.Chart.TooltipWindow.AnimationInterval">
<summary>
Gets or sets the animation time in mili-seconds. The default value is 100 mili-seconds.
</summary>
<value>The animation time.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.TooltipWindow.CreateParams">
<summary>
Gets the create params.
</summary>
<value>Parameters</value>
</member>
<member name="M:FarPoint.Win.Spread.Chart.UserActivityHook.Dispose(System.Boolean)">
<summary>
Releases unmanaged and - optionally - managed resources
</summary>
<param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.UserActivityHook.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.UserActivityHook.KeyboardHookStruct.vkCode">
<summary>
Specifies a virtual-key code. The code must be a value in the range 1 to 254.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.UserActivityHook.KeyboardHookStruct.scanCode">
<summary>
Specifies a hardware scan code for the key.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.UserActivityHook.KeyboardHookStruct.flags">
<summary>
Specifies the extended-key flag, event-injected flag, context code, and transition-state flag.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.UserActivityHook.KeyboardHookStruct.time">
<summary>
Specifies the time stamp for this message.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.UserActivityHook.KeyboardHookStruct.dwExtraInfo">
<summary>
Specifies extra information associated with the message.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SpreadChart">
<summary>
Represent a chart instance in Spread.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Chart.ChartShape">
<summary>
Represents an abstract class which contains the most basic behavior for SpreadChart.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.RenderImage">
<summary>
Renders the chart's image to a bitmap and return this bitmap.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetBoudingKeys">
<summary>
Resets the bouding keys.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetAllowBackgroundImageRotation">
<summary>
Resets the background image rotation allowed flag to its default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetAlphaBlendBackColor">
<summary>
Resets the alpha-blend value of the background color of the object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetAlphaBlendShadowColor">
<summary>
Resets the amount of transparency for the shadow, which is 128.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetAnchor">
<summary>
Resets the object's anchored status.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetBackColor">
<summary>
Resets the background color to its default setting.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetBackgroundImage">
<summary>
Resets the background image of the element to the default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetBackgroundImageRotationAngle">
<summary>
Resets the background image rotation angle to its default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetBorder">
<summary>
Resets the border of the element to its default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetCanRenderText">
<summary>
Resets whether the shape can render its text property.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetCanRotate">
<summary>
Resets whether the object can be rotated by the user.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetElements">
<summary>
Resets the elements to their default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetFont">
<summary>
Resets the font for the element to it default value.
</summary>
<example>
<code lang="csharp">
Font f = new System.Drawing.Font("MS Sans Serif", 12, FontStyle.Bold);
element.Font = f;
element.State = FarPoint.Win.ElementState.Inverted;
element.ResetFont();
</code>
<code lang="vb">
Dim f As New System.Drawing.Font("MS Sans Serif", 12, FontStyle.Bold)
element.Font = f
element.State = FarPoint.Win.ElementState.Inverted
element.ResetFont();
</code>
</example>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetForeColor">
<summary>
Resets the text color for the element to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetForegroundImage">
<summary>
Resets the foreground image for the element to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetGradient">
<summary>
Resets the gradient style of the object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetMarginBottom">
<summary>
Resets the margin between the bottom of the element and its contents to the default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetMarginLeft">
<summary>
Resets the margin between the left side of the element and its contents to the default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetMarginRight">
<summary>
Resets the margin between the right side of the element and its contents to the default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetMarginTop">
<summary>
Resets the margin between the top of the element and its contents to the default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetPicture">
<summary>
Resets the image for the element to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetPictureMargin">
<summary>
Resets the margin between text and picture to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetPictureOrientation">
<summary>
Resets the orientation of the picture in the element to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetPictureRotationAngle">
<summary>
Resets the picture rotation angle to its default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetPictureTransparencyColor">
<summary>
Resets the transparency of a picture in the element to its default value.
</summary>
<example>
<code lang="csharp">
control.Picture = Image.FromFile("d:\overlay.bmp");
control.MarginTop = 3;
control.MarginBottom = 3;
control.PictureTransparencyColor = Color.Blue;
private void button1_Click(object sender, System.EventArgs e)
{
control.ResetPictureTransparencyColor()
}
</code>
<code lang="vb">
control.Picture = Image.FromFile("d:\overlay.bmp")
control.MarginTop = 3
control.MarginBottom = 3
control.PictureTransparencyColor = Color.Blue
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
control.ResetPictureTransparencyColor()
End Sub
</code>
</example>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetPictureTransparencyTolerance">
<summary>
Resets the transparency tolerance for a picture in the element to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetRotationAngle">
<summary>
Resets the rotation angle to its default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetShadowColor">
<summary>
Resets the color of the shadow to the default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetShadowDirection">
<summary>
Resets the direction of the shadow to the default, which is None.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetShadowOffsetX">
<summary>
Resets the amount of offset of the shadow in the horizontal direction
to the default value, which is 5.0F.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetShadowOffsetY">
<summary>
Resets the amount of offset of the shadow in the vertical direction
to the default value, which is 5.0F.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetShapeOutlineColor">
<summary>
Resets the shape outline color of the object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetShapeOutlineStyle">
<summary>
Resets the shape outline style of the object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetShapeOutlineThickness">
<summary>
Resets the shape outline thickness of the object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetText">
<summary>
Resets the text in an element to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetTextOrientation">
<summary>
Resets the orientation of text in an element to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetTextRotationAngle">
<summary>
Resets the text rotation angle to its default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.Rotate(System.Single)">
<summary>
Rotates the object by the specified angle around the center of the object.
</summary>
<param name="angle">Angle to rotate the object</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.Rotate(System.Drawing.Point,System.Single)">
<summary>
Rotates the object by the specified angle around the specified point.
</summary>
<param name="rotationCenterPoint">Point around which to rotate the object</param>
<param name="angle">Angle to rotate the object</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.Scale(System.Single,System.Single,System.Boolean)">
<summary>
Adjusts the size of the object by the specified amount.
</summary>
<param name="scaleX">Factor by which to scale the object in the horizontal dimension</param>
<param name="scaleY">Factor by which to scale the object in the vertical dimension</param>
<param name="repaint">Whether to re-draw the object</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.SerializePositionAndSize(System.Xml.XmlTextWriter)">
<summary>
Serializes the position and size.
</summary>
<param name="w">XmlTextWriter to which to write (save) the position and size</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.SerializeProps(System.Xml.XmlTextWriter)">
<summary>
Saves the object properties to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object properties</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.SetElementStyle(FarPoint.Win.ElementStyle)">
<summary>
Sets the style for the element.
</summary>
<param name="style">ElementStyle object containing the style of the element</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.SetElementStyle(FarPoint.Win.ElementStyle,System.Boolean)">
<summary>
Sets the style for the element and clears unset properties.
</summary>
<param name="style">ElementStyle object containing the style of the element</param>
<param name="clearUnsetProps">Whether to reset properties that are not set
in the element to their default settings</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.SetState(FarPoint.Win.ElementState)">
<summary>
Sets the state of the element.
</summary>
<param name="eState">Enumerated state in which to place the element</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeAllowBackgroundImageRotation">
<summary>
Determines if the background image rotation allowed flag of the object should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeAlphaBlendBackColor">
<summary>
Determines if the alpha-blend value of the background color of the object should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeAlphaBlendShadowColor">
<summary>
Determines if the AlphaBlendShadowColor property should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeAnchor">
<summary>
Determines if the anchor property should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeBackColor">
<summary>
Indicates whether the BackColor property should be persisted.
</summary>
<returns>New backcolor</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeBackgroundImageRotationAngle">
<summary>
Determines if the background image rotation angle of the object should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeCanRenderText">
<summary>
Determines if the shape CanRenderText property should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeCanRotate">
<summary>
Determines if the CanRotate property should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeContainedObjects">
<summary>
Determines if the ContainedObjects property should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeFont">
<summary>
Indicates whether the Font property should be persisted.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeForeColor">
<summary>
Indicates whether the ForeColor property should be persisted.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializePictureRotationAngle">
<summary>
Determines if the picture rotation angle of the object should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeGradient">
<summary>
Determines if the shape outline scaling should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializePictureTransparencyColor">
<summary>
Indicates whether the PictureTransparencyColor property should be persisted.
</summary>
<returns>The transparency color</returns>
<example>
<code lang="csharp">
control.Picture = Image.FromFile("d:\overlay.bmp");
control.MarginTop = 3;
control.MarginBottom = 3;
control.PictureTransparencyColor = Color.Blue;
</code>
<code lang="vb">
control.Picture = Image.FromFile("d:\overlay.bmp")
control.MarginTop = 3
control.MarginBottom = 3
control.PictureTransparencyColor = Color.Blue
</code>
</example>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializePictureTransparencyTolerance">
<summary>
Indicates whether the PictureTransparencyTolerance property should be persisted.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeRotationAngle">
<summary>
Determines if the rotation angle of the object should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeShadowColor">
<summary>
Determines if the ShadowColor property should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeShadowDirection">
<summary>
Determines if the ShadowDirection property should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeShadowOffset">
<summary>
Determines whether the shadow offset should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeShadowOffsetX">
<summary>
Determines if the ShadowOffsetX property should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeShadowOffsetY">
<summary>
Determines if the ShadowOffsetX property should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeShapeOutlineColor">
<summary>
Determines if the shape outline color should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeShapeOutlineStyle">
<summary>
Determines if the shape outline style should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeShapeOutlineThickness">
<summary>
Determines if the shape outline thickness should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeTextRotationAngle">
<summary>
Determines if the text rotation angle of the object should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnDeserialization(System.Object)">
<summary>
Internal use only.
</summary>
<param name="sender"></param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.AttachMouseListeners">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.AttachParent(System.Windows.Forms.Control,System.Boolean,System.Boolean)">
<summary>
Internal use only.
</summary>
<param name="parent"></param>
<param name="attachEvents"></param>
<param name="recursive"></param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.DetachListeners">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.DoClick(System.Object,System.EventArgs)">
<summary>
Internal use only.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.DoDoubleClick(System.Object,System.EventArgs)">
<summary>
Internal use only.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.DoMouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Internal use only.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.DoMouseEnter(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Internal use only.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.DoMouseLeave(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Internal use only.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.DoMouseMove(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Internal use only.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.DoRotate(System.Drawing.Point)">
<summary>
Allows the object to rotate using the specified point to determine the rotation angle.
</summary>
<param name="pt">Point with which to determine rotation angle.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.FireUIChangeComplete">
<summary>
Occurs when the User Interface (UI) change is complete.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.GetGrabHandleRectangles(System.Drawing.Rectangle,System.Drawing.Rectangle[]@)">
<summary>
Gets the grab handle rectangles.
</summary>
<param name="r">Rectangle</param>
<param name="handleRects">Arrary of handle rectangles</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.HitTestTransparentShape(System.Drawing.Point,System.Boolean)">
<summary>
Internal use only.
</summary>
<param name="pt"></param>
<param name="setCursor"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnGotFocus(System.EventArgs)">
<summary>
Internal use only.
</summary>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.PaintElements(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints elements.
</summary>
<param name="g">Graphics device</param>
<param name="faceRect">Rectangle bounding the area</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.Reset">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetCanFocus">
<summary>
Resets to the default value whether the element can have the focus.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetCanMove">
<summary>
Resets whether the object can be moved by the user.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetCanPrint">
<summary>
Resets whether the object can be printed by the container.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetCanSize">
<summary>
Resets whether the object can be resized by the user.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetDynamicMove">
<summary>
Resets the dynamic move of the object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetDynamicSize">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetEnabled">
<summary>
Resets to the default value whether the element is enabled.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetLocked">
<summary>
Reset the object's locked status.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetName">
<summary>
Resets the name to its default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetShape">
<summary>
Resets the shape of the object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetSizeProportional">
<summary>
Resets whether the object can be resized proportionally by the user.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetTag">
<summary>
Resets the Tag object for the element to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetVisible">
<summary>
Resets to the default value whether an element is visible.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.SetRedraw(System.Boolean,System.Boolean)">
<summary>
Internal use only.
</summary>
<param name="redraw"></param>
<param name="refresh"></param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.Select(System.Boolean)">
<summary>
Internal use only.
</summary>
<param name="selected"></param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeCanMove">
<summary>
Determines if the CanMove property should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeCanPrint">
<summary>
Determines if the CanPrint property should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeCanSize">
<summary>
Determines if the CanSize property should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeDynamicMove">
<summary>
Internal use only.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeDynamicSize">
<summary>
Internal use only.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeLocked">
<summary>
Determines if the locked property should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeName">
<summary>
Determines if the name of the object should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeShape">
<summary>
Determines if the shape should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeSizeProportional">
<summary>
Determines if the SizeProportional property should be serialized.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShouldSerializeTag">
<summary>
Indicates whether the Tag property should be persisted.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetAlignVert">
<summary>
Resets the vertical alignment of the element to the default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetAlignText">
<summary>
Resets the text alignment of the element to the default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ResetAlignHorz">
<summary>
Resets the horizontal alignment of the element to the default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.PaintTextAndPicture(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints the text and picture in the element.
</summary>
<param name="g">Graphics device</param>
<param name="r">Rectangle bounding both the text and picture</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.PaintText(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Draws the text for the shape.
</summary>
<param name="g">Graphics device</param>
<param name="rText">Bounding rectangle for the text</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.PaintSpecialForeground(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints special foreground.
</summary>
<param name="g">Graphics device</param>
<param name="r">Rectangle bounding the area</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.PaintSpecialBackground(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Asks the control to repaint the background for the object.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the object</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnForegroundImageChanged(System.Object,System.EventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.ElementWindowless.ForegroundImageChanged"/> event when the
foreground picture has changed.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnPictureChanged(System.Object,System.EventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.ElementWindowless.PictureChanged"/> event when the
picture has changed.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnFontChanged(System.EventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.ElementWindowless.FontChanged"/> event when the
font in the control has changed.
</summary>
<param name="e">EventArgs object containing event data</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnBackgroundImageChanged(System.Object,System.EventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.ElementWindowless.BackgroundImageChanged"/> event when the
background picture has changed.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.GetTextAndPictureRectangles(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle@,System.Drawing.Rectangle@)">
<summary>
Gets the bounding rectangles for the text and the picture in the presentation space.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the shape</param>
<param name="rPict">Bounding rectangle for the picture</param>
<param name="rText">Bounding rectangle for the text</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.GetRotateHandleRectangle(System.Drawing.Rectangle)">
<summary>
Gets the rotate handle rectangle.
</summary>
<param name="r">Rectangle</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.GetFont">
<summary>
Gets the default font used by the element, if the Font property is null.
</summary>
<returns></returns>
<example>
<code lang="csharp">
Font f = element.GetFont();
}
</code>
<code lang="vb">
Font f = element.GetFont()
</code>
</example>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.GetElementStyle">
<summary>
Gets the style for the element.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.FillBackgroundWithGradient(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Fills the background of the object with a gradient.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the shape</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.CopyTo(System.Object)">
<summary>
Copies the properties of this object in presentation space (drawing space) to the target object.
</summary>
<param name="target">Target object</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ToggleState">
<summary>
Toggles the state of the element.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.AdjustStringFormat(System.Drawing.StringFormat@)">
<summary>
Internal use only.
</summary>
<param name="fmt">String format</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.GetRotateAngle(System.Drawing.Point,System.Drawing.Point,System.Drawing.Point)">
<summary>
Gets the rotate angle.
</summary>
<param name="centerPt">Point containing the basepoint of rotation</param>
<param name="pt1">Point containing the first endpoint</param>
<param name="pt2">Point containing the second endpoint</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.GetPictureRegion(System.Object)">
<summary>
Gets the region of the picture.
</summary>
<param name="picture">Picture</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.DeserializeObjectProps(System.Xml.XmlNodeReader)">
<summary>
Loads the object properties from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object properties</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.DeserializePositionAndSize(System.Xml.XmlNodeReader)">
<summary>
Deserializes the position and size.
</summary>
<param name="r">XmlNodeReader from which to read (load) the position and size</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.DeserializeShapeProps(System.Xml.XmlNodeReader)">
<summary>
Loads the object properties from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.FlipShapeHorizontal">
<summary>
Flips the shape horizontally (along a horizontal axis).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.FlipShapeVertical">
<summary>
Flips the shape vertically (along a vertical axis).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.#ctor(FarPoint.Win.Chart.ChartViewType)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Chart.FpChart"/> class.
</summary>
<param name="viewType">Type of the view.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.chart_SelectionChanged(System.Object,System.EventArgs)">
<summary>
Handles the SelectionChanged event of the chart control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnChartActionComplete(System.Object,FarPoint.Win.Chart.UndoRedoEventArgs)">
<summary>
Called when user finish performing something in Chart control.
</summary>
<param name="sender">The sender.</param>
<param name="e">The <see cref="T:FarPoint.Win.Chart.UndoRedoEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.UndoManager_ActionComplete(System.Object,FarPoint.Win.Chart.UndoRedoEventArgs)">
<summary>
Handles the ActionComplete event of the UndoManager control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:FarPoint.Win.Chart.UndoRedoEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnChartActionPerforming(System.Object,FarPoint.Win.Chart.UndoRedoCancelEventArgs)">
<summary>
Called when user's performing something in Chart control.
</summary>
<param name="sender">The sender.</param>
<param name="e">The <see cref="T:FarPoint.Win.Chart.UndoRedoCancelEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.UndoManager_ActionPerforming(System.Object,FarPoint.Win.Chart.UndoRedoCancelEventArgs)">
<summary>
Handles the ActionPerforming event of the UndoManager control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:FarPoint.Win.Chart.UndoRedoCancelEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Chart.FpChart"/> class. The created chart will be displayed in 2D view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.AttachEvents">
<summary>
Attaches the events.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnChartUndoComplete(System.Object,FarPoint.Win.Chart.UndoRedoEventArgs)">
<summary>
Called when user finish performing something in Chart control.
</summary>
<param name="sender">The sender.</param>
<param name="e">The <see cref="T:FarPoint.Win.Chart.UndoRedoEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnChartRedoComplete(System.Object,FarPoint.Win.Chart.UndoRedoEventArgs)">
<summary>
Called when user finish performing something in Chart control.
</summary>
<param name="sender">The sender.</param>
<param name="e">The <see cref="T:FarPoint.Win.Chart.UndoRedoEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnChartSelectionChanged(System.Object,System.EventArgs)">
<summary>
Called when user select a different element in chart.
</summary>
<param name="sender">The sender.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.Finalize">
<summary>
Releases unmanaged resources and performs other cleanup operations before the
<see cref="T:FarPoint.Win.Spread.Chart.SpreadChart"/> is reclaimed by garbage collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.#cctor">
<summary>
Initializes the <see cref="T:FarPoint.Win.Chart.FpChart"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.PaintBorderInternal(System.Drawing.Graphics,System.Drawing.RectangleF)">
<summary>
Paints the border. This function is used in many cases: non-client area, part of client area or both of them.
</summary>
<param name="g">The g.</param>
<param name="rc">The rc.</param>
<param name="isNonClient">if set to <c>true</c> [is non client].</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.DrawSeparatorDot(System.Drawing.Graphics,System.Single,System.Single,System.Single,System.Single,System.Drawing.Brush)">
<summary>
Draws the separator dot.
</summary>
<param name="g">The g.</param>
<param name="x">The x.</param>
<param name="y">The y.</param>
<param name="hoz">The hoz.</param>
<param name="ver">The ver.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.DoMouseUp(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Internal use only.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.PrepareForMovingResizing">
<summary>
Prepares for moving resizing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.DoMove(System.Drawing.Point)">
<summary>
Allows the object to be moved.
</summary>
<param name="pt">Point location of object</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.DoSize(System.Int32,System.Drawing.Point)">
<summary>
Allows the object to be sized.
</summary>
<param name="resizeHandle">Index of the grab handle used to size the object</param>
<param name="pt">Point from which to size the object</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ExceedMousePercision(System.Drawing.Point,System.Drawing.Point)">
<summary>
Exceeds the mouse percision.
</summary>
<param name="oldPoint">The old point.</param>
<param name="newPoint">The new point.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.BeginUpdate">
<summary>
Begins the update.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.EndUpdate">
<summary>
Ends the update.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.DisallowChangeMouseCursor">
<summary>
Indicates that SpreadView should not change the mouse cursor on moving.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.Model_Changed(System.Object,System.EventArgs)">
<summary>
Handles the Changed event of the Model control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ClearCaching">
<summary>
Clears the caching.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnChanged">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.Chart.FpChart.Changed"/> event.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.PerformKeyEventOnBounding(System.Windows.Forms.KeyEventArgs,System.Boolean)">
<summary>
Performs the key event on resizing.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.KeyEventArgs"/> instance containing the event data.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.CreateNewInstance">
<summary>
Creates a new instance of <see cref="T:FarPoint.Win.Spread.Chart.ChartShape"/> class.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.Clone">
<summary>
Creates and returns a copy of the object.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnPropertyChanged(System.Object,System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.ElementWindowless.PropertyChanged"/> event when the
property on an element has changed.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnLostFocus(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.LostFocus"/> event.
</summary>
<param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ProcessDialogKey(System.Windows.Forms.Keys)">
<summary>
Processes the dialog key.
</summary>
<param name="keyData">The key data.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.KeyDown"/> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnKeyUp(System.Windows.Forms.KeyEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.KeyUp"/> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.GetFpChartLocation(System.Drawing.Point)">
<summary>
Gets the fp chart location.
</summary>
<param name="p">The p.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.SetBoundsFloat(System.Single,System.Single,System.Single,System.Single,System.Boolean,System.Boolean)">
<summary>
Sets the bounds of the object to the specified position and size.
</summary>
<param name="x">X-coordinate for bounding rectangle's top-left corner</param>
<param name="y">Y-coordinate for bounding rectangle's top-left corner</param>
<param name="width">Width of bounding rectangle in pixels</param>
<param name="height">Height of bounding rectangle in pixels</param>
<param name="adjustRegion">Whether to adjust the region</param>
<param name="recursive">Whether to check recursively for each element</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.Refresh(System.Boolean)">
<summary>
Refreshes the specified force.
</summary>
<param name="force">if set to <c>true</c>, the whole chart will be re-painted regardless caching image.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.Refresh">
<summary>
Forces the element to invalidate its client area and immediately repaint.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ProcessMouseMove(System.Windows.Forms.MouseEventArgs,System.Boolean,System.Object@)">
<summary>
Processes when the mouse cursor is moving.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> instance containing the mouse event data.</param>
<param name="containsMouse">if set to <c>true</c> the chart shape contains the mouse cursor.</param>
<param name="selectedObject">The current selected element of chart shape.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
MouseMove processing.
</summary>
<param name="e"></param>
</member>
<member name="F:FarPoint.Win.Spread.Chart.ChartShape.fpChartCapture">
<summary>
Indicator that we're simulating mouse event. So, we have the same effect like FpChart has captured the mouse.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.MouseDown"/> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.userActivityHook_KeyUp(System.Object,System.Windows.Forms.KeyEventArgs)">
<summary>
Handles the KeyUp event of the userActivityHook control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.KeyEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ShowContextMenu(System.Windows.Forms.MouseEventArgs)">
<summary>
Shows the context menu.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnOpeningContextMenuStrip(FarPoint.Win.Spread.Chart.ContextMenuStripEventArgs)">
<summary>
Called when the context menu strip is opened.
</summary>
<param name="args">The <see cref="T:FarPoint.Win.Spread.Chart.ContextMenuStripEventArgs"/> instance containing the event data.</param>
<remarks><b>pt</b> is the relative location in FpSpread. It represent the bottom-right corner of the chart.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.PointInRotateHandle(System.Drawing.Point)">
<summary>
Gets whether the specified point is in the rotate handle.
</summary>
<param name="pt">Point</param>
<returns>true if in handle; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.PointInGrabHandle(System.Drawing.Point)">
<summary>
Gets whether the specified point is in a grab handle.
</summary>
<param name="pt">Point</param>
<returns>true if in handle; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.GrabHandleFromPoint(System.Drawing.Point)">
<summary>
Returns the grab handle from the specified point.
</summary>
<param name="pt">Point</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.GetCursorFromHitTest(FarPoint.Win.Chart.DragDirection)">
<summary>
Gets the cursor from hit test.
</summary>
<param name="direction">The direction.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ProcessMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
MouseUp processing.
</summary>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.PerformMouseUp">
<summary>
Performs the mouse up.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnChanged(System.Object,System.EventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.ElementWindowless.Changed"/> event when the
element has changed.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e">Event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.MouseUp"/> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ChangingCancel">
<summary>
Changings the cancel.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.SimulateSpreadViewMouseMove">
<summary>
Simulates the spread view mouse move.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnPaintBackground(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.ElementStyle)">
<summary>
Paints the background of the element using an overriding style.
</summary>
<param name="g">Graphics device</param>
<param name="rectInput">Coordinates of the element</param>
<param name="overrideStyle">Style to use when overriding</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnPaintBackground(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Initiates a redraw for the object to repaint its background.
</summary>
<param name="g">Graphics device interface</param>
<param name="rectInput">Rectangle to redraw</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.PaintBackColor(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints the background color.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the background color</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.PaintBackgroundImage(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Draws the background image.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the object</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.PaintDropShadow(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Draw the drop shadow.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the object</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.PaintBorder(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Not supported for basic shapes.
</summary>
<param name="g">Graphics device</param>
<param name="r">Rectangle bounding the area</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.PaintForegroundImage(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Draws the foreground image.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the object</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.PaintPicture(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints the picture inside the specified rectangle.
</summary>
<param name="g">Graphic device interface</param>
<param name="rPict">Bounding rectangle for the picture</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.PaintOutline(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Paints the outline of a GraphicsPath shape.
</summary>
<param name="g">Graphics device</param>
<param name="r">Rectangle bounding the area</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.PaintRotateHandle(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Draws the rotate handle.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the object</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.PaintGrabHandles(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Draws the handles for sizing.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the object</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.PaintGrabHandles(System.Drawing.Graphics,System.Drawing.RectangleF)">
<summary>
Paints the grab handles.
</summary>
<param name="g">The g.</param>
<param name="r">The r.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnPaint(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Initiates a redraw for the object to repaint itself.
</summary>
<param name="g">Graphics device interface</param>
<param name="rectInput">Rectangle to redraw</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.SizeRegion(System.Single,System.Single,System.Single,System.Single)">
<summary>
Resizes the region.
</summary>
<param name="newWidth">New width value in pixels</param>
<param name="newHeight">New height value in pixels</param>
<param name="oldWidth">Old width value in pixels</param>
<param name="oldHeight">Old height value in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.OnNonClientAreaHitTest(System.Drawing.Point)">
<summary>
Returns a value from a NCHITTEST enumeration specifing the window element on given point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Chart.FpChart"/> class.
</summary>
<param name="info">The info.</param>
<param name="context">The context.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"/>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">
The caller does not have the required permission.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.Dispose(System.Boolean)">
<summary>
Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.Control"/> and its child controls and optionally releases the managed resources.
</summary>
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.BackColor">
<summary>
Gets or sets the background color for the control.
</summary>
<value></value>
<returns>
A <see cref="T:System.Drawing.Color"/> that represents the background color of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultBackColor"/> property.
</returns>
<PermissionSet>
<IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
</PermissionSet>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.AlphaBlendBackColor">
<summary>
Gets or sets the alpha-blend value of the background color of the object.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.AlphaBlendShadowColor">
<summary>
Gets the amount of transparency of the shadow.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.BackgroundImage">
<summary>
Gets or sets the background image for the control.
</summary>
<value></value>
<example>
<code lang="csharp">
control.BackgroundImage = new FarPoint.Win.Picture(Image.FromFile("d:\overlay.bmp"));
control.MarginTop = 3;
control.MarginBottom = 3;
</code>
<code lang="vb">
control.BackgroundImage = New FarPoint.Win.Picture(Image.FromFile("d:\overlay.bmp"))
control.MarginTop = 3
control.MarginBottom = 3
</code>
</example>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.AlignHorz">
<summary>
Gets or sets the horizontal alignment of the contents of the element.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.AlignVert">
<summary>
Gets or sets the vertical alignment of the contents of the element.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.AlignText">
<summary>
Gets or sets the text alignment for the element.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.BackgroundImageRotationAngle">
<summary>
Gets or sets the background image rotation angle of the object.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.BackColorPriv">
<summary>
Internal use only.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.BackgroundImagePriv">
<summary>
Internal use only.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.CancelMouse">
<summary>
Internal use only.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.CancelMousePriv">
<summary>
Internal use only. Cancel mouse.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.Border">
<summary>
Gets or sets the border for the element.
</summary>
<value></value>
<example>
<code lang="csharp">
element.Picture = System.Drawing.Image.FromFile("d:\\mail16A.ico");
element.AlignText = FarPoint.Win.TextAlign.TextLeftPictRight;
element.PictureMargin = 25;
element.MarginBottom = 20;
element.DrawFocusRectangle = FarPoint.Win.DrawFocusRectangle.AroundText;
element.Border = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered,SystemColors.ControlLightLight,SystemColors.ControlDark,3,true,true,false,false);
</code>
<code lang="vb">
element.Picture = System.Drawing.Image.FromFile("d:\mail16A.ico")
element.AlignText = FarPoint.Win.TextAlign.TextLeftPictRight
element.PictureMargin = 25
element.MarginBottom = 20
element.DrawFocusRectangle = FarPoint.Win.DrawFocusRectangle.AroundText
element.Border = New FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered,SystemColors.ControlLightLight,SystemColors.ControlDark,3,True,True,False,False)
</code>
</example>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.ContainedObjects">
<summary>
Gets or sets the contained objects of the object.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.Name">
<summary>
Gets or sets the name of the element.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.ChartName">
<summary>
Gets or sets the name of the chart.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.Anchor">
<summary>
Gets or sets whether the object is anchored.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.DrawFocusRectangle">
<summary>
Gets or sets the focus rectangle drawing style in the element.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.DrawFocusRectanglePriv">
<summary>
Internal use only. Draw focus rectangle.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.Elements">
<summary>
Gets the collection of IElement-derived objects that the current ElementWindowless object contains.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.FontPriv">
<summary>
Internal use only.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.ForeColorPriv">
<summary>
Internal use only.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.ForegroundImagePriv">
<summary>
Internal use only.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.Gradient">
<summary>
Gets or sets the gradient for the object.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.MarginBottom">
<summary>
Gets or sets the margin between the bottom of the element and its contents.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.MarginBottomPriv">
<summary>
Internal use only. Bottom margin.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.MarginLeft">
<summary>
Gets or sets the margin between the left of the element and its contents.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.MarginLeftPriv">
<summary>
Internal use only. Left margin.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.MarginRight">
<summary>
Gets or sets the margin between the right of the element and its contents.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.MarginRightPriv">
<summary>
Internal use only. Right margin.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.MarginTop">
<summary>
Gets or sets the margin between the top of the element and its contents.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.MarginTopPriv">
<summary>
Internal use only. Top margin.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.PictureMargin">
<summary>
Gets or sets the margin between the picture and the text in the element.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.PictureMarginPriv">
<summary>
Internal use only. Picture margin.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.PictureOrientation">
<summary>
Gets or sets the orientation of the picture.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.PicturePriv">
<summary>
Internal use only. Picture.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.PictureOrientationPriv">
<summary>
Internal use only.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.PictureRotationAngle">
<summary>
Gets or sets the picture rotation angle of the object.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.TextWrapPriv">
<summary>
Internal use only.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.TextOrientation">
<summary>
Gets or sets the orientation of the text.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.TextOrientationPriv">
<summary>
Internal use only.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.TextPriv">
<summary>
Internal use only.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.TextRotationAngle">
<summary>
Gets or sets the text rotation angle of the object.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.TextRotationAnglePriv">
<summary>
Internal use only.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.TextWrap">
<summary>
Gets or sets whether to wrap the text in the element.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.StateNotifyList">
<summary>
Internal use only.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.RotationAngle">
<summary>
Gets or sets the rotation angle of the object.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.Redraw">
<summary>
Gets or sets whether the element is allowed to paint.
</summary>
<value></value>
<example>
<code lang="csharp">
private void button1_Click(object sender, System.EventArgs e)
{
element.Redraw = true;
}
</code>
<code lang="vb">
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
element.Redraw = True
End Sub
</code>
</example>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.RegionPriv">
<summary>
Internal use only.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.Shape">
<summary>
Gets or sets the shape of the object.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.State">
<summary>
Gets or sets the state of the element.
</summary>
<value></value>
<example>
<code lang="csharp">
Font f = new System.Drawing.Font("MS Sans Serif", 12, FontStyle.Bold);
element.Font = f;
element.State = FarPoint.Win.ElementState.Inverted;
</code>
<code lang="vb">
Dim f As New System.Drawing.Font("MS Sans Serif", 12, FontStyle.Bold)
element.Font = f
element.State = FarPoint.Win.ElementState.Inverted
</code>
</example>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.ForegroundImage">
<summary>
Gets or sets the foreground image for the element.
</summary>
<value></value>
<example>
<code lang="csharp">
control.ForegroundImage = new FarPoint.Win.Picture(Image.FromFile("d:\overlay.bmp"));
control.MarginTop = 3;
control.MarginBottom = 3;
</code>
<code lang="vb">
control.ForegroundImage = New FarPoint.Win.Picture(Image.FromFile("d:\overlay.bmp"))
control.MarginTop = 3
control.MarginBottom = 3
</code>
</example>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.Picture">
<summary>
Gets or sets the picture for the element.
</summary>
<value></value>
<example>
<code lang="csharp">
control.Picture = Image.FromFile("d:\overlay.bmp");
control.MarginTop = 3;
control.MarginBottom = 3;
control.PictureTransparencyColor = Color.Blue;
</code>
<code lang="vb">
control.Picture = Image.FromFile("d:\overlay.bmp")
control.MarginTop = 3
control.MarginBottom = 3
control.PictureTransparencyColor = Color.Blue
</code>
</example>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.PictureTransparencyColor">
<summary>
Gets or sets the picture transparency color for the element.
</summary>
<value></value>
<example>
<code lang="csharp">
control.Picture = Image.FromFile("d:\overlay.bmp");
control.MarginTop = 3;
control.MarginBottom = 3;
control.PictureTransparencyColor = Color.Blue;
</code>
<code lang="vb">
control.Picture = Image.FromFile("d:\overlay.bmp")
control.MarginTop = 3
control.MarginBottom = 3
control.PictureTransparencyColor = Color.Blue
</code>
</example>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.PictureTransparencyTolerance">
<summary>
Gets or sets the picture transparency tolerance for the element.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.ShadowOffset">
<summary>
Gets or sets the amount of offset of the shadow.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.ShadowColor">
<summary>
Gets or sets the color of the shadow of the object.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.ShadowDirection">
<summary>
Gets or sets the direction of the shadow.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.ShadowOffsetX">
<summary>
Gets or sets the amount of horizontal offset of the shadow of the object.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.ShadowOffsetY">
<summary>
Gets or sets the amount of vertical offset of the shadow of the object.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.ShapeOutlineColor">
<summary>
Gets or sets the shape outline color for the object.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.ShapeOutlineStyle">
<summary>
Gets or sets the shape outline style for the object.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.ForeColor">
<summary>
Gets or sets the foreground color of the control.
</summary>
<value></value>
<returns>
The foreground <see cref="T:System.Drawing.Color"/> of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultForeColor"/> property.
</returns>
<PermissionSet>
<IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
</PermissionSet>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.ShapeOutlineThickness">
<summary>
Gets or sets the shape outline thickness for the object.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.AllowBackgroundImageRotation">
<summary>
Gets or sets the background image rotation allowed flag of the object.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.CanRenderText">
<summary>
Gets or sets whether the shape renders its text.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.CanRotate">
<summary>
Gets or sets whether the user is allowed to rotate the object.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.Font">
<summary>
Gets or sets the font for the element.
</summary>
<value></value>
<example>
<code lang="csharp">
Font f = new System.Drawing.Font("MS Sans Serif", 12, FontStyle.Bold);
element.Font = f;
element.State = FarPoint.Win.ElementState.Inverted;
</code>
<code lang="vb">
Dim f As New System.Drawing.Font("MS Sans Serif", 12, FontStyle.Bold)
element.Font = f
element.State = FarPoint.Win.ElementState.Inverted
</code>
</example>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.Text">
<summary>
Gets or sets the text associated with this control.
</summary>
<value></value>
<returns>
The text associated with this control.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.FlipHorizontal">
<summary>
Gets or sets a value indicating whether the shape is flip horizontal.
</summary>
<value>
<c>true</c> if the shape is flip horizontal; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.FlipVertical">
<summary>
Gets or sets a value indicating whether the shape is flip vertical.
</summary>
<value>
<c>true</c> if the shape is flip vertical]; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.ParentPriv">
<summary>
Internal use only. Parent.
</summary>
<value></value>
</member>
<member name="E:FarPoint.Win.Spread.Chart.ChartShape.BackgroundImageChanged">
<summary>
Occurs when the background image changed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Chart.ChartShape.PictureChanged">
<summary>
Occurs when the picture changed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Chart.ChartShape.ForegroundImageChanged">
<summary>
Occurs when the foreground image changed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Chart.ChartShape.FontChanged">
<summary>
Occurs when the font changed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Chart.ChartShape.MouseEnter">
<summary>
Occurs when mouse entered.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Chart.ChartShape.MouseLeave">
<summary>
Occurs when mouse left.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Chart.ChartShape.Click">
<summary>
Occurs when mouse clicked.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Chart.ChartShape.UIChangeComplete">
<summary>
Occurs when the User Interface (UI) change is complete.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.SheetView">
<summary>
Gets or sets the sheet view.
</summary>
<value>The sheet view.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.Rectangle">
<summary>
Gets the rectangular coordinates of the element.
</summary>
<value></value>
</member>
<member name="E:FarPoint.Win.Spread.Chart.ChartShape.OpeningContextMenuStrip">
<summary>
Occurs when opening context menu strip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.ZoomFactor">
<summary>
Gets or sets the zoom factor.
</summary>
<value>The zoom factor.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.ChartCaptured">
<summary>
Gets a value indicating whether we're simulating mouse event. So, we have the same effect like FpChart has captured the mouse.
</summary>
<value><c>true</c> if [chart captured]; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.ViewType">
<summary>
Gets or sets whether the chart is rendered in 2D or 3D.
</summary>
<value>The type of the view.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.SelectedObject">
<summary>
Gets or sets the selected object. Could be a plot area, legend area, label area or series info.
</summary>
<value>The selected object.</value>
</member>
<member name="E:FarPoint.Win.Spread.Chart.ChartShape.SelectionChanged">
<summary>
Occurs when the selection changed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Chart.ChartShape.ActionDoing">
<summary>
Occurs when on performing actions such as move, resize, delete, cut and paste.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.Chart.ChartShape.ActionDone">
<summary>
Occurs when on actions done such as move, resize, delete, cut and paste.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.UndoManager">
<summary>
Gets the undo manager.
</summary>
<value>The undo manager.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.Model">
<summary>
Gets or sets the chart model.
</summary>
<value>The model.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.SeriesContainsData">
<summary>
Gets all series which can contains data.
</summary>
<value>The series contains data.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.DesignMode">
<summary>
Gets a value that indicates whether the <see cref="T:System.ComponentModel.Component"/> is currently in design mode.
</summary>
<value></value>
<returns>true if the <see cref="T:System.ComponentModel.Component"/> is in design mode; otherwise, false.
</returns>
</member>
<member name="E:FarPoint.Win.Spread.Chart.ChartShape.Disposed">
<summary>
Adds an event handler to listen to the <see cref="E:FarPoint.Win.Spread.Chart.SpreadChart.Disposed"></see> event on the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChart"></see>.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.Site">
<summary>
Gets or sets the <see cref="T:System.ComponentModel.ISite"/> associated with the <see cref="T:System.ComponentModel.IComponent"/>.
</summary>
<value></value>
<returns>
The <see cref="T:System.ComponentModel.ISite"/> object associated with the component; or null, if the component does not have a site.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.Top">
<summary>
Gets or sets the Y-coordinate of the object.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.Left">
<summary>
Gets or sets the X-coordinate of the object.
</summary>
<value></value>
</member>
<member name="T:FarPoint.Win.Spread.Chart.ChartShape.NewFpChart">
<summary>
Represents a new FpChart control which allow us to call some private functions.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.NewFpChart.#ctor(FarPoint.Win.Spread.Chart.ChartShape)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.ChartShape.NewFpChart"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.NewFpChart.ProcessMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Processes the mouse down.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.NewFpChart.ProcessMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
Processes the mouse move.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.NewFpChart.ProcessMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
Processes the mouse up.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.NewFpChart.ProcessKeyDown(System.Windows.Forms.KeyEventArgs)">
<summary>
Processes the key down.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.KeyEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.NewFpChart.ProcessKeyUp(System.Windows.Forms.KeyEventArgs)">
<summary>
Processes the key up.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.KeyEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.NewFpChart.RenderImage(System.Drawing.Graphics,System.Drawing.Rectangle,System.Boolean)">
<summary>
Renders the image.
</summary>
<param name="g">The g.</param>
<param name="r">The r.</param>
<param name="drawSelection">if set to <c>true</c> [draw selection].</param>
<param name="needCheck"></param>
<returns></returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.NewFpChart.Cursor">
<summary>
Gets or sets the cursor that is displayed when the mouse pointer is over the control.
</summary>
<value></value>
<returns>
A <see cref="T:System.Windows.Forms.Cursor"/> that represents the cursor to display when the mouse pointer is over the control.
</returns>
<PermissionSet>
<IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
<IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence"/>
<IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/>
</PermissionSet>
</member>
<member name="T:FarPoint.Win.Spread.Chart.ChartShape.ChartBoundingShape">
<summary>
Represents the rectangle which will be displayed when user move or resize the chart.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ChartBoundingShape.#ctor(FarPoint.Win.Spread.Chart.ChartShape,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.ChartShape.ChartBoundingShape"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ChartBoundingShape.HitTestTransparentShape(System.Drawing.Point,System.Boolean)">
<summary>
Internal use only.
</summary>
<param name="pt"></param>
<param name="setCursor"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ChartBoundingShape.DoMove(System.Drawing.Point)">
<summary>
Allows the object to be moved.
</summary>
<param name="pt">Point location of object</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ChartBoundingShape.DoSize(System.Int32,System.Drawing.Point)">
<summary>
Allows the object to be sized.
</summary>
<param name="resizeHandle">Index of the grab handle used to size the object</param>
<param name="pt">Point from which to size the object</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ChartBoundingShape.AdjustLocationForMoving(System.Single@,System.Single@)">
<summary>
Adjusts the location for moving.
</summary>
<param name="diffX">The diff X.</param>
<param name="diffY">The diff Y.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ChartBoundingShape.PaintDropShadow(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Draw the drop shadow.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the object</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ChartBoundingShape.PaintFocusRectangle(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Draws the focus rectangle.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the object</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ChartBoundingShape.PaintRotateHandle(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Draws the rotate handle.
</summary>
<param name="g">Graphics device</param>
<param name="r">Bounding rectangle for the object</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ChartBoundingShape.OnPaintBackground(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Initiates a redraw for the object to repaint its background.
</summary>
<param name="g">Graphics device interface</param>
<param name="rectInput">Rectangle to redraw</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.ChartShape.ChartBoundingShape.OnPaint(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Initiates a redraw for the object to repaint itself.
</summary>
<param name="g">Graphics device interface</param>
<param name="rectInput">Rectangle to redraw</param>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ChartShape.ChartBoundingShape.Chart">
<summary>
Gets the chart.
</summary>
<value>The chart.</value>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.ShouldSerializeSheetName">
<summary>
Shoulds the name of the serialize sheet.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.ShouldSerializeDataSetting">
<summary>
Shoulds the serialize data setting.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.ResetDataSetting">
<summary>
Resets the data setting.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.dataSetting_PropertyChanged(System.Object,System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Handles the PropertyChanged event of the dataSetting control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.ComponentModel.PropertyChangedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.dataSetting_PropertyChanging(System.Object,System.ComponentModel.PropertyChangingEventArgs)">
<summary>
Handles the PropertyChanging event of the dataSetting control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.ComponentModel.PropertyChangingEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.ProcessDialogKey(System.Windows.Forms.Keys)">
<summary>
Processes the dialog key.
</summary>
<param name="keyData">The key data.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.DeleteChartWithUndoable">
<summary>
Deletes the chart with undoable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.SyncDataSetting(System.Boolean)">
<summary>
Assigns the data setting to model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.SyncDataSetting(FarPoint.Win.Chart.Series,System.Boolean)">
<summary>
Syncs the data setting.
</summary>
<param name="forceSetDirty"></param>
<param name="series"></param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.ChangeChartType(FarPoint.Win.Chart.ChartModel)">
<summary>
Changes the type of the chart.
</summary>
<param name="targetModel">The target model.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.ChangeChartType(FarPoint.Win.Chart.ChartModel,System.Boolean)">
<summary>
Changes the type of the chart.
</summary>
<param name="targetModel">The target model.</param>
<param name="needCheck"></param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.CanChangeSeriesType(FarPoint.Win.Chart.Series)">
<summary>
Determines whether this instance can change the series type of the specified source series.
</summary>
<param name="sourceSeries">The source series.</param>
<returns>
<c>true</c> if this instance can change the series type to the specified source series; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.ChangeSeriesType(FarPoint.Win.Chart.Series,FarPoint.Win.Chart.Series)">
<summary>
Changes the type of the series.
</summary>
<param name="sourceSeries">The source series.</param>
<param name="targetSeries">The target series.</param>
<remarks>The targetSeries will be added to ChartModel.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.ChangeSeriesType(FarPoint.Win.Chart.Series,FarPoint.Win.Chart.Series,System.Boolean)">
<summary>
Changes the type of the series.
</summary>
<param name="sourceSeries">The source series.</param>
<param name="targetSeries">The target series.</param>
<remarks>The targetSeries will be added to ChartModel.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.MouseDown"/> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.MouseUp"/> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.TooltipShowingHandler(System.Object,FarPoint.Win.Spread.Chart.TooltipEventArgs)">
<summary>
Handles showing tooltip for chart's elements.
</summary>
<param name="sender">The sender.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.ProcessMouseMove(System.Windows.Forms.MouseEventArgs,System.Boolean,System.Object@)">
<summary>
Processes when the mouse cursor is moving.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> instance containing the mouse event data.</param>
<param name="containsMouse">if set to <c>true</c> the chart shape contains the mouse cursor.</param>
<param name="selectedObject">The current selected element of chart shape.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.GetSeriesDataPointTooltip(FarPoint.Win.Chart.Series,System.Int32)">
<summary>
Gets the series tooltip value.
</summary>
<param name="series">The series.</param>
<param name="index">The index of data point base on 0 (zero).</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.GetImportantValue4Tooltip(FarPoint.Win.Chart.Series,System.Int32)">
<summary>
Gets the important value4 tooltip.
</summary>
<param name="series">The series.</param>
<param name="index">The index.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.GetPointValue4Tooltip(FarPoint.Win.Chart.Series,System.Int32)">
<summary>
Gets the point value4 tooltip.
</summary>
<param name="series">The series.</param>
<param name="index">The index.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.DisableTooltip">
<summary>
Disables the tooltip.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.EnableTooltip">
<summary>
Enables the tooltip.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.HideTooltip">
<summary>
Hides the tooltip.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.#ctor(System.Type)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Chart.FpChart"/> class.
</summary>
<param name="seriesType">Type of the series.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.#ctor(FarPoint.Win.Chart.Series,System.String)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChart"/> class.
</summary>
<param name="series">The last modified series.</param>
<param name="chartName">Name of the chart.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.#ctor(System.Type,System.Boolean,System.String)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChart"/> class.
</summary>
<param name="seriesType">Type of the series.</param>
<param name="percent">Indicates that whether the last modified series is 100% series.</param>
<param name="chartName">Name of the chart.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.#ctor(System.Type,FarPoint.Win.Chart.ChartViewType)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChart"/> class.
</summary>
<param name="seriesType">Type of the series.</param>
<param name="viewType">Type of the view.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.#ctor(System.Type,FarPoint.Win.Chart.ChartViewType,System.Drawing.Point,System.Drawing.Size)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChart"/> class.
</summary>
<param name="seriesType">Type of the series.</param>
<param name="viewType">Type of the view.</param>
<param name="location">The location.</param>
<param name="size">The size.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.#ctor(System.String,System.Type)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChart"/> class.
</summary>
<param name="formula">The formula.</param>
<param name="seriesType">Type of the series.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.#ctor(System.String,System.Type,System.Drawing.Point,System.Drawing.Size)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChart"/> class.
</summary>
<param name="formula">The formula.</param>
<param name="seriesType">Type of the series.</param>
<param name="location">The location.</param>
<param name="size">The size.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.#ctor(System.String,System.Type,System.Drawing.Point,System.Drawing.Size,FarPoint.Win.Chart.ChartViewType,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChart"/> class.
</summary>
<param name="formula">The formula.</param>
<param name="seriesType">Type of the series.</param>
<param name="location">The location.</param>
<param name="size">The size.</param>
<param name="viewType">Type of the view.</param>
<param name="showLegend">if set to <c>true</c> [show legend].</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.#ctor(System.String,System.String,System.String,System.Type)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChart"/> class.
</summary>
<param name="categoryFormula">The category formula.</param>
<param name="nameFormula">The name formula.</param>
<param name="dataFormula">The data formula.</param>
<param name="seriesType">Type of the series.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.#ctor(System.String,System.String,System.String,System.Type,System.Drawing.Point,System.Drawing.Size)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChart"/> class.
</summary>
<param name="categoryFormula">The category formula.</param>
<param name="nameFormula">The name formula.</param>
<param name="dataFormula">The data formula.</param>
<param name="seriesType">Type of the series.</param>
<param name="location">The location.</param>
<param name="size">The size.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.#ctor(System.String,System.String,System.String,System.Type,System.Drawing.Point,System.Drawing.Size,FarPoint.Win.Chart.ChartViewType,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChart"/> class.
</summary>
<param name="categoryFormula">The category formula.</param>
<param name="nameFormula">The name formula.</param>
<param name="dataFormula">The data formula.</param>
<param name="seriesType">Type of the series.</param>
<param name="location">The location.</param>
<param name="size">The size.</param>
<param name="viewType">Type of the view.</param>
<param name="showLegend">if set to <c>true</c> [show legend].</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChart"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChart"/> class.
</summary>
<param name="info">The info.</param>
<param name="context">The context.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.MoveToSheetView(System.String)">
<summary>
Moves the current chart to the new sheet view.
</summary>
<param name="sheetName">Name of the new sheet view.</param>
<returns><c>true</c> if moving is successful; otherwise, return <c>false</c></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.MoveToSheetView(System.String,System.Boolean)">
<summary>
Moves the current chart to the new sheet view.
</summary>
<param name="sheetName">Name of the new sheet view.</param>
<param name="activateNewSheetView">if set to <c>true</c> activate the new sheet view.</param>
<returns><c>true</c> if the move is successful; otherwise, return <c>false</c></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.Dispose(System.Boolean)">
<summary>
Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.Control"/> and its child controls and optionally releases the managed resources.
</summary>
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="writer">XmlTextWriter to which to write (save) the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"/>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">
The caller does not have the required permission.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.OnLostFocus(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.LostFocus"/> event.
</summary>
<param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.OnGotFocus(System.EventArgs)">
<summary>
Internal use only.
</summary>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.CreateNewInstance">
<summary>
Creates the new instance.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.Clone">
<summary>
Creates and returns a copy of the object.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.OnOpeningContextMenuStrip(FarPoint.Win.Spread.Chart.ContextMenuStripEventArgs)">
<summary>
Called when the context menu strip is opening.
</summary>
<param name="pt">The location where the context menu will be displayed.</param>
<remarks><b>pt</b> is the relative location in FpSpread. It represent the bottom-right corner of the chart.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.AttachEvents">
<summary>
Attaches the events.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.DetachEvents">
<summary>
Detaches the events.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.DataModel_AfterChanged(System.Object,FarPoint.Win.Spread.Model.SheetDataModelEventArgs)">
<summary>
Handles the AfterChanged event of the DataModel control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:FarPoint.Win.Spread.Model.SheetDataModelEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.SheetView_PropertyChanged(System.Object,FarPoint.Win.Spread.SheetViewPropertyChangeEventArgs)">
<summary>
Handles the PropertyChanged event of the SheetView control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:FarPoint.Win.Spread.SheetViewPropertyChangeEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.ShowChartDesigner">
<summary>
Shows the chart designer.
</summary>
<returns>If the chart designer is shown successfully, this function will returns true. Otherwise, returns false.</returns>
</member>
<member name="F:FarPoint.Win.Spread.Chart.SpreadChart.realChart">
<summary>
Indicates the FpChart control which is displayed in Chart Designer
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.ReActivateCallingForm">
<summary>
Re-activate calling form.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.UndoManager_ActionComplete(System.Object,FarPoint.Win.Chart.UndoRedoEventArgs)">
<summary>
Handles the ActionComplete event of the UndoManager control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:FarPoint.Win.Chart.UndoRedoEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.chartDesigner_Shown(System.Object,System.EventArgs)">
<summary>
Handles the Shown event of the chartDesigner control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.SetChartModel(FarPoint.Win.Chart.ChartModel,FarPoint.Win.Chart.ChartViewType)">
<summary>
Sets the chart model.
</summary>
<param name="model">The model.</param>
<param name="viewType">Type of the view.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.chartDesigner_FormClosed(System.Object,System.Windows.Forms.FormClosedEventArgs)">
<summary>
Handles the FormClosed event of the chartDesigner control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.FormClosedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.chartDesigner_ApplyButtonClicked(System.Object,System.EventArgs)">
<summary>
Handles the ApplyButtonClicked event of the chartDesigner control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.ParseSheetCellRange(System.String)">
<summary>
Parses the sheet cell range.
</summary>
<param name="formula">The formula.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.GenerateFromCellRanges(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.Model.CellRange[],System.Boolean)">
<summary>
Generates from cell ranges.
</summary>
<param name="sheetView">The sheet view.</param>
<param name="cellRanges">The cell ranges.</param>
<param name="autoSwitch">if set to <c>true</c>, the processing will switch rows and columns automatically if necessary.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.GenerateFromCellRanges(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.Model.CellRange,FarPoint.Win.Spread.Model.CellRange,FarPoint.Win.Spread.Model.CellRange,System.Boolean,System.Boolean)">
<summary>
Generates from cell ranges.
</summary>
<param name="sheetView">The sheet view.</param>
<param name="category">The category.</param>
<param name="seriesName">Name of the series.</param>
<param name="data">The data.</param>
<param name="autoSwitch">if set to <c>true</c>, the procesing will switch row and column automatically if it's necessary.</param>
<param name="autoCreateCategory">if set to <c>true</c>, the generating process will auto detect and create category if the category cell range is NULL.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.GenerateFromCellRanges(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.Model.CellRange,FarPoint.Win.Spread.Model.CellRange,FarPoint.Win.Spread.Model.CellRange,System.Boolean)">
<summary>
Generates from cell ranges.
</summary>
<param name="sheetView">The sheet view.</param>
<param name="category">The category.</param>
<param name="seriesName">Name of the series.</param>
<param name="data">The data.</param>
<param name="autoSwitch">if set to <c>true</c>, the procesing will switch row and column automatically if it's necessary.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.GetSeries(FarPoint.Win.Chart.ChartModel,System.Int32)">
<summary>
Gets the series at the specified index.
</summary>
<param name="index">The index.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.GetSeriesIndex(FarPoint.Win.Chart.Series)">
<summary>
Gets the series at the specified index.
</summary>
<param name="index">The index.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.GetSeriesContainer(FarPoint.Win.Chart.Series)">
<summary>
Gets the series container.
</summary>
<param name="series">The series.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.GetSeriesContainer(FarPoint.Win.Chart.ChartModel,FarPoint.Win.Chart.Series)">
<summary>
Gets the series container.
</summary>
<param name="series">The series.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.GetDisplayLocationContextMenu(System.Windows.Forms.ContextMenuStrip,System.Drawing.Point)">
<summary>
Gets the preferred display location context menu.
</summary>
<param name="cm">The context menu which will be displayed.</param>
<param name="p">The initialized location to display the context menu.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.DisplayContextMenu(System.Drawing.Point)">
<summary>
Shows the context menu.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.OnChartActionComplete(System.Object,FarPoint.Win.Chart.UndoRedoEventArgs)">
<summary>
Called when the user finishes performing an action in the Chart control.
</summary>
<param name="sender">The sender.</param>
<param name="e">The <see cref="T:FarPoint.Win.Chart.UndoRedoEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.OnChartSelectionChanged(System.Object,System.EventArgs)">
<summary>
Called when the user selects an element in the chart.
</summary>
<param name="sender">The sender.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.SwitchRowColumn">
<summary>
Switches the row and column of the chart.
</summary>
<returns>If the switching process is successful, return <c>true</c>. Otherwise, return <c>false</c>.</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChart.FarPoint#Win#IDynamicName#GetPrefixName">
<summary>
Gets the prefix name dynamically.
</summary>
<returns></returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChart.SheetName">
<summary>
Gets or sets the name of the sheet.
</summary>
<value>The name of the sheet.</value>
<remarks>This property supported for undo/redo action in design-time. Assigning in run-time means nothing.</remarks>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChart.DataSetting">
<summary>
Gets or sets the data setting of SpreadChart.
</summary>
<value>The data setting.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChart.Model">
<summary>
Gets or sets the chart model.
</summary>
<value>The model.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChart.ChartMoveCursor">
<summary>
Gets the chart move cursor.
</summary>
<value>The chart move cursor.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChart.CanChangeChartType">
<summary>
Gets a value indicating whether the chart type can be changed.
</summary>
<value>
<c>true</c> if the chart type can be changed; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChart.TooltipManager">
<summary>
Gets the tooltip manager.
</summary>
<value>The tooltip manager.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChart.ContextMenuStrip">
<summary>
Gets or sets the context menu strip for SpreadChart.
</summary>
<value>The context menu strip.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChart.SheetView">
<summary>
Gets or sets the sheet view.
</summary>
<value>The sheet view.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChart.Formula">
<summary>
Gets or sets the formula of chart. This action will re-build the chart's series.
</summary>
<value>The formula.</value>
<remarks>This property is not designed for persisting so you should save and re-use the value and access infrequently.</remarks>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChart.DataFormula">
<summary>
Gets or sets the data formula. This action will re-build the chart's series.
</summary>
<value>The data formula.</value>
<remarks>This property is not designed for persisting so you should save and re-use the value and access infrequently.</remarks>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChart.CategoryFormula">
<summary>
Gets or sets the category formula. This action will re-build the chart's series.
</summary>
<value>The category formula.</value>
<remarks>This property is not designed for persisting so you should save and re-use the value and access infrequently.</remarks>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChart.SeriesNameFormula">
<summary>
Gets or sets the series name formula. This action will re-build the chart's series.
</summary>
<value>The series name formula.</value>
<remarks>This property is not designed for persisting so you should save and re-use the value and access infrequently.</remarks>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChart.IsEmbedded">
<summary>
Gets a value indicating whether this chart is embedded chart.
</summary>
<value>
<c>true</c> if this instance is embedded; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChart.CanSwitchRowColumn">
<summary>
Gets a value indicating whether the user can switch the rows and columns of the chart.
</summary>
<value><c>true</c> if user can switch rows and columns of the chart; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChart.AllowShowIndicator">
<summary>
Gets or sets a value indicating whether Spread can show the chart indicator.
</summary>
<value><c>true</c> if Spread can show indicator of this chart; otherwise, <c>false</c>.</value>
</member>
<member name="T:FarPoint.Win.Spread.Chart.ContextMenuStripEventArgs">
<summary>
Represent a data structure when the context menu is displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Chart.ContextMenuStripEventArgs.Location">
<summary>
Gets the location.
</summary>
<value>The location.</value>
</member>
<member name="T:FarPoint.Win.Spread.Chart.ContextMenuStripEventHandler">
<summary>
Represents a method which will be called when the context menu is displayed.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStripTypeConverter.#cctor">
<summary>
Initializes the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStripTypeConverter"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStripTypeConverter.#ctor(System.Type)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStripTypeConverter"/> class.
</summary>
<param name="type">A <see cref="T:System.Type"/> that represents the type to associate with this component converter.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStripTypeConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Gets a collection of standard values for the reference data type.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<returns>
A <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection"/> that holds a standard set of valid values, or null if the data type does not support a standard set of values.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStripTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the given value object to the reference type using the specified context and arguments.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="culture">A <see cref="T:System.Globalization.CultureInfo"/> that specifies the culture used to represent the font.</param>
<param name="value">The <see cref="T:System.Object"/> to convert.</param>
<param name="destinationType">The type to convert the object to.</param>
<returns>The converted object.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="destinationType"/> is null.
</exception>
<exception cref="T:System.NotSupportedException">
The conversion cannot be performed.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartContextMenuStripTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Converts the given object to the reference type.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
<param name="culture">A <see cref="T:System.Globalization.CultureInfo"/> that specifies the culture used to represent the font.</param>
<param name="value">The <see cref="T:System.Object"/> to convert.</param>
<returns>
An <see cref="T:System.Object"/> that represents the converted <paramref name="value"/>.
</returns>
<exception cref="T:System.NotSupportedException">
The conversion cannot be performed.
</exception>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SpreadChartCollection">
<summary>-
Represents a collection of chart objects.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartCollection.#ctor(FarPoint.Win.Spread.SheetView)">
<summary>
Initializes a new instance of the <see cref="!:FpChartCollection"/> class.
</summary>
<param name="owner">The owner.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartCollection.Contains(FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Determines whether the chart collection contains a specified chart.
</summary>
<param name="chart">The chart to locate in the chart collection. The value can be null.</param>
<returns>
<c>true</c> if the chart is found in the chart collection; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartCollection.Contains(System.String)">
<summary>
Determines whether the chart collection contains the specified chart.
</summary>
<param name="chartName">Name of the chart.</param>
<returns>
<c>true</c> if the chart collection contains the specified chart; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartCollection.Add(FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Adds an chart to the FpChartCollection.
</summary>
<param name="chart">The FpChart to add to the FpChartCollection.</param>
<returns>The position into which the new chart was inserted.</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartCollection.AddInternal(FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Adds the internal.
</summary>
<param name="chart">The chart.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartCollection.IndexOf(FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Determines the index of a specific chart in the FpChartCollection.
</summary>
<param name="chart">The FpChart to locate in the FpChartCollection.</param>
<returns>The index of value if found in the list; otherwise, -1.</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartCollection.AddRange(FarPoint.Win.Spread.Chart.SpreadChart[])">
<summary>
Adds the range.
</summary>
<param name="charts">The charts.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartCollection.Remove(FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Removes the specified chart.
</summary>
<param name="chart">The chart.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartCollection.RemoveInternal(FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Removes the internal.
</summary>
<param name="chart">The chart.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartCollection.PrepareDelete(FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Prepares the delete.
</summary>
<param name="chart">The chart.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartCollection.OnRemove(System.Int32,System.Object)">
<summary>
Performs additional custom processes when removing an element from the <see cref="T:System.Collections.CollectionBase"/> instance.
</summary>
<param name="index">The zero-based index at which <paramref name="value"/> can be found.</param>
<param name="value">The value of the element to remove from <paramref name="index"/>.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartCollection.Insert(System.Int32,FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Inserts a chart into the collection at the specified index.
</summary>
<param name="index">The specified index which the chart will be inserted.</param>
<param name="chart">The chart will be inserted to the collection.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartCollection.OnClear">
<summary>
Performs additional custom processes when clearing the contents of the <see cref="T:System.Collections.CollectionBase"/> instance.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartCollection.System#Collections#Generic#IEnumerable{FarPoint#Win#Spread#Chart#SpreadChart}#GetEnumerator">
<summary>
Returns an enumerator that iterates through the collection.
</summary>
<returns>
A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an enumerator that iterates through the <see cref="T:System.Collections.CollectionBase"/> instance.
</summary>
<returns>
An <see cref="T:System.Collections.IEnumerator"/> for the <see cref="T:System.Collections.CollectionBase"/> instance.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChartCollection.Item(System.Int32)">
<summary>
Gets the <see cref="!:FarPoint.Win.Spread.FpChart"/> at the specified index.
</summary>
<value>The chart at specified index.</value>
</member>
<member name="P:FarPoint.Win.Spread.Chart.SpreadChartCollection.Item(System.String)">
<summary>
Gets the <see cref="!:FarPoint.Win.Spread.Chart.FpChart"/> with the specified chart name.
</summary>
<value>The chart at specified index.</value>
</member>
<member name="T:FarPoint.Win.Spread.Chart.FpChartUndoAction">
<summary>
This class represents an undo-action which is fired from the original chart control.
For example: move and resize elements, delete an element, etc..
</summary>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.UndoAction">
<summary>
Represents the actions in the component for which the user can perform an undo or redo.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoAction.#ctor">
<summary>
Creates a new undo action.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoAction.SaveUndoState">
<summary>
Saves undo state information.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoAction.Undo(System.Object)">
<summary>
Undoes the action.
</summary>
<param name="sender">object</param>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoAction.PerformAction(System.Object)">
<summary>
Performs the undo action.
</summary>
<param name="sender">object</param>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoAction.PerformUndoAction(System.Object)">
<summary>
Performs the undo action.
</summary>
<param name="sender"></param>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoAction.System#ICloneable#Clone">
<summary>
Clones the object.
</summary>
<returns>new copy of this UndoAction</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoAction.Clone">
<summary>
Clones the object.
</summary>
<returns>new copy of this UndoAction</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.FpChartUndoAction.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.FpChartUndoAction.#ctor(FarPoint.Win.Spread.Chart.SpreadChart,FarPoint.Win.Chart.UndoRedoEventArgs)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.FpChartUndoAction"/> class.
</summary>
<param name="chart">The chart.</param>
<param name="e">The <see cref="T:FarPoint.Win.Chart.UndoRedoEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.FpChartUndoAction.SaveUndoState">
<summary>
Saves undo state information.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.FpChartUndoAction.Undo(System.Object)">
<summary>
Undoes the action.
</summary>
<param name="sender">object</param>
<returns></returns>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.Chart.FpChartUndoAction.PerformUndoAction(System.Object)">
<summary>
Performs the undo action.
</summary>
<param name="sender"></param>
<returns>
Boolean: true if successful; false otherwise
</returns>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.Chart.FpChartUndoAction.RefreshIfNecessary(FarPoint.Win.Spread.SpreadView)">
<summary>
Refreshes if necessary.
</summary>
<param name="spreadView">The spread view.</param>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SpreadChartSeriesIndicatorUndoAction">
<summary>
This class represents the action which user change a part of data indicator from SheetView
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartSeriesIndicatorUndoAction.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartSeriesIndicatorUndoAction.#ctor(FarPoint.Win.Spread.Chart.SpreadChart,FarPoint.Win.Chart.Series,FarPoint.Win.Spread.Chart.SheetCellRange,FarPoint.Win.Spread.Chart.SheetCellRange,FarPoint.Win.Spread.Chart.SheetCellRange[])">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChartSeriesIndicatorUndoAction"/> class.
</summary>
<param name="chart">The chart.</param>
<param name="indicator">The indicator.</param>
<param name="dataCellRange">The data cell range.</param>
<param name="titleCellRange">The title cell range.</param>
<param name="legendCellRange">The legend cell range.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartSeriesIndicatorUndoAction.SaveUndoState">
<summary>
Saves undo state information.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartSeriesIndicatorUndoAction.Undo(System.Object)">
<summary>
Undoes the action.
</summary>
<param name="sender">object</param>
<returns></returns>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartSeriesIndicatorUndoAction.PerformUndoAction(System.Object)">
<summary>
Performs the undo action.
</summary>
<param name="sender"></param>
<returns>
Boolean: true if successful; false otherwise
</returns>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SpreadChartUndoAction">
<summary>
This class repesents the action which user change chart data indicator from SheetView.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.SelectSeries(System.Int32,System.Int32)">
<summary>
Selects the series.
</summary>
<param name="seriesIndex">Index of the series.</param>
<param name="pointIndex">Index of the point.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.#ctor(FarPoint.Win.Spread.Chart.SpreadChart,FarPoint.Win.Chart.ChartModel)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChartUndoAction"/> class.
</summary>
<param name="chart">The chart.</param>
<param name="newChartType">New type of the chart.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.#ctor(FarPoint.Win.Spread.Chart.SpreadChart,FarPoint.Win.Chart.ChartModel,FarPoint.Win.Chart.ChartViewType)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChartUndoAction"/> class.
</summary>
<param name="chart">The chart.</param>
<param name="targetModel">The target model.</param>
<param name="viewType">Type of the view.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.#ctor(FarPoint.Win.Spread.Chart.SpreadChart,FarPoint.Win.Chart.Series,FarPoint.Win.Chart.ChartModel,FarPoint.Win.Chart.ChartViewType)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChartUndoAction"/> class.
</summary>
<param name="chart">The chart.</param>
<param name="newChartType">New type of the chart.</param>
<param name="indicatorIndex">Index of the indicator.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.#ctor(FarPoint.Win.Spread.Chart.SpreadChart,FarPoint.Win.Spread.Chart.SheetCellRange,FarPoint.Win.Spread.Chart.SheetCellRange,FarPoint.Win.Spread.Chart.SheetCellRange)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChartUndoAction"/> class.
</summary>
<param name="chart">The chart.</param>
<param name="category">The category.</param>
<param name="seriesName">Name of the series.</param>
<param name="data">The data.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.#ctor(FarPoint.Win.Spread.Chart.SpreadChart,FarPoint.Win.Chart.ChartModel,FarPoint.Win.Spread.Chart.SpreadChartUndoAction.ActionType)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChartUndoAction"/> class.
</summary>
<param name="chart">The chart.</param>
<param name="newModel">The new model.</param>
<param name="actionType">Type of the action.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.#ctor(FarPoint.Win.Spread.Chart.SpreadChart,FarPoint.Win.Chart.ChartModel,FarPoint.Win.Chart.ChartViewType,FarPoint.Win.Spread.Chart.SpreadChartUndoAction.ActionType)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChartUndoAction"/> class.
</summary>
<param name="chart">The chart.</param>
<param name="newModel">The new model.</param>
<param name="viewType">Type of the view.</param>
<param name="actionType">Type of the action.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.#ctor(FarPoint.Win.Spread.Chart.SpreadChart,FarPoint.Win.Chart.ChartModel,FarPoint.Win.Spread.Chart.ChartDataSetting,FarPoint.Win.Spread.Chart.SpreadChartUndoAction.ActionType)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChartUndoAction"/> class.
</summary>
<param name="chart">The chart.</param>
<param name="oldModel">The old model.</param>
<param name="newModel">The new model.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.#ctor(FarPoint.Win.Spread.Chart.SpreadChart,FarPoint.Win.Chart.ChartViewType)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChartUndoAction"/> class.
</summary>
<param name="chart">The chart.</param>
<param name="chartViewType">Type of the chart view.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.#ctor(FarPoint.Win.Spread.Chart.SpreadChart,FarPoint.Win.Spread.Chart.SpreadChartUndoAction.ActionType)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChartUndoAction"/> class.
</summary>
<param name="chart">The chart.</param>
<param name="isSwapRowColumn">if set to <c>true</c> [is swap row column].</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.#ctor(FarPoint.Win.Spread.Chart.SpreadChart,System.String,System.Int32,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChartUndoAction"/> class.
</summary>
<param name="chart">The chart.</param>
<param name="newSheetName">New name of the sheet.</param>
<param name="createNew">if set to <c>true</c> [create new].</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.#ctor(FarPoint.Win.Spread.Chart.ChartShape,System.Drawing.Rectangle)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChartUndoAction"/> class.
</summary>
<param name="chart">The chart.</param>
<param name="newBounds">The new bounds.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.#ctor(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.Chart.SpreadChart,System.Drawing.Rectangle)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChartUndoAction"/> class.
</summary>
<param name="chart">The chart.</param>
<param name="newBounds">The new bounds.</param>
<param name="copyAction">if set to <c>true</c> [copy action].</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.SaveUndoState">
<summary>
Saves undo state information.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.Undo(System.Object)">
<summary>
Undoes the action.
</summary>
<param name="sender">object</param>
<returns></returns>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.PerformUndoAction(System.Object)">
<summary>
Performs the undo action.
</summary>
<param name="sender">null menas that the action will be performed directly but not from UndoManager.</param>
<returns>
Boolean: true if successful; false otherwise
</returns>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.AppendChartModel(FarPoint.Win.Chart.ChartModel,FarPoint.Win.Chart.ChartModel)">
<summary>
Appends the chart model.
</summary>
<param name="model">The model.</param>
<param name="targetModel">The target model.</param>
<returns>true if targetModel contains XYZSurfaceSeries</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.PerformAction(FarPoint.Win.Spread.Chart.SheetCellRange,FarPoint.Win.Spread.Chart.SheetCellRange,FarPoint.Win.Spread.Chart.SheetCellRange,System.Boolean)">
<summary>
Performs the action.
</summary>
<param name="category">The category.</param>
<param name="seriesName">Name of the series.</param>
<param name="data">The data.</param>
<param name="isUndo">if set to <c>true</c> [is undo].</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.PerformAction(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.Chart.ChartShape,System.Drawing.Rectangle,System.Boolean)">
<summary>
Perform an action when user try to move and/or resize and then choosing copy from the context menu.
</summary>
<param name="sheetView"></param>
<param name="chart"></param>
<param name="newBounds"></param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.PerformAction(System.Drawing.Rectangle)">
<summary>
Performs the action.
</summary>
<param name="newBounds">The new bounds.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.PerformMoveChartAction(System.String,System.Int32,System.Boolean,System.Boolean)">
<summary>
Performs the action.
</summary>
<param name="newSheetName">New name of the sheet.</param>
<param name="createNew">if set to <c>true</c> [create new].</param>
<param name="isUndo">if set to <c>true</c> [is undo].</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.PerformSwitchRowColumnAction(System.Boolean,System.Boolean)">
<summary>
Performs the action.
</summary>
<param name="isSwapRowColumn">if set to <c>true</c> [is swap row column].</param>
<param name="isUndo">if set to <c>true</c> [is undo].</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.PerformAction(FarPoint.Win.Chart.ChartViewType)">
<summary>
Performs when user change ViewType of a chart
</summary>
<param name="chartViewType">Type of the chart view.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.PerformAction(FarPoint.Win.Chart.ChartModel,System.Boolean)">
<summary>
Performs when user change ChartType of a chart
</summary>
<param name="chartType">Type of the chart.</param>
<param name="chartViewType">Type of the chart view.</param>
<param name="isUndo">if set to <c>true</c> [is undo].</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.PerformChangeSeriesTypeAction(FarPoint.Win.Chart.ChartModel,System.Boolean)">
<summary>
Performs when user change ChartType of a series.
</summary>
<param name="chartType">Type of the chart.</param>
<param name="indicatorIndex">Index of the indicator.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.ActionType">
<summary>
Represents which kind of SpreadChart undoable action.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.ActionType.DataIndicator">
<summary>
DataIndicator is changed.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.ActionType.ChartType">
<summary>
ChartType is changed.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.ActionType.SeriesChartType">
<summary>
SeriesChartType is changed.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.ActionType.ChartViewType">
<summary>
User switch between 2D and 3D.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.ActionType.SwitchRowColumn">
<summary>
User switch using Row as Column and vice versa.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.ActionType.SelectData">
<summary>
ChartDataIndicator is changed. It's offen raised by SelectData form.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.ActionType.MoveChart">
<summary>
User move SpreadChart to other SheetView.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.ActionType.MoveResize">
<summary>
User move SpreadChart to other location or resize it.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.ActionType.CopyMoveResize">
<summary>
User move and/or resize SpreadChart to other location and try to clone it.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.ActionType.ChartModel">
<summary>
ChartModel is changed
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.ActionType.PasteChartToChart">
<summary>
Paste a chart's content to another chart
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.ActionType.ChartDesigner">
<summary>
Change chart by opening FpChart Designer.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Chart.SpreadChartUndoAction.ActionType.None">
<summary>
Do nothing
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Chart.SpreadChartDeleteUndoAction">
<summary>
This class represents the action which user delete the chart by press Delete or choose "Delete" from context menu.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartDeleteUndoAction.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartDeleteUndoAction.#ctor(FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Chart.SpreadChartDeleteUndoAction"/> class.
</summary>
<param name="chart">The chart.</param>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartDeleteUndoAction.SaveUndoState">
<summary>
Saves undo state information.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartDeleteUndoAction.Undo(System.Object)">
<summary>
Undoes the action.
</summary>
<param name="sender">object</param>
<returns></returns>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartDeleteUndoAction.PerformUndoAction(System.Object)">
<summary>
Performs the undo action.
</summary>
<param name="sender"></param>
<returns>
Boolean: true if successful; false otherwise
</returns>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.Chart.SpreadChartDeleteUndoAction.PerformAction">
<summary>
Performs the action.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ExcelMarqueeFocusIndicatorRenderer">
<summary>
Represents the renderer of the marquee (or animated) focus indicator which has effect like Excel.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.MarqueeFocusIndicatorRenderer">
<summary>
Represents the renderer of the marquee (or animated) focus indicator.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.IAnimatedFocusIndicatorRenderer">
<summary>
Interface that supports painting a changing (or animated) focus indicator.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.IFocusIndicatorRenderer">
<summary>
Interface that supports painting the focus indicator using a specified control and dimensions.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IFocusIndicatorRenderer.Paint(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Paints the cell with the focus indicator using the specified control and dimensions.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="left">Whether to paint the left side of the focus indicator</param>
<param name="top">Whether to paint the top of the focus indicator</param>
<param name="right">Whether to paint the right side of the focus indicator</param>
<param name="bottom">Whether to paint the bottom of the focus indicator</param>
</member>
<member name="P:FarPoint.Win.Spread.IAnimatedFocusIndicatorRenderer.Position">
<summary>
Gets or sets the current step in the animation.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.MarqueeFocusIndicatorRenderer.#ctor">
<summary>
Creates a new renderer for the marquee (or animated) focus indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.MarqueeFocusIndicatorRenderer.Finalize">
<summary>
The destructor method
</summary>
</member>
<member name="M:FarPoint.Win.Spread.MarqueeFocusIndicatorRenderer.#ctor(System.Drawing.Color,System.Int32)">
<summary>
Creates a new renderer for the marquee (or animated) focus indicator
with the specified line thickness and color
</summary>
<param name="color">Color object specifying the color of the indicator line</param>
<param name="thickness">Integer number of pixels in the thickness of the indicator line</param>
</member>
<member name="M:FarPoint.Win.Spread.MarqueeFocusIndicatorRenderer.Paint(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Paints the cell with the marquee (or animated) focus indicator
using the specified control and dimensions.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="left">Whether to paint the left side of the focus indicator</param>
<param name="top">Whether to paint the top of the focus indicator</param>
<param name="right">Whether to paint the right side of the focus indicator</param>
<param name="bottom">Whether to paint the bottom of the focus indicator</param>
</member>
<member name="M:FarPoint.Win.Spread.MarqueeFocusIndicatorRenderer.ToString">
<summary>
Returns the name of the renderer as a string.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.MarqueeFocusIndicatorRenderer.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.MarqueeFocusIndicatorRenderer.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
</member>
<member name="M:FarPoint.Win.Spread.MarqueeFocusIndicatorRenderer.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.MarqueeFocusIndicatorRenderer.Dispose(System.Boolean)">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
<param name="disposing"></param>
</member>
<member name="M:FarPoint.Win.Spread.MarqueeFocusIndicatorRenderer.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a SpreadMonthCalendar from serialization.
</summary>
<param name="info">Object that holds the serialized object data</param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.MarqueeFocusIndicatorRenderer.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a SerializationInfo with the data needed to serialize the target object.
</summary>
<param name="info">SerializationInfo to populate with data.</param>
<param name="context">Destination for this serialization.</param>
</member>
<member name="P:FarPoint.Win.Spread.MarqueeFocusIndicatorRenderer.Position">
<summary>
Gets or sets the current step in the multiple-step animation cycle.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.MarqueeFocusIndicatorRenderer.Color">
<summary>
Gets or sets the color.
</summary>
<value>Color</value>
</member>
<member name="P:FarPoint.Win.Spread.MarqueeFocusIndicatorRenderer.Thickness">
<summary>
Gets or sets the thickness.
</summary>
<value>Number of pixels in the thickness</value>
</member>
<member name="M:FarPoint.Win.Spread.ExcelMarqueeFocusIndicatorRenderer.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.ExcelMarqueeFocusIndicatorRenderer"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ExcelMarqueeFocusIndicatorRenderer.GetDashOffset">
<summary>
Gets the dash offset.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormatBaseForm.GetMinValue">
<summary>
Get min value in select cell range.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormatBaseForm.GetMaxValue">
<summary>
Get max value in select cell range.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormatBaseForm.GetMinDateValue">
<summary>
Get min value in select cell range.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormatBaseForm.GetMaxDateValue">
<summary>
Get max value in select cell range.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormatBaseForm.ClearConditionalFormat">
<summary>
Clear the conditional format in select cell range
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormatBaseForm.SaveConditionalFormat">
<summary>
Save the conditional format in select cell range
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormatBaseForm.RestoreConditionalFormat">
<summary>
Restore the conditional format to select cell range
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormatBaseForm.SetConditionalFormat(System.Int32,System.Int32,FarPoint.Win.Spread.ConditionalFormat)">
<summary>
Sets conditional format(s) for the cell at the specified row and column.
</summary>
<param name="view"></param>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
<param name="conditionalFormats">Conditional format(s)</param>
<returns>Does the conditional formate set.</returns>
</member>
<member name="F:FarPoint.Win.Spread.ConditionalFormatBaseForm.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalFormatBaseForm.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:FarPoint.Win.Spread.ConditionalFormatBaseForm.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalBetweenForm.LocalizeGUIStrings">
<summary>
Localize all GUI strings of this instance
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ConditionalBetweenForm.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalBetweenForm.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:FarPoint.Win.Spread.ConditionalBetweenForm.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalEqualForm.LocalizeGUIStrings">
<summary>
Localize all GUI strings of this instance
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ConditionalEqualForm.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ConditionalEqualForm.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:FarPoint.Win.Spread.ConditionalEqualForm.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellRangeType">
<summary>
Represents CellRange Type
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellRangeType.Sheet">
<summary>
Sheet CellType
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellRangeType.Column">
<summary>
Column CellType
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellRangeType.Row">
<summary>
Row CellType
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellRangeType.Cell">
<summary>
Cell CellType
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultGroupFooterEditorForm.OnApplying(System.EventArgs)">
<summary>
Fires the Applying event.
</summary>
<param name="e">EventArgs</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultGroupFooterEditorForm.OnApplied(System.EventArgs)">
<summary>
Fires the Applied event.
</summary>
<param name="e">EventArgs</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultGroupFooterEditorForm.LocalizeGUIStrings">
<summary>
Localize all GUI strings of this instance
</summary>
</member>
<member name="F:FarPoint.Win.Spread.DefaultGroupFooterEditorForm.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultGroupFooterEditorForm.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:FarPoint.Win.Spread.DefaultGroupFooterEditorForm.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.DefaultGroupFooterEditorForm.Applying">
<summary>
Occurs when the editor is about to begin applying changes.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.DefaultGroupFooterEditorForm.Applied">
<summary>
Occurs when the editor has finished applying changes.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellFooterWrapper.AggregationType">
<summary>
Gets or sets the aggregation type at this cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellFooterWrapper.AggregationFormatString">
<summary>
Gets or sets the aggregation format string at this cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultGroupEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
<summary>
Edits the parent style name value.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="provider">IServiceProvider</param>
<param name="value">object</param>
<returns>object</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultGroupEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Gets the style of the type editor (which is drop-down).
</summary>
<param name="context">ITypeDescriptorContext</param>
<returns>UITypeEditorEditStyle</returns>
</member>
<member name="T:FarPoint.Win.Spread.Description">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.AdvancedSearchDialog_advancedLabel">
<summary>
Looks up a localized string similar to Advanced options.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.AdvancedSearchDialog_includeCellText">
<summary>
Looks up a localized string similar to &amp;Include cell text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.AdvancedSearchDialog_includeNotes">
<summary>
Looks up a localized string similar to Include ce&amp;ll notes.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.AdvancedSearchDialog_includeTags">
<summary>
Looks up a localized string similar to Include cell &amp;tags.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.AdvancedSearchDialog_incompleteCriteria">
<summary>
Looks up a localized string similar to Incomplete search criteria. Search will be performed on cell text..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.AdvancedSearchDialog_lastSheetSearched">
<summary>
Looks up a localized string similar to Last sheet searched..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.AlternatingRow_BackColor">
<summary>
Looks up a localized string similar to Gets or sets the background color for this alternating row..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.AlternatingRow_Border">
<summary>
Looks up a localized string similar to Gets or sets the border in this alternating row..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.AlternatingRow_CellPadding">
<summary>
Looks up a localized string similar to Gets or sets the amount of space, in pixels, to cell padding in the cells of the alternating row(s)..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.AlternatingRow_CellType">
<summary>
Looks up a localized string similar to Gets or sets the cell type for this alternating row..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.AlternatingRow_Font">
<summary>
Looks up a localized string similar to Gets or sets the font for this alternating row..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.AlternatingRow_ForeColor">
<summary>
Looks up a localized string similar to Gets or sets the text color for this alternating row..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.AlternatingRow_HorizontalAlignment">
<summary>
Looks up a localized string similar to Gets or sets the horizontal alignment for text in the cells in this alternating row..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.AlternatingRow_Locked">
<summary>
Looks up a localized string similar to Gets or sets whether cells in this alternating row are marked as locked..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.AlternatingRow_NoteIndicatorColor">
<summary>
Looks up a localized string similar to Gets or sets the default color for the cell note indicator for cells in this row..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.AlternatingRow_ParentStyleName">
<summary>
Looks up a localized string similar to Gets or sets the name of the parent NamedStyle object from which style properties are inherited..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.AlternatingRow_StyleName">
<summary>
Looks up a localized string similar to Gets or sets the name of the NamedStyle object for the alternating row..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.AlternatingRow_TabStop">
<summary>
Looks up a localized string similar to Gets or sets whether the user can set focus to cells in this row using the Tab key..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.AlternatingRow_VerticalAlignment">
<summary>
Looks up a localized string similar to Gets or sets the vertical alignment for text in the cells in the alternating row..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.AlternatingRows_Count">
<summary>
Looks up a localized string similar to Gets or sets the number of alternating row styles in this collection..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.AMString">
<summary>
Looks up a localized string similar to am.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarAdjust_X">
<summary>
Looks up a localized string similar to Gets or sets the adjust value of X direction..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarAdjust_Y">
<summary>
Looks up a localized string similar to Gets or sets the adjust value of Y direction..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_AdjustSize">
<summary>
Looks up a localized string similar to Gets or sets whether the size of the barcode is adjusted based on the bar size..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_BackColor">
<summary>
Looks up a localized string similar to Gets or sets the background color for the barcode. .
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_BarAdjust">
<summary>
Looks up a localized string similar to Gets or sets the micro adjust value of barcode size..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_BarSize">
<summary>
Looks up a localized string similar to Gets or sets the preferred size of barcode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_CheckDigit">
<summary>
Looks up a localized string similar to Gets or sets whether the CheckDigit is automatically calculated..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_Code39">
<summary>
Looks up a localized string similar to Gets or sets the default value of Code39..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_Code49">
<summary>
Looks up a localized string similar to Gets or sets the default value of Code49..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_FixedLength">
<summary>
Looks up a localized string similar to Gets or sets the fixed digital length of barcode value..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_ForeColor">
<summary>
Looks up a localized string similar to Gets or sets the foreground color of the barcode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_ImageFormat">
<summary>
Looks up a localized string similar to Gets or sets the format of the image..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_ITF">
<summary>
Looks up a localized string similar to Gets or sets the default value of ITF..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_Message">
<summary>
Looks up a localized string similar to Gets or sets whether display the barcode value as a text..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_MessageFont">
<summary>
Looks up a localized string similar to Gets or sets the font of displayed barcode value text..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_MessagePosition">
<summary>
Looks up a localized string similar to Gets or sets the position of displayed barcode value text..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_MessageValue">
<summary>
Looks up a localized string similar to Gets or sets the displayed text at the bottom of barcode control..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_MinimumHeight">
<summary>
Looks up a localized string similar to Gets or sets the minimum height of the barcode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_ModuleSize">
<summary>
Looks up a localized string similar to Gets or sets the module size of the barcode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_PDF417">
<summary>
Looks up a localized string similar to Gets or sets the default value of PDF417..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_QRCode">
<summary>
Looks up a localized string similar to Gets or sets the default value of QR Code..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_Quiet">
<summary>
Looks up a localized string similar to Gets or sets the size of quiet zone..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_Resolution">
<summary>
Looks up a localized string similar to Gets or sets the resolution (in dots-per-inch) of the generated image..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_Rotation">
<summary>
Looks up a localized string similar to Gets or sets the rotate angle of barcode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_Type">
<summary>
Looks up a localized string similar to Gets or sets the type of barcode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_Unit">
<summary>
Looks up a localized string similar to Gets or sets the default unit of measure of dimensions of the barcode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_UPC">
<summary>
Looks up a localized string similar to Gets or sets the default of UPC..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCode_Value">
<summary>
Looks up a localized string similar to Gets or sets the value of barcode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_AcceptsCheckDigit">
<summary>
Looks up a localized string similar to Gets or sets whether to accept the check digit in input..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_AdjustSize">
<summary>
Looks up a localized string similar to Gets or sets a value indicating whether the BarCode adjust its size according to BarSize property..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_AutoStretch">
<summary>
Looks up a localized string similar to Determines whether the barcode resizes itself when the cell changes size..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_BackColor">
<summary>
Looks up a localized string similar to Gets or sets the color of the barcode background..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_BarAdjust">
<summary>
Looks up a localized string similar to Gets or sets the width of the adjust bar for fine tuning the placement..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_BarCodePadding">
<summary>
Looks up a localized string similar to Gets or sets the left and right padding of the barcode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_BarSize">
<summary>
Looks up a localized string similar to Gets or sets the height and width of the barcodes..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_BarType">
<summary>
Looks up a localized string similar to Gets or sets the type of the barcode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_CheckDigit">
<summary>
Looks up a localized string similar to Gets or sets a value indicating whether check digit is visible..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_Code39">
<summary>
Looks up a localized string similar to Gets or sets the value of Code39 options when the barcode type is Code39.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_Code49">
<summary>
Looks up a localized string similar to Gets or sets the value of Code49 options when the barcode type is Code49..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_DisplayMode">
<summary>
Looks up a localized string similar to Indicates whether to display the image of the barcode or just its value in text..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_FixedLength">
<summary>
Looks up a localized string similar to Gets or sets the number of the fixed digits of the value of the barcode. Can be set only if the barcode type is PostNet, ITF, or Code39. If the barcode type is PostNet, the value must be 5 or 10, or 12..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_FixedLength_ExMsg">
<summary>
Looks up a localized string similar to Only 5 or 10 or 12 is accepted if the barcode type is PostNet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_ForeColor">
<summary>
Looks up a localized string similar to Gets or sets the color of the BarCode foreground..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_IsFormulaValue">
<summary>
Looks up a localized string similar to Determines whether the editor contains a formula..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_ITF">
<summary>
Looks up a localized string similar to Gets or sets the value of ITF options when the barcode type is ITF..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_Message">
<summary>
Looks up a localized string similar to Gets or sets a whether to show the message string with the barcode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_MessagePosition">
<summary>
Looks up a localized string similar to Gets or sets the display position message associated with barcode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_MessageValue">
<summary>
Looks up a localized string similar to Gets or sets the message string..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_MinimumHeight">
<summary>
Looks up a localized string similar to Gets or sets the minimum height of the entire barcode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_ModuleSize">
<summary>
Looks up a localized string similar to Gets or sets the size of the barcode module..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_PDF417">
<summary>
Looks up a localized string similar to Gets or sets the value of PDF417 options when the barcode type is PDF417..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_QRCode">
<summary>
Looks up a localized string similar to Gets or sets the value of QR Code options when the barcode type is QR Code..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_Resolution">
<summary>
Looks up a localized string similar to Gets or sets the resolution (in dots-per-inch) of the output image of the barcode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_Rotation">
<summary>
Looks up a localized string similar to Gets or sets the rotation angle of the barcode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_Unit">
<summary>
Looks up a localized string similar to Gets or sets the unit of measure for the dimensions of the barcode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_UPC">
<summary>
Looks up a localized string similar to Gets or sets the value of UPC options when the barcode type is UPC..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarCodeCellType_ValueErrorMsg">
<summary>
Looks up a localized string similar to Invalid barcode value.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarSize_Height">
<summary>
Looks up a localized string similar to Gets or sets the height of the barcode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.BarSize_Width">
<summary>
Looks up a localized string similar to Gets or sets the width of the barcode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.bcd_err_BadValue">
<summary>
Looks up a localized string similar to The valud is invalid..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.bcd_err_Code49GroupNo">
<summary>
Looks up a localized string similar to Code49GroupNo.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.bcd_err_ConvertBitmapStrideError">
<summary>
Looks up a localized string similar to There is an error when convert bitmap stride..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.bcd_err_InternalErrorAtoL">
<summary>
Looks up a localized string similar to Internal error..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.bcd_err_InternalErrorPDF417CodeConv">
<summary>
Looks up a localized string similar to Internal error in PDF417 code converter..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.bcd_err_NoMoreConnection">
<summary>
Looks up a localized string similar to Can not create more connection..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.bcd_err_NoMoreGroup">
<summary>
Looks up a localized string similar to Can not create more group..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.bcd_err_NotHaveValue">
<summary>
Looks up a localized string similar to You must provide a value..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.bcd_err_OverConnection">
<summary>
Looks up a localized string similar to The connection is over..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.bcd_err_ParameterError">
<summary>
Looks up a localized string similar to There is an error from parameter..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.bcd_err_PDF417Col">
<summary>
Looks up a localized string similar to PDF417Col.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.bcd_err_PDF417ErrorLevel">
<summary>
Looks up a localized string similar to PDF417ErrorLevel.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.bcd_err_PDF417Row">
<summary>
Looks up a localized string similar to PDF417Row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.bcd_err_QRCodeConnectionNo">
<summary>
Looks up a localized string similar to QRCodeConnectionNo.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.bcd_err_QRCodeModel1Version">
<summary>
Looks up a localized string similar to QRCodeModel1Version.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.bcd_err_QRCodeModel2Version">
<summary>
Looks up a localized string similar to QRCodeModel2Version.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.bcd_err_TooBigValue">
<summary>
Looks up a localized string similar to The value is too big..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.bcd_err_ValueError">
<summary>
Looks up a localized string similar to The value is invalid..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ButtonCellType_BackgroundStyle">
<summary>
Looks up a localized string similar to Gets or sets how the background is rendered..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ButtonCellType_ButtonColor">
<summary>
Looks up a localized string similar to Gets or sets the color for the button..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ButtonCellType_ButtonColor2">
<summary>
Looks up a localized string similar to Gets or sets the secondary color used when drawing a gradient button..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ButtonCellType_DarkColor">
<summary>
Looks up a localized string similar to Gets or sets the shadow color for the button..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ButtonCellType_GradientMode">
<summary>
Looks up a localized string similar to Gets or sets the drawing style of a gradient button..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ButtonCellType_LightColor">
<summary>
Looks up a localized string similar to Gets or sets the highlight color for the button..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ButtonCellType_Picture">
<summary>
Looks up a localized string similar to Gets or sets the image for the button..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ButtonCellType_PictureDown">
<summary>
Looks up a localized string similar to Gets or sets the image for the down state of the button..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ButtonCellType_ShadowSize">
<summary>
Looks up a localized string similar to Gets or sets the width (in pixels) of the shadow around the button..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ButtonCellType_Text">
<summary>
Looks up a localized string similar to Gets or sets the button text..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ButtonCellType_TextAlign">
<summary>
Looks up a localized string similar to Gets or sets how the text aligns itself in relation to the button image..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ButtonCellType_TextColor">
<summary>
Looks up a localized string similar to Gets or sets the color for the button text..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ButtonCellType_TextDown">
<summary>
Looks up a localized string similar to Gets or sets the text for the button down state..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ButtonCellType_TextOrientation">
<summary>
Looks up a localized string similar to Gets or sets how text orients itself when painting the cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ButtonCellType_TwoState">
<summary>
Looks up a localized string similar to Gets or sets whether the button has two states..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ButtonCellType_UseVisualStyleBackColor">
<summary>
Looks up a localized string similar to Gets or sets whether to use the visual style setting background color.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ButtonCellType_WordWrap">
<summary>
Looks up a localized string similar to Gets or sets whether text that is too long to fit in the cell wraps to additional lines..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Calculator_Cancel">
<summary>
Looks up a localized string similar to Cancel.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Calculator_OK">
<summary>
Looks up a localized string similar to OK.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Calculator_Title">
<summary>
Looks up a localized string similar to Calculator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Calendar_Cancel">
<summary>
Looks up a localized string similar to Cancel.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Calendar_OK">
<summary>
Looks up a localized string similar to OK.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Calendar_Today">
<summary>
Looks up a localized string similar to Today.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CalendarFormat">
<summary>
Looks up a localized string similar to dddd, MMMM dd yyyy.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_BackColor">
<summary>
Looks up a localized string similar to Gets or sets the background color for a cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_Border">
<summary>
Looks up a localized string similar to Gets or sets the border for a cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_CanFocus">
<summary>
Looks up a localized string similar to Gets or sets whether the user can set focus to the cell using the keyboard or mouse..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_CellPadding">
<summary>
Looks up a localized string similar to Gets or sets the amount of spaces to cell padding in the cell(s) in pixels..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_CellType">
<summary>
Looks up a localized string similar to Gets or sets the type of cell for a cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_ColumnSpan">
<summary>
Looks up a localized string similar to Gets or sets the number of columns spanned by this cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_Font">
<summary>
Looks up a localized string similar to Gets or sets the font for a cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_ForeColor">
<summary>
Looks up a localized string similar to Gets or sets the text (foreground) color..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_Formula">
<summary>
Looks up a localized string similar to Gets or sets the formula in a cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_HorizontalAlignment">
<summary>
Looks up a localized string similar to Gets or sets the horizontal alignment of a cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_Locked">
<summary>
Looks up a localized string similar to Gets or sets whether editing is disallowed when SheetView.Protect equals true..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_Note">
<summary>
Looks up a localized string similar to Gets or sets the note for a cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_NoteIndicatorColor">
<summary>
Looks up a localized string similar to Gets or sets the cell note indicator color for a cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_NoteIndicatorPosition">
<summary>
Looks up a localized string similar to Gets or sets the cell note indicator position for the cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_NoteIndicatorSize">
<summary>
Looks up a localized string similar to Gets or sets the cell note indicator size for a cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_NoteStyle">
<summary>
Looks up a localized string similar to Gets or sets the note style for the cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_ParentStyleName">
<summary>
Looks up a localized string similar to Gets or sets name of the parent NamedStyle from which style properties are inherited..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_RowSpan">
<summary>
Looks up a localized string similar to Gets or sets the number of rows spanned by a cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_StyleName">
<summary>
Looks up a localized string similar to Gets or sets the named style for a cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_TabStop">
<summary>
Looks up a localized string similar to Gets or sets whether the user can set focus to the cell using the TAB key..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_Tag">
<summary>
Looks up a localized string similar to Gets or sets an application-defined tag value for a cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_Text">
<summary>
Looks up a localized string similar to Gets or sets the formatted text in a cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_VerticalAlignment">
<summary>
Looks up a localized string similar to Gets or sets the vertical alignment of a cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Cell_VisualStyles">
<summary>
Looks up a localized string similar to Gets or sets whether to render the object using VisualStyles..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellNote_Comment">
<summary>
Looks up a localized string similar to Gets or sets the text of the cell&apos;s comment..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellNote_Height">
<summary>
Looks up a localized string similar to Gets or sets the height of the cell note..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellNote_Width">
<summary>
Looks up a localized string similar to Gets or sets the width of the cell note..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellPadding_All">
<summary>
Looks up a localized string similar to Gets or sets the padding, in pixels, for the all edges..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellPadding_Bottom">
<summary>
Looks up a localized string similar to Gets or sets the padding, in pixels, for the bottom edge..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellPadding_Horizontal">
<summary>
Looks up a localized string similar to Gets the sum, in pixels, for the right and left edges..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellPadding_Left">
<summary>
Looks up a localized string similar to Gets or sets the padding, in pixels, for the left edge..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellPadding_Right">
<summary>
Looks up a localized string similar to Gets or sets the padding, in pixels, for the right edge..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellPadding_Top">
<summary>
Looks up a localized string similar to Gets or sets the padding, in pixels, for the top edge..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellPadding_Vertical">
<summary>
Looks up a localized string similar to Gets the sum, in pixels, for the top and bottom edges..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellsEditor_Apply">
<summary>
Looks up a localized string similar to &amp;Apply.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellsEditor_ApplyChanges">
<summary>
Looks up a localized string similar to Do you want to apply your changes before closing?.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellsEditor_ApplyChangesTitle">
<summary>
Looks up a localized string similar to Apply Changes?.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellsEditor_Cancel">
<summary>
Looks up a localized string similar to Cancel.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellsEditor_CellProperties">
<summary>
Looks up a localized string similar to Cell({0:0},{1:0}) &amp;Properties:.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellsEditor_CellsProperties">
<summary>
Looks up a localized string similar to Cell({0:0},{1:0}) - Cell({2:0},{3:0}) &amp;Properties:.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellsEditor_ChangeAutoGenerateColumns">
<summary>
Looks up a localized string similar to One or more columns has been bound to a non-default data field, but the AutoGenerateColumns property for the SheetView is set to True. Do you want to change it to False? If you say No, then your custom column bindings will be lost..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellsEditor_ChangeAutoGenerateColumnsTitle">
<summary>
Looks up a localized string similar to Change AutoGenerateColumns?.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellsEditor_ColumnProperties">
<summary>
Looks up a localized string similar to Column({0:0}) &amp;Properties:.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellsEditor_ColumnsProperties">
<summary>
Looks up a localized string similar to Column({0:0}) - Column({1:0}) &amp;Properties:.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellsEditor_DefaultStyleProperties">
<summary>
Looks up a localized string similar to SheetView.DefaultStyle &amp;Properties:.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellsEditor_Help">
<summary>
Looks up a localized string similar to &amp;Help.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellsEditor_labelSpread">
<summary>
Looks up a localized string similar to &amp;Select cell(s), column(s), or row(s):.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellsEditor_OK">
<summary>
Looks up a localized string similar to OK.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellsEditor_RowProperties">
<summary>
Looks up a localized string similar to Row({0:0}) &amp;Properties:.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellsEditor_RowsProperties">
<summary>
Looks up a localized string similar to Row({0:0}) - Row({1:0}) &amp;Properties:.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CellsEditor_Title">
<summary>
Looks up a localized string similar to Cells, Columns, and Rows Editor.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CheckBoxCellType_BackgroundImage">
<summary>
Looks up a localized string similar to Gets or sets the background image for the cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CheckBoxCellType_Caption">
<summary>
Looks up a localized string similar to Gets or sets the text in the check box regardless of the state..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CheckBoxCellType_Picture">
<summary>
Looks up a localized string similar to Gets or sets the image to use for the states of the check box..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CheckBoxCellType_TextAlign">
<summary>
Looks up a localized string similar to Gets or sets how the text is aligned in the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CheckBoxCellType_TextFalse">
<summary>
Looks up a localized string similar to Gets or sets the text for false state..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CheckBoxCellType_TextIndeterminate">
<summary>
Looks up a localized string similar to Gets or sets the indeterminate state text..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CheckBoxCellType_TextTrue">
<summary>
Looks up a localized string similar to Gets or sets the text for true state..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CheckBoxCellType_ThreeState">
<summary>
Looks up a localized string similar to Gets or sets whether the check box has three states..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Class_SheetTab">
<summary>
Looks up a localized string similar to Represents an individual sheet name tab..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Class_TabStrip">
<summary>
Looks up a localized string similar to Represents the set of sheet tabs..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Clock_Now">
<summary>
Looks up a localized string similar to Now.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Code39_FullAscii">
<summary>
Looks up a localized string similar to Gets or sets whether full ASCII mode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Code49_Grouping">
<summary>
Looks up a localized string similar to Gets or sets whether grouping..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Code49_GroupNo">
<summary>
Looks up a localized string similar to Gets or sets the group number..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Code49_GroupNoExMsg">
<summary>
Looks up a localized string similar to Please specify a value from 0 to 8..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColorPickerCellType_AllowFullOpen">
<summary>
Looks up a localized string similar to Gets or sets whether to allow the color picker dialog to open fully..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColorPickerCellType_AnyColor">
<summary>
Looks up a localized string similar to Gets or sets whether any color is allowed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColorPickerCellType_Caption">
<summary>
Looks up a localized string similar to Gets or sets the caption to display in the color picker cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColorPickerCellType_CustomColors">
<summary>
Looks up a localized string similar to Gets or sets the custom colors for the color picker dialog..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColorPickerCellType_DropDown">
<summary>
Looks up a localized string similar to Gets or sets whether to drop down the color picker dialog by default..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColorPickerCellType_FullOpen">
<summary>
Looks up a localized string similar to Gets or sets whether to display the color picker dialog fully open..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColorPickerCellType_SolidColorOnly">
<summary>
Looks up a localized string similar to Gets or sets whether solid colors only are displayed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColorPickerCellType_Style">
<summary>
Looks up a localized string similar to Gets or sets the style of the color picker..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColorPickerCellType_UnknownText">
<summary>
Looks up a localized string similar to Gets or sets the text for unknown colors..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColorPickerCellType_UnknownTextStyle">
<summary>
Looks up a localized string similar to Gets or sets the style of text for unknown colors..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Column">
<summary>
Looks up a localized string similar to Column: .
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Column_CellPadding">
<summary>
Looks up a localized string similar to Gets or sets the amount of space, in pixels, to cell padding in the cells of the column(s)..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Column_Tag">
<summary>
Looks up a localized string similar to Gets or sets an application-defined tag value for a column..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Column_VisualStyles">
<summary>
Looks up a localized string similar to Gets or sets whether to render the object using VisualStyles..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColumnFooter_DefaultStyle">
<summary>
Looks up a localized string similar to Gets or sets the default style information for the cells in the column footer..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColumnFooter_DefaultStyleName">
<summary>
Looks up a localized string similar to Gets or sets the name of the default style for the column footer..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColumnFooter_RowCount">
<summary>
Looks up a localized string similar to Gets or sets the number of rows in the column footer..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColumnFooter_Visible">
<summary>
Looks up a localized string similar to Gets or sets whether the column footer is visible..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColumnHeader_AutoFilterIndex">
<summary>
Looks up a localized string similar to Gets or sets which column header row displays the filter indicator when there are multiple column header rows..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColumnHeader_AutoSortIndex">
<summary>
Looks up a localized string similar to Gets or sets which column header row displays the sort indicator when there are multiple column header rows..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColumnHeader_AutoText">
<summary>
Looks up a localized string similar to Gets or sets whether column headers display letters or numbers or are blank. .
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColumnHeader_AutoTextIndex">
<summary>
Looks up a localized string similar to Gets or sets which column header row displays the auto text when there are multiple column headers. .
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColumnHeader_DefaultStyle">
<summary>
Looks up a localized string similar to Gets or sets the default style information for the cells in the column header..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColumnHeader_DefaultStyleName">
<summary>
Looks up a localized string similar to Gets or sets the name of the default style for the column headers..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColumnHeader_HorizontalGridLine">
<summary>
Looks up a localized string similar to Gets or sets the horizontal grid line..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColumnHeader_RowCount">
<summary>
Looks up a localized string similar to Gets or sets the number of rows in the column headers..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColumnHeader_VerticalGridLine">
<summary>
Looks up a localized string similar to Gets or sets the vertical grid line..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ColumnHeader_Visible">
<summary>
Looks up a localized string similar to Gets or sets whether the column headers are visible..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Columns_Count">
<summary>
Looks up a localized string similar to Gets or sets the number of columns in this collection..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ComboBoxCellType_AcceptsArrowKeys">
<summary>
Looks up a localized string similar to Gets or sets how arrow keys are processed by the combo box control..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ComboBoxCellType_AutoComplete">
<summary>
Looks up a localized string similar to Gets or sets whether an editable combobox uses automatic completion..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ComboBoxCellType_AutoSearch">
<summary>
Looks up a localized string similar to Gets or sets how a list of items in a combo box is searched based on input of a character key..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ComboBoxCellType_BackgroundImage">
<summary>
Looks up a localized string similar to Gets or sets the image to paint in the background of the combo box edit portion..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ComboBoxCellType_Editable">
<summary>
Looks up a localized string similar to Gets or sets whether you can type into the edit portion of the combo box..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ComboBoxCellType_EditorValue">
<summary>
Looks up a localized string similar to Gets or sets what value is written to the underlying data model..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ComboBoxCellType_ImageList">
<summary>
Looks up a localized string similar to Gets or sets the image list of a combo box..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ComboBoxCellType_ItemData">
<summary>
Looks up a localized string similar to Gets or sets the corresponding data for the items in the drop-down list in the combo box..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ComboBoxCellType_Items">
<summary>
Looks up a localized string similar to Gets or sets the items to use for the drop-down list in the combo box..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ComboBoxCellType_ListAlignment">
<summary>
Looks up a localized string similar to Gets or sets the side of the cell on which the list aligns..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ComboBoxCellType_ListControl">
<summary>
Looks up a localized string similar to Gets or sets the control to use for the list portion..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ComboBoxCellType_ListOffset">
<summary>
Looks up a localized string similar to Gets or sets how many pixels to offset the list from the aligned edge of the cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ComboBoxCellType_ListWidth">
<summary>
Looks up a localized string similar to Gets or sets the width (in pixels) of the drop-down list..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ComboBoxCellType_MaxDrop">
<summary>
Looks up a localized string similar to Gets or sets the number of items to display at one time in the list portion..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ComboBoxCellType_MaxLength">
<summary>
Looks up a localized string similar to Gets or sets the maximum number of characters allowed in the text cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CurrencyCellType_CurrencySymbol">
<summary>
Looks up a localized string similar to Gets or sets the character(s) to display as the currency symbol..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CurrencyCellType_DecimalPlaces">
<summary>
Looks up a localized string similar to Gets or sets the number of decimal places..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CurrencyCellType_DecimalSeparator">
<summary>
Looks up a localized string similar to Gets or sets the decimal separator..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CurrencyCellType_FixedPoint">
<summary>
Looks up a localized string similar to Gets or sets whether the value displays placeholder zeros in the decimal portion of the number..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CurrencyCellType_LeadingZero">
<summary>
Looks up a localized string similar to Gets or sets whether leading zeros are displayed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CurrencyCellType_MaximumValue">
<summary>
Looks up a localized string similar to Gets or sets the maximum value allowed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CurrencyCellType_MinimumValue">
<summary>
Looks up a localized string similar to Gets or sets the minimum value allowed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CurrencyCellType_NegativeFormat">
<summary>
Looks up a localized string similar to Gets or sets the format for displaying a negative value..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CurrencyCellType_NegativeRed">
<summary>
Looks up a localized string similar to Gets or sets whether negative numeric values are displayed in red..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CurrencyCellType_PositiveFormat">
<summary>
Looks up a localized string similar to Gets or sets the format for displaying a positive value..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CurrencyCellType_Separator">
<summary>
Looks up a localized string similar to Gets or sets the separator character..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CurrencyCellType_ShowCurrencySymbol">
<summary>
Looks up a localized string similar to Gets or sets whether to display the currency symbol..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CurrencyCellType_ShowSeparator">
<summary>
Looks up a localized string similar to Gets or sets whether to display the thousands separator string..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CurrencyCellType_SpinButton">
<summary>
Looks up a localized string similar to Gets or sets whether a spin button is displayed when editing..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CurrencyCellType_SpinDecimalIncrement">
<summary>
Looks up a localized string similar to Gets or sets the amount by which the value increments when using the spin buttons and the cursor is in the decimal portion..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CurrencyCellType_SpinIntegerIncrement">
<summary>
Looks up a localized string similar to Gets or sets the amount by which the value increments when using the spin buttons and the cursor is in the integer portion..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.CurrencyCellType_SpinWrap">
<summary>
Looks up a localized string similar to Gets or sets whether the value wraps when the minimum or maximum is reached..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_AMString">
<summary>
Looks up a localized string similar to Gets or sets the string to indicate morning for 12-hour time format..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_Calendar">
<summary>
Looks up a localized string similar to Gets or sets the calendar to use for formatting date values..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarDayBackColor">
<summary>
Looks up a localized string similar to Gets or sets the back color of day elements in the Calendar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarDayFont">
<summary>
Looks up a localized string similar to Gets or sets the font of day elements in the Calendar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarDayForeColor">
<summary>
Looks up a localized string similar to Gets or sets the fore color of day elements in the Calendar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarMonthBackColor">
<summary>
Looks up a localized string similar to Gets or sets the back color of the month header in the Calendar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarMonthFont">
<summary>
Looks up a localized string similar to Gets or sets the font of the month header in the Calendar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarMonthForeColor">
<summary>
Looks up a localized string similar to Gets or sets the fore color of the month header in the Calendar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarMonthHeaderDock">
<summary>
Looks up a localized string similar to Gets or sets the location of the month header in the Calendar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarMonthHeaderHeight">
<summary>
Looks up a localized string similar to Gets or sets the height of the month header in the Calendar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarMonthHeaderStyle">
<summary>
Looks up a localized string similar to Gets or sets the style of the month header in the Calendar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarShowSurroundingDays">
<summary>
Looks up a localized string similar to Gets or sets whether days from the previous and next month show for the current month in the Calendar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarSingleLineHeader">
<summary>
Looks up a localized string similar to Gets or sets if and how the Calendar displays the month and year headers on a snigle line..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarSurroundingDaysColor">
<summary>
Looks up a localized string similar to Gets or sets the fore color of the days of the previous and next month in the Calendar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarWeekdayBackColor">
<summary>
Looks up a localized string similar to Gets or sets the back color of the weekday header in the Calendar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarWeekdayFont">
<summary>
Looks up a localized string similar to Gets or sets the font of the weekday header..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarWeekdayForeColor">
<summary>
Looks up a localized string similar to Gets or sets the fore color of the weekday header in the Calendar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarWeekdayHeaderDock">
<summary>
Looks up a localized string similar to Gets or sets the location of the weekday header..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarWeekdayHeaderHeight">
<summary>
Looks up a localized string similar to Gets or sets the height of the weekday header..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarYearBackColor">
<summary>
Looks up a localized string similar to Gets or sets the back color of the year header in the Calendar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarYearFont">
<summary>
Looks up a localized string similar to Gets or sets the font of the year header in the Calendar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarYearForeColor">
<summary>
Looks up a localized string similar to Gets or sets the fore color of the year header in the Calendar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarYearHeaderDock">
<summary>
Looks up a localized string similar to Gets or sets the location of the year header in the Calendar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarYearHeaderHeight">
<summary>
Looks up a localized string similar to Gets or sets the height of the year header in the Calendar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_CalendarYearHeaderStyle">
<summary>
Looks up a localized string similar to Gets or sets the style of the year header in the Calendar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_DateDefault">
<summary>
Looks up a localized string similar to Gets or sets the default date for the control..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_DateSeparator">
<summary>
Looks up a localized string similar to Gets or sets the string to use for the date separator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_DateTimeFormat">
<summary>
Looks up a localized string similar to Gets or sets the date-time format..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_DayNames">
<summary>
Looks up a localized string similar to Gets or sets the array of alternate day names..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_DropDownButton">
<summary>
Looks up a localized string similar to Gets or sets whether calendar drop down button is displayed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_EditorValue">
<summary>
Looks up a localized string similar to Gets or sets what value is written to the underlying data model..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_MaximumDate">
<summary>
Looks up a localized string similar to Gets or sets the maximum date value allowed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_MaximumTime">
<summary>
Looks up a localized string similar to Gets or sets the maximum time value allowed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_MinimumDate">
<summary>
Looks up a localized string similar to Gets or sets the minimum date value allowed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_MinimumTime">
<summary>
Looks up a localized string similar to Gets or sets the minimum time value allowed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_MonthNames">
<summary>
Looks up a localized string similar to Gets or sets the array of alternate month names..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_PMString">
<summary>
Looks up a localized string similar to Gets or sets the string to indicate afternoon and evening for 12-hour time format..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_ShortDayNames">
<summary>
Looks up a localized string similar to Gets or sets the array of alternate short day names..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_ShortMonthNames">
<summary>
Looks up a localized string similar to Gets or sets the array of alternate short month names..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_SpinButton">
<summary>
Looks up a localized string similar to Gets or sets whether a spin button is displayed while editing..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_TimeDefault">
<summary>
Looks up a localized string similar to Gets or sets the default time for the control..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_TimeSeparator">
<summary>
Looks up a localized string similar to Gets or sets the string to use for the time separator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_TwoDigitYearMax">
<summary>
Looks up a localized string similar to Gets or sets the last year of a 100-year range that can be represented by a 2-digit year..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DateTimeCellType_UserDefinedFormat">
<summary>
Looks up a localized string similar to Gets or sets the format used when DateTimeFormat is set to User-Defined..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DDMMYY">
<summary>
Looks up a localized string similar to dd/MM/yy.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DDMMYYYY">
<summary>
Looks up a localized string similar to dd/MM/yyyy.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DDMONYY">
<summary>
Looks up a localized string similar to dd/MMM/yy.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DDMONYYYY">
<summary>
Looks up a localized string similar to dd/MMM/yyyy.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DefaultExcelFontName">
<summary>
Looks up a localized string similar to MS Sans Serif.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DefaultSpreadDataViewMapper_NullDataSourceRange">
<summary>
Looks up a localized string similar to Can not set null for ModelDataSourceRange property..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.DPF417_Row_ExMsg">
<summary>
Looks up a localized string similar to Please specify a value from 3 to 90..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditBaseCellType_AcceptsArrowKeys">
<summary>
Looks up a localized string similar to Gets or sets how arrow keys are processed by the edit control..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditBaseCellType_AutoCompleteCustomSource">
<summary>
Looks up a localized string similar to Gets or sets a custom System.Collections.Specialized.StringCollection to use when the AutoCompleteSource property is set to CustomSource..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditBaseCellType_AutoCompleteMode">
<summary>
Looks up a localized string similar to Gets or sets how auto completion works..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditBaseCellType_AutoCompleteSource">
<summary>
Looks up a localized string similar to Gets or sets a value specifying the source of complete strings used for automatic completion..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditBaseCellType_AutoFillAutoCompleteCustomSource">
<summary>
Looks up a localized string similar to Gets or sets whether the AutoCompleteCustomSource is automatically filled with column data..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditBaseCellType_BackgroundImage">
<summary>
Looks up a localized string similar to Gets or sets the background image for the cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditBaseCellType_ButtonAlign">
<summary>
Looks up a localized string similar to Gets or sets the horizontal alignment of a drop down button..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditBaseCellType_DropDownButton">
<summary>
Looks up a localized string similar to Gets or sets whether a drop down button is displayed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditBaseCellType_FocusPosition">
<summary>
Looks up a localized string similar to Gets or sets the initial cursor position..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditBaseCellType_NullDisplay">
<summary>
Looks up a localized string similar to Gets or sets the value to display when there is no data..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditBaseCellType_ReadOnly">
<summary>
Looks up a localized string similar to Gets or sets whether the cell is read-only (and thus cannot be modified)..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditBaseCellType_Static">
<summary>
Looks up a localized string similar to Gets or sets whether the cell is static, which prohibits user interaction..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditBaseCellType_StringTrim">
<summary>
Looks up a localized string similar to Gets or sets how to trim characters that do not fit into the cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditBaseCellType_TextOrientation">
<summary>
Looks up a localized string similar to Gets or sets the orientation of the text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditBaseCellType_TextRotationAngle">
<summary>
Looks up a localized string similar to Gets or sets the rotation angle of the text for the cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditBaseCellType_WordWrap">
<summary>
Looks up a localized string similar to Gets or sets whether text that is too long to fit in the cell wraps to additional lines..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditError_CellIsLocked">
<summary>
Looks up a localized string similar to Cell is locked..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditError_ColumnAndRowRestricted">
<summary>
Looks up a localized string similar to Column or row is restricted..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditError_ColumnRestricted">
<summary>
Looks up a localized string similar to Column is restricted..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditError_DataNotAllowed">
<summary>
Looks up a localized string similar to Error loading file..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditError_InvalidAction">
<summary>
Looks up a localized string similar to Action not allowed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditError_InvalidCellData">
<summary>
Looks up a localized string similar to Character is not allowed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditError_InvalidFormula">
<summary>
Looks up a localized string similar to Cell formula is invalid..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditError_InvalidHyperlink">
<summary>
Looks up a localized string similar to Hyperlink is invalid..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditError_InvalidMovement">
<summary>
Looks up a localized string similar to Movement not allowed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditError_RowRestricted">
<summary>
Looks up a localized string similar to Row is restricted..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.EditError_TypedInCheckBox">
<summary>
Looks up a localized string similar to Attempted to type in checkbox..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ERAPREFIX">
<summary>
Looks up a localized string similar to HeiSei.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.errExcelFormulaEvaluationError">
<summary>
Looks up a localized string similar to The formula is not able to be evaluated by Spread: .
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.errExcelPasswordProtectedFile">
<summary>
Looks up a localized string similar to Cannot open password protected file..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ErrorMessageBox_Title">
<summary>
Looks up a localized string similar to Farpoint Spread.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ExcelFileOperations_SaveFileFailed">
<summary>
Looks up a localized string similar to Failed to save file: .
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Exception_InvalidCount">
<summary>
Looks up a localized string similar to Invalid count (must be between {0} and {1})..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Exception_InvalidFromIndex">
<summary>
Looks up a localized string similar to Invalid fromIndex (must be between {0} and {1}).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Exception_InvalidToIndex">
<summary>
Looks up a localized string similar to Invalid toIndex (must be between {0} and {1}).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Exception_InvalidToIndexOutOfValidRange">
<summary>
Looks up a localized string similar to Invalid toIndex (must not belong to range from {0} to {1}).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Exception_MoveColumns_ColumnsRestricted_CantMoveDataAfterEmpty">
<summary>
Looks up a localized string similar to Columns are restricted -- cannot move a column containing data after a column containing no data..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Exception_MoveColumns_ColumnsRestricted_CantMoveEmptyBeforeData">
<summary>
Looks up a localized string similar to Columns are restricted -- cannot move a column containing no data before a column containing data..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Exception_MoveRange_SpannedCells">
<summary>
Looks up a localized string similar to Cannot move range over part of a spanned cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Exception_MoveRows_RowsRestricted_CantMoveDataAfterEmpty">
<summary>
Looks up a localized string similar to Rows are restricted -- cannot move a row containing data after a row containing no data..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Exception_MoveRows_RowsRestricted_CantMoveEmptyBeforeData">
<summary>
Looks up a localized string similar to Rows are restricted -- cannot move a row containing no data before a row containing data..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FormulaProvider_AutoCalculate">
<summary>
Looks up a localized string similar to Gets or sets whether the formula is calculated automatically..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FormulaProvider_CalculationPolicy">
<summary>
Looks up a localized string similar to Gets or sets the policy that governs calculations..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FormulaProvider_Formula">
<summary>
Looks up a localized string similar to Gets or sets the formula that is applied for this control..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FormulaProvider_FormulaTriggerEvent">
<summary>
Looks up a localized string similar to Gets or sets the event of this control that triggers the calculation..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FormulaProvider_HasCircularReference">
<summary>
Looks up a localized string similar to There is a circular reference in the formula. Please check it again, otherwise there will be no calculation..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FormulaProvider_ShowError">
<summary>
Looks up a localized string similar to Gets or sets whether the error icon is shown next to the error control..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FormulaProvider_ShowPrecedent">
<summary>
Looks up a localized string similar to Gets or sets whether the precedent arrow is shown..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpead_GroupingPolicy">
<summary>
Looks up a localized string similar to Gets or sets grouping policy to collapse or expand rows when grouping occurs..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_About">
<summary>
Looks up a localized string similar to Gets the version information about the component..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_AllowCellOverflow">
<summary>
Looks up a localized string similar to Gets or sets whether data can overflow into adjacent empty cells..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_AllowColumnMove">
<summary>
Looks up a localized string similar to Gets or sets whether to allow the user to move columns..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_AllowColumnMoveMultiple">
<summary>
Looks up a localized string similar to Gets or sets whether to allow the user to move multiple columns..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_AllowDragDrop">
<summary>
Looks up a localized string similar to Gets or sets whether to allow the user to drag-and-drop a range of cells..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_AllowDragFill">
<summary>
Looks up a localized string similar to Gets or sets whether to allow the user to drag and fill cells with the contents of a cell or cells..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_AllowEditOverflow">
<summary>
Looks up a localized string similar to Gets or sets whether data can overflow into adjacent empty cells while a cell is in edit mode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_AllowRowMove">
<summary>
Looks up a localized string similar to Gets or sets whether to allow the user to move rows..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_AllowRowMoveMultiple">
<summary>
Looks up a localized string similar to Gets or sets whether to allow the user to move multiple rows..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_AllowSheetMove">
<summary>
Looks up a localized string similar to Gets or sets whether sheets can be moved by drag-drop of the sheet tab..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_AllowUndo">
<summary>
Looks up a localized string similar to Gets or sets whether undo/redo operations are allowed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_AllowUserFormulas">
<summary>
Looks up a localized string similar to Gets or sets whether to allow the user to enter formulas in a cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_AllowUserZoom">
<summary>
Looks up a localized string similar to Gets or sets whether the user can scale the display of the component using the Ctrl key and the mouse wheel..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_AutoClipboard">
<summary>
Looks up a localized string similar to Gets or sets whether the FarPoint Spread component supports the Clipboard shortcut keys..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_AutoLaunchDesigner">
<summary>
Looks up a localized string similar to Gets or sets whether to auto-launch Spread Designer on new instance of Spread..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_BorderCollapse">
<summary>
Looks up a localized string similar to Gets or sets whether adjacent cell borders are collapsed into a single line..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_BorderStyle">
<summary>
Looks up a localized string similar to Gets or sets the style of the border around the component..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_ButtonDrawMode">
<summary>
Looks up a localized string similar to Gets or sets whether to display buttons in button and combo box cells..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_CellNoteIndicatorVisible">
<summary>
Looks up a localized string similar to Gets or sets whether the cell note indicator appears..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_ChildControlActivated">
<summary>
Looks up a localized string similar to Occurs when a child control is activated..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_ChildControlDeactivated">
<summary>
Looks up a localized string similar to Occurs when a child control is deactivated..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_ChildViewCreated">
<summary>
Looks up a localized string similar to Occurs when a child view of the FarPoint Spread component is created..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_ChildWorkbookCreated">
<summary>
Looks up a localized string similar to Occurs when a child workbook of the FarPoint Spread component is created..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_ClipboardChanging">
<summary>
Looks up a localized string similar to Occurs when the clipboard is changing by a Spread action..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_ClipboardOptions">
<summary>
Looks up a localized string similar to Gets or sets whether headers are included when data is copied to or pasted from the Clipboard..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_ClipboardPasteToFill">
<summary>
Looks up a localized string similar to Gets or sets whether a single cell copied to the clipboard will fill the range when pasted from the Clipboard in the component..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_ColumnSplitBoxAlignment">
<summary>
Looks up a localized string similar to Gets or sets the alignment for column splitters with respect to the horizontal scrollbars..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_ColumnSplitBoxPolicy">
<summary>
Looks up a localized string similar to Gets or sets what conditions under which the FarPoint Spread component permits column splits..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_DataMember">
<summary>
Looks up a localized string similar to Gets or sets the name of the data member that populates the active sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_DataSource">
<summary>
Looks up a localized string similar to Gets or sets the name of the data source that populates the active sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_DialogChar">
<summary>
Looks up a localized string similar to Occurs during message preprocessing of dialog characters..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_DialogKey">
<summary>
Looks up a localized string similar to Occurs during message preprocessing of dialog keys..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_EditModePermanent">
<summary>
Looks up a localized string similar to Gets or sets whether a cell is in edit mode whenever it becomes the active cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_EditModeReplace">
<summary>
Looks up a localized string similar to Gets or sets whether the existing text in a cell is selected when the cell enters edit mode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_EnableCrossSheetReference">
<summary>
Looks up a localized string similar to Enables cross sheet referencing for the FarPoint Spread component..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_Font">
<summary>
Looks up a localized string similar to Gets or sets the default font for the sheets in the control..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_HorizontalScrollBarHeight">
<summary>
Looks up a localized string similar to Gets or sets the height of horizontal scroll bars in the FarPoint Spread component..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_HorizontalScrollBarPolicy">
<summary>
Looks up a localized string similar to Gets or sets the conditions under which the FarPoint Spread component displays horizontal scroll bars..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_HorizontalScrollBarSmallChange">
<summary>
Looks up a localized string similar to Gets or sets the small increment for the horizontal scrollbar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_LeftTab">
<summary>
Looks up a localized string similar to Gets or sets the left sheet tab..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_LowMemoryPaintError">
<summary>
Looks up a localized string similar to (unable to render - low memory).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_MoveActiveOnFocus">
<summary>
Looks up a localized string similar to Gets or sets whether the location of the active cell moves when the user moves the focus to the view using the mouse..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_NamedStyles">
<summary>
Looks up a localized string similar to Gets or sets a NamedStyleCollection object..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_RetainSelectionBlock">
<summary>
Looks up a localized string similar to Gets or sets whether the selected block of cells remains highlighted when the FarPoint Spread component loses the focus..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_RowSplitBoxAlignment">
<summary>
Looks up a localized string similar to Gets or sets the alignment for column splitters with respect to the horizontal scrollbars..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_RowSplitBoxPolicy">
<summary>
Looks up a localized string similar to Gets or sets what conditions under which the FarPoint Spread component permits row splits..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_ScrollBarMaxAlign">
<summary>
Looks up a localized string similar to Gets or sets the alignment of the last row and column of the spreadsheet in the FarPoint Spread component..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_ScrollBarShowMax">
<summary>
Looks up a localized string similar to Gets or sets whether the user can use the scroll box to scroll through all the columns and rows in the spreadsheet, or just a limited number of them..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_ScrollBarTrackPolicy">
<summary>
Looks up a localized string similar to Gets or sets whether the spreadsheet scrolls when the user moves the scroll box..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_ScrollTipPolicy">
<summary>
Looks up a localized string similar to Gets or sets whether scroll tips appear when the user moves the scroll box..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_SelectionBlockOptions">
<summary>
Looks up a localized string similar to Gets or sets whether the user can select columns, rows, blocks of cells, all cells, or any combination of these..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_ShapeActivated">
<summary>
Looks up a localized string similar to Occurs when the user changes the active shape object..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_Sheets">
<summary>
Looks up a localized string similar to Gets the sheets in the FarPoint Spread component..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_SpreadHScrollBar">
<summary>
Looks up a localized string similar to Gets or sets horizontal scroll bar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_SpreadVScrollBar">
<summary>
Looks up a localized string similar to Gets or sets vertical scroll bar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_SuspendAnimations">
<summary>
Looks up a localized string similar to Gets or sets whether Spread will allow animated items to paint..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_TabStrip">
<summary>
Looks up a localized string similar to Gets or sets the object representing the sheet name tab strip..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_TabStripInsertTab">
<summary>
Looks up a localized string similar to Gets or sets whether a special tab is displayed to allow inserting new sheets..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_TabStripPlacement">
<summary>
Looks up a localized string similar to Gets or sets the location of the tab strip..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_TabStripPolicy">
<summary>
Looks up a localized string similar to Gets or sets the display policy for the sheet tab strip..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_TabStripRatio">
<summary>
Looks up a localized string similar to Gets or sets the width of the sheet tab strip as a percentage of the overall horizontal scroll bar width..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_TextTipDelay">
<summary>
Looks up a localized string similar to Gets or sets the time (in milliseconds) FarPoint Spread waits before displaying the text tip for the cell or header under the pointer..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_TextTipPolicy">
<summary>
Looks up a localized string similar to Gets or sets whether to display text tips and cell notes and the location of the tips and notes..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_TitleInfo">
<summary>
Looks up a localized string similar to Gets or sets the collection of title information objects for the Spread.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_UserZooming">
<summary>
Looks up a localized string similar to Occurs when the user zooms..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_VerticalScrollBarPolicy">
<summary>
Looks up a localized string similar to Gets or sets the conditions under which the FarPoint Spread component displays vertical scroll bars..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_VerticalScrollBarSmallChange">
<summary>
Looks up a localized string similar to Gets or sets the small increment for the vertical scrollbar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_VerticalScrollBarWidth">
<summary>
Looks up a localized string similar to Gets or sets the width of vertical scroll bars in the FarPoint Spread component..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.FpSpread_VisualStyles">
<summary>
Looks up a localized string similar to Gets or sets whether to render objects using VisualStyles.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GeneralCellType_DateTimeFormat">
<summary>
Looks up a localized string similar to Gets or sets a DateTimeFormatInfo that defines the format of displaying dates and times..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GeneralCellType_FormatString">
<summary>
Looks up a localized string similar to Gets or sets the format string used to format the date value..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GeneralCellType_IsDateFormat">
<summary>
Looks up a localized string similar to Gets or sets whether the format string should be interpreted as a date-time format..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GeneralCellType_NegativeRed">
<summary>
Looks up a localized string similar to Gets or sets whether negative values are displayed in red..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GeneralCellType_NumberFormat">
<summary>
Looks up a localized string similar to Gets or sets a NumberFormatInfo which is used to format the numeric value..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GeneralCellType_TextRotationAngle">
<summary>
Looks up a localized string similar to Gets or sets the rotation angle..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GGYYMMDD">
<summary>
Looks up a localized string similar to ggyy/MM/dd.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GridLine_Color">
<summary>
Looks up a localized string similar to Gets the color of grid lines..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GridLine_HighlightColor">
<summary>
Looks up a localized string similar to Gets the highlight color for the grid lines..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GridLine_ShadowColor">
<summary>
Looks up a localized string similar to Gets the shadow color for the grid lines..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GridLine_Type">
<summary>
Looks up a localized string similar to Gets whether to display grid lines and the type of grid lines to display..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GridLine_Width">
<summary>
Looks up a localized string similar to Gets the width of the grid lines..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GroupBarInfo_BackColor">
<summary>
Looks up a localized string similar to Gets or sets the background color of the grouping bar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GroupBarInfo_Font">
<summary>
Looks up a localized string similar to Gets or sets the font of the grouping bar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GroupBarInfo_ForeColor">
<summary>
Looks up a localized string similar to Gets or sets the text color of the grouping bar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GroupBarInfo_GroupVerticalIndent">
<summary>
Looks up a localized string similar to Gets or sets the separation of grouping levels..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GroupBarInfo_Height">
<summary>
Looks up a localized string similar to Gets or sets the height of the grouping bar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GroupBarInfo_Text">
<summary>
Looks up a localized string similar to Gets or sets the text of the grouping bar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GroupBarInfo_Visible">
<summary>
Looks up a localized string similar to Gets or sets whether the grouping bar is displayed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GroupBarText">
<summary>
Looks up a localized string similar to Drag a column here to group by that column..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GroupBarText2">
<summary>
Looks up a localized string similar to Double click a column to group by that column..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GroupInfo_BackColor">
<summary>
Looks up a localized string similar to Gets or sets the background color of the grouping information..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GroupInfo_FooterBackColor">
<summary>
Looks up a localized string similar to Gets or sets the background color of the grouping footer information..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GroupInfo_FooterForeColor">
<summary>
Looks up a localized string similar to Gets or sets the text color of the group footer..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GroupInfo_ForeColor">
<summary>
Looks up a localized string similar to Gets or sets the text color of the grouping information..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GroupInfo_Indent">
<summary>
Looks up a localized string similar to Gets or sets the indent..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.GroupInfo_IndentColor">
<summary>
Looks up a localized string similar to Gets or sets the indent color..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.HHmm">
<summary>
Looks up a localized string similar to HH:mm.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.HHmmss">
<summary>
Looks up a localized string similar to HH:mm:ss.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.hhmmsstt">
<summary>
Looks up a localized string similar to hh:mm:ss tt.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.hhmmtt">
<summary>
Looks up a localized string similar to hh:mm tt.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.HyperLinkCellType_BackgroundImage">
<summary>
Looks up a localized string similar to Gets or sets the background image for the cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.HyperLinkCellType_Link">
<summary>
Looks up a localized string similar to Gets or sets the hyperlink..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.HyperLinkCellType_LinkArea">
<summary>
Looks up a localized string similar to Gets or sets the the area of the text that is the hyperlink..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.HyperLinkCellType_LinkColor">
<summary>
Looks up a localized string similar to Gets or sets the color of links..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.HyperLinkCellType_LinkToolTips">
<summary>
Looks up a localized string similar to Gets or sets tool tips for the hyperlinks..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.HyperLinkCellType_Text">
<summary>
Looks up a localized string similar to Gets or sets the text string..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.HyperLinkCellType_VisitedLinkColor">
<summary>
Looks up a localized string similar to Gets or sets the color of visited links..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ImageCellType_Style">
<summary>
Looks up a localized string similar to Gets or sets the render style of the image..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ImageCellType_TransparencyColor">
<summary>
Looks up a localized string similar to Gets or sets the transparency color in the image..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ImageCellType_TransparencyTolerance">
<summary>
Looks up a localized string similar to Gets or sets the transparency tolerance in the image..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ITF_BearerBar">
<summary>
Looks up a localized string similar to Gets or sets whether bearer bar is displayed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.LayoutSuspended">
<summary>
Looks up a localized string similar to (layout is suspended).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.LineShape_EndCap">
<summary>
Looks up a localized string similar to Gets or sets the ending cap for the line..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.LineShape_StartCap">
<summary>
Looks up a localized string similar to Gets or sets the starting cap for the line..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.LineShape_Thickness">
<summary>
Looks up a localized string similar to Gets or sets the thickness of the line..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ListBoxCellType_ImageList">
<summary>
Looks up a localized string similar to Gets or sets the image list for the listbox..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ListBoxCellType_ItemHeight">
<summary>
Looks up a localized string similar to Gets or sets the height of each item in the list..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ListBoxCellType_Items">
<summary>
Looks up a localized string similar to Gets or sets the list items..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MapperInfo_ColumnCountPropDesc">
<summary>
Looks up a localized string similar to Indicates the column count of cell range in the mapper..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MapperInfo_ColumnPropDesc">
<summary>
Looks up a localized string similar to Indicates the column of cell range in the mapper..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MapperInfo_RowCountPropDesc">
<summary>
Looks up a localized string similar to Indicates the row count of cell range in the mapper..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MapperInfo_RowPropDesc">
<summary>
Looks up a localized string similar to Indicates the row of cell range in the mapper..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MapperInfoConverter_InvalidStringValue">
<summary>
Looks up a localized string similar to Invalid string value..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MaskCellType_CustomMaskCharacters">
<summary>
Looks up a localized string similar to Gets or sets the custom characters for the mask..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MaskCellType_Mask">
<summary>
Looks up a localized string similar to Gets or sets the mask string..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MaskCellType_MaskChar">
<summary>
Looks up a localized string similar to Gets or sets the placeholder character..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MMDD">
<summary>
Looks up a localized string similar to MM/dd.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MMDDYY">
<summary>
Looks up a localized string similar to MM/dd/yy.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MMDDYYYY">
<summary>
Looks up a localized string similar to MM/dd/yyyy.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ModuleSize_Broad">
<summary>
Looks up a localized string similar to Gets or sets the module size of the broad bar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ModuleSize_Narrow">
<summary>
Looks up a localized string similar to Gets or sets the module size of the narrow bar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MultiColumnComboBoxCellType_ColumnEdit">
<summary>
Looks up a localized string similar to Gets or sets the column of the list for the edit portion..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MultiColumnComboBoxCellType_ColumnEditName">
<summary>
Looks up a localized string similar to Gets or sets which list column serves as the edit portion of the combo box..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MultiColumnComboBoxCellType_DataColumn">
<summary>
Looks up a localized string similar to Gets or sets which list column serves as the data column in the combo box..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MultiColumnComboBoxCellType_DataColumnName">
<summary>
Looks up a localized string similar to Gets or sets which list column serves as the data column in the combo box..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MultiColumnComboBoxCellType_DataMemberList">
<summary>
Looks up a localized string similar to Gets or sets the name of the data member that populates the list..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MultiColumnComboBoxCellType_DataSourceList">
<summary>
Looks up a localized string similar to Gets or sets the data source for the list portion of the combo box..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MultiColumnComboBoxCellType_ListBorderStyle">
<summary>
Looks up a localized string similar to Gets or sets the type of border style for the drop-down list..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MultiColumnComboBoxCellType_ListResizeColumns">
<summary>
Looks up a localized string similar to Gets or sets how the columns in the drop-down list are sized when displayed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MultiColumnComboBoxCellType_ShowColumnHeaders">
<summary>
Looks up a localized string similar to Gets or sets whether column headers are displayed in the drop-down list..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MultiColumnComboBoxCellType_ShowGridLines">
<summary>
Looks up a localized string similar to Gets or sets whether grid lines are displayed in the drop-down list..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MultiOptionCellType_BackgroundImage">
<summary>
Looks up a localized string similar to Gets or sets the background image for the cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MultiOptionCellType_EditorValue">
<summary>
Looks up a localized string similar to Gets or sets what value is written to the underlying data model..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MultiOptionCellType_ItemData">
<summary>
Looks up a localized string similar to Gets or sets the ItemData to use for the list..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MultiOptionCellType_Items">
<summary>
Looks up a localized string similar to Gets or sets the list to use for the option buttons..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MultiOptionCellType_Orientation">
<summary>
Looks up a localized string similar to Gets or sets the orientation of the option buttons..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MultiOptionCellType_Picture">
<summary>
Looks up a localized string similar to Gets or sets the option button images..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MultiOptionCellType_TextAlign">
<summary>
Looks up a localized string similar to Gets or sets how text aligns in the cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MultiOptionCellType_UseMnemonic">
<summary>
Looks up a localized string similar to Gets or sets whether hot keys are used in the cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.MultiSideShape_Sides">
<summary>
Looks up a localized string similar to Gets or sets the number of sides in the shape..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NamedStyle_BackColor">
<summary>
Looks up a localized string similar to Gets or sets the background color for the style..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NamedStyle_Border">
<summary>
Looks up a localized string similar to Gets or sets the border for the style..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NamedStyle_CellType">
<summary>
Looks up a localized string similar to Gets or sets the cell type for the style..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NamedStyle_Editor">
<summary>
Looks up a localized string similar to Gets or sets the Editor object for the named style..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NamedStyle_Font">
<summary>
Looks up a localized string similar to Gets or sets the font for the named style..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NamedStyle_ForeColor">
<summary>
Looks up a localized string similar to Gets or sets the text color for the named style..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NamedStyle_Formatter">
<summary>
Looks up a localized string similar to Gets or sets the Formatter object for the named style..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NamedStyle_HorizontalAlignment">
<summary>
Looks up a localized string similar to Gets or sets the horizontal alignment for the named style..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NamedStyle_Locked">
<summary>
Looks up a localized string similar to Gets or sets whether this named style permits a cell to be edited when the sheet is protected..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NamedStyle_Name">
<summary>
Looks up a localized string similar to Gets or sets the name of the style..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NamedStyle_NoteStyle">
<summary>
Looks up a localized string similar to Gets or sets the note style for the named style..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NamedStyle_Parent">
<summary>
Looks up a localized string similar to Gets or sets the name of the parent NamedStyle object..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NamedStyle_Renderer">
<summary>
Looks up a localized string similar to Gets or sets the Renderer object for the named style..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NamedStyle_VerticalAlignment">
<summary>
Looks up a localized string similar to Gets or sets the vertical alignment for the named style..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NamedStyle_VisualStyles">
<summary>
Looks up a localized string similar to Gets or sets whether to render the object using VisualStyles..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NamedStyle_VisuaStyles">
<summary>
Looks up a localized string similar to Gets or sets the setting of visual styles for the named style..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NumberCellType_DecimalPlaces">
<summary>
Looks up a localized string similar to Gets or sets the number of decimal places..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NumberCellType_DecimalSeparator">
<summary>
Looks up a localized string similar to Gets or sets the decimal separator..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NumberCellType_FixedPoint">
<summary>
Looks up a localized string similar to Gets or sets whether the value displays place-holding zeros in the decimal portion..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NumberCellType_FractionConvertWholeNumbers">
<summary>
Looks up a localized string similar to Gets or sets whether to convert whole numbers to fractions when values are displayed as fractions..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NumberCellType_FractionCustomFormat">
<summary>
Looks up a localized string similar to Gets or sets how values are displayed as fractions with custom formatting..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NumberCellType_FractionDenominatorDigits">
<summary>
Looks up a localized string similar to Gets or sets the number of digits when values are displayed as fractions..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NumberCellType_FractionDenominatorPrecision">
<summary>
Looks up a localized string similar to Gets or sets the precision when values are displayed as fractions..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NumberCellType_FractionMode">
<summary>
Looks up a localized string similar to Gets or sets whether values are represented as fractions..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NumberCellType_FractionRenderOnly">
<summary>
Looks up a localized string similar to Gets or sets whether to allow fractions in edit mode when values are displayed as fractions..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NumberCellType_LeadingZero">
<summary>
Looks up a localized string similar to Gets or sets whether leading zeros are displayed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NumberCellType_MaximumValue">
<summary>
Looks up a localized string similar to Gets or sets the maximum value allowed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NumberCellType_MinimumValue">
<summary>
Looks up a localized string similar to Gets or sets the minimum value allowed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NumberCellType_NegativeFormat">
<summary>
Looks up a localized string similar to Gets or sets how the value is formatted for negative values..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NumberCellType_NegativeRed">
<summary>
Looks up a localized string similar to Gets or sets whether negative numeric values are displayed in red..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NumberCellType_OverflowCharacter">
<summary>
Looks up a localized string similar to Gets or sets the character to use to replace the value if it does not fit the width of the display..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NumberCellType_Separator">
<summary>
Looks up a localized string similar to Gets or sets the separator character..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NumberCellType_ShowSeparator">
<summary>
Looks up a localized string similar to Gets or sets whether to display the thousands separator string..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NumberCellType_SpinButton">
<summary>
Looks up a localized string similar to Gets or sets whether a spin button is displayed when editing..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NumberCellType_SpinDecimalIncrement">
<summary>
Looks up a localized string similar to Gets or sets the amount by which the value increments when using the spin buttons and the cursor is in the decimal portion..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NumberCellType_SpinIntegerIncrement">
<summary>
Looks up a localized string similar to Gets or sets the amount by which the value increments when using the spin buttons and the cursor is in the integer portion..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.NumberCellType_SpinWrap">
<summary>
Looks up a localized string similar to Gets or sets whether the value wraps when the minimum or maximum is reached..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_Adjust">
<summary>
Looks up a localized string similar to &amp;Adjust to.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_All">
<summary>
Looks up a localized string similar to &amp;All.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_BW">
<summary>
Looks up a localized string similar to &amp;Black and White.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_Cancel">
<summary>
Looks up a localized string similar to Cancel.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_Center">
<summary>
Looks up a localized string similar to Center on page.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_CenterH">
<summary>
Looks up a localized string similar to &amp;Horizontal.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_CenterSection">
<summary>
Looks up a localized string similar to &amp;Center.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_CenterV">
<summary>
Looks up a localized string similar to &amp;Vertical.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_Color">
<summary>
Looks up a localized string similar to Color.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_ColumnEnd">
<summary>
Looks up a localized string similar to Column e&amp;nd:.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_ColumnHeadings">
<summary>
Looks up a localized string similar to Column &amp;Headings.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_ColumnStart">
<summary>
Looks up a localized string similar to Col&amp;umn start:.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_Comments">
<summary>
Looks up a localized string similar to Com&amp;ments:.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_DownOver">
<summary>
Looks up a localized string similar to Down, then o&amp;ver.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_FitTo">
<summary>
Looks up a localized string similar to &amp;Fit to.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_Font">
<summary>
Looks up a localized string similar to Font.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_Footer">
<summary>
Looks up a localized string similar to &amp;Footer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_Gridlines">
<summary>
Looks up a localized string similar to &amp;Gridlines.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_Header">
<summary>
Looks up a localized string similar to &amp;Header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_HeaderFooter">
<summary>
Looks up a localized string similar to Header / Footer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_Image">
<summary>
Looks up a localized string similar to Image.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_Landscape">
<summary>
Looks up a localized string similar to &amp;Landscape.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_LeftSection">
<summary>
Looks up a localized string similar to &amp;Left.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_LongDate">
<summary>
Looks up a localized string similar to Long date.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_LongTime">
<summary>
Looks up a localized string similar to Long time.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_MarginBottom">
<summary>
Looks up a localized string similar to &amp;Bottom.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_MarginFooter">
<summary>
Looks up a localized string similar to &amp;Footer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_MarginHeader">
<summary>
Looks up a localized string similar to He&amp;ader.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_MarginLeft">
<summary>
Looks up a localized string similar to &amp;Left.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_MarginRight">
<summary>
Looks up a localized string similar to &amp;Right.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_MarginsGroup">
<summary>
Looks up a localized string similar to Margins.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_MarginsTab">
<summary>
Looks up a localized string similar to Margins.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_MarginTop">
<summary>
Looks up a localized string similar to &amp;Top.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_NotesDisplayed">
<summary>
Looks up a localized string similar to As displayed on sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_NotesEnd">
<summary>
Looks up a localized string similar to At the end of sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_NotesNone">
<summary>
Looks up a localized string similar to None.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_Orientation">
<summary>
Looks up a localized string similar to Orientation.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_OverDown">
<summary>
Looks up a localized string similar to Over, then &amp;down.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_PageNum">
<summary>
Looks up a localized string similar to Page #.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_PageOrder">
<summary>
Looks up a localized string similar to Page order.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_Pages">
<summary>
Looks up a localized string similar to page(s) wide by.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_PagesTT">
<summary>
Looks up a localized string similar to Pages.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_PaperSize">
<summary>
Looks up a localized string similar to Paper si&amp;ze.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_Percent">
<summary>
Looks up a localized string similar to % of normal size.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_Portrait">
<summary>
Looks up a localized string similar to Po&amp;rtrait.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_Preview">
<summary>
Looks up a localized string similar to Previe&amp;w.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_PreviewArea">
<summary>
Looks up a localized string similar to preview.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_Print">
<summary>
Looks up a localized string similar to &amp;Print.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_PrintSettings">
<summary>
Looks up a localized string similar to Print.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_PrintTitles">
<summary>
Looks up a localized string similar to Print Titles.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_PrintType">
<summary>
Looks up a localized string similar to Print Type.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_RepeatColumns">
<summary>
Looks up a localized string similar to Columns to repeat at left:.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_RepeatRows">
<summary>
Looks up a localized string similar to Rows to repeat at top:.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_RightSection">
<summary>
Looks up a localized string similar to &amp;Right.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_RowEnd">
<summary>
Looks up a localized string similar to Row &amp;end.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_RowHeadings">
<summary>
Looks up a localized string similar to &amp;Row Headings.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_RowStart">
<summary>
Looks up a localized string similar to R&amp;ow start.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_Scaling">
<summary>
Looks up a localized string similar to Scaling.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_Sections">
<summary>
Looks up a localized string similar to Sections.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_Selected">
<summary>
Looks up a localized string similar to &amp;Selected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_SheetTab">
<summary>
Looks up a localized string similar to Sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_ShortDate">
<summary>
Looks up a localized string similar to Short date.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_ShortTime">
<summary>
Looks up a localized string similar to Short time.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_TabPage">
<summary>
Looks up a localized string similar to Page.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PageSetup_Tall">
<summary>
Looks up a localized string similar to tall.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PDF417_Col">
<summary>
Looks up a localized string similar to Gets or sets the column count..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PDF417_Col_ExMsg">
<summary>
Looks up a localized string similar to Please specify a value from 1 to 30..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PDF417_ErrorLevel">
<summary>
Looks up a localized string similar to Gets or sets the level of errors..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PDF417_ErrorLevel_ExMsg">
<summary>
Looks up a localized string similar to Please specify a value from 1 to 8..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PDF417_Row">
<summary>
Looks up a localized string similar to Gets or sets the row count..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PDF417_Row_ExMsg">
<summary>
Looks up a localized string similar to Please specify a value from 3 to 90..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PDF417_Type">
<summary>
Looks up a localized string similar to Gets or sets the type of PDF417..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PercentCellType_DecimalPlaces">
<summary>
Looks up a localized string similar to Gets or sets the number of decimal places..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PercentCellType_DecimalSeparator">
<summary>
Looks up a localized string similar to Gets or sets the decimal separator..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PercentCellType_FixedPoint">
<summary>
Looks up a localized string similar to Gets or sets whether the value displays placeholder zeros in the decimal portion of the number..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PercentCellType_LeadingZero">
<summary>
Looks up a localized string similar to Gets or sets whether leading zeros are displayed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PercentCellType_MaximumValue">
<summary>
Looks up a localized string similar to Gets or sets the maximum value allowed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PercentCellType_MinimumValue">
<summary>
Looks up a localized string similar to Gets or sets the minimum value allowed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PercentCellType_NegativeFormat">
<summary>
Looks up a localized string similar to Gets or sets the format for displaying a negative value..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PercentCellType_NegativeRed">
<summary>
Looks up a localized string similar to Gets or sets whether negative numeric values are displayed in red..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PercentCellType_PercentSign">
<summary>
Looks up a localized string similar to Gets or sets the character to display as the percent sign..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PercentCellType_PositiveFormat">
<summary>
Looks up a localized string similar to Gets or sets the format for displaying a positive value..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PercentCellType_Separator">
<summary>
Looks up a localized string similar to Gets or sets the separator character..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PercentCellType_ShowSeparator">
<summary>
Looks up a localized string similar to Gets or sets whether to display the thousands separator string..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PercentCellType_SpinButton">
<summary>
Looks up a localized string similar to Gets or sets whether a spin button is displayed when editing..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PercentCellType_SpinDecimalIncrement">
<summary>
Looks up a localized string similar to Gets or sets the amount by which the value increments when using the spin buttons and the cursor is in the decimal portion..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PercentCellType_SpinIntegerIncrement">
<summary>
Looks up a localized string similar to Gets or sets the amount by which the value increments when using the spin buttons and the cursor is in the integer portion..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PercentCellType_SpinWrap">
<summary>
Looks up a localized string similar to Gets or sets whether the value wraps when the minimum or maximum is reached..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PMString">
<summary>
Looks up a localized string similar to pm.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PreviewRowInfo_BackColor">
<summary>
Looks up a localized string similar to Gets or sets the backgroud color for preview row..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PreviewRowInfo_Border">
<summary>
Looks up a localized string similar to Gets or sets the border for preview row..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PreviewRowInfo_ColumnIndex">
<summary>
Looks up a localized string similar to Gets or sets the column index of preview row bound to..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PreviewRowInfo_Font">
<summary>
Looks up a localized string similar to Gets or sets the font settings for preveiw row..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PreviewRowInfo_ForeColor">
<summary>
Looks up a localized string similar to Gets or sets the text color for preveiw row..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PreviewRowInfo_Height">
<summary>
Looks up a localized string similar to Gets or sets the height for preveiw row..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PreviewRowInfo_HorizontalAlignment">
<summary>
Looks up a localized string similar to Gets or sets the horizontal alignment of the content for preview row..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PreviewRowInfo_Padding">
<summary>
Looks up a localized string similar to Gets or sets the amount of spaces to preview row in pixels..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PreviewRowInfo_VerticalAlignment">
<summary>
Looks up a localized string similar to Gets or sets the vertical alignment of the content for preview row..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PreviewRowInfo_Visible">
<summary>
Looks up a localized string similar to Gets or sets a value indicating whether preview row is visible..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_AbortMessage">
<summary>
Looks up a localized string similar to Gets or sets the message to display for the abort dialog..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_BestFitCols">
<summary>
Looks up a localized string similar to Gets or sets whether column widths are adjusted to fit the longest string width for printing..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_BestFitRows">
<summary>
Looks up a localized string similar to Gets or sets whether row heights are adjusted to fit the tallest string height for printing..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_Centering">
<summary>
Looks up a localized string similar to Gets or sets the centering option for printing..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_ColEnd">
<summary>
Looks up a localized string similar to Gets or sets the last column to print when printing a cell range..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_ColStart">
<summary>
Looks up a localized string similar to Gets or sets the first column to print when printing a cell range..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_FirstPageNumber">
<summary>
Looks up a localized string similar to Gets or sets the page number to print on the first page..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_Footer">
<summary>
Looks up a localized string similar to Gets or sets the text and format of footers on printed pages..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_FooterHeight">
<summary>
Looks up a localized string similar to Gets or sets the height to use for the footer area when printing..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_Header">
<summary>
Looks up a localized string similar to Gets or sets the text and format of headers on printed pages..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_HeaderHeight">
<summary>
Looks up a localized string similar to Gets or sets the height to use for the header area when printing..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_JobName">
<summary>
Looks up a localized string similar to Gets or sets the name of the print job..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_Margin">
<summary>
Looks up a localized string similar to Gets or sets the margins for printing..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_Opacity">
<summary>
Looks up a localized string similar to Gets or sets the opacity used when printing this sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_Orientation">
<summary>
Looks up a localized string similar to Gets or sets the page orientation used for printing..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_PageEnd">
<summary>
Looks up a localized string similar to Gets or sets the last page to print when printing a page range..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_PageOrder">
<summary>
Looks up a localized string similar to Gets or sets the order in which pages print..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_PagesTall">
<summary>
Looks up a localized string similar to Gets or sets the number of pages vertically to check when optimizing printing..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_PageStart">
<summary>
Looks up a localized string similar to Gets or sets the first page to print when printing a page range..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_PagesWide">
<summary>
Looks up a localized string similar to Gets or sets the number of pages horizontally to check when optimizing the printing..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_PaperSize">
<summary>
Looks up a localized string similar to Gets or sets the paper size to use..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_PaperSource">
<summary>
Looks up a localized string similar to Gets or sets the paper source..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_PdfFileName">
<summary>
Looks up a localized string similar to Gets or sets the path and filename for printing the sheet as PDF..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_PdfStream">
<summary>
Looks up a localized string similar to Gets or sets the stream for printing the sheet as PDF..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_PdfWriteMode">
<summary>
Looks up a localized string similar to Gets or sets how printing of the sheet as PDF is handled relative to other sheets.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_PdfWriteTo">
<summary>
Looks up a localized string similar to Gets or sets the output for printing the sheet as PDF..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_Preview">
<summary>
Looks up a localized string similar to Gets or sets whether to preview the sheet instead of printing..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_Printer">
<summary>
Looks up a localized string similar to Gets or sets the name of the printer to use for printing..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_PrintNotes">
<summary>
Looks up a localized string similar to Gets or sets whether cell notes are printed after the sheet(s)..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_PrintShapes">
<summary>
Looks up a localized string similar to Gets or sets whether floating objects are printed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_PrintToPdf">
<summary>
Looks up a localized string similar to Gets or sets whether printing the sheet as PDF..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_PrintType">
<summary>
Looks up a localized string similar to Gets or sets what is to be printed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_RepeatColEnd">
<summary>
Looks up a localized string similar to Gets or sets the last column for a range of columns to print at the left of each page..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_RepeatColStart">
<summary>
Looks up a localized string similar to Gets or sets the first column for a range of columns to print at the left of each page..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_RepeatRowEnd">
<summary>
Looks up a localized string similar to Gets or sets the last row for a range of rows to print at the top of each page..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_RepeatRowStart">
<summary>
Looks up a localized string similar to Gets or sets the first row for a range of rows to print at the top of each page..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_RowEnd">
<summary>
Looks up a localized string similar to Gets or sets the last row to print when printing a cell range..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_RowStart">
<summary>
Looks up a localized string similar to Gets or sets the first row to print when printing a cell range..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_ShowBorder">
<summary>
Looks up a localized string similar to Gets or sets whether to print a border around the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_ShowColor">
<summary>
Looks up a localized string similar to Gets or sets whether to print the colors as they appear on the screen..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_ShowColumnFooter">
<summary>
Looks up a localized string similar to Gets or sets whether to print the column footer..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_ShowColumnFooterEachPage">
<summary>
Looks up a localized string similar to Gets or sets whether to print the column footer in each page..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_ShowColumnHeader">
<summary>
Looks up a localized string similar to Gets or sets whether to print the column headers..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_ShowColumnHeaders">
<summary>
Looks up a localized string similar to Gets or sets whether to print the column headers..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_ShowGrid">
<summary>
Looks up a localized string similar to Gets or sets whether to print the grid lines..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_ShowPrintDialog">
<summary>
Looks up a localized string similar to Gets or sets whether to display a print dialog before printing..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_ShowRowHeader">
<summary>
Looks up a localized string similar to Gets or sets whether to print the row headers..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_ShowRowHeaders">
<summary>
Looks up a localized string similar to Gets or sets whether to print the row headers..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_ShowShadows">
<summary>
Looks up a localized string similar to Gets or sets whether to print the header shadows..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_ShowSubtitle">
<summary>
Looks up a localized string similar to Gets or sets whether to print the subtitle..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_ShowTitle">
<summary>
Looks up a localized string similar to Gets or sets whether to print the title..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_UseMax">
<summary>
Looks up a localized string similar to Gets or sets whether to print only rows containing data..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_UseSmartPrint">
<summary>
Looks up a localized string similar to Gets or sets whether the FarPoint Spread component prints using its SmartPrint capability..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintInfo_ZoomFactor">
<summary>
Looks up a localized string similar to Gets or sets the zoom factor used for printing this sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintMargin_Bottom">
<summary>
Looks up a localized string similar to Gets or sets the bottom margin for the printed page..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintMargin_Footer">
<summary>
Looks up a localized string similar to Gets or sets the footer margin for the printed page..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintMargin_Header">
<summary>
Looks up a localized string similar to Gets or sets the header margin for the printed page..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintMargin_Left">
<summary>
Looks up a localized string similar to Gets or sets the left margin for the printed page..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintMargin_Right">
<summary>
Looks up a localized string similar to Gets or sets the right margin for the printed page..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintMargin_Top">
<summary>
Looks up a localized string similar to Gets or sets the top margin for the printed page..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintNotes_Cell">
<summary>
Looks up a localized string similar to Cell:.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintNotes_Comment">
<summary>
Looks up a localized string similar to Comment:.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PrintPreviewDialog">
<summary>
Looks up a localized string similar to Print Preview.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ProgressCellType_BackgroundImage">
<summary>
Looks up a localized string similar to Gets or sets the background image for the cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ProgressCellType_FillColor">
<summary>
Looks up a localized string similar to Gets or sets the color to use for the progress bar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ProgressCellType_FillColor2">
<summary>
Looks up a localized string similar to Gets or sets the second color in a gradient..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ProgressCellType_FillTextColor">
<summary>
Looks up a localized string similar to Gets or sets the color to use for the text inside the progress bar if shown..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ProgressCellType_GradientMode">
<summary>
Looks up a localized string similar to Gets or sets the gradient mode for a gradient style progress bar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ProgressCellType_Maximum">
<summary>
Looks up a localized string similar to Gets or sets the maximum value..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ProgressCellType_Minimum">
<summary>
Looks up a localized string similar to Gets or sets the minimum value..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ProgressCellType_Orientation">
<summary>
Looks up a localized string similar to Gets or sets the orientation of the progress bar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ProgressCellType_Picture">
<summary>
Looks up a localized string similar to Gets or sets the picture for the progress bar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ProgressCellType_ShowText">
<summary>
Looks up a localized string similar to Gets or sets whether the percent filled string is displayed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ProgressCellType_Style">
<summary>
Looks up a localized string similar to Gets or sets the style of the progress bar(s)..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ProgressCellType_Text">
<summary>
Looks up a localized string similar to Gets or sets the text string to use in the progress indicator when the text style is set to display custom text..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ProgressCellType_TextStyle">
<summary>
Looks up a localized string similar to Gets or sets how the text portion of the progress indicator is displayed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PSObject_AllowBackgroundImageRotation">
<summary>
Looks up a localized string similar to Gets or sets whether the background image rotates with the shape..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PSObject_AlphaBlendBackColor">
<summary>
Looks up a localized string similar to Gets or sets the alpha-blend value of the background color of the object..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PSObject_CanMove">
<summary>
Looks up a localized string similar to Gets or sets whether the user is allowed to move the object..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PSObject_CanPrint">
<summary>
Looks up a localized string similar to Gets or sets whether the container is allowed to print the object..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PSObject_CanRotate">
<summary>
Looks up a localized string similar to Gets or sets whether the user is allowed to rotate the object..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PSObject_CanSize">
<summary>
Looks up a localized string similar to Gets or sets whether the user is allowed to resize the object..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PSObject_CanWarp">
<summary>
Looks up a localized string similar to Gets or sets whether the user is allowed to warp the object..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PSObject_FlipHorizontal">
<summary>
Looks up a localized string similar to Gets or sets a value indicating whether the shape is flip horizontal..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PSObject_FlipVertical">
<summary>
Looks up a localized string similar to Gets or sets a value indicating whether the shape is flip vertical..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PSObject_Locked">
<summary>
Looks up a localized string similar to Gets or sets whether the object is marked as locked..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PSObject_ShapeOutlineColor">
<summary>
Looks up a localized string similar to Gets or sets the shape outline color for the object..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PSObject_ShapeOutlineStyle">
<summary>
Looks up a localized string similar to Gets or sets the shape outline style for the object..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PSObject_ShapeOutlineThickness">
<summary>
Looks up a localized string similar to Gets or sets the shape outline thickness for the object..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PSObject_SizeProportional">
<summary>
Looks up a localized string similar to Gets or sets whether the user is allowed to resize the object proportionally..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PSShape_AlphaBlendShadowColor">
<summary>
Looks up a localized string similar to Gets or sets the amount of transparency of the shadow..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PSShape_CanRenderText">
<summary>
Looks up a localized string similar to Gets or sets whether the shape renders its text..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PSShape_ShadowColor">
<summary>
Looks up a localized string similar to Gets or sets the color of the shadow of the object..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PSShape_ShadowDirection">
<summary>
Looks up a localized string similar to Gets or sets the direction of the shadow of the object..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PSShape_ShadowOffsetX">
<summary>
Looks up a localized string similar to Gets or sets the amount of horizontal offset of the shadow of the object..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.PSShape_ShadowOffsetY">
<summary>
Looks up a localized string similar to Gets or sets the amount of vertical offset of the shadow of the object..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.QRCode_Connection">
<summary>
Looks up a localized string similar to Gets or sets whether the connection will be used..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.QRCode_ConnectionNo">
<summary>
Looks up a localized string similar to Gets or sets the connection number..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.QRCode_ConnectionNo_ExMsg">
<summary>
Looks up a localized string similar to Please specify a value from 0 to 15..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.QRCode_ErrorLevel">
<summary>
Looks up a localized string similar to Gets or sets the level of errors..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.QRCode_Mask">
<summary>
Looks up a localized string similar to Gets or sets the mask pattern of QR Code..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.QRCode_Model">
<summary>
Looks up a localized string similar to Gets or sets the model of QR Code..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.QRCode_Version">
<summary>
Looks up a localized string similar to Gets or sets the version of QR Code. .
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.QRCode_Version_ExMsg1">
<summary>
Looks up a localized string similar to Please specify a value from 1 to 14..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.QRCode_Version_ExMsg2">
<summary>
Looks up a localized string similar to Please specify a value from 1 to 40..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Quiet_Left">
<summary>
Looks up a localized string similar to Gets or sets the left position of quiet zone (padding)..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Quiet_Right">
<summary>
Looks up a localized string similar to Gets or sets the right position of quiet zone (padding)..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RangeDataBinding_CanNotAddDataColumn">
<summary>
Looks up a localized string similar to Cannot insert SpreadDataColumn at this index; it is out of range of the owner sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RangeDataBinding_DataInModelIsNull">
<summary>
Looks up a localized string similar to Column {0} does not allow null; the cell value in the data model is null..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RangeDataBinding_DataViewNotAllowEditting">
<summary>
Looks up a localized string similar to This SpreadDataView does not allow editing..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RangeDataBinding_DuplidatedColumnName">
<summary>
Looks up a localized string similar to The new column name already exists in the collection..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RangeDataBinding_InvalidMapper">
<summary>
Looks up a localized string similar to The mapper is invalid; the cell range must not exceed the range of the owner sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RangeDataBinding_NotEqualColumnCount">
<summary>
Looks up a localized string similar to The column count of the mapper is not equal to the column count of the SpreadDataColumn collection..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RegularExpressionCellType_RegularExpression">
<summary>
Looks up a localized string similar to Gets or sets the regular expression string..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Resolution_DpiX">
<summary>
Looks up a localized string similar to Gets or sets the resolution (in dots-per-inch) in the X direction..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Resolution_DpiY">
<summary>
Looks up a localized string similar to Gets or sets the resolution (in dots-per-inch) in the Y direction..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextCellType_FontErrorTitle">
<summary>
Looks up a localized string similar to RichTextCellType Font Error.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextCellType_FontNotAllowedMessage">
<summary>
Looks up a localized string similar to Font setting not allowed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextCellType_MaxLength">
<summary>
Looks up a localized string similar to Gets or sets the maximum number of characters allowed in the rich text cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextCellType_Multiline">
<summary>
Looks up a localized string similar to Gets or sets whether multiple lines of text are allowed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextCellType_ScrollBars">
<summary>
Looks up a localized string similar to Gets or sets which scroll bars to display for the rich text cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextEditor_Context_Align">
<summary>
Looks up a localized string similar to A&amp;lign.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextEditor_Context_Bold">
<summary>
Looks up a localized string similar to &amp;Bold.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextEditor_Context_Center">
<summary>
Looks up a localized string similar to &amp;Center.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextEditor_Context_ClearAll">
<summary>
Looks up a localized string similar to Clear All (text and formatting).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextEditor_Context_Color">
<summary>
Looks up a localized string similar to &amp;Color....
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextEditor_Context_Copy">
<summary>
Looks up a localized string similar to Copy.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextEditor_Context_Cut">
<summary>
Looks up a localized string similar to Cut.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextEditor_Context_Delete">
<summary>
Looks up a localized string similar to Delete.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextEditor_Context_Font">
<summary>
Looks up a localized string similar to &amp;Font....
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextEditor_Context_Italic">
<summary>
Looks up a localized string similar to &amp;Italic.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextEditor_Context_Left">
<summary>
Looks up a localized string similar to &amp;Left.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextEditor_Context_Load">
<summary>
Looks up a localized string similar to &amp;Load....
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextEditor_Context_Paste">
<summary>
Looks up a localized string similar to Paste.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextEditor_Context_Right">
<summary>
Looks up a localized string similar to &amp;Right.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextEditor_Context_SelectAll">
<summary>
Looks up a localized string similar to Select All.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextEditor_Context_Style">
<summary>
Looks up a localized string similar to St&amp;yle.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RichTextEditor_Context_Underline">
<summary>
Looks up a localized string similar to &amp;Underline.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Row">
<summary>
Looks up a localized string similar to Row: .
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Row_CellPadding">
<summary>
Looks up a localized string similar to Gets or sets the amount of spaces, in pixels, to cell padding in the cells of the row(s)..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Row_Tag">
<summary>
Looks up a localized string similar to Gets or sets an application-defined tag value for a row..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Row_VisualStyles">
<summary>
Looks up a localized string similar to Gets or sets whether to render the object using VisualStyles..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RowHeader_AutoText">
<summary>
Looks up a localized string similar to Gets or sets whether row headers display letters or numbers or are blank..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RowHeader_AutoTextIndex">
<summary>
Looks up a localized string similar to Gets or sets which row header column displays the auto text when there are multiple row header columns..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RowHeader_ColumnCount">
<summary>
Looks up a localized string similar to Gets or sets the number of columns in the row headers..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RowHeader_DefaultStyle">
<summary>
Looks up a localized string similar to Gets or sets the default StyleInfo object for the cells in the row header..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RowHeader_DefaultStyleName">
<summary>
Looks up a localized string similar to Gets or sets the name of the default style for the row headers..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RowHeader_HorizontalGridLine">
<summary>
Looks up a localized string similar to Gets or sets the horizontal grid line..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RowHeader_VerticalGridLine">
<summary>
Looks up a localized string similar to Gets or sets the vertical grid line..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.RowHeader_Visible">
<summary>
Looks up a localized string similar to Gets or sets whether the row headers are visible..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.Rows_Count">
<summary>
Looks up a localized string similar to Gets or sets the number of rows in this collection..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_Buttons">
<summary>
Looks up a localized string similar to Gets or sets the button list of ScrollBar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_Buttons_ButtonsNumberOverflow1">
<summary>
Looks up a localized string similar to The value is not valid; the number of buttons must be between 0 and the maximum value..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_Buttons_ButtonsNumberOverflow2">
<summary>
Looks up a localized string similar to Cannot add a new FarPoint scroll bar button when the number of buttons exceeds the maximum value..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_Buttons_ComboThumbExisted">
<summary>
Looks up a localized string similar to The thumb and track combination of the FarPoint scroll bar already exists..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_Buttons_NonFpScrollBarButton">
<summary>
Looks up a localized string similar to The object is not a FarPoint scroll bar button..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_Buttons_NullObject">
<summary>
Looks up a localized string similar to The FarPoint scroll bar button cannot be null..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_ContextMenu_Bottom">
<summary>
Looks up a localized string similar to Bottom.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_ContextMenu_Here">
<summary>
Looks up a localized string similar to Scroll Here.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_ContextMenu_Left">
<summary>
Looks up a localized string similar to Left Edge.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_ContextMenu_PageDown">
<summary>
Looks up a localized string similar to Page Down.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_ContextMenu_PageLeft">
<summary>
Looks up a localized string similar to Page Left.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_ContextMenu_PageRight">
<summary>
Looks up a localized string similar to Page Right.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_ContextMenu_PageUp">
<summary>
Looks up a localized string similar to Page Up.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_ContextMenu_Right">
<summary>
Looks up a localized string similar to Right Edge.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_ContextMenu_ScrollDown">
<summary>
Looks up a localized string similar to Scroll Down.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_ContextMenu_ScrollLeft">
<summary>
Looks up a localized string similar to Scroll Left.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_ContextMenu_ScrollRight">
<summary>
Looks up a localized string similar to Scroll Right.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_ContextMenu_ScrollUp">
<summary>
Looks up a localized string similar to Scroll Up.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_ContextMenu_Top">
<summary>
Looks up a localized string similar to Top.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_LargeChange_InvalidLowValue">
<summary>
Looks up a localized string similar to Invalid low bound argument..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_Renderer">
<summary>
Looks up a localized string similar to Gets or sets the renderer of ScrollBar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_SmallChange_InvalidLowValue">
<summary>
Looks up a localized string similar to Invalid low bound argument..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollBar_Value_Overflow">
<summary>
Looks up a localized string similar to The value is not valid; the value must be between the minimum and maximum values..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollingContentInfo_ColumnIndices">
<summary>
Looks up a localized string similar to Gets or sets column indices for the vertical scrolling tip..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollingContentInfo_MaxHeight">
<summary>
Looks up a localized string similar to Gets or sets the maximum height in pixels for the vertical scrolling tip..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ScrollingContentInfo_RowNumberPolicy">
<summary>
Looks up a localized string similar to Gets or sets the policy that how to display row number in the vertical scrolling tip when ColumnIndices property is not empty..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SearchDialog_alternateSearch">
<summary>
Looks up a localized string similar to &amp;Alternate search (down then across).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SearchDialog_captionText">
<summary>
Looks up a localized string similar to Find.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SearchDialog_closeBtn">
<summary>
Looks up a localized string similar to Close.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SearchDialog_findLabel">
<summary>
Looks up a localized string similar to Fi&amp;nd what:.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SearchDialog_findNextText">
<summary>
Looks up a localized string similar to &amp;Find Next.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SearchDialog_findText">
<summary>
Looks up a localized string similar to &amp;Find.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SearchDialog_matchCase">
<summary>
Looks up a localized string similar to Match &amp;case.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SearchDialog_matchExactly">
<summary>
Looks up a localized string similar to Match &amp;exactly.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SearchDialog_notFoundText">
<summary>
Looks up a localized string similar to The string was not found..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SearchDialog_repeatSearchText">
<summary>
Looks up a localized string similar to Would you like to repeat the search from the beginning?.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SearchDialog_searchText">
<summary>
Looks up a localized string similar to Search.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SearchDialog_useWildcards">
<summary>
Looks up a localized string similar to Use &amp;wildcards.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SerializationStatusDialog_Cancelled">
<summary>
Looks up a localized string similar to Serialization of this sheet&apos;s cells, columns, rows, and alternating rows has been cancelled. The DocumentModels will be serialized to the form resources instead..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SerializationStatusDialog_Gatheringinformation">
<summary>
Looks up a localized string similar to Gathering information for serialization....
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SerializationStatusDialog_Serializing">
<summary>
Looks up a localized string similar to Serializing .
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkin_BackColor">
<summary>
Looks up a localized string similar to Gets the sheet&apos;s background color..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkin_CellBackColor">
<summary>
Looks up a localized string similar to Gets the background color of cells..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkin_CellForeColor">
<summary>
Looks up a localized string similar to Gets the text color of cells..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkin_EvenRowBackColor">
<summary>
Looks up a localized string similar to Gets the background color of even numbererd rows..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkin_FlatColumnHeader">
<summary>
Looks up a localized string similar to Gets the appearance of the column headers..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkin_FlatRowHeader">
<summary>
Looks up a localized string similar to Gets the appearance of the row headers..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkin_GridLineColor">
<summary>
Looks up a localized string similar to Gets the grid line color..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkin_GridLines">
<summary>
Looks up a localized string similar to Specifies whether horizontal or vertical grid lines or both are displayed on the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkin_HeaderBackColor">
<summary>
Looks up a localized string similar to Gets the background color of header cells..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkin_HeaderFontBold">
<summary>
Looks up a localized string similar to Gets whether header font is bold..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkin_HeaderForeColor">
<summary>
Looks up a localized string similar to Gets the text color of header cells..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkin_Name">
<summary>
Looks up a localized string similar to Gets the name of the skin..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkin_OddRowBackColor">
<summary>
Looks up a localized string similar to Gets the background color of odd numbered rows..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkin_SelectionBackColor">
<summary>
Looks up a localized string similar to Gets the background color of selected cells..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkin_SelectionForeColor">
<summary>
Looks up a localized string similar to Gets the text color of selected cells..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkin_ShowColumnHeader">
<summary>
Looks up a localized string similar to Gets whether the sheet displays the column header..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkin_ShowRowHeader">
<summary>
Looks up a localized string similar to Gets whether the sheet displays the row header..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinEditor_Apply">
<summary>
Looks up a localized string similar to &amp;Apply.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinEditor_Cancel">
<summary>
Looks up a localized string similar to Cancel.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinEditor_confirmDelete">
<summary>
Looks up a localized string similar to Confirm Delete SheetSkin.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinEditor_confirmOverwrite">
<summary>
Looks up a localized string similar to Confirm Overwrite SheetSkin.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinEditor_Custom">
<summary>
Looks up a localized string similar to Custom.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinEditor_customModified">
<summary>
Looks up a localized string similar to Custom skin has changed, do you want to save it?.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinEditor_Delete">
<summary>
Looks up a localized string similar to &amp;Delete.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinEditor_deleteSkin">
<summary>
Looks up a localized string similar to Are you sure you want to delete the SheetSkin &quot;{0}&quot;?.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinEditor_Help">
<summary>
Looks up a localized string similar to &amp;Help.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinEditor_invalidName">
<summary>
Looks up a localized string similar to Invalid SheetSkin Name.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinEditor_noCustomSkinName">
<summary>
Looks up a localized string similar to Custom skin must have a name..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinEditor_OK">
<summary>
Looks up a localized string similar to OK.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinEditor_overwriteFile">
<summary>
Looks up a localized string similar to Overwrite existing file?.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinEditor_PreDefined">
<summary>
Looks up a localized string similar to Pre-Defined.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinEditor_Preview">
<summary>
Looks up a localized string similar to &amp;Preview.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinEditor_Save">
<summary>
Looks up a localized string similar to &amp;Save.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinEditor_saveCustom">
<summary>
Looks up a localized string similar to Save Custom Skin.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinEditor_Saved">
<summary>
Looks up a localized string similar to Saved.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinEditor_savedSkin">
<summary>
Looks up a localized string similar to SheetSkin &quot;{0}&quot; has been saved..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinEditor_sheetSkinEditor">
<summary>
Looks up a localized string similar to SheetSkin Editor.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinEditor_Title">
<summary>
Looks up a localized string similar to SheetSkin Editor.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetTab_BackColor">
<summary>
Looks up a localized string similar to Gets or sets the background color of a sheet name tab..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetTab_Font">
<summary>
Looks up a localized string similar to Gets or sets the font for the sheet name tab..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetTab_ForeColor">
<summary>
Looks up a localized string similar to Gets or sets the foreground color of a sheet name tab..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetTab_Size">
<summary>
Looks up a localized string similar to Gets or sets the size of the sheet tab..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ActiveSkin">
<summary>
Looks up a localized string similar to Gets or sets the skin used by the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_AllowGroup">
<summary>
Looks up a localized string similar to Gets or sets whether to allow the user to group rows on the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_AllowNoteEdit">
<summary>
Looks up a localized string similar to Gets or sets whether notes on this sheet are editable, when the sheet is not protected..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_AllowTableCorner">
<summary>
Looks up a localized string similar to Determines whether the sheet can have a grid structure in the corner..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_AlternatingRows">
<summary>
Looks up a localized string similar to Gets the alternating rows in the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_AutoCalculation">
<summary>
Looks up a localized string similar to Gets or sets whether the control recalculates each formula when the contents of dependent cells change..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_AutoGenerateColumns">
<summary>
Looks up a localized string similar to Gets or sets whether to automatically generate the columns based on the data source..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_AutoUpdateNotes">
<summary>
Looks up a localized string similar to Gets or sets whether cell notes are automatically updated when changes are made to the note style or to the text, or notes are added, removed, or moved..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_Cells">
<summary>
Looks up a localized string similar to Gets a Cells object for the cells in the client area of the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ColumnCount">
<summary>
Looks up a localized string similar to Gets or sets the number of columns in the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ColumnFooter">
<summary>
Looks up a localized string similar to Gets the object for the column footer area of the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ColumnFooterRowCount">
<summary>
Looks up a localized string similar to Gets or sets the number of rows in the column footers for the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ColumnFooterVisible">
<summary>
Looks up a localized string similar to Gets or sets whether the column Footers for this sheet are visible..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ColumnHeader">
<summary>
Looks up a localized string similar to Gets the ColumnHeader object for the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ColumnHeaderAutoFilterIndex">
<summary>
Looks up a localized string similar to Gets or sets which column header row in the sheet displays the filter indicator when there are multiple column header rows..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ColumnHeaderAutoSortIndex">
<summary>
Looks up a localized string similar to Gets or sets which column header row in the sheet displays the sort indicator when there are multiple column header rows..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ColumnHeaderAutoText">
<summary>
Looks up a localized string similar to Gets or sets whether column headers display letters or numbers or are blank..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ColumnHeaderAutoTextIndex">
<summary>
Looks up a localized string similar to Gets or sets which column header row displays the auto text when there are multiple column header rows..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ColumnHeaderHorizontalGridLine">
<summary>
Looks up a localized string similar to Gets or sets the horizontal grid line for the column header..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ColumnHeaderRowCount">
<summary>
Looks up a localized string similar to Gets or sets the number of rows in the column headers..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ColumnHeaderVerticalGridLine">
<summary>
Looks up a localized string similar to Gets or sets the vertical grid line for the column header..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ColumnHeaderVisible">
<summary>
Looks up a localized string similar to Gets or sets whether the column headers are visible..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_Columns">
<summary>
Looks up a localized string similar to Gets the columns in the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_DataAllowAddNew">
<summary>
Looks up a localized string similar to Gets or sets whether the user can add new rows to the data source when the sheet is bound..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_DataAutoCellTypes">
<summary>
Looks up a localized string similar to Gets or sets whether a bound sheet automatically sets the cell type for the cells in a column..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_DataAutoHeadings">
<summary>
Looks up a localized string similar to Gets or sets whether a bound sheet automatically assigns the data field names to be the text in the column headers. .
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_DataAutoSizeColumns">
<summary>
Looks up a localized string similar to Gets or sets whether a bound sheet automatically sizes its columns based on the data in the associated database fields. .
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_DataMember">
<summary>
Looks up a localized string similar to Gets or sets the name of the data member that populates the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_DataSource">
<summary>
Looks up a localized string similar to Gets or sets the name of the data source that populates the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_DefaultStyle">
<summary>
Looks up a localized string similar to Gets or sets a StyleInfo object for the default style of the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_DefaultStyleName">
<summary>
Looks up a localized string similar to Gets or sets the name of the default style for the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_DisplayZero">
<summary>
Looks up a localized string similar to Gets or sets whether zero values are displayed in cells..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_FrozenColumnCount">
<summary>
Looks up a localized string similar to Gets or sets the number of nonscrolling columns..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_FrozenRowCount">
<summary>
Looks up a localized string similar to Gets or sets the number of nonscrolling rows..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_FrozenTrailingColumnCount">
<summary>
Looks up a localized string similar to Gets or sets the number of nonscrolling columns on the trailing edge of the view..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_FrozenTrailingRowCount">
<summary>
Looks up a localized string similar to Gets or sets the number of nonscrolling rows on the trailing edge of the view..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_GrayAreaBackColor">
<summary>
Looks up a localized string similar to Gets or sets the color in the area between the sheet and the edge of the control..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_GroupBarBackColor">
<summary>
Looks up a localized string similar to Gets or sets the background color for the grouping bar of the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_GroupBarHeight">
<summary>
Looks up a localized string similar to Gets or sets the height of the grouping bar for the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_GroupBarInfo">
<summary>
Looks up a localized string similar to Gets or sets the info of the grouping bar for the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_GroupBarVisible">
<summary>
Looks up a localized string similar to Gets or sets whether the grouping bar for the sheet is displayed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_GroupFooterVisible">
<summary>
Looks up a localized string similar to Gets or sets whether the group footer is displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_GroupInfos">
<summary>
Looks up a localized string similar to Gets or sets the collection of grouping information objects for the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_GroupMaximumLevel">
<summary>
Looks up a localized string similar to Gets or sets the maximum number of levels of grouping for the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_GroupVerticalIndent">
<summary>
Looks up a localized string similar to Gets or sets the separation of grouping levels for the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_HorizontalGridLine">
<summary>
Looks up a localized string similar to Gets or sets the horizontal grid line..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_Iteration">
<summary>
Looks up a localized string similar to Gets or sets whether circular references are evaluated..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_LockBackColor">
<summary>
Looks up a localized string similar to Gets or sets the background color of locked cells..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_LockForeColor">
<summary>
Looks up a localized string similar to Gets or sets the foreground color of locked cells..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_MaximumChange">
<summary>
Looks up a localized string similar to Gets or sets the maximum amount of change below which iterations stop when circular references are evaluated..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_MaximumIterations">
<summary>
Looks up a localized string similar to Gets or sets the maximum number of iterations for calculating circular references..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_NamedStyles">
<summary>
Looks up a localized string similar to Gets or sets a NamedStyleCollection object..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_OperationMode">
<summary>
Looks up a localized string similar to Gets or sets the mode that determines mouse, keyboard, and selection behavior..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_PreviewRowInfo">
<summary>
Looks up a localized string similar to Gets or sets preview row information for the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_PrintInfo">
<summary>
Looks up a localized string similar to Gets or sets a PrintInfo object that determines printing behavior for the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_Protect">
<summary>
Looks up a localized string similar to Gets or sets whether editing is allowed in locked cells..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_RangeGroupBackgroundColor">
<summary>
Looks up a localized string similar to Gets or sets the background color for the range group of the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_RangeGroupButtonStyle">
<summary>
Looks up a localized string similar to Gets or sets the button style for the range group of the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ReferenceStyle">
<summary>
Looks up a localized string similar to Gets or sets the style for cell and range references in formulas..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_RestrictColumns">
<summary>
Looks up a localized string similar to Gets or sets whether users can type data in a column that is more than one column beyond the last column that contains data..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_RestrictRows">
<summary>
Looks up a localized string similar to Gets or sets whether users can type data in a row that is more than one row beyond the last row that contains data..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_RowCount">
<summary>
Looks up a localized string similar to Gets or sets the number of rows in the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_RowHeader">
<summary>
Looks up a localized string similar to Gets the RowHeader object for the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_RowHeaderAutoText">
<summary>
Looks up a localized string similar to Gets or sets whether row headers display letters or numbers or are blank..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_RowHeaderAutoTextIndex">
<summary>
Looks up a localized string similar to Gets or sets which row header column displays the auto text when there are multiple row header columns..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_RowHeaderColumnCount">
<summary>
Looks up a localized string similar to Gets or sets the number of columns in the row header..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_RowHeaderHorizontalGridLine">
<summary>
Looks up a localized string similar to Gets or sets the horizontal grid line for the row header..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_RowHeaderVerticalGridLine">
<summary>
Looks up a localized string similar to Gets or sets the vertical grid line for the row header..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_RowHeaderVisible">
<summary>
Looks up a localized string similar to Gets or sets whether the row headers are visible..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_Rows">
<summary>
Looks up a localized string similar to Gets the rows in the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ScrollingContentInfo">
<summary>
Looks up a localized string similar to Gets or sets the info of the vertical scrolling tip for the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_SelectionBackColor">
<summary>
Looks up a localized string similar to Gets or sets the background color of selections..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_SelectionForeColor">
<summary>
Looks up a localized string similar to Gets or sets the foreground color of selections..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_SelectionPolicy">
<summary>
Looks up a localized string similar to Gets the selection policy for the sheet for normal operation mode..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_SelectionStyle">
<summary>
Looks up a localized string similar to Gets or sets how selections are drawn..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_SelectionUnit">
<summary>
Looks up a localized string similar to Gets the selection unit for the sheet for normal operation modes..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_SerializeModels">
<summary>
Looks up a localized string similar to Gets or sets whether the DocumentModels for this sheet should be serialized to the form resources, rather than generating code that initializes the Cells, Columns, Rows, and AlternatingRows..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_SheetCornerHorizontalGridLine">
<summary>
Looks up a localized string similar to Gets or sets the horizontal grid line in the header corner..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ColumnFooterSheetCornerHorizontalGridLine">
<summary>
Looks up a localized string similar to Gets or sets the horizontal grid line in the footer corner..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ColumnFooterSheetCornerVerticalGridLine">
<summary>
Looks up a localized string similar to Gets or sets the vertical grid line for the footer corner..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_SheetCornerStyle">
<summary>
Looks up a localized string similar to Gets or sets the style information for the header corner..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_SheetCornerStyleName">
<summary>
Looks up a localized string similar to Gets or sets the name of the style for the header corner..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ColumnFooterSheetCornerStyle">
<summary>
Looks up a localized string similar to Gets or sets the style information for the footer corner..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ColumnFooterSheetCornerStyleName">
<summary>
Looks up a localized string similar to Gets or sets the name of the style for the footer corner..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_SheetCornerVerticalGridLine">
<summary>
Looks up a localized string similar to Gets or sets the vertical grid line for the header corner..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_SheetName">
<summary>
Looks up a localized string similar to Gets or sets the name of the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ShowRowSelector">
<summary>
Looks up a localized string similar to Gets or sets a value indicating whether display a row selector in the row header of the selected row for the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_StartingColumnNumber">
<summary>
Looks up a localized string similar to Gets or sets the number or letter displayed in the first column header..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_StartingRowNumber">
<summary>
Looks up a localized string similar to Gets or sets the number or letter displayed in the first row header..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_Tag">
<summary>
Looks up a localized string similar to Gets or sets an application-defined tag value for a sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_TitleInfo">
<summary>
Looks up a localized string similar to Gets or sets the collection of title information objects for the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_VerticalGridLine">
<summary>
Looks up a localized string similar to Gets or sets the vertical grid line..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_Visible">
<summary>
Looks up a localized string similar to Gets or sets whether to display the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_ZoomFactor">
<summary>
Looks up a localized string similar to Gets or sets the current zoom level for viewing the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetViewDesigner_CellsEditor">
<summary>
Looks up a localized string similar to Edit Cells.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetViewDesigner_Reset">
<summary>
Looks up a localized string similar to Reset Sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetViewDesigner_SheetSkinEditor">
<summary>
Looks up a localized string similar to Edit Skins.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SliderCellType_BackgroundImage">
<summary>
Looks up a localized string similar to Gets or sets the background image for the cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SliderCellType_ChangeOnFocus">
<summary>
Looks up a localized string similar to Gets or sets whether the slider moves with the initial click..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SliderCellType_KnobColor">
<summary>
Looks up a localized string similar to Gets or sets the color of the slider knob..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SliderCellType_KnobPicture">
<summary>
Looks up a localized string similar to Gets or sets the slider knob image..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SliderCellType_KnobWidth">
<summary>
Looks up a localized string similar to Gets or sets the width (in pixels) of the slider knob..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SliderCellType_Maximum">
<summary>
Looks up a localized string similar to Gets or sets the maximum value..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SliderCellType_Minimum">
<summary>
Looks up a localized string similar to Gets or sets the minimum value..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SliderCellType_Orientation">
<summary>
Looks up a localized string similar to Gets or sets the orientation of the slider..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SliderCellType_TickColor">
<summary>
Looks up a localized string similar to Gets or sets the color of the tick marks in the slider..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SliderCellType_TickSpacing">
<summary>
Looks up a localized string similar to Gets or sets how frequently to space the tick marks..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SliderCellType_TrackColor">
<summary>
Looks up a localized string similar to Gets or sets the color of the slider track..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SliderCellType_TrackPicture">
<summary>
Looks up a localized string similar to Gets or sets the image for the slider track..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SliderCellType_TrackWidth">
<summary>
Looks up a localized string similar to Gets or sets the width (in pixels) of the slider track..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadDataBindingAdapter_DataMemberPropDesc">
<summary>
Looks up a localized string similar to Indicates a sub-list of the DataSource to show in the control..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadDataBindingAdapter_DataSourcePropDesc">
<summary>
Looks up a localized string similar to Indicates the source of data for the control..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadDataBindingAdapter_MapperInfoPropDesc">
<summary>
Looks up a localized string similar to Indicates information of the mapper..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadDataBindingAdapter_SheetNamePropDesc">
<summary>
Looks up a localized string similar to Indicates the sheet name of the FarPoint Spread component..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadDataBindingAdapter_SpreadPropDesc">
<summary>
Looks up a localized string similar to Indicates the FarPoint Spread component..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadDataBindingAdapterConnection_ColumnCollectionOutOfRange">
<summary>
Looks up a localized string similar to The column collection has too many items; the mapped range is out of the range for the sheet..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadDesigner_AutoLaunch">
<summary>
Looks up a localized string similar to Auto-launch Spread Designer on new instance of Spread.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadDesigner_QueryRenameSheets">
<summary>
Looks up a localized string similar to Do you want to rename the SheetView objects contained in this FpSpread control too?.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadDesigner_QueryReset">
<summary>
Looks up a localized string similar to Are you sure you want to reset the spreadsheet? You will lose all custom settings..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadDesigner_RenameSheets">
<summary>
Looks up a localized string similar to Rename SheetViews?.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadDesigner_Reset">
<summary>
Looks up a localized string similar to Reset Control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadDesigner_SpreadDesigner">
<summary>
Looks up a localized string similar to Spread Designer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadDesigner_SpreadSkinEditor">
<summary>
Looks up a localized string similar to Edit Skins.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadDesigner_UnabletoSaveAutoLaunch">
<summary>
Looks up a localized string similar to Unable to set Auto-launch preference. You need write access to the registry to change this preference..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkin_ColumnFooterDefaultStyle">
<summary>
Looks up a localized string similar to Gets or sets the column footer default renderer of the FarPoint Spread skin..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkin_ColumnHeaderDefaultStyle">
<summary>
Looks up a localized string similar to Gets the column header default style..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkin_CornerDefaultStyle">
<summary>
Looks up a localized string similar to Gets the corner default style..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkin_DefaultStyle">
<summary>
Looks up a localized string similar to Gets the default style for cells..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkin_FocusRenderer">
<summary>
Looks up a localized string similar to Gets the focus renderer for painting the active cell focus indicator..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkin_InterfaceRenderer">
<summary>
Looks up a localized string similar to Gets the interface renderer for painting the FarPoint Spread component..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkin_Name">
<summary>
Looks up a localized string similar to Gets the name of the skin..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkin_RowHeaderDefaultStyle">
<summary>
Looks up a localized string similar to Gets the row header default style..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkin_ScrollBarRenderer">
<summary>
Looks up a localized string similar to Gets the scroll bar renderer for painting scroll bar..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkin_SelectionRenderer">
<summary>
Looks up a localized string similar to Gets the selection renderer for painting selected cells..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinEditor_Apply">
<summary>
Looks up a localized string similar to &amp;Apply.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinEditor_Cancel">
<summary>
Looks up a localized string similar to Cancel.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinEditor_confirmDelete">
<summary>
Looks up a localized string similar to Confirm Delete SheetSkin.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinEditor_confirmOverwrite">
<summary>
Looks up a localized string similar to Confirm Overwrite SpreadSkin.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinEditor_Custom">
<summary>
Looks up a localized string similar to Custom.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinEditor_customModified">
<summary>
Looks up a localized string similar to Custom skin has changed, do you want to save it?.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinEditor_Delete">
<summary>
Looks up a localized string similar to &amp;Delete.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinEditor_deleteSkin">
<summary>
Looks up a localized string similar to Are you sure you want to delete the SpreadSkin &quot;{0}&quot;?.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinEditor_Help">
<summary>
Looks up a localized string similar to &amp;Help.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinEditor_invalidName">
<summary>
Looks up a localized string similar to Invalid SpreadSkin Name.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinEditor_noCustomSkinName">
<summary>
Looks up a localized string similar to Custom skin must have a name.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinEditor_OK">
<summary>
Looks up a localized string similar to OK.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinEditor_overwriteFile">
<summary>
Looks up a localized string similar to Overwrite existing file?.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinEditor_PreDefined">
<summary>
Looks up a localized string similar to Pre-Defined.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinEditor_Preview">
<summary>
Looks up a localized string similar to &amp;Preview.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinEditor_Save">
<summary>
Looks up a localized string similar to &amp;Save.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinEditor_saveCustom">
<summary>
Looks up a localized string similar to Save Custom Skin.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinEditor_Saved">
<summary>
Looks up a localized string similar to Saved.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinEditor_savedSkin">
<summary>
Looks up a localized string similar to SpreadSkin &quot;{0}&quot; has been saved..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinEditor_sheetSkinEditor">
<summary>
Looks up a localized string similar to SpreadSkin Editor.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinEditor_Title">
<summary>
Looks up a localized string similar to SpreadSkin Editor.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadViewSheetRename_MessageBox_Content">
<summary>
Looks up a localized string similar to There is a sheet with that name already. Please choose another name..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadViewSheetRename_MessageBox_Title">
<summary>
Looks up a localized string similar to Duplicate sheet names.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.StyleInfo_BackColor">
<summary>
Looks up a localized string similar to Gets or sets the background color for the style..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.StyleInfo_Border">
<summary>
Looks up a localized string similar to Gets or sets the border..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.StyleInfo_CanFocus">
<summary>
Looks up a localized string similar to Gets or sets whether the user can set focus to the cell using the keyboard or mouse..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.StyleInfo_CellPadding">
<summary>
Looks up a localized string similar to Gets or sets the amount of spaces to cell padding in the cell(s) in pixels..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.StyleInfo_CellType">
<summary>
Looks up a localized string similar to Gets or sets the cell type..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.StyleInfo_Class">
<summary>
Looks up a localized string similar to Represents the style properties for spreadsheet objects..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.StyleInfo_Font">
<summary>
Looks up a localized string similar to Gets or sets the font settings..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.StyleInfo_ForeColor">
<summary>
Looks up a localized string similar to Gets or sets the text color..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.StyleInfo_HorizontalAlignment">
<summary>
Looks up a localized string similar to Gets or sets the horizontal alignment..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.StyleInfo_Locked">
<summary>
Looks up a localized string similar to Gets or sets the whether the style marks cells as locked..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.StyleInfo_NoteIndicatorColor">
<summary>
Looks up a localized string similar to Gets or sets the color of the cell note indicator..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.StyleInfo_NoteIndicatorPosition">
<summary>
Looks up a localized string similar to Gets or sets the position of the cell note indicator..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.StyleInfo_NoteIndicatorSize">
<summary>
Looks up a localized string similar to Gets or sets the size of the cell note indicator..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.StyleInfo_InvalidNoteIndicatorSize">
<summary>
Looks up a localized string similar to Invalidation of the size of the styleinfo note indicator..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.StyleInfo_Parent">
<summary>
Looks up a localized string similar to Gets or sets the name of the parent NamedStyle object..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.StyleInfo_TabStop">
<summary>
Looks up a localized string similar to Gets or sets whether the user can set focus to the cell using the TAB key..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.StyleInfo_TextIndent">
<summary>
Looks up a localized string similar to Gets or sets the amount of spaces to indent text in the cell in pixels..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.StyleInfo_VerticalAlignment">
<summary>
Looks up a localized string similar to Gets and set the vertical alignment..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.StyleInfo_VisualStyles">
<summary>
Looks up a localized string similar to Gets or sets whether to render the object with VisualStyles..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TabStrip_ActiveSheetTab">
<summary>
Looks up a localized string similar to Gets or sets the active sheet tab..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TabStrip_BackColor">
<summary>
Looks up a localized string similar to Gets or sets the background color of the tab strip..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TabStrip_ButtonPolicy">
<summary>
Looks up a localized string similar to Gets or sets whether the sheet tab buttons are displayed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TabStrip_DefaultSheetTab">
<summary>
Looks up a localized string similar to Gets or sets the default sheet tab..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TabStrip_Editable">
<summary>
Looks up a localized string similar to Gets or sets whether users can edit the sheet tab text by double-clicking it..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TabStrip_TabShape">
<summary>
Looks up a localized string similar to Gets or sets the shape of the sheet tabs..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TextCellType_CharacterCasing">
<summary>
Looks up a localized string similar to Gets or sets the case of characters in the text cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TextCellType_CharacterSet">
<summary>
Looks up a localized string similar to Gets or sets what characters to allow for the text cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TextCellType_HotkeyPrefix">
<summary>
Looks up a localized string similar to Gets or sets whether the ampersand character underlines text..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TextCellType_MaxLength">
<summary>
Looks up a localized string similar to Gets or sets the maximum number of characters allowed in the text cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TextCellType_Multiline">
<summary>
Looks up a localized string similar to Gets or sets whether multiple lines of text are allowed..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TextCellType_PasswordChar">
<summary>
Looks up a localized string similar to Gets or sets which character to use to mask data in the text cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TextCellType_ScrollBars">
<summary>
Looks up a localized string similar to Gets or sets which scroll bars to display for the text cell..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TextCellType_TextRotationAngle">
<summary>
Looks up a localized string similar to Gets or sets the rotation angle..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.ThicknessOutOfRange">
<summary>
Looks up a localized string similar to Please specify a value from 1 to 16..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TitleInfo_BackColor">
<summary>
Looks up a localized string similar to Gets or sets the back color of the title.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TitleInfo_Border">
<summary>
Looks up a localized string similar to Gets or sets the border of the title.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TitleInfo_CellType">
<summary>
Looks up a localized string similar to Gets or sets the type of cell for the title.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TitleInfo_Font">
<summary>
Looks up a localized string similar to Gets or sets the font settings of the title.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TitleInfo_ForeColor">
<summary>
Looks up a localized string similar to Gets or sets the text color of the title.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TitleInfo_Height">
<summary>
Looks up a localized string similar to Gets or sets the height of title.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TitleInfo_HorizontalAlign">
<summary>
Looks up a localized string similar to Gets or sets the horizontal alignment of the title.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TitleInfo_StyleInfo">
<summary>
Looks up a localized string similar to Gets or sets the style of the title.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TitleInfo_Text">
<summary>
Looks up a localized string similar to Gets or sets the text of title.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TitleInfo_Value">
<summary>
Looks up a localized string similar to Gets or sets the value for title.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TitleInfo_VerticalAlign">
<summary>
Looks up a localized string similar to Gets or sets the vertical alignment of the title bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.TitleInfo_Visible">
<summary>
Looks up a localized string similar to Gets or sets whether the title is displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.tthhmm">
<summary>
Looks up a localized string similar to tt hh:mm.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.tthhmmss">
<summary>
Looks up a localized string similar to tt hh:mm:ss.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.UndoRedo_MultipleColumnsMoving_MessageBox_Title">
<summary>
Looks up a localized string similar to Moving error.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.UPC_AddValue">
<summary>
Looks up a localized string similar to Gets or sets the added value of add-on version UPC..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.UPC_AddValue_ExMsg">
<summary>
Looks up a localized string similar to Minus value is not valid for this property..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.UPC_Type">
<summary>
Looks up a localized string similar to Gets or sets the type of UPC..
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.YYMM">
<summary>
Looks up a localized string similar to yy/MM.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.YYMMDD">
<summary>
Looks up a localized string similar to yy/MM/dd.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.YYYYMM">
<summary>
Looks up a localized string similar to yyyy/MM.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.YYYYMMDD">
<summary>
Looks up a localized string similar to yyyy/MM/dd.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetView_NotSupportedTargetAsIGroupSupport">
<summary>
Looks up a localized string similar to Does not support object ...
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SheetSkinsForm_CreateSkinsFolderException">
<summary>
Looks up a localized string for SheetSkinsForm.CreateSkinsFolderException
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Description.SpreadSkinsForm_CreateSkinsFolderException">
<summary>
Looks up a localized string for SpreadSkinsForm.CreateSkinsFolderException
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SearchDialog">
<summary>
Represents a search dialog.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SearchDialog.searchText">
<summary>
Internal use only. Search text.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SearchDialog.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SearchDialog.#ctor">
<summary>
Creates a new empty search dialog form.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SearchDialog.#ctor(FarPoint.Win.Spread.FpSpread,System.String)">
<summary>
Creates a new search dialog form with the specified spreadsheet
and the specified string for which to search preset in the form.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SearchDialog.#ctor(FarPoint.Win.Spread.FpSpread,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Int32)">
<summary>
Creates a search dialog form with the specified sheet, search string,
and other settings preset in the form.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SearchDialog.#ctor(FarPoint.Win.Spread.FpSpread,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Int32,System.Boolean)">
<summary>
Creates a search dialog form with the specified search string,
and other settings preset in the form, with a starting sheet for cross-sheet searching.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SearchDialog.#ctor(FarPoint.Win.Spread.FpSpread,System.String,System.Boolean)">
<summary>
Creates a search dialog form with the specified search string,
and other settings preset in the form with cross-sheet searching.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SearchDialog.OnStringNotFound(System.ComponentModel.CancelEventArgs)">
<summary>
Occurs when the search does not find the string.
</summary>
<param name="e">Event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.SearchDialog.SetCustomTextToDefaults">
<summary>
Sets the custom text in the form to default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SearchDialog.SetCustomText(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)">
<summary>
Sets the custom text in the form to specified values.
</summary>
<param name="findTextLabel">Text string to match</param>
<param name="matchCaseLabel">Case to match string</param>
<param name="exactMatchLabel">Exact match string</param>
<param name="alternateSearchLabel">Alternate search string</param>
<param name="useWildcardsLabel">Wildcard usage string</param>
<param name="findText">Find text string</param>
<param name="findNextText">Find next text string</param>
<param name="closeText">Close text string</param>
<param name="notFoundText">Text not found string</param>
<param name="repeatSearchText">Prompt to repeat search from beginning string</param>
</member>
<member name="M:FarPoint.Win.Spread.SearchDialog.SetCustomText(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)">
<summary>
Sets the custom text in the form to specified values.
</summary>
<param name="findTextLabel">Text string to match</param>
<param name="matchCaseLabel">Case to match string</param>
<param name="exactMatchLabel">Exact match string</param>
<param name="alternateSearchLabel">Alternate search string</param>
<param name="useWildcardsLabel">Wildcard usage string</param>
<param name="findText">Find text string</param>
<param name="findNextText">Find next text string</param>
<param name="closeText">Close text string</param>
<param name="notFoundText">Text not found string</param>
</member>
<member name="M:FarPoint.Win.Spread.SearchDialog.OnClosing(System.ComponentModel.CancelEventArgs)">
<summary>
Occurs on closing.
</summary>
<param name="e">Close event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.SearchDialog.Dispose(System.Boolean)">
<summary>
Cleans up any resources being used.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SearchDialog.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SearchDialog.DoSearch(System.Int32,System.Int32,System.Int32,System.Int32@,System.Int32@)">
<summary>
Internal use only.
</summary>
<param name="sheetIndex"></param>
<param name="startRowIndex"></param>
<param name="startColumnIndex"></param>
<param name="foundRowIndex"></param>
<param name="foundColumnIndex"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SearchDialog.findNext_Click(System.Object,System.EventArgs)">
<summary>
Internal use only. Occurs when the next click.
</summary>
<param name="sender">Object source of the event</param>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.SearchDialog.PaintSeparator(System.Windows.Forms.Label,System.Windows.Forms.PaintEventArgs)">
<summary>
Paints a highlighted line from the end of a label control text to the width of the control to make
the label look more like a separator.
</summary>
<param name="sender">Label</param>
<param name="e">Paint event arguments</param>
</member>
<member name="E:FarPoint.Win.Spread.SearchDialog.StringNotFound">
<summary>
Occurs when the search is cancelled with the string not found.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SearchDialog.SheetIndex">
<summary>
Gets or sets the index of the sheet to search.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SearchDialog.SearchStrings">
<summary>
Gets the strings that were searched for in the search dialog.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SearchDialog.UseWildcards">
<summary>
Gets or sets whether to use wildcard characters in the search.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SearchDialog.CaseSensitive">
<summary>
Gets or sets whether to consider upper case and lower case when performing the search.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SearchDialog.ExactMatch">
<summary>
Gets or sets whether to consider only strings that match exactly.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SearchDialog.AlternateSearch">
<summary>
Gets or sets whether to search down rows first then across columns,
which is the alternate way of searching.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SearchDialog.RepeatFromStart">
<summary>
Gets or sets whether to repeat the search from the start.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SearchDialog.SearchString">
<summary>
Gets or sets the string for which to search.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SearchDialog.FoundString">
<summary>
Gets the string that matches the one searched for.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SearchDialog.FoundSheetIndex">
<summary>
Gets the sheet index of the matched string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SearchDialog.FoundRowIndex">
<summary>
Gets the row index of the matched string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SearchDialog.FoundColumnIndex">
<summary>
Gets the column index of the matched string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SearchDialog.StartRowIndex">
<summary>
Gets or sets the row at which to start the search.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SearchDialog.StartColumnIndex">
<summary>
Gets or sets the column at which to start the search.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.AdvancedSearchDialog">
<summary>
Represents an advanced search dialog.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.AdvancedSearchDialog.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AdvancedSearchDialog.#ctor">
<summary>
Creates a new, empty, advanced search dialog form.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AdvancedSearchDialog.#ctor(FarPoint.Win.Spread.FpSpread,System.Int32,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Int32)">
<summary>
Creates an advanced search dialog form with the specified sheet, search string,
and other settings preset in the form.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AdvancedSearchDialog.#ctor(FarPoint.Win.Spread.FpSpread,System.Int32,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Int32)">
<summary>
Creates an advanced search dialog form with the specified sheet, search string,
and other settings preset in the form.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AdvancedSearchDialog.Dispose(System.Boolean)">
<summary>
Cleans up any resources being used.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AdvancedSearchDialog.DoSearch(System.Int32,System.Int32,System.Int32,System.Int32@,System.Int32@)">
<summary>
Internal use only. Does the search.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="startRowIndex">Starting row index</param>
<param name="startColumnIndex">Starting column index</param>
<param name="foundRowIndex">Found row index</param>
<param name="foundColumnIndex">Found column index</param>
</member>
<member name="M:FarPoint.Win.Spread.AdvancedSearchDialog.SetCustomTextToDefaults">
<summary>
Sets the custom text in the form to default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AdvancedSearchDialog.advancedLabel_Paint(System.Object,System.Windows.Forms.PaintEventArgs)">
<summary>
Internal use only. Occurs when the label is painted.
</summary>
<param name="sender">Object source of the event</param>
<param name="e">Event data</param>
</member>
<member name="P:FarPoint.Win.Spread.AdvancedSearchDialog.SearchCellText">
<summary>
Gets or sets whether to search the text of cells.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AdvancedSearchDialog.SearchNotes">
<summary>
Gets or sets whether to search the text of cell notes.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AdvancedSearchDialog.SearchTags">
<summary>
Gets or sets whether to search cell tags, if the object is representable as a string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AdvancedSearchDialog.StartSheetIndex">
<summary>
Gets or sets the index of the sheet at which to start the search.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AdvancedSearchDialog.EndSheetIndex">
<summary>
Gets or sets the index of the sheet at which to end the search.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ParamItem">
<summary>
The ParamItem Class
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ParamItem.#ctor(System.Int32,System.String,FarPoint.CalcEngine.Expression)">
<summary>
Initializes a new instance of the <see cref="T:ParamItem"/> class.
</summary>
<param name="offset">Offset</param>
<param name="paramString">Parameter string</param>
<param name="expression">Expression</param>
</member>
<member name="M:FarPoint.Win.Spread.ParamItem.#ctor(FarPoint.Win.Spread.Model.CellRange,System.Int32,System.Int32,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:ParamItem"/> class.
</summary>
<param name="cellRange">Cell range</param>
<param name="baseRow">Base row</param>
<param name="baseColumn">Base column</param>
<param name="useR1C1">if set to <c>true</c> [use r1 c1]</param>
</member>
<member name="M:FarPoint.Win.Spread.ParamItem.GetCellRangeFromCellExpression(FarPoint.CalcEngine.CellExpression,System.Int32,System.Int32)">
<summary>
Gets the cell range from the cell expression.
</summary>
<param name="expression">Expression</param>
<param name="baseRow">Base row</param>
<param name="baseColumn">Base column</param>
</member>
<member name="M:FarPoint.Win.Spread.ParamItem.GetCellRangeFromExternalCellExpression(FarPoint.Win.Spread.FpSpread,FarPoint.CalcEngine.ExternalCellExpression,System.Int32,System.Int32)">
<summary>
Gets the cell range from the external cell expression.
</summary>
<param name="spread">FarPoint Spread</param>
<param name="expression">Expression</param>
<param name="baseRow">Base row</param>
<param name="baseColumn">Base column</param>
</member>
<member name="M:FarPoint.Win.Spread.ParamItem.GetCellRangeFromExternalRangeExpression(FarPoint.Win.Spread.FpSpread,FarPoint.CalcEngine.ExternalRangeExpression,System.Int32,System.Int32)">
<summary>
Gets the cell range from the external range expression.
</summary>
<param name="spread">FarPoint Spread</param>
<param name="expression">Expression</param>
<param name="baseRow">Base row</param>
<param name="baseColumn">Base column</param>
</member>
<member name="M:FarPoint.Win.Spread.ParamItem.GetCellRangeFromRangeExpression(FarPoint.CalcEngine.RangeExpression,System.Int32,System.Int32)">
<summary>
Gets the cell range from the range expression.
</summary>
<param name="expression">Expression</param>
<param name="baseRow">Base row</param>
<param name="baseColumn">Base column</param>
</member>
<member name="M:FarPoint.Win.Spread.ParamItem.GetCellRangeFromNameExpression(FarPoint.Win.Spread.FpSpread,FarPoint.CalcEngine.NameExpression,System.Int32,System.Int32)">
<summary>
Gets the cell range from the name expression.
</summary>
<param name="spread">FarPoint Spread</param>
<param name="expression">Expression</param>
<param name="baseRow">Base row</param>
<param name="baseColumn">Base column</param>
</member>
<member name="M:FarPoint.Win.Spread.ParamItem.GetCellRange(FarPoint.Win.Spread.FpSpread,FarPoint.CalcEngine.Expression,System.Int32,System.Int32)">
<summary>
Gets the cell range.
</summary>
<param name="spread">FarPoint Spread</param>
<param name="expression">Expression</param>
<param name="baseRow">Base row</param>
<param name="baseColumn">Base column</param>
</member>
<member name="M:FarPoint.Win.Spread.ParamItem.ToViewCellRange(FarPoint.Win.Spread.FpSpread,FarPoint.Win.Spread.Model.CellRange)">
<summary>
Determines the view cell range.
</summary>
<param name="spread">FarPoint Spread component</param>
<param name="cellRange">Cell range</param>
</member>
<member name="M:FarPoint.Win.Spread.ParamItem.IsViewIndexMoved(FarPoint.Win.Spread.FpSpread,FarPoint.Win.Spread.Model.CellRange)">
<summary>
Determines whether [is view index moved] [the specified spread].
</summary>
<param name="spread">FarPoint Spread</param>
<param name="cellRange">Cell range</param>
<returns>
<c>true</c> if [is view index moved] [the specified spread]; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.ParamItem.IsViewIndexMoved(FarPoint.Win.Spread.FpSpread,System.Int32,System.Int32)">
<summary>
Determines whether [is view index moved] [the specified spread].
</summary>
<param name="spread">FarPoint Spread</param>
<param name="row">Row index</param>
<param name="column">Column index</param>
<returns>
<c>true</c> if [is view index moved] [the specified spread]; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.ParamItem.IsBelongTo(FarPoint.Win.Spread.SheetView)">
<summary>
Determines whether [is belong to] [the specified sheet].
</summary>
<param name="sheetView">Sheet</param>
<returns>
<c>true</c> if [is belong to] [the specified sheet]; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.ParamItem.GetCellRange(FarPoint.Win.Spread.FpSpread)">
<summary>
Gets the cell range.
</summary>
<param name="spread">FarPoint Spread</param>
</member>
<member name="M:FarPoint.Win.Spread.ParamItem.GetCellRanges(FarPoint.Win.Spread.FpSpread)">
<summary>
Gets the cell ranges.
</summary>
<param name="spread">FarPoint Spread</param>
</member>
<member name="M:FarPoint.Win.Spread.ParamItem.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.ParamItem.IsNameRangeExpression">
<summary>
Gets whether the name range is an expression.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ParamItem.Offset">
<summary>
Gets the offset.
</summary>
<value>Offset</value>
</member>
<member name="P:FarPoint.Win.Spread.ParamItem.ParamString">
<summary>
Gets the param string.
</summary>
<value>Param string</value>
</member>
<member name="P:FarPoint.Win.Spread.ParamItem.Expression">
<summary>
Gets the expression.
</summary>
<value>Expression</value>
</member>
<member name="P:FarPoint.Win.Spread.ParamItem.BaseRow">
<summary>
Gets or sets the base row.
</summary>
<value>Base row</value>
</member>
<member name="P:FarPoint.Win.Spread.ParamItem.BaseColumn">
<summary>
Gets or sets the base column.
</summary>
<value>Base column</value>
</member>
<member name="P:FarPoint.Win.Spread.ParamItem.UseR1C1">
<summary>
Gets or sets whether to [use r1 c1] absolute reference style.
</summary>
<value><c>true</c> if [use r1 c1]; otherwise, <c>false</c></value>
</member>
<member name="P:FarPoint.Win.Spread.ParamItem.Index">
<summary>
Gets or sets the index.
</summary>
<value>Index</value>
</member>
<member name="P:FarPoint.Win.Spread.ParamItem.ShouldHighlight">
<summary>
Gets whether [should highlight].
</summary>
<value><c>true</c> if [should highlight]; otherwise, <c>false</c></value>
</member>
<member name="P:FarPoint.Win.Spread.ParamItem.IsValid">
<summary>
Gets whether this instance is valid.
</summary>
<value><c>true</c> if this instance is valid; otherwise, <c>false</c></value>
</member>
<member name="T:FarPoint.Win.Spread.IntellisenseInfo">
<summary>
Represents the function description information.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseInfo.#ctor(System.String)">
<summary>
Creates a new function description information object with the specified name.
</summary>
<param name="name">Name</param>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseInfo.#ctor(FarPoint.CalcEngine.FunctionInfo,System.String)">
<summary>
Creates a new function description information object.
</summary>
<param name="func">Function</param>
<param name="desc">Description</param>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseInfo.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>.
</summary>
<param name="obj">The <see cref="T:System.Object"></see> to compare with the current <see cref="T:System.Object"></see></param>
<returns>
true if the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseInfo.GetHashCode">
<summary>
Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode"></see> is suitable for use in hashing algorithms and data structures like a hash table.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.IntellisenseInfo.IsFunction">
<summary>
Gets whether this instance is a function.
</summary>
<value>
<c>true</c> if this instance is function; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.IntellisenseInfo.IsDefinedFunction">
<summary>
Gets whether this instance is defined function.
</summary>
<value>
<c>true</c> if this instance is defined function; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.IntellisenseInfo.Name">
<summary>
Gets the name.
</summary>
<value>Name</value>
</member>
<member name="P:FarPoint.Win.Spread.IntellisenseInfo.Function">
<summary>
Gets the function.
</summary>
<value>Function</value>
</member>
<member name="P:FarPoint.Win.Spread.IntellisenseInfo.Description">
<summary>
Gets the description.
</summary>
<value>Description</value>
</member>
<member name="T:FarPoint.Win.Spread.IntellisenseCollection">
<summary>
Represents the collection of function description information.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseCollection.FindAll(System.String)">
<summary>
Finds all.
</summary>
<param name="word">Word to find</param>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseCollection.Find(System.String)">
<summary>
Finds the specified name.
</summary>
<param name="name">Name to find</param>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseCollection.AddRange(System.Collections.Specialized.StringCollection)">
<summary>
Adds the range.
</summary>
<param name="stringCollection">String collection</param>
</member>
<member name="P:FarPoint.Win.Spread.IntellisenseCollection.Item(System.Int32)">
<summary>
Gets or sets the <see cref="T:IntellisenseInfo"/> at the specified index.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CustomNameInfo">
<summary>
Represents the custom name information.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CustomNameInfo.Positions">
<summary>
Indicates all positions of cell-range
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CustomNameInfo.#ctor(System.String,System.Drawing.Color)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.CustomNameInfo"/> class.
</summary>
<param name="name">Name</param>
<param name="color">Color</param>
</member>
<member name="M:FarPoint.Win.Spread.CustomNameInfo.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.CustomNameInfo"/> class.
</summary>
<param name="name">Name</param>
</member>
<member name="M:FarPoint.Win.Spread.CustomNameInfo.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>.
</summary>
<param name="obj"><see cref="T:System.Object"></see> to compare with the current <see cref="T:System.Object"></see></param>
<returns>
true if the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CustomNameInfo.GetHashCode">
<summary>
Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode"></see> is suitable for use in hashing algorithms and data structures like a hash table.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.CustomNameInfo.SetColor(System.Drawing.Color)">
<summary>
Set the color
</summary>
<param name="color">Color</param>
</member>
<member name="P:FarPoint.Win.Spread.CustomNameInfo.Name">
<summary>
Gets the name.
</summary>
<value>Name</value>
</member>
<member name="P:FarPoint.Win.Spread.CustomNameInfo.Color">
<summary>
Gets the color.
</summary>
<value>Color</value>
</member>
<member name="T:FarPoint.Win.Spread.CustomNameInfoCollection">
<summary>
Represents the collection of custom name information objects.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CustomNameInfoCollection.Item(System.Int32)">
<summary>
Gets the custom name information at the specified index.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DropDownDialog">
<summary>
Represents the drop-down dialog.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.FloatingWindow">
<summary>
Represents a floating, top-most window with a fixed single border.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FloatingWindow._owner">
<summary>
Indicates the control which hold this drop down
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FloatingWindow._location">
<summary>
When dialog isn't displayed, we need keep its location.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FloatingWindow._size">
<summary>
When dialog isn't displayed, we need keep its size.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FloatingWindow.#ctor(System.Windows.Forms.Control)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.FloatingWindow"/> class.
</summary>
<param name="owner">Owner control</param>
</member>
<member name="M:FarPoint.Win.Spread.FloatingWindow.Show">
<summary>
Show the dropdown window.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FloatingWindow.AdjustLocation(System.Drawing.Point)">
<summary>
Adjusts the location.
</summary>
<param name="locationOnScreen">Location point on the screen</param>
</member>
<member name="M:FarPoint.Win.Spread.FloatingWindow.Show(System.Boolean)">
<summary>
Shows the native window.
</summary>
<param name="update">Whether to update the window immediately</param>
</member>
<member name="M:FarPoint.Win.Spread.FloatingWindow.Hide">
<summary>
Hides the native window.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FloatingWindow.ChangeLocation(System.Drawing.Point)">
<summary>
Changes the location.
</summary>
<param name="p">Location point</param>
</member>
<member name="M:FarPoint.Win.Spread.FloatingWindow.Dispose(System.Boolean)">
<summary>
Disposes of the resources (other than memory) used by the <see cref="T:System.Windows.Forms.Form"></see>.
</summary>
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
</member>
<member name="P:FarPoint.Win.Spread.FloatingWindow.Owner">
<summary>
Gets or sets the form that owns this form.
</summary>
<value></value>
<returns>A <see cref="T:System.Windows.Forms.Form"></see> that represents the form that is the owner of this form.</returns>
<exception cref="T:System.Exception">A top-level window cannot have an owner. </exception>
<PermissionSet><IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/><IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/><IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence"/><IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/></PermissionSet>
</member>
<member name="P:FarPoint.Win.Spread.FloatingWindow.CreateParams">
<summary>
Gets the create params.
</summary>
<value>Parameters</value>
</member>
<member name="P:FarPoint.Win.Spread.FloatingWindow.Location">
<summary>
Gets or sets the dialog location which is based on screen.
</summary>
<value>
A <see cref="T:System.Drawing.Point"/> value indicates the location of the dialog. Which based on the
coordinate of screen.
</value>
</member>
<member name="P:FarPoint.Win.Spread.FloatingWindow.Size">
<summary>
Gets or sets the dialog size.
</summary>
<value>
A <see cref="T:System.Drawing.Size"/> value indicates the size of the dialog.
</value>
</member>
<member name="M:FarPoint.Win.Spread.DropDownDialog.#cctor">
<summary>
Initializes the <see cref="T:FarPoint.Win.Spread.DropDownDialog"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DropDownDialog.#ctor(System.Windows.Forms.Control,System.Collections.Specialized.StringCollection,FarPoint.Win.Spread.IntellisenseCollection,FarPoint.Win.Spread.IntellisenseCollection)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.DropDownDialog"/> class.
</summary>
<param name="owner">Owner control</param>
<param name="customNames">Custom Names</param>
<param name="customFunctionNames">Custom function names</param>
<param name="definedFunctionNames">Defined function names</param>
</member>
<member name="M:FarPoint.Win.Spread.DropDownDialog.ChangeLocation(System.Drawing.Point)">
<summary>
Changes the location.
</summary>
<param name="p">Location point</param>
</member>
<member name="M:FarPoint.Win.Spread.DropDownDialog.ShowDescription">
<summary>
Shows the description.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DropDownDialog.Show">
<summary>
Shows the drop-down window.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DropDownDialog.Hide">
<summary>
Hides the native window.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DropDownDialog.DispatchMessageToListBox(System.Windows.Forms.Message)">
<summary>
Dispatches the message to list box.
</summary>
<param name="m">Message</param>
</member>
<member name="M:FarPoint.Win.Spread.DropDownDialog.OnGotFocus(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.GotFocus"></see> event.
</summary>
<param name="e"><see cref="T:System.EventArgs"></see> that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.DropDownDialog.WndProc(System.Windows.Forms.Message@)">
<summary>
The window procedure that handles the messages.
</summary>
<param name="m">Window message received</param>
</member>
<member name="M:FarPoint.Win.Spread.DropDownDialog.Dispose(System.Boolean)">
<summary>
Disposes of the resources (other than memory) used by the <see cref="T:System.Windows.Forms.Form"></see>.
</summary>
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources</param>
</member>
<member name="M:FarPoint.Win.Spread.DropDownDialog.AdjustLocation(System.Drawing.Point)">
<summary>
Adjusts the location.
</summary>
<param name="location">Location point</param>
</member>
<member name="M:FarPoint.Win.Spread.DropDownDialog.OnIntellisense(FarPoint.Win.Spread.IntellisenseInfo)">
<summary>
Called when [intellisense].
</summary>
<param name="info">Intellisense information</param>
</member>
<member name="M:FarPoint.Win.Spread.DropDownDialog.InitializeComponent">
<summary>
Initializes the component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DropDownDialog.DisposeListBox">
<summary>
Disposes the list box.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DropDownDialog.ListBox_KeyUp(System.Object,System.Windows.Forms.KeyEventArgs)">
<summary>
Handles the KeyUp event of the ListBox control.
</summary>
<param name="sender">Source of the event</param>
<param name="e"><see cref="T:System.Windows.Forms.KeyEventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.DropDownDialog.ListBox_Click(System.Object,System.EventArgs)">
<summary>
Handles the Click event of the ListBox control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.DropDownDialog.ListBox_DoubleClick(System.Object,System.EventArgs)">
<summary>
Handles the DoubleClick event of the ListBox control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.DropDownDialog.ListBox_ScrollBarsChanged(System.Object,System.EventArgs)">
<summary>
Handles the ScrollBarsChanged event of the _listBox control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.DropDownDialog.RefreshAutoCompleteList">
<summary>
Fills the items to list box.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DropDownDialog.AdjustFormSize">
<summary>
Adjusts the size of the form.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.DropDownDialog.Intellisense">
<summary>
Intellisense event handler
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DropDownDialog.CustomNames">
<summary>
Sets the custom names.
</summary>
<value>Custom names</value>
</member>
<member name="P:FarPoint.Win.Spread.DropDownDialog.CustomFunctionNames">
<summary>
Sets the custom function names.
</summary>
<value>Custom function names</value>
</member>
<member name="P:FarPoint.Win.Spread.DropDownDialog.DefinedFunctionNames">
<summary>
Sets the defined function names.
</summary>
<value>Defined function names</value>
</member>
<member name="T:FarPoint.Win.Spread.DropDownDialog.IntellisenseInfoComparer">
<summary>
The IntellisenseInfoComparer Class
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DropDownDialog.IntellisenseInfoComparer.Compare(System.Object,System.Object)">
<summary>
Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.
</summary>
<param name="x">First object to compare</param>
<param name="y">Second object to compare</param>
<returns>
Value Condition Less than zero x is less than y. Zero x equals y. Greater than zero x is greater than y.
</returns>
<exception cref="T:System.ArgumentException">Neither x nor y implements the <see cref="T:System.IComparable"></see> interface.-or- x and y are of different types and neither one can handle comparisons with the other. </exception>
</member>
<member name="T:FarPoint.Win.Spread.AutoCompleteListBox">
<summary>
Represents the automatic completion list box.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.AutoCompleteListBox.EVENT_SCROLLBARSCHANGED">
<summary>
Key for evnet
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AutoCompleteListBox.#cctor">
<summary>
Initializes the <see cref="T:FarPoint.Win.Spread.AutoCompleteListBox"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AutoCompleteListBox.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.AutoCompleteListBox"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AutoCompleteListBox.OnSelectedIndexChanged(System.EventArgs)">
<summary>
</summary>
<param name="e">Event object with the details</param>
</member>
<member name="M:FarPoint.Win.Spread.AutoCompleteListBox.OnDrawItem(System.Windows.Forms.DrawItemEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.ListBox.DrawItem"></see> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.DrawItemEventArgs"></see> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.AutoCompleteListBox.Dispose(System.Boolean)">
<summary>
Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.Control"></see> and its child controls and optionally releases the managed resources.
</summary>
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
</member>
<member name="M:FarPoint.Win.Spread.AutoCompleteListBox.WndProc(System.Windows.Forms.Message@)">
<summary>
Invokes the default window procedure associated with this window.
</summary>
<param name="m"><see cref="T:System.Windows.Forms.Message"></see> that is associated with the current Windows message</param>
</member>
<member name="M:FarPoint.Win.Spread.AutoCompleteListBox.OnScrollBarsChanged">
<summary>
Called when [scroll bars changed].
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AutoCompleteListBox.OnBeforeScrollBarsChanging">
<summary>
Called when [before scroll bars changing].
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AutoCompleteListBox.HideDescription">
<summary>
Hides the description.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AutoCompleteListBox.ShowDescription">
<summary>
Shows the description.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.AutoCompleteListBox.ScrollBarsChanged">
<summary>
Occurs when the position of the scroll bars is changed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.AutoCompleteListBox.BeforeScrollBarsChanging">
<summary>
Occurs when the position of the scroll bars starts changing.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.IntellisenseRichTextBox">
<summary>
Represents a rich text box with a transparent background color.
</summary>
<remarks>
We have two problems with IntellisenseRichTextBox:
(1) HyperlinkRichTextBox:
RichTextBox in .NET 2.0 just supports directly hyperlink which show text as hyperlink. In order to show a text for
hyperlink, we need to hack RichTextBox with CHARFORMAT2_STRUCT. However, it's the reason when the RichTextBox is
re-drawn automatically, we will lost the CHARFORMAT. To solve this problem, we need to re-create intellisense
expression when it's necessary.
(2) Transparent RichTextBox:
RichTextBox in .NET 2.0 also doesn't support transparent background. So, we change Extented Style of this control
in CreateParams to support transparent background (WS_EX_TRANSPARENT). One more problem is when we re-draw the
IntellisenseRichTextBox, the font will be more bold (in actually, i don't know why :( ).
Forturnately, i found a solution for this problem. It conerns to WM_SHOWWINDOW message. When IntellisenseRichTextBox
receive this message, we will re-set its font by send WM_SETFONT message. The problem will be solved.
In summary, IntellisenseRichTextBox has not a good design. It's because of MS derived it from an old version of
RichTextBox control (version 2.0). In future, i think we can re-design this class by two following choices:
- Using Windowless Edit control: it's the best because it can work with RichTextBox version 2.0
- Derive from higher version of RichTextBox (it will causes deployment in Windows version such as Windows 2000..).
Of course, we will also solve some problems about compatible ability. See the following reference snippet code:
</remarks>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseRichTextBox.#ctor(FarPoint.Win.Spread.FormulaTextBox)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.IntellisenseRichTextBox"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseRichTextBox.InsertLink(System.String)">
<summary>
Inserts a given text as a link into the RichTextBox at the current insert position.
</summary>
<param name="text">Text to be inserted</param>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseRichTextBox.InsertLink(System.String,System.Int32)">
<summary>
Inserts a given text at a given position as a link.
</summary>
<param name="text">Text to be inserted</param>
<param name="position">Insert position</param>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseRichTextBox.InsertLink(System.String,System.String)">
<summary>
Inserts a given text at at the current input position as a link.
The link text is followed by a hash (#) and the given hyperlink text, both of
them invisible.
When clicked on, the whole link text and hyperlink string are given in the
LinkClickedEventArgs.
</summary>
<param name="text">Text to be inserted</param>
<param name="hyperlink">Invisible hyperlink string to be inserted</param>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseRichTextBox.InsertLink(System.String,System.String,System.Int32)">
<summary>
Inserts a given text at a given position as a link. The link text is followed by
a hash (#) and the given hyperlink text, both of them invisible.
When clicked on, the whole link text and hyperlink string are given in the
LinkClickedEventArgs.
</summary>
<param name="text">Text to be inserted</param>
<param name="hyperlink">Invisible hyperlink string to be inserted</param>
<param name="position">Insert position</param>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseRichTextBox.SetSelectionLink(System.Boolean)">
<summary>
Sets the current selection's link style
</summary>
<param name="link">true: set link style, false: clear link style</param>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseRichTextBox.GetSelectionLink">
<summary>
Gets the link style for the current selection
</summary>
<returns>0: link style not set, 1: link style set, -1: mixed</returns>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseRichTextBox.SetSelectionStyle(System.UInt32,System.UInt32)">
<summary>
Sets the selection style.
</summary>
<param name="mask">Mask</param>
<param name="effect">Effect</param>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseRichTextBox.GetSelectionStyle(System.UInt32,System.UInt32)">
<summary>
Gets the selection style.
</summary>
<param name="mask">Mask</param>
<param name="effect">Effect</param>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseRichTextBox.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.MouseDown"></see> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"></see> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseRichTextBox.Dispose(System.Boolean)">
<summary>
Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.Control"></see> and its child controls and optionally releases the managed resources.
</summary>
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseRichTextBox.WndProc(System.Windows.Forms.Message@)">
<summary>
Invokes the default window procedure associated with this window.
</summary>
<param name="m"><see cref="T:System.Windows.Forms.Message"></see> that is associated with the current Windows message</param>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseRichTextBox.BeginUpdate">
<summary>
Begins the update.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseRichTextBox.EndUpdate">
<summary>
Ends the update.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseRichTextBox.GetIntellisense(FarPoint.CalcEngine.FunctionInfo,System.Int32)">
<summary>
Gets the Intellisense information.
</summary>
<param name="functionInfo">Function information</param>
<param name="totalArgument">Total number of arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseRichTextBox.ShowIntellisense(FarPoint.CalcEngine.FunctionInfo,System.Int32)">
<summary>
Shows the intellisense.
</summary>
<param name="functionInfo">Function information</param>
<param name="totalArgument">Total number of arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseRichTextBox.ShowIntellisense">
<summary>
Shows the intellisense.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.IntellisenseRichTextBox.CreateParams">
<summary>
Gets the create params.
</summary>
<value>Parameters</value>
</member>
<member name="T:FarPoint.Win.Spread.IntellisenseWindow">
<summary>
Represents an Intellisense drop-down window.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseWindow.#ctor(FarPoint.Win.Spread.FormulaTextBox,FarPoint.CalcEngine.FunctionInfo)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.IntellisenseWindow"/> class.
</summary>
<param name="owner">Owner editor</param>
<param name="funcInfo">Function information</param>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseWindow.UpdateRichTextBox">
<summary>
Updates the rich text box.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseWindow.Show">
<summary>
Show the dropdown window.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseWindow.OnPaint(System.Windows.Forms.PaintEventArgs)">
<summary>
Raises the <see cref="E:Paint"/> event.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.PaintEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseWindow.WndProc(System.Windows.Forms.Message@)">
<summary>
Determines the window procedure.
</summary>
<param name="m">Message</param>
</member>
<member name="P:FarPoint.Win.Spread.IntellisenseWindow.RichTextBox">
<summary>
Gets the rich text box.
</summary>
<value>Rich text box</value>
</member>
<member name="P:FarPoint.Win.Spread.IntellisenseWindow.StartFunctionIndex">
<summary>
Gets or sets the start index of the function.
</summary>
<value>Start index of the function</value>
</member>
<member name="P:FarPoint.Win.Spread.IntellisenseWindow.Function">
<summary>
Sets the function.
</summary>
<value>Function</value>
</member>
<member name="P:FarPoint.Win.Spread.IntellisenseWindow.CreateParams">
<summary>
Gets the create params.
</summary>
<value>Parameters</value>
</member>
<member name="T:FarPoint.Win.Spread.FunctionDescriptionWindow">
<summary>
Represents a function description window.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FunctionDescriptionWindow.#ctor(System.Windows.Forms.Control)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.FunctionDescriptionWindow"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FunctionDescriptionWindow.OnPaint(System.Windows.Forms.PaintEventArgs)">
<summary>
Raises the <see cref="E:Paint"/> event.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.PaintEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.FunctionDescriptionWindow.WndProc(System.Windows.Forms.Message@)">
<summary>
Determines the window procedure.
</summary>
<param name="m">Message</param>
</member>
<member name="M:FarPoint.Win.Spread.FunctionDescriptionWindow.Show(System.Drawing.Point)">
<summary>
Shows the specified point on the screen.
</summary>
<param name="p">Point</param>
</member>
<member name="P:FarPoint.Win.Spread.FunctionDescriptionWindow.CreateParams">
<summary>
Gets the create params.
</summary>
<value>Parameters</value>
</member>
<member name="P:FarPoint.Win.Spread.FunctionDescriptionWindow.Description">
<summary>
Gets or sets the description.
</summary>
<value>Description</value>
</member>
<member name="T:FarPoint.Win.Spread.FormulaTextBoxHelper">
<summary>
Represents a formula editor helper.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBoxHelper.SB_THUMBTRACK">
The user is dragging the scroll box. This message is sent repeatedly until the user releases the mouse button.
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBoxHelper.SB_THUMBPOSITION">
<summary>
The user has dragged the scroll box (thumb) and released the mouse button.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBoxHelper.CompareNumberCharacters(System.String,System.Char,System.Char)">
<summary>
Compares the numbers of two characters in a string to see if they are equal.
</summary>
<param name="s">String</param>
<param name="c1">Number of occurrences of first character in the string</param>
<param name="c2">Number of occurrences of second character in the string</param>
<returns>Difference between the numbers</returns>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBoxHelper.LoWord(System.IntPtr)">
<summary>
Does the lo word.
</summary>
<param name="intPtrValue">Pointer value</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBoxHelper.HiWord(System.IntPtr)">
<summary>
Does the hi word.
</summary>
<param name="intPtrValue">Pointer value</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBoxHelper.GetLine(System.Windows.Forms.RichTextBox,System.Int32)">
<summary>
Gets the line from the specified rich text box.
</summary>
<param name="e">Rich text box</param>
<param name="index">Index</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBoxHelper.GetColumn(System.Windows.Forms.RichTextBox,System.Int32)">
<summary>
Gets the column from the specified rich text box.
</summary>
<param name="e">Rich text box</param>
<param name="index">Index</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBoxHelper.GetCurrentCharPosition(System.Windows.Forms.Control)">
<summary>
Gets the current character position in the control.
</summary>
<param name="ctrl">Control</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBoxHelper.ShowWindow(System.IntPtr,System.UInt32)">
<summary>
The ShowWindow Function.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBoxHelper.UpdateWindow(System.IntPtr)">
<summary>
The UpdateWindow Function.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBoxHelper.GetCaretPos(System.Drawing.Point@)">
<summary>
Gets the caret position.
</summary>
<param name="lpPoint">Point</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBoxHelper.GetCorrection(System.Windows.Forms.RichTextBox,System.Int32)">
<summary>
Gets the correction.
</summary>
<param name="e">Rich text box</param>
<param name="index">Index</param>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBoxHelper.DropShadowSupported">
<summary>
Gets whether [drop shadow supported].
</summary>
<value><c>true</c> if [drop shadow supported]; otherwise, <c>false</c></value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBoxHelper.IsWindowsXPOrAbove">
<summary>
Gets a value indicating whether this instance is windows XP or above.
</summary>
<value>
<c>true</c> if this instance is windows XP or above; otherwise, <c>false</c>.
</value>
</member>
<member name="T:FarPoint.Win.Spread.FormulaTextBoxSubClasses">
<summary>
Represents a formual editor sub-class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBoxSubClasses.#ctor(System.IntPtr,FarPoint.Win.Spread.FormulaTextBox)">
<summary>
Creates a new instance of the FormulaTextBoxSubClasses object and starts checking for Activate state changes
</summary>
<param name="handle">Handle of window to check for Activation State changes</param>
<param name="handler">Handler</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBoxSubClasses.WndProc(System.Windows.Forms.Message@)">
<summary>
Invokes the default window procedure associated with this window.
</summary>
<param name="m"><see cref="T:System.Windows.Forms.Message"></see> that is associated with the current Windows message</param>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBoxSubClasses.AssociatedHandle">
<summary>
Gets the associated handle with this window.
</summary>
<value>associated handle</value>
</member>
<member name="T:FarPoint.Win.Spread.FormulaTextBox">
<summary>
Represents the floating formula editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.#ctor">
<summary>
Creates a new floating formula editor bar.
</summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.FormulaTextBox"/> class.
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.Finalize">
<summary>
The destructor method.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.#cctor">
<summary>
Initializes the <see cref="T:FarPoint.Win.Spread.FormulaTextBox"/> class.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._isInputingEditor">
<summary>
= true if got the focus and input some thing.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._subClasser">
<summary>
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._needShowAutoCompleteWindow">
<summary>
Indicates that we need show auto complete window after the window has been actived.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._oldAutoCompleteWindowLocation">
<summary>
Indicates the last location of auto complete window before the window has been hided.
This value contains only relative window but not absolute window position.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._needShowIntellisenseWindow">
<summary>
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._oldIntellisenseWindowLocation">
<summary>
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._enableIntellisense">
<summary>
Indicates whether we use intellisense feature
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox.EVENT_QUERYCUSTOMFUNCTIONNAMES">
<summary>
Key for QueryCustomFunctionNames event
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox.EVENT_QUERYCUSTOMNAMES">
<summary>
Key for QueryCustomNames event
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox.EVENT_FUNCTIONNAMESELECTED">
<summary>
When user click into function name in intellisense window
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox.EVENT_CURSORPOSITIONCHANGED">
<summary>
Key for CursorPositionChanged event
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox.EVENT_FORMULAPARAMETERSCHANGED">
<summary>
Cell-range collection is changed. Need re-draw cell-range rectangles
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox.EVENT_FORMULACHANGED">
<summary>
Formula is changed. Need refresh cell's text
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._state">
<summary>
Indicates the current editing mode of editor
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._frmDropDown">
<summary>
The form contains listbox for auto-complete feature
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._frmIntellisense">
<summary>
The form is used to show function arguments' information.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._colorTable">
<summary>
The color table which is used for highlight color
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._internalSwitchFocus">
<summary>
Indicates that whether we raise begin editing formula event
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._isSelectionSetting">
<summary>
Indicates that don't perform any event because we change it by manual
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._isTextSetting">
<summary>
Performe all logic of OnTextChange but don't call base.OnTextChange
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._ignoreTextChange">
<summary>
Indicates that we will not show auto complete window because text isn't changed by keyboard
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._internalFormulaChange">
<summary>
Indicates that we don't have to hide auto-complete window
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._updateCount">
<summary>
Indicate how many time BeginUpdate function is called
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._eventMask">
<summary>
Event Mask for this RTB
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._focusing">
<summary>
Indicates that we are in OnGotFocus function
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._inputingCellRange">
<summary>
Indicates that user is choosing cell-range. It'll be set to true when InputableCellRange=true and
Input function is called.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._inputingCellRangeCharHashtable">
<summary>
Indicates that at current position, we can select new cell range
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._spread">
<summary>
Indicates the Spread which is attached currently
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox.willHasFocusAgain">
<summary>
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox.suppressSubClassing">
<summary>
Indicatest that whether we don't perform sub-classing function.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBox._autoComplete">
<summary>
Indicates whether to use the AutoCompleteSource of the Spread's active cell
to auto complete editing text.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.SetFormula(FarPoint.Win.Spread.Cell)">
<summary>
Sets the formula.
</summary>
<param name="cell">The cell.</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.ProcessSpecialCellInput">
<summary>
Processes the special cell input.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.IsFormulaString(System.String)">
<summary>
Determines whether [is formula string] [the specified text].
</summary>
<param name="text">Text</param>
<returns>
<c>true</c> if [is formula string] [the specified text]; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.ParseParams(System.String,FarPoint.Win.Spread.FpSpread)">
<summary>
Parses the parameters.
</summary>
<param name="text">Text</param>
<param name="spread">FarPoint Spread</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.HighlightParams(FarPoint.Win.Spread.ParamItem[],System.Boolean)">
<summary>
Highlights the params.
</summary>
<param name="paramItems">Parameter items</param>
<param name="highLight">if set to <c>true</c> [high light]</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox._spread_SelectionChanged(System.Object,FarPoint.Win.Spread.SelectionChangedEventArgs)">
<summary>
When selection is changed, hide autocomplete window
</summary>
<param name="sender">Source of the event</param>
<param name="e"><see cref="T:FarPoint.Win.Spread.SelectionChangedEventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox._spread_EnabledChanged(System.Object,System.EventArgs)">
<summary>
Handles the EnabledChanged event of the _spread control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:FarPoint.Win.Spread.SelectionChangedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.OnFunctionNameSelected(System.EventArgs)">
<summary>
Raises the <see cref="E:FunctionNameSelected"/> event.
</summary>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.ProcessTempAppendingParam(FarPoint.Win.Spread.ParamItem,System.Boolean,System.Boolean)">
<summary>
Processes the temp appending param.
</summary>
<param name="paramItem">Parameter item</param>
<param name="adding">if set to <c>true</c> [adding]</param>
<param name="canClearTempAppending">if set to <c>true</c> [can clear temp appending]</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.ShowAutoComplete">
<summary>
Shows the auto complete.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.ShowAutoComplete(System.Boolean)">
<summary>
Shows the auto complete.
</summary>
<param name="updateWindowLocation">if set to <c>true</c> [update window location]</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.CanShowAutoComplete">
<summary>
Determines whether this instance [can show auto complete].
</summary>
<returns>
<c>true</c> if this instance [can show auto complete]; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.ShouldSerializeColorTable">
<summary>
Determines whether the color table should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.SendKeyToListBox(System.Windows.Forms.Keys)">
<summary>
Sends the key to list box.
</summary>
<param name="keyCode">Key code</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.MatchCustomNameList(System.String)">
<summary>
Matches the auto complete list.
</summary>
<param name="word">Word</param>
<remarks>
This implement is not efficient. I'll replace it by finding though index.
</remarks>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.MatchCustomFunctionNameList(System.String)">
<summary>
Matches the custom functionname list.
</summary>
<param name="word">Word</param>
<remarks>
This implement is not efficient. I'll replace it by finding though index.
</remarks>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.MatchDefinedFunctionNameList(System.String)">
<summary>
Matches the defined function name list.
</summary>
<param name="word">Word</param>
<remarks>
This implement is not efficient. I'll replace it by finding though index.
</remarks>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.IsSpecialWordChar(System.Char)">
<summary>
Determines whether [is special word char] [the specified c].
</summary>
<param name="c">The c.</param>
<returns>
<c>true</c> if [is special word char] [the specified c]; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.GetWordBefore(System.String,System.Int32,System.Int32@)">
<summary>
Gets the word before a specified position from a string.
</summary>
<param name="s">String</param>
<param name="position">Position</param>
<param name="i">Integer</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.GetWordBefore(System.String,System.Int32)">
<summary>
Gets the word before.
</summary>
<param name="s">String</param>
<param name="position">Position</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.ReplaceWordBefore(System.String)">
<summary>
Replaces the word before.
</summary>
<param name="replace">String</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.SaveUndo">
<summary>
Saves the undo.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.Undo">
<summary>
Undoes the last edit operation in the text box.
</summary>
<PermissionSet><IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/><IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/><IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence"/><IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/></PermissionSet>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.OnCursorPositionChanged(System.EventArgs)">
<summary>
Raises the <see cref="E:CursorPositionChanged"/> event.
</summary>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.GetTotalArgumentsOfCurrentFunction(System.Int32)">
<summary>
Gets the total arguments of current function.
</summary>
<param name="startFuncIndex">Start index of the function</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.GetTotalArgumentsOfCurrentFunction(System.Int32,System.Int32,System.Boolean)">
<summary>
Gets the total arguments of current function.
</summary>
<param name="startFuncIndex">Start index of the function</param>
<param name="argIndex">Index of the argument</param>
<param name="selecting">if set to <c>true</c> [selecting]</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.SelectArgument(System.String,System.Int32,System.Int32,System.Int32)">
<summary>
Selects the argument.
</summary>
<param name="s">String</param>
<param name="length">Integer length</param>
<param name="i">Integer counter</param>
<param name="opening">Integer opening</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.InitializeComponent">
<summary>
Initializes the component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.HideIntellisense">
<summary>
Hides the intellisense.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.ShowIntellisense">
<summary>
Shows the intellisense.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.ShowAutoComplete(System.String,System.Boolean)">
<summary>
Shows the drop down dialog.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.AutoCompleteFromDropDown(System.Object,FarPoint.Win.Spread.IntellisenseEventArgs)">
<summary>
Handles the automatic completiton from a drop-down list.
</summary>
<param name="sender">Source of the event</param>
<param name="e"><see cref="T:FarPoint.Win.Spread.IntellisenseEventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.UpdateAutoCompleteDropDownLocation">
<summary>
Updates the auto complete drop down location.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.AttachSubClass">
<summary>
Attaches the sub class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.GetDefinedFunctionNames">
<summary>
Gets the defined function names.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.UpdateCustomFunctionNames">
<summary>
Updates the custom function names.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.UpdateCustomNames">
<summary>
Updates the custom names.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.UpdateAutoCompleteDropDownLocation(System.Int32,System.Int32,System.Boolean)">
<summary>
Updates the automatic completion drop-down location.
</summary>
<param name="xPos">X position</param>
<param name="yPos">Y position</param>
<param name="resetLocation">Whether to reset the location</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.OnActivateChanged(FarPoint.Win.Spread.ActivationStateChangeType)">
<summary>
Notifies of an Activation state change in the window
</summary>
<param name="changeType">Type of activation change</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.spread_Disposed(System.Object,System.EventArgs)">
<summary>
Handles the Disposed event of the spread control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.AppendAutoCompleteString(System.Windows.Forms.KeyPressEventArgs)">
<summary>
Auto complete the string with the best match
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.CorrectAutoAppendedText">
<summary>
Corrects the auto appended text.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.AdjustCellRange(System.Windows.Forms.Keys,FarPoint.Win.Spread.Model.CellRange,System.Boolean)">
<summary>
Adjusts the cell range.
</summary>
<param name="direction">The direction.</param>
<param name="cellRange">The cell range.</param>
<param name="resize">if set to <c>true</c> [resize].</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.AdjustAppendingCell(System.Windows.Forms.Keys,System.Boolean)">
<summary>
Adjusts the appending cell.
</summary>
<param name="direction">The direction.</param>
<param name="resize">if set to <c>true</c> [resize].</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.OnLayout(System.Windows.Forms.LayoutEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.Layout"/> event.
</summary>
<param name="levent">A <see cref="T:System.Windows.Forms.LayoutEventArgs"/> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.OnClick(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.Click"></see> event.
</summary>
<param name="e">An <see cref="T:System.EventArgs"></see> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.WndProc(System.Windows.Forms.Message@)">
<summary>
Handles windows messages
</summary>
<param name="m">The message</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.OnLostFocus(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.LostFocus"></see> event.
</summary>
<param name="e">An <see cref="T:System.EventArgs"></see> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.OnGotFocus(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.GotFocus"></see> event.
</summary>
<param name="e">An <see cref="T:System.EventArgs"></see> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.OnEnter(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.Enter"></see> event.
</summary>
<param name="e">An <see cref="T:System.EventArgs"></see> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.IsInputKey(System.Windows.Forms.Keys)">
<summary>
Determines whether the specified key is an input key or a special key that requires preprocessing.
</summary>
<param name="keyData">One of the Keys value.</param>
<returns>
true if the specified key is an input key; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.KeyDown"></see> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs"></see> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.KeyPress"></see> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.KeyPressEventArgs"></see> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.OnTextChanged(System.EventArgs)">
<summary>
Raises the <see cref="E:TextChanged"/> event.
</summary>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.Dispose(System.Boolean)">
<summary>
Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.TextBox"></see> and optionally releases the managed resources.
</summary>
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.OnSelectionChanged(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.RichTextBox.SelectionChanged"></see> event.
</summary>
<param name="e">An <see cref="T:System.EventArgs"></see> that contains the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.SetText(System.String)">
<summary>
Sets the text. It'll do the following things:
+ Set Text to formula editor
+ Don't fire FormulaChanged event
+ Force FormulaTextBox to highlight color
</summary>
<param name="text">Text string</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.StopInputingCellRange">
<summary>
Stops the inputing cell range.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.ReplaceCellRange(FarPoint.Win.Spread.ParamItem,FarPoint.Win.Spread.Model.CellRange)">
<summary>
Replaces the cell range.
</summary>
<param name="paramItem">Parameter item</param>
<param name="cellRange">Cell range</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.IsAppendingParam(FarPoint.Win.Spread.ParamItem)">
<summary>
Determines whether [is appending param] [the specified param item].
</summary>
<param name="paramItem">Parameter item</param>
<returns>
<c>true</c> if [is appending param] [the specified param item]; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.ConfirmAppendingParam">
<summary>
Confirms the appending parameter.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.Input(FarPoint.Win.Spread.ParamItem,System.Boolean,System.Boolean)">
<summary>
Inputs the specified cell range address.
</summary>
<param name="paramItem">Parameter item</param>
<param name="adding">Whether adding</param>
<param name="canClearTempAppending">Whether can clear temporary appending</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.SelectArgument(System.Int32)">
<summary>
Selects the argument.
</summary>
<param name="argIndex">Index of the argument</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.BeginUpdate">
<summary>
Begins the update.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.EndUpdate">
<summary>
Ends the update.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.HideAutoComplete">
<summary>
Hides the auto complete.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.ShowIntellisenseWindowIfNecessary">
<summary>
Shows the intellisense window if necessary.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.InternalFocus">
<summary>
Move focus to Formula Input Editor but don't raise BeginEditingFormula event
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.OnFormulaParametersChanged">
<summary>
Called when [formula cell ranges changed].
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.OnFormulaChanged">
<summary>
Called when [formula changed].
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.ShowCompleteDropDownDialog(System.Boolean)">
<summary>
Shows the automatic completion drop-down dialog.
</summary>
<param name="show">if set to <c>true</c> [show]</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.GetParamColor(System.Int32)">
<summary>
Gets the color of the parameter.
</summary>
<param name="index">Index of the parameter</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.Attach(FarPoint.Win.Spread.FpSpread)">
<summary>
Attaches the specified FarPoint Spread component to the formula text box.
</summary>
<param name="spread">FarPoint Spread component</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTextBox.Detach">
<summary>
Detaches the FarPoint Spread component from the formula text box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.ShouldHighlightParams">
<summary>
Gets whether [should highlight params].
</summary>
<value>
<c>true</c> if [should highlight params]; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.ShouldShowAutoComplete">
<summary>
Gets whether [should show auto complete].
</summary>
<value>
<c>true</c> if [should show auto complete]; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.CurrentColumn">
<summary>
Gets the current column.
</summary>
<value>Current column</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.CurrentRow">
<summary>
Gets the current row.
</summary>
<value>Current row</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.IsDropped">
<summary>
Gets whether the auto-complete drop-down is dropped.
</summary>
<value>
<c>true</c> if the auto-complete drop down is dropped; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.IsIntellisensed">
<summary>
Gets whether this instance is Intellisensed.
</summary>
<value>
<c>true</c> if this instance is intellisensed; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.CustomNames">
<summary>
Gets the custom names.
</summary>
<value>Custom names</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.CustomFunctionNames">
<summary>
Gets the custom function names.
</summary>
<value>Custom function names</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.State">
<summary>
Gets the current editing mode of editor
</summary>
<value>State of editor</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.InputableCellRange">
<summary>
Gets whether [inputable cell range].
</summary>
<value><c>true</c> if [inputable cell range]; otherwise, <c>false</c></value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.IsInputingEditor">
<summary>
Gets or sets whether this instance is inputing editor.
</summary>
<value>
<c>true</c> if this instance is inputing editor; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.IsFormulaValue">
<summary>
I don't know why we need this property. Just add because SpreadView expose it.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.CurrentPosition">
<summary>
Gets the current position.
</summary>
<value>Current position</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.SelectionEnd">
<summary>
Gets the selection end.
</summary>
<value>Selection end</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.Spread">
<summary>
Gets or sets the FarPoint Spread.
</summary>
<value>FarPoint Spread</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.ShouldHighlightParenthesis">
<summary>
Gets whether [should highlight parenthesis].
</summary>
<value>
<c>true</c> if [should highlight parenthesis]; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.Focusing">
<summary>
Gets whether this <see cref="T:FarPoint.Win.Spread.FormulaTextBox"/> is focusing.
</summary>
<value><c>true</c> if focusing; otherwise, <c>false</c></value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.DefinedFunctionNames">
<summary>
Gets the defined function names.
</summary>
<value>Defined function names</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.TempChosenCellRange">
<summary>
Gets or sets the temporary choosen cell range.
</summary>
<value>Temporary choosen cell range</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.ParamsItems">
<summary>
Gets the params items.
</summary>
<value>Parameter items</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.ShouldProcessCellInput">
<summary>
Gets whether [should process cell input].
</summary>
<value>
<c>true</c> if [should process cell input]; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.ColorTable">
<summary>
Gets or sets the color table which is used to highlight color arguments in the
formula text box and to draw a cell range rectangle in the component.
</summary>
<value>Color table</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.Text">
<summary>
Gets or sets the current text in the formula text box.
</summary>
<returns>Text displayed in the control</returns>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.AutoComplete">
<summary>
Gets or sets whether to allow the automatic completion of text in the formula text box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.IsAppending">
<summary>
Gets whether this instance is appending.
</summary>
<value>
<c>true</c> if this instance is appending; otherwise, <c>false</c>.
</value>
</member>
<member name="E:FarPoint.Win.Spread.FormulaTextBox.FormulaParametersChanged">
<summary>
Raises when editor change formula
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FormulaTextBox.FormulaChanged">
<summary>
Raised when the formula is changed. This is different from TextChanged since if
the text is changed manually, the FormulaChanged event is not raised.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FormulaTextBox.CursorPositionChanged">
<summary>
Raises when user move the cursor caret
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FormulaTextBox.FunctionNameSelected">
<summary>
Raises when user click into function name of intellisense window
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.Multiline">
<summary>
Internal use only.
Gets or sets whether multiple lines are allowed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.AcceptsTab">
<summary>
Internal use only.
Gets or sets whether tabs are accepted.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.AllowDrop">
<summary>
Internal use only.
Gets or sets whether to allow drag-drops.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.AutoScrollOffset">
<summary>
Internal use only.
Gets or sets the auto scroll offset.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.AutoWordSelection">
<summary>
Internal use only.
Gets or sets whether to auto select words.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.BindingContext">
<summary>
Internal use only.
Gets or sets the binding context.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.BulletIndent">
<summary>
Internal use only.
Gets or sets the bullet indent.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.CanFocus">
<summary>
Internal use only.
Gets or sets whether the user can set focus to the cell using the keyboard or mouse.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.Capture">
<summary>
Internal use only.
Gets or sets whether capture.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.CausesValidation">
<summary>
Internal use only.
Gets whether causes validation.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.ContextMenu">
<summary>
Internal use only.
Gets or sets the context menu.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.ContextMenuStrip">
<summary>
Internal use only.
Gets or sets the context menu strip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.DataBindings">
<summary>
Internal use only.
Gets or sets .
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.DetectUrls">
<summary>
Internal use only.
Gets whether it detects URLs.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.EnableAutoDragDrop">
<summary>
Internal use only.
Gets whether auto drag-drop is enabled.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.HideSelection">
<summary>
Internal use only.
Gets whether to hide the selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.Lines">
<summary>
Internal use only.
Gets the lines.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.Modified">
<summary>
Internal use only.
Gets or sets whether modified.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.Rtf">
<summary>
Internal use only.
Gets RTF string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.SelectedRtf">
<summary>
Internal use only.
Gets selected RTF string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.SelectedText">
<summary>
Internal use only.
Gets or sets the selected text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.SelectionAlignment">
<summary>
Internal use only.
Gets the alignment of the selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.SelectionBackColor">
<summary>
Internal use only.
Gets the background color of the selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.SelectionBullet">
<summary>
Internal use only.
Gets the bullet for the selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.SelectionCharOffset">
<summary>
Internal use only.
Gets the character offset of the selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.SelectionColor">
<summary>
Internal use only.
Gets or sets the color of the selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.SelectionFont">
<summary>
Internal use only.
Gets or sets the font of the selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.SelectionHangingIndent">
<summary>
Internal use only.
Gets the hanging indent of the selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.SelectionIndent">
<summary>
Internal use only.
Gets the indent of the selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.SelectionLength">
<summary>
Internal use only.
Gets or sets the length of the selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.SelectionProtected">
<summary>
Internal use only.
Gets or sets whether the selection is protected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.SelectionRightIndent">
<summary>
Internal use only.
Gets the right indent of the selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.SelectionStart">
<summary>
Internal use only.
Gets or sets the start of the selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.SelectionTabs">
<summary>
Internal use only.
Gets the tabs of the selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.ShortcutsEnabled">
<summary>
Internal use only.
Gets or sets whether the shortcut keys are enabled.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaTextBox.ZoomFactor">
<summary>
Internal use only.
Gets the numeric scaling factor.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.FormulaTextBox.AppendingParamInfo">
<summary>
Example: =a3,a4^
CaretStartLocation == 5
AppendingStartLocation == 3
Example: =a3,^
CaretStartLocation == 3
AppendingStartLocation == 3
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ActivationStateChangeType">
<summary>
Activation state change type.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ActivationStateChangeType.WA_INACTIVE">
<summary>
The form is inactive
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ActivationStateChangeType.WA_ACTIVE">
<summary>
The form is active
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ActivationStateChangeType.WA_CLICKACTIVE">
<summary>
The form has been clicked to make it active
</summary>
</member>
<member name="T:FarPoint.Win.Spread.FormulaTextBoxStates">
<summary>
Indicates the current editing mode of editor.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBoxStates.Formula">
<summary>
Editor acts as a normal textbox but allow entering formular expression
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaTextBoxStates.Normal">
<summary>
Editor acts as normal textbox
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IntellisenseEventArgs.#ctor(FarPoint.Win.Spread.IntellisenseInfo)">
<summary>
Creates a new Intellisense event arguments object.
</summary>
<param name="value">Intellisense information</param>
</member>
<member name="P:FarPoint.Win.Spread.IntellisenseEventArgs.Value">
<summary>
Gets the Intellisense information value.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.AnimatedDefaultFocusIndicatorRenderer">
<summary>
Represents the renderer of the default changing (or animated) focus indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AnimatedDefaultFocusIndicatorRenderer.#cctor">
<summary>
Creates a new renderer for the default changing (or animated) focus indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AnimatedDefaultFocusIndicatorRenderer.#ctor">
<summary>
Creates a new renderer for the default changing (or animated) focus indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AnimatedDefaultFocusIndicatorRenderer.#ctor(System.Int32)">
<summary>
Creates a new renderer for the default changing (or animated) focus indicator
with the specified line thickness.
</summary>
<param name="thickness">Integer number of pixels in the thickness of the indicator line</param>
</member>
<member name="M:FarPoint.Win.Spread.AnimatedDefaultFocusIndicatorRenderer.Paint(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Paints the cell with the default changing (or animated) focus indicator
using the specified control and dimensions.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="left">Whether to paint the left side of the focus indicator</param>
<param name="top">Whether to paint the top of the focus indicator</param>
<param name="right">Whether to paint the right side of the focus indicator</param>
<param name="bottom">Whether to paint the bottom of the focus indicator</param>
</member>
<member name="M:FarPoint.Win.Spread.AnimatedDefaultFocusIndicatorRenderer.ToString">
<summary>
Returns the name of the renderer as a string.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AnimatedDefaultFocusIndicatorRenderer.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.AnimatedDefaultFocusIndicatorRenderer.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
</member>
<member name="P:FarPoint.Win.Spread.AnimatedDefaultFocusIndicatorRenderer.Position">
<summary>
Gets or sets the current step in the multiple-step animation cycle.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AnimatedDefaultFocusIndicatorRenderer.Thickness">
<summary>
Gets or sets the thickness.
</summary>
<value>Number of pixels in the thickness</value>
</member>
<member name="T:FarPoint.Win.Spread.DefaultFocusIndicatorRenderer">
<summary>
Represents the renderer of the default focus indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultFocusIndicatorRenderer.#cctor">
<summary>
Creates a new renderer for the default focus indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultFocusIndicatorRenderer.#ctor">
<summary>
Creates a new renderer for the default focus indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultFocusIndicatorRenderer.#ctor(System.Int32)">
<summary>
Creates a new renderer for the default focus indicator with the specified line thickness.
</summary>
<param name="thickness">Integer number of pixels in the thickness of the indicator line</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultFocusIndicatorRenderer.Paint(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Paints the cell with the default focus indicator using the specified control and dimensions.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="left">Whether to paint the left side of the focus indicator</param>
<param name="top">Whether to paint the top of the focus indicator</param>
<param name="right">Whether to paint the right side of the focus indicator</param>
<param name="bottom">Whether to paint the bottom of the focus indicator</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultFocusIndicatorRenderer.ToString">
<summary>
Returns the name of the renderer as a string.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultFocusIndicatorRenderer.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultFocusIndicatorRenderer.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
</member>
<member name="P:FarPoint.Win.Spread.DefaultFocusIndicatorRenderer.Thickness">
<summary>
Gets or sets the thickness.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SolidFocusIndicatorRenderer">
<summary>
Represents the renderer of the solid focus indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SolidFocusIndicatorRenderer.#ctor">
<summary>
Creates a new renderer of the solid focus indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SolidFocusIndicatorRenderer.#ctor(System.Drawing.Color,System.Int32)">
<summary>
Creates a new renderer of the solid focus indicator with the specified color and thickness.
</summary>
<param name="clr">Color of the focus indicator</param>
<param name="thick">Integer number of pixels in the thickness of the focus indicator</param>
</member>
<member name="M:FarPoint.Win.Spread.SolidFocusIndicatorRenderer.Finalize">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SolidFocusIndicatorRenderer.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.SolidFocusIndicatorRenderer.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
</member>
<member name="M:FarPoint.Win.Spread.SolidFocusIndicatorRenderer.Paint(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Paints the cell with the solid focus indicator using the specified control and dimensions.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="left">Whether to paint the left side of the focus indicator</param>
<param name="top">Whether to paint the top of the focus indicator</param>
<param name="right">Whether to paint the right side of the focus indicator</param>
<param name="bottom">Whether to paint the bottom of the focus indicator</param>
</member>
<member name="M:FarPoint.Win.Spread.SolidFocusIndicatorRenderer.ToString">
<summary>
Returns the name of the renderer as a string.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SolidFocusIndicatorRenderer.Dispose(System.Boolean)">
<summary>
Cleans up any resources being used.
</summary>
<param name="disposing">
Whether the object is disposed through the IDisposable interface (true)
or finalized by the garbage collector (false)
</param>
</member>
<member name="M:FarPoint.Win.Spread.SolidFocusIndicatorRenderer.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SolidFocusIndicatorRenderer.Thickness">
<summary>
Gets or sets the thickness of the solid focus indicator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SolidFocusIndicatorRenderer.Color">
<summary>
Gets or sets the color of the solid focus indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SolidFocusIndicatorRendererConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns a value indicating whether a solid focus indicator object can be converted to the specified type.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="destinationType">Type</param>
<returns>True if a border object can be converted to the specified type, and false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SolidFocusIndicatorRendererConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the focus indicator object to a string.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">object</param>
<param name="destinationType">Type</param>
<returns>String representation of a border object.</returns>
</member>
<member name="T:FarPoint.Win.Spread.EnhancedFocusIndicatorRenderer">
<summary>
Represents the renderer for drawing the border around the active cell (that has focus).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedFocusIndicatorRenderer.#ctor">
<summary>
Creates a new renderer for drawing the border around the active cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedFocusIndicatorRenderer.#ctor(System.Int32)">
<summary>
Creates a new renderer for drawing the border, with the specified thickness, around the active cell.
</summary>
<param name="thickness">Thickness in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedFocusIndicatorRenderer.Clone">
<summary>
Creates and returns a copy of the picture.
</summary>
<returns>Copy of the picture</returns>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedFocusIndicatorRenderer.#ctor(System.Object)">
<summary>
Creates a custom focus indicator by copying another.
</summary>
<param name="cloneFrom">Object from which to copy or clone this picture</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedFocusIndicatorRenderer.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedFocusIndicatorRenderer.Paint(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Paints the cell with the default focus indicator using the specified control and dimensions.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="left">Whether to paint the left side of the focus indicator</param>
<param name="top">Whether to paint the top of the focus indicator</param>
<param name="right">Whether to paint the right side of the focus indicator</param>
<param name="bottom">Whether to paint the bottom of the focus indicator</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedFocusIndicatorRenderer.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedFocusIndicatorRenderer.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedFocusIndicatorRenderer.Thickness">
<summary>
Gets the thickness in pixels of the enhanced focus indicator.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ImageFocusIndicatorRenderer">
<summary>
Represents the renderer of the image focus indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ImageFocusIndicatorRenderer.#ctor">
<summary>
Creates a new renderer of the image focus indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ImageFocusIndicatorRenderer.#ctor(System.Drawing.Image,System.Drawing.Color)">
<summary>
Creates a new renderer of the image focus indicator.
</summary>
<param name="img">Image to use for the focus indicator</param>
<param name="transparencyColor">Color of the focus indicator that is treated as transparent</param>
</member>
<member name="M:FarPoint.Win.Spread.ImageFocusIndicatorRenderer.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.ImageFocusIndicatorRenderer.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
</member>
<member name="M:FarPoint.Win.Spread.ImageFocusIndicatorRenderer.Paint(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Paints the cell with the image focus indicator using the specified control and dimensions.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="left">Whether to paint the left side of the focus indicator</param>
<param name="top">Whether to paint the top of the focus indicator</param>
<param name="right">Whether to paint the right side of the focus indicator</param>
<param name="bottom">Whether to paint the bottom of the focus indicator</param>
</member>
<member name="M:FarPoint.Win.Spread.ImageFocusIndicatorRenderer.ToString">
<summary>
Returns the name of the renderer as a string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ImageFocusIndicatorRenderer.Image">
<summary>
Gets or sets the image to use for rendering the custom focus indicator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ImageFocusIndicatorRenderer.TransparencyColor">
<summary>
Gets or sets the transparency color of the custom focus indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ImageFocusIndicatorRendererConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns a value indicating whether an image focus indicator object can be converted to the specified type.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="destinationType">Type</param>
<returns>True if a border object can be converted to the specified type, and false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.ImageFocusIndicatorRendererConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the focus indicator object to a string.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">object</param>
<param name="destinationType">Type</param>
<returns>String representation of a border object.</returns>
</member>
<member name="M:FarPoint.Win.Spread.CustomFocusIndicatorRendererConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns a value indicating whether a custom focus indicator object can be converted to the specified type.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="destinationType">Type</param>
<returns>True if a border object can be converted to the specified type, and false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.CustomFocusIndicatorRendererConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the focus indicator object to a string.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">object</param>
<param name="destinationType">Type</param>
<returns>String representation of a border object.</returns>
</member>
<member name="T:FarPoint.Win.Spread.CustomFocusIndicatorRenderer">
<summary>
Represents a custom renderer of the focus indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CustomFocusIndicatorRenderer.#ctor">
<summary>
Creates a new renderer for the custom focus indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CustomFocusIndicatorRenderer.#ctor(System.Int32)">
<summary>
Creates a new renderer for the custom focus indicator with the specified line thickness.
</summary>
<param name="thickness">Line thickness in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.CustomFocusIndicatorRenderer.#ctor(System.Drawing.Bitmap,System.Int32)">
<summary>
Creates a new renderer for the custom focus indicator with the specified bitmap and thickness.
</summary>
<param name="bitmap">Bitmap to use for rendering</param>
<param name="thickness">Line thickness in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.CustomFocusIndicatorRenderer.Finalize">
<summary>
Creates a new renderer for the custom focus indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CustomFocusIndicatorRenderer.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CustomFocusIndicatorRenderer.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
</member>
<member name="M:FarPoint.Win.Spread.CustomFocusIndicatorRenderer.Clone">
<summary>
Creates and returns a copy of the picture.
</summary>
<returns>Copy of the picture</returns>
</member>
<member name="M:FarPoint.Win.Spread.CustomFocusIndicatorRenderer.#ctor(System.Object)">
<summary>
Creates a custom focus indicator by copying another.
</summary>
<param name="cloneFrom">Object from which to copy or clone this picture</param>
</member>
<member name="M:FarPoint.Win.Spread.CustomFocusIndicatorRenderer.Paint(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Paints the cell with the custom focus indicator using the specified control and dimensions.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="left">Whether to paint the left side of the focus indicator</param>
<param name="top">Whether to paint the top of the focus indicator</param>
<param name="right">Whether to paint the right side of the focus indicator</param>
<param name="bottom">Whether to paint the bottom of the focus indicator</param>
</member>
<member name="M:FarPoint.Win.Spread.CustomFocusIndicatorRenderer.ToString">
<summary>
Returns the name of the renderer.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CustomFocusIndicatorRenderer.Dispose(System.Boolean)">
<summary>
Cleans up any resources being used.
</summary>
<param name="disposing">
Whether the object is disposed through the IDisposable interface (true)
or finalized by the garbage collector (false)
</param>
</member>
<member name="M:FarPoint.Win.Spread.CustomFocusIndicatorRenderer.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CustomFocusIndicatorRenderer.Bitmap">
<summary>
Gets or sets the bitmap to use for rendering the custom focus indicator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CustomFocusIndicatorRenderer.Thickness">
<summary>
Gets or sets the thickness in pixels of the custom focus indicator.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.EditingFocusIndicatorRenderer">
<summary>
Represents the renderer for the editor focus.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.EditingFocusIndicatorRenderer.#ctor">
<summary>
Creates a new editing focus indicator renderer with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.EditingFocusIndicatorRenderer.#ctor(FarPoint.Win.IBorder)">
<summary>
Creates a new editing focus indicator renderer with the specified border.
</summary>
<param name="borderType">Type of the border.</param>
</member>
<member name="M:FarPoint.Win.Spread.EditingFocusIndicatorRenderer.Paint(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Paints the cell with the focus indicator using the specified control and dimensions.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="left">Whether to paint the left side of the focus indicator</param>
<param name="top">Whether to paint the top of the focus indicator</param>
<param name="right">Whether to paint the right side of the focus indicator</param>
<param name="bottom">Whether to paint the bottom of the focus indicator</param>
</member>
<member name="M:FarPoint.Win.Spread.EditingFocusIndicatorRenderer.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.EditingFocusIndicatorRenderer.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
</member>
<member name="M:FarPoint.Win.Spread.EditingFocusIndicatorRenderer.ToString">
<summary>
Returns the name of the renderer as a string.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.EditingFocusIndicatorRenderer.Border">
<summary>
Gets or sets the border.
</summary>
<value>Border</value>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTraceIndicatorRenderer.Paint(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Paints the cell with the focus indicator using the specified control and dimensions.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="left">Whether to paint the left side of the focus indicator</param>
<param name="top">Whether to paint the top of the focus indicator</param>
<param name="right">Whether to paint the right side of the focus indicator</param>
<param name="bottom">Whether to paint the bottom of the focus indicator</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTraceIndicatorRenderer.Dispose(System.Boolean)">
<summary>
Disposes the specified disposing.
</summary>
<param name="disposing">if set to <c>true</c> [disposing].</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaTraceIndicatorRenderer.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaFocusIndicatorRenderer.Paint(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Paints the cell with the focus indicator using the specified control and dimensions.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="left">Whether to paint the left side of the focus indicator</param>
<param name="top">Whether to paint the top of the focus indicator</param>
<param name="right">Whether to paint the right side of the focus indicator</param>
<param name="bottom">Whether to paint the bottom of the focus indicator</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaFocusIndicatorRenderer.Measure(FarPoint.Win.Spread.Model.CellRange,FarPoint.Win.Spread.SpreadView)">
<summary>
Measures the size of rectangle of the specified range of cells.
</summary>
<param name="rect">Rectangle bounding the range of cells</param>
<param name="spreadView">View of the range of cells</param>
</member>
<member name="T:FarPoint.Win.Spread.FormulaEditorUI">
<summary>
Internal use only. Represents the user interface for the Formula Editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaEditorUI.#ctor(FarPoint.Win.Spread.SheetView)">
<summary>
Creates a new user interface for the Formula Editor for the specified sheet.
</summary>
<param name="sheetView">Sheet on which to add formula</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaEditorUI.AddCustomFunction(FarPoint.CalcEngine.FunctionInfo)">
<summary>
Adds the specified custom function information into the list of available functions in the Formula Editor.
</summary>
<param name="customFunction">Custom function information to add</param>
<returns>true if the custom function information successfully added; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FormulaEditorUI.GetFormula">
<summary>
Gets the formula from the text box of the Formula Editor.
</summary>
<returns>String containing the formula</returns>
</member>
<member name="M:FarPoint.Win.Spread.FormulaEditorUI.SetFormula(System.String)">
<summary>
Sets the formula into the text box of the Formula Editor.
</summary>
<param name="formula">String containing the formula</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaEditorUI.Dispose(System.Boolean)">
<summary>
Cleans up any resources being used.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaEditorUI.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FormulaEditorUI.ApplyButtonClicked">
<summary>
Occurs when the Apply button is clicked in the Formula Editor.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FormulaEditorUI.ApplyChanged">
<summary>
Occurs when the changes are applied from the Formula Editor.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaEditorUI.SheetView">
<summary>
Gets or sets the SheetView the editor works with.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ApplyEventArgs">
<summary>
Internal use only. Represents the event data for the apply event.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ApplyEventArgs.#ctor(System.String)">
<summary>
Creates a new apply event arguments object.
</summary>
<param name="newFormula">New formula</param>
</member>
<member name="P:FarPoint.Win.Spread.ApplyEventArgs.Formula">
<summary>
Gets the formula.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ApplyEventHandler">
<summary>
Internal use only. Handles the apply event.
</summary>
<param name="sender">Source of event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.FormulaEditor">
<summary>
Editor for the Cells, Columns, and Rows properties.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
<summary>
Edits the parent style name value.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="provider">IServiceProvider</param>
<param name="value">object</param>
<returns>object</returns>
</member>
<member name="M:FarPoint.Win.Spread.FormulaEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Gets the style of the type editor (which is drop-down).
</summary>
<param name="context">ITypeDescriptorContext</param>
<returns>UITypeEditorEditStyle</returns>
</member>
<member name="T:FarPoint.Win.Spread.QueryValueHandler">
<summary>
Represents a defined method that handles the QueryValue event.
</summary>
<param name="sender">Source of the event</param>
<param name="arg">Event arguments</param>
</member>
<member name="T:FarPoint.Win.Spread.BeforeSettingPropertyValueHandler">
<summary>
Represents a defined method that handles the BeforeSettingPropertyValue event.
</summary>
<param name="sender">Source of the event</param>
<param name="arg">Event arguments</param>
</member>
<member name="T:FarPoint.Win.Spread.CalculateExceptionHandler">
<summary>
Represents a defined method that handles the CalculateException event.
</summary>
<param name="sender">Source of the event</param>
<param name="arg">Event arguments</param>
</member>
<member name="T:FarPoint.Win.Spread.CalculationPolicy">
<summary>
Indicates the policy of the calculation controller.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CalculationPolicy.Reference">
<summary>
Reference
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CalculationPolicy.Event">
<summary>
Event
</summary>
</member>
<member name="T:FarPoint.Win.Spread.FormulaProvider">
<summary>
Represents a way to provide a formula property (and trigger event)
to any control on the form.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaProvider.autoCalculate">
<summary>
Defines whether automatic calculation is enabled.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaProvider.customFunctionInfoHashtable">
<summary>
Defines the hash table for the custom function information.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaProvider.customQueryNameHashtable">
<summary>
Defines the hash table for the custom query name.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FormulaProvider.errProvider">
<summary>
Defines the error provider.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaProvider.#ctor">
<summary>
Creates a new formula property (and trigger event) provider.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaProvider.Calculate">
<summary>
Calculates the result for the formula of each control and updates the corresponding property.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaProvider.GetPrecedenceControls(System.Windows.Forms.Control)">
<summary>
Gets the precedence controls.
</summary>
<param name="control">Control</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaProvider.GetFormula(System.Windows.Forms.Control)">
<summary>
Gets the formula of the control.
</summary>
<param name="control">Control that contains this formula.</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaProvider.SetFormula(System.Windows.Forms.Control,System.String)">
<summary>
Sets the formula for the specified control.
</summary>
<param name="control">Control that contains this formula</param>
<param name="formulaExpression">Formula expression</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaProvider.GetFormulaTriggerEvent(System.Windows.Forms.Control)">
<summary>
Gets the formula trigger event for the specified control.
</summary>
<param name="control">Control</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaProvider.SetFormulaTriggerEvent(System.Windows.Forms.Control,System.String)">
<summary>
Sets the formula trigger event for the specified control.
</summary>
<param name="control">Control</param>
<param name="triggerEvent">Trigger event</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaProvider.CanExtend(System.Object)">
<summary>
Specifies whether this object can provide its extender properties to the specified object.
Only support Windows.Forms.Control
</summary>
<param name="extendee"><see cref="T:System.Object"></see> to receive the extender properties.</param>
<returns>
true if this object can provide extender properties to the specified object; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FormulaProvider.AddCustomFunctionInfo(FarPoint.CalcEngine.FunctionInfo)">
<summary>
Adds the custom function information that is used when parsing and evaluating the formula.
</summary>
<param name="func">Custom function information</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaProvider.RemoveCustomFunctionInfo(System.String)">
<summary>
Removes the custom function information.
</summary>
<param name="funcName">Name of the function</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaProvider.AddQueryValueName(System.String)">
<summary>
Adds the name of the query value which is used when parse and evaluate formula.
</summary>
<param name="customName">Name of the custom.</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaProvider.RemoveQueryValueName(System.String)">
<summary>
Removes the name of the query value.
</summary>
<param name="customName">Name of the custom.</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaProvider.BeginInit">
<summary>
Signals the object that initialization is starting.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaProvider.EndInit">
<summary>
Signals the object that initialization is complete.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaProvider.HandleVisibleChangeEvent(System.Object,System.EventArgs)">
<summary>
In release version, after the copyright form is pop-uped, the Shown event is not raised.
So this VisibleChange event is cached to re-parse expression
Add this function to fix bug 99901970
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaProvider.ReParseAllFormulaAndUpdate">
<summary>
Reparses all the formulas.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaProvider.RemoveControl(System.ComponentModel.IComponent)">
<summary>
Sets all the extender properties to empty for the specified component (control).
</summary>
<param name="com">Component</param>
</member>
<member name="M:FarPoint.Win.Spread.FormulaProvider.FindForm">
<summary>
Finds the form.
Because of the Control.FindForm function works not correctly in design mode.
When initializing, Control.FindForm always returns null.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaProvider.Dispose">
<summary>
Releases all resources used by the <see cref="T:System.ComponentModel.Component"></see>.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaProvider.Finalize">
<summary>
Releases unmanaged resources and performs other cleanup operations before the
<see cref="T:FarPoint.Win.Spread.FormulaProvider"/> is reclaimed by garbage collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FormulaProvider.Dispose(System.Boolean)">
<summary>
Releases the unmanaged resources used by the <see cref="T:System.ComponentModel.Component"></see> and optionally releases the managed resources.
</summary>
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
</member>
<member name="P:FarPoint.Win.Spread.FormulaProvider.AutoCalculate">
<summary>
Gets or sets whether the formula is automatically calculated.
</summary>
<value><c>true</c> to calculate automatically; <c>false</c> otherwise</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaProvider.ShowPrecedents">
<summary>
Gets or sets whether this instance is show precedents.
</summary>
<value>
<c>true</c> if this instance is show precedents; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaProvider.ShowError">
<summary>
Gets or sets whether this instance shows an error icon next to the control that has
an error in the formula.
</summary>
<value>
<c>true</c> if the error icon will be shown; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaProvider.CalculationPolicy">
<summary>
Gets or sets the calculation policy.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FormulaProvider.BeforeSettingPropertyValue">
<summary>
Occurs before the property value is set.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FormulaProvider.QueryValue">
<summary>
Occurs when the value is queried.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FormulaProvider.Iteration">
<summary>
Gets or sets whether circular references are evaluated.
</summary>
<value>true if circular references are evaluated; false otherwise</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaProvider.MaximumIterations">
<summary>
Gets or sets the maximum number of iterations.
</summary>
<value>Integer number of iterations</value>
</member>
<member name="P:FarPoint.Win.Spread.FormulaProvider.MaximumChange">
<summary>
Gets or sets the maximum amount of change below which
iterations stop.
</summary>
<value>Amount of change</value>
</member>
<member name="T:FarPoint.Win.Spread.PropertyCalculationController">
<summary>
Represents various controls of the calculation of the formula extender.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IPropertyListener.Update">
<summary>
Updates this instance.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IPropertyListener.GetValue">
<summary>
Gets the value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.#ctor(System.Windows.Forms.Control,System.Collections.Hashtable,System.Collections.Hashtable,FarPoint.Win.Spread.EventNameDictionary,System.Boolean,FarPoint.Win.Spread.PropertyCalculationController,FarPoint.Win.Spread.FormulaProvider)">
<summary>
Creates a new property calculation controller.
</summary>
<param name="ownerControl">Owner control</param>
<param name="customFunctionInfo">Custom function information</param>
<param name="customQueryName">Custom query name</param>
<param name="controlEventNameDic">Control event name dictionary</param>
<param name="designMode">Whether design mode</param>
<param name="parent">Parent property calculation controller</param>
<param name="ownerProvider">Owner formula provider</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.Calculate">
<summary>
Calculates and update property value of the owner control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.GetPrecedenceControls">
<summary>
Gets the precedence controls.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.GetPrecedenceControlsOfSingleExpr">
<summary>
Gets the precedence controls.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.OnQueryValue(System.Object,FarPoint.Win.Spread.QueryValueEventArgs)">
<summary>
Raises the <see cref="E:QueryValue"/> event.
</summary>
<param name="sender">Sender of this event</param>
<param name="arg">QueryValueEventArgs instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.OnBeforeSettingPropertyValue(System.Object,FarPoint.Win.Spread.BeforeSettingPropertyValueEventArgs)">
<summary>
Raises the <see cref="E:BeforeSettingPropertyValue"/> event.
</summary>
<param name="sender">Sender of this event.</param>
<param name="arg">BeforeSettingPropertyValueEventArgs instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.OnCalculateException(System.Object,FarPoint.Win.Spread.CalculateExceptionEventArgs)">
<summary>
Raises the <see cref="E:CalculateException"/> event.
</summary>
<param name="sender">Sender of this event.</param>
<param name="arg">CalculateExceptionEventArgs instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.OnCalculateSuccessfully(System.Object,System.EventArgs)">
<summary>
Raises the <see cref="E:CalculateSuccessfully"/> event.
</summary>
<param name="sender">Object source of the event</param>
<param name="arg"><see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.ParseSingleExpr(System.String)">
<summary>
Parses the specified text.
</summary>
<param name="text">Text</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.ParseUpdatedProperty(System.String,System.Boolean)">
<summary>
Parses the updated property.
</summary>
<param name="propName">Name of the prop.</param>
<param name="throwException">Whether to allow throw an exception</param>
<remarks>
//bug #99902360
//LanceDo 2008/04/01 - A component shouldn't throw exception except some special case.
//An exception can cause other components or controls can not work well later.
</remarks>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.UpdateParentControl(FarPoint.Win.Spread.PropertyListener)">
<summary>
Updates the parent control.
In case that the updated property is value type this function must be called to update control
Exp: textBox1.Location.X => Location is Point structure => value type
=> Must call this function to update textBox1
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.BuildPropertyListenerCollection(FarPoint.CalcEngine.Expression)">
<summary>
Builds the property Listener collection.
</summary>
<param name="expr">Expression</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.CreatePropertyListener(System.String)">
<summary>
Creates the property listener.
</summary>
<param name="exprName">Name of the expression</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.CreateUpdatedPropertyListener(System.String)">
<summary>
Creates the updated property listener.
</summary>
<param name="exprName">Name of the expr.</param>
<returns></returns>
<remarks>This function is added when fix bug 99902272</remarks>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.FindForm(System.Windows.Forms.Control)">
<summary>
Finds the form of the specified control.
Because of the Control.FindForm function works not correctly in design mode.
When initializing, Control.FindForm always returns null.
</summary>
<param name="control">Control</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.EvaluateEx(FarPoint.CalcEngine.Expression)">
<summary>
Evaluates the expression.
</summary>
<param name="expr">Expression</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.IterationChange(System.Object,System.Object)">
<summary>
Determines the amount of change during an iteration.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.GetCustomFunction(System.String)">
<summary>
Gets the custom function.
</summary>
<param name="name">Name of the custom function</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.GetCustomName(System.String)">
<summary>
Gets the custom name as an expression.
</summary>
<param name="name">Name of the custom name</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.FarPoint#Win#Spread#IPropertyListener#Update">
<summary>
Updates this instance.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.FarPoint#Win#Spread#IPropertyListener#GetValue">
<summary>
Gets the value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.BeginInit">
<summary>
Signals the object that initialization is starting.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.EndInit">
<summary>
Signals the object that initialization is complete.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.Finalize">
<summary>
Releases unmanaged resources and performs other cleanup operations before the
<see cref="T:FarPoint.Win.Spread.PropertyCalculationController"/> is reclaimed by garbage collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationController.Dispose(System.Boolean)">
<summary>
Releases unmanaged and - optionally - managed resources
</summary>
<param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
</member>
<member name="P:FarPoint.Win.Spread.PropertyCalculationController.FormulaText">
<summary>
Internal use only. Gets or sets the formula text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PropertyCalculationController.Control">
<summary>
Gets the control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PropertyCalculationController.AutoCalculate">
<summary>
Internal use only. Gets or sets whether to automatically calculate.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PropertyCalculationController.HasException">
<summary>
Gets a value indicating whether this instance has exception when calculating.
</summary>
<value>
<c>true</c> if this instance has exception; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.PropertyCalculationController.Exception">
<summary>
Gets the calculation exception.
</summary>
<value>Calculation exception</value>
</member>
<member name="E:FarPoint.Win.Spread.PropertyCalculationController.QueryValue">
<summary>
Occurs when the value is queried.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.PropertyCalculationController.BeforeSettingPropertyValue">
<summary>
Occurs when the before setting property value.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.PropertyCalculationController.CalculateException">
<summary>
Occurs when an exception occurs during the calculation.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.PropertyCalculationController.CalculateSuccessfully">
<summary>
Occurs when the calculation is successful.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PropertyListener">
<summary>
Represents the property listener.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyListener.#ctor(System.Object,FarPoint.Win.Spread.EventNameDictionary,System.Boolean)">
<summary>
Creates the property listener.
</summary>
<param name="sourceObj">Source object</param>
<param name="controlEventNameDic">Event name dictionary</param>
<param name="designMode">Whether in design mode</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyListener.#ctor(System.Object,FarPoint.Win.Spread.EventNameDictionary,System.Boolean,System.ComponentModel.PropertyDescriptor)">
<summary>
Creates the property listener.
</summary>
<param name="sourceObj">Source object</param>
<param name="controlEventNameDic">Event name dictionary</param>
<param name="designMode">Whether in design mode</param>
<param name="propDesc">Property description</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyListener.#ctor(System.Object,FarPoint.Win.Spread.EventNameDictionary,System.Boolean,System.ComponentModel.PropertyDescriptor,FarPoint.Win.Spread.PropertyListener)">
<summary>
Creates the property listener.
</summary>
<param name="sourceObj">Source object</param>
<param name="controlEventNameDic">Event name dictionary</param>
<param name="designMode">Whether in design mode</param>
<param name="propDesc">Property description</param>
<param name="parentListener">Parent listenner</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyListener.Update">
<summary>
Updates this instance.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyListener.GetValue">
<summary>
Gets the value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyListener.AttachEvents">
<summary>
Attaches the events.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyListener.DetachEvents">
<summary>
Detaches the events.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyListener.HandlePropertyChanged(System.Object,System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Occurs when the property changed.
</summary>
<param name="sender">Sender</param>
<param name="e"><see cref="T:System.ComponentModel.PropertyChangedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyListener.HandleEventRaised(System.Object,System.EventArgs)">
<summary>
Handles the event raised.
</summary>
<param name="sender">Sender, source of the event</param>
<param name="e"><see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyListener.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyListener.Finalize">
<summary>
Releases unmanaged resources and performs other cleanup operations before the
<see cref="T:FarPoint.Win.Spread.PropertyListener"/> is reclaimed by garbage collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyListener.Dispose(System.Boolean)">
<summary>
Releases unmanaged and - optionally - managed resources
</summary>
<param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
</member>
<member name="P:FarPoint.Win.Spread.PropertyListener.SourceObject">
<summary>
Gets the source object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PropertyListener.Parent">
<summary>
Gets or sets the parent.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PropertyListener.Child">
<summary>
Gets or sets the child.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PropertyListener.PropDesc">
<summary>
Gets the property descriptor.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PropertyListenerCollection">
<summary>
This is strong-type collection for PropertyListener class
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyListenerCollection.#ctor(FarPoint.Win.Spread.PropertyCalculationController)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.PropertyListenerCollection"/> class.
</summary>
<param name="ownerController">Owner controller</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyListenerCollection.Add(System.String,FarPoint.Win.Spread.PropertyListener)">
<summary>
Adds a p roperty listener to the collection with the specified path as the key to retrieve it later.
</summary>
<param name="path">Path expression: "textBox1.Text"</param>
<param name="propListener">Property listener</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyListenerCollection.GetPropertyListener(System.String)">
<summary>
Gets the property listener according to the specified path.
</summary>
<param name="path">Path expression: "textBox1.Text"</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyListenerCollection.Clear">
<summary>
Disposes and clears all the items in this collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyListenerCollection.CopyTo(System.Array,System.Int32)">
<summary>
Copies the elements of the <see cref="T:System.Collections.ICollection"></see> to an <see cref="T:System.Array"></see>, starting at a particular <see cref="T:System.Array"></see> index.
</summary>
<param name="array">One-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied
from <see cref="T:System.Collections.ICollection"></see>; the <see cref="T:System.Array"></see> must have zero-based indexing</param>
<param name="index">Zero-based index in array at which copying begins</param>
<exception cref="T:System.ArgumentNullException">Array is null; array must have a value</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Index is less than zero</exception>
<exception cref="T:System.ArgumentException">Array is multidimensional -or- index is equal to or greater than the length of array -or-
The number of elements in the source <see cref="T:System.Collections.ICollection"></see> is greater than the available space from index to the end of the destination array</exception>
<exception cref="T:System.InvalidCastException">Type of the source <see cref="T:System.Collections.ICollection"></see> cannot be cast automatically to the type of the destination array</exception>
</member>
<member name="M:FarPoint.Win.Spread.PropertyListenerCollection.GetEnumerator">
<summary>
Returns an enumerator that iterates through a collection.
</summary>
<returns>
An <see cref="T:System.Collections.IEnumerator"></see> object that can be used to iterate through the collection.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.PropertyListenerCollection.Update">
<summary>
Updates PropertyCalculationController this instance.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyListenerCollection.GetValue">
<summary>
Gets the value.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PropertyListenerCollection.CaseSensitive">
<summary>
Gets or sets whether the path is case sensitive.
</summary>
<value><c>true</c> if [case sensitive]; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.Win.Spread.PropertyListenerCollection.Count">
<summary>
Gets the number of elements contained in the <see cref="T:System.Collections.ICollection"></see>.
</summary>
<returns>Number of elements contained in the <see cref="T:System.Collections.ICollection"></see></returns>
</member>
<member name="P:FarPoint.Win.Spread.PropertyListenerCollection.IsSynchronized">
<summary>
Gets whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).
</summary>
<returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false.</returns>
</member>
<member name="P:FarPoint.Win.Spread.PropertyListenerCollection.SyncRoot">
<summary>
Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.
</summary>
<returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</returns>
</member>
<member name="T:FarPoint.Win.Spread.PropertyExpression">
<summary>
This class used to evaluate the value of a property Listener
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyExpression.#ctor(FarPoint.Win.Spread.IPropertyListener)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.PropertyExpression"/> class.
</summary>
<param name="item">Property Listener which is used to get value.</param>
</member>
<member name="P:FarPoint.Win.Spread.PropertyExpression.Value">
<summary>
Gets the value of property Listener.
If value is ICollection, it will return CollectionCalcArray instance.
</summary>
<value>Value</value>
</member>
<member name="T:FarPoint.Win.Spread.QueryValueNameExpression">
<summary>
This class used to get value from client.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.QueryValueNameExpression.#ctor(System.Object)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.QueryValueNameExpression"/> class.
</summary>
<param name="value">Value that is set when evaluating.</param>
</member>
<member name="P:FarPoint.Win.Spread.QueryValueNameExpression.Value">
<summary>
Gets the value which is set by client.
</summary>
<value>Value</value>
</member>
<member name="T:FarPoint.Win.Spread.QueryValueEventArgs">
<summary>
This is event argument which is used to contain the result when querying value from client
</summary>
</member>
<member name="M:FarPoint.Win.Spread.QueryValueEventArgs.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.QueryValueEventArgs"/> class.
</summary>
<param name="customName">Custom name</param>
</member>
<member name="P:FarPoint.Win.Spread.QueryValueEventArgs.CustomName">
<summary>
Gets the custom name.
</summary>
<value>Custom name</value>
</member>
<member name="P:FarPoint.Win.Spread.QueryValueEventArgs.Result">
<summary>
Gets or sets the result.
</summary>
<value>Result</value>
</member>
<member name="T:FarPoint.Win.Spread.PropertyCalculationControllerDictionary">
<summary>
This is the strong-type collection of PropertyCalculationController
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationControllerDictionary.Add(FarPoint.Win.Spread.PropertyCalculationController)">
<summary>
Adds the specified controller.
</summary>
<param name="controller">Controller</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationControllerDictionary.Remove(FarPoint.Win.Spread.PropertyCalculationController)">
<summary>
Removes the specified controller.
</summary>
<param name="controller">Controller</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationControllerDictionary.Find(System.Windows.Forms.Control)">
<summary>
Finds the PropertyCalculationController of the specified control.
</summary>
<param name="control">Control</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationControllerDictionary.Clear">
<summary>
Clears all the items in this collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationControllerDictionary.CopyTo(System.Array,System.Int32)">
<summary>
Copies the elements of the <see cref="T:System.Collections.ICollection"></see> to an <see cref="T:System.Array"></see>, starting at a particular <see cref="T:System.Array"></see> index.
</summary>
<param name="array">One-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied
from <see cref="T:System.Collections.ICollection"></see>; the <see cref="T:System.Array"></see> must have zero-based indexing</param>
<param name="index">Zero-based index in array at which copying begins</param>
<exception cref="T:System.ArgumentNullException">Array is null</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Index is less than zero</exception>
<exception cref="T:System.ArgumentException">Array is multidimensional -or- index is equal to or greater than the length of array -or-
number of elements in the source <see cref="T:System.Collections.ICollection"></see> is greater than the available space from index to the end of the destination array</exception>
<exception cref="T:System.InvalidCastException">Type of the source <see cref="T:System.Collections.ICollection"></see> cannot be cast automatically to the type of the destination array</exception>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationControllerDictionary.GetEnumerator">
<summary>
Returns an enumerator that iterates through a collection.
</summary>
<returns>
An <see cref="T:System.Collections.IEnumerator"></see> object that can be used to iterate through the collection.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.PropertyCalculationControllerDictionary.Item(System.Int32)">
<summary>
Gets the <see cref="T:FarPoint.Win.Spread.PropertyCalculationController"/> at the specified index.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PropertyCalculationControllerDictionary.Count">
<summary>
Gets the number of elements contained in the <see cref="T:System.Collections.ICollection"></see>.
</summary>
<returns>Number of elements contained in the <see cref="T:System.Collections.ICollection"></see></returns>
</member>
<member name="P:FarPoint.Win.Spread.PropertyCalculationControllerDictionary.IsSynchronized">
<summary>
Gets whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).
</summary>
<returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false.</returns>
</member>
<member name="P:FarPoint.Win.Spread.PropertyCalculationControllerDictionary.SyncRoot">
<summary>
Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.
</summary>
<returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</returns>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationControllerCollection.Add(FarPoint.Win.Spread.PropertyCalculationController)">
<summary>
Adds the specified controller.
</summary>
<param name="ctrl">Controller</param>
</member>
<member name="M:FarPoint.Win.Spread.PropertyCalculationControllerCollection.Clear">
<summary>
Clears all items in this collection.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.BeforeSettingPropertyValueEventArgs">
<summary>
Represents before setting property value event arguments.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.BeforeSettingPropertyValueEventArgs.#ctor(System.Object,System.ComponentModel.PropertyDescriptor,System.Object)">
<summary>
Creates a new events argument object for before setting property value.
</summary>
<param name="ownerObject">Owner object</param>
<param name="propDesc">Property descriptpr</param>
<param name="value">Value</param>
</member>
<member name="P:FarPoint.Win.Spread.BeforeSettingPropertyValueEventArgs.OwnerObject">
<summary>
Gets the owner object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.BeforeSettingPropertyValueEventArgs.PropertyDescriptor">
<summary>
Gets the property descriptor.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.BeforeSettingPropertyValueEventArgs.Value">
<summary>
Gets or sets the value.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ReferencedControlCollection">
<summary>
Strong-type collection for Control
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ReferencedControlCollection.GetControl(System.Windows.Forms.Control)">
<summary>
Gets the control.
</summary>
<param name="control">Control</param>
</member>
<member name="M:FarPoint.Win.Spread.ReferencedControlCollection.AddControl(System.Windows.Forms.Control)">
<summary>
Adds the control.
</summary>
<param name="control">Control</param>
</member>
<member name="M:FarPoint.Win.Spread.ReferencedControlCollection.Contains(System.Windows.Forms.Control)">
<summary>
Determines whether the form contains the specified control.
</summary>
<param name="control">Control</param>
<returns>
<c>true</c> if it contains the specified control; <c>false</c> otherwise.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.ReferencedControlCollection.CopyTo(System.Array,System.Int32)">
<summary>
Copies the elements of the <see cref="T:System.Collections.ICollection"></see> to an <see cref="T:System.Array"></see>, starting at a particular <see cref="T:System.Array"></see> index.
</summary>
<param name="array">One-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied
from <see cref="T:System.Collections.ICollection"></see>; the <see cref="T:System.Array"></see> must have zero-based indexing</param>
<param name="index">Zero-based index in array at which copying begins</param>
<exception cref="T:System.ArgumentNullException">array is null</exception>
<exception cref="T:System.ArgumentOutOfRangeException">index is less than zero</exception>
<exception cref="T:System.ArgumentException">array is multidimensional -or- index is equal to or greater than the length of array -or-
number of elements in the source <see cref="T:System.Collections.ICollection"></see> is greater than the available space from index to the end of the destination array</exception>
<exception cref="T:System.InvalidCastException">Type of the source <see cref="T:System.Collections.ICollection"></see> cannot be cast automatically to the type of the destination array</exception>
</member>
<member name="M:FarPoint.Win.Spread.ReferencedControlCollection.GetEnumerator">
<summary>
Returns an enumerator that iterates through a collection.
</summary>
<returns>
An <see cref="T:System.Collections.IEnumerator"></see> object that can be used to iterate through the collection.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.ReferencedControlCollection.Count">
<summary>
Gets the number of elements contained in the <see cref="T:System.Collections.ICollection"></see>.
</summary>
<returns>Number of elements contained in the <see cref="T:System.Collections.ICollection"></see>.</returns>
</member>
<member name="P:FarPoint.Win.Spread.ReferencedControlCollection.IsSynchronized">
<summary>
Gets whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).
</summary>
<returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false.</returns>
</member>
<member name="P:FarPoint.Win.Spread.ReferencedControlCollection.SyncRoot">
<summary>
Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.
</summary>
<returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</returns>
</member>
<member name="T:FarPoint.Win.Spread.CalculateExceptionEventArgs">
<summary>
Represents the event data for the CalculateException event, that contains the exception thrown
when calculating the result of a formula.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CalculateExceptionEventArgs.#ctor(System.Exception,System.Windows.Forms.Control)">
<summary>
Creates a new calculation exception event arguments object.
</summary>
<param name="ex">Exception which is raised when calculating the result of a formula</param>
<param name="ctrl">Control</param>
</member>
<member name="P:FarPoint.Win.Spread.CalculateExceptionEventArgs.Exception">
<summary>
Gets the exception raised when calculating the result of a formula.
</summary>
<value>Exception</value>
</member>
<member name="P:FarPoint.Win.Spread.CalculateExceptionEventArgs.Control">
<summary>
Gets the control whose formula has an exception.
</summary>
<value>Control</value>
</member>
<member name="T:FarPoint.Win.Spread.CollectionCalcArray">
<summary>
Represents an array contains value of a collection, to get the value of each item in
the collection when evaluating FunctionExpression.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CollectionCalcArray.#ctor(System.Collections.ICollection)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.CollectionCalcArray"/> class.
</summary>
<param name="collection">Collection that contains values</param>
</member>
<member name="M:FarPoint.Win.Spread.CollectionCalcArray.GetValue(System.Int32,System.Int32)">
<summary>
Gets the value at the specified position in the array.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<returns>Value at the specified position</returns>
</member>
<member name="P:FarPoint.Win.Spread.CollectionCalcArray.RowCount">
<summary>
Gets the number of rows in the array.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CollectionCalcArray.ColumnCount">
<summary>
Gets the number of columns in the array.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.EventListener">
<summary>
Represents an event listener.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.EventListener.EventInfo">
<summary>
Read-only event information.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.EventListener.Target">
<summary>
Read-only target.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.EventListener.#ctor(System.Object,System.Reflection.EventInfo)">
<summary>
Creates a new event listener with the specified target and event information.
</summary>
<param name="target">Target</param>
<param name="eventInfo">Event information</param>
</member>
<member name="M:FarPoint.Win.Spread.EventListener.ToString">
<summary>
Returns a string representation of the event information.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.EventListener.OnEventRaised(System.EventArgs)">
<summary>
Handles the raised event.
</summary>
<param name="args">Event arguments</param>
</member>
<member name="M:FarPoint.Win.Spread.EventListener.Dispose">
<summary>
Disposes and frees up resources.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.EventListener.Enable">
<summary>
Gets or sets whether to enable the event listener.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.EventListener.EventRaised">
<summary>
Occurs when an event is raised.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.EventListener.EventHandlerAdapter">
<summary>
Represents an event handler adapter.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.EventListener.EventHandlerAdapter.EventListener">
<summary>
Creates a new event listener.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.EventListener.EventHandlerAdapter.#ctor(FarPoint.Win.Spread.EventListener)">
<summary>
Creates an event handler adapter.
</summary>
<param name="eventListener"></param>
</member>
<member name="P:FarPoint.Win.Spread.EventListener.EventHandlerAdapter.EventHandler">
<summary>
Represents a defined method that handles the event.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.EventNameConverter">
<summary>
Converter for EventName
</summary>
</member>
<member name="M:FarPoint.Win.Spread.EventNameConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Returns whether this object supports a standard set of values that can be picked from a list, using the specified context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that provides a format context.</param>
<returns>
true if <see cref="M:System.ComponentModel.TypeConverter.GetStandardValues"></see> should be called to find a common set of values the object supports; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.EventNameConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Returns whether the collection of standard values returned from <see cref="M:System.ComponentModel.TypeConverter.GetStandardValues"></see> is an exclusive list of possible values, using the specified context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that provides a format context.</param>
<returns>
true if the <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection"></see> returned from <see cref="M:System.ComponentModel.TypeConverter.GetStandardValues"></see> is an exhaustive list of possible values; false if other values are possible.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.EventNameConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Returns a collection of standard values for the data type this type converter is designed for when provided with a format context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that provides a format context that can be used to extract additional information about the environment from which this converter is invoked. This parameter or properties of this parameter can be null.</param>
<returns>
A <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection"></see> that holds a standard set of valid values, or null if the data type does not support a standard set of values.
</returns>
</member>
<member name="T:FarPoint.Win.Spread.TipAppearance">
<summary>
Represents the appearance settings for various tips in the interface
(text tips, scroll tips, and cell notes).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.TipAppearance.#ctor">
<summary>
Creates a set of appearance settings, for various tips in the interface,
with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.TipAppearance.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Font)">
<summary>
Creates a set of appearance settings, for various tips in the interface,
with the specified values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.TipAppearance.CopyFrom(FarPoint.Win.Spread.TipAppearance)">
<summary>
Copies the settings of the specified set of tip appearance settings to this tip.
</summary>
<param name="appearance">Tip appearance settings (TipAppearance object)</param>
</member>
<member name="M:FarPoint.Win.Spread.TipAppearance.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.TipAppearance.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
</member>
<member name="P:FarPoint.Win.Spread.TipAppearance.BackColor">
<summary>
Gets or sets the background color of the tip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TipAppearance.ForeColor">
<summary>
Gets or sets the text color of the tip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TipAppearance.Font">
<summary>
Gets or sets the font of the tip.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Appearance">
<summary>
Represents the appearance settings for an object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Appearance.#ctor">
<summary>
Creates a set of appearance settings with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Appearance.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.Spread.CellHorizontalAlignment,FarPoint.Win.Spread.CellVerticalAlignment,System.Boolean,System.Boolean,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,FarPoint.Win.VisualStyles,FarPoint.Win.Spread.SortState,FarPoint.Win.Spread.FilterState,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Int32,FarPoint.Win.Spread.CellPadding,System.Boolean,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,System.Drawing.Font,System.Drawing.Font)">
<summary>
Creates a set of appearance settings with the specified colors, buttons, alignment,
visual style, and state of sorting and filtering.
</summary>
<param name="backColor">Background color of an object</param>
<param name="foreColor">Foreground (text) color of an object</param>
<param name="font">Font information of an object</param>
<param name="horizontalAlignment">Horizontal alignment of an object or of text in a cell</param>
<param name="verticalAlignment">Vertical alignment of an object or text in a cell</param>
<param name="drawPrimaryButton">Whether to draw the primary button for an object</param>
<param name="drawSecondaryButton">Whether to draw the secondary button for an object</param>
<param name="selectionBackColor">Background color of an object when the object is selected</param>
<param name="selectionForeColor">Foreground (text) color of an object when the object is selected</param>
<param name="lockBackColor">Background color of an object when the cell is locked</param>
<param name="lockForeColor">Foreground (text) color of an object when the cell is locked</param>
<param name="visualStyle">Whether to render with visual styles (as in XP themes)</param>
<param name="sortState">State of sorting</param>
<param name="filterState">State of filtering</param>
<param name="mouseOver">Whether mouse is over item being rendered</param>
<param name="showActive">Determines whether item should be rendered as a hot item</param>
<param name="displayZero">Determines whether zero values are displayed in cells</param>
<param name="rightToLeft">Whether to draw the object with a right to left orientation</param>
<param name="containsSelection">if set to <c>true</c> [contains selection].</param>
<param name="textIndent">The text indent.</param>
<param name="cellPadding">Padding around the cell.</param>
<param name="drawEditButtons">Determins whether or buttons draw on edit controls.</param>
<param name="nullBackColor">Backcolor for null cells.</param>
<param name="nullForeColor">Forecolor for null cells containing default text.</param>
<param name="nullFont">Font for null cells containing default text.</param>
<param name="lockFont">Font for locked cells.</param>
<param name="selectionFont">Font for selected cells.</param>
</member>
<member name="M:FarPoint.Win.Spread.Appearance.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.Spread.CellHorizontalAlignment,FarPoint.Win.Spread.CellVerticalAlignment,System.Boolean,System.Boolean,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,FarPoint.Win.VisualStyles,FarPoint.Win.Spread.SortState,FarPoint.Win.Spread.FilterState,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Int32,FarPoint.Win.Spread.CellPadding,System.Boolean)">
<summary>
Creates a set of appearance settings with the specified colors, buttons, alignment,
visual style, and state of sorting and filtering.
</summary>
<param name="backColor">Background color of an object</param>
<param name="foreColor">Foreground (text) color of an object</param>
<param name="font">Font information of an object</param>
<param name="horizontalAlignment">Horizontal alignment of an object or of text in a cell</param>
<param name="verticalAlignment">Vertical alignment of an object or text in a cell</param>
<param name="drawPrimaryButton">Whether to draw the primary button for an object</param>
<param name="drawSecondaryButton">Whether to draw the secondary button for an object</param>
<param name="selectionBackColor">Background color of an object when the object is selected</param>
<param name="selectionForeColor">Foreground (text) color of an object when the object is selected</param>
<param name="lockBackColor">Background color of an object when the cell is locked</param>
<param name="lockForeColor">Foreground (text) color of an object when the cell is locked</param>
<param name="visualStyle">Whether to render with visual styles (as in XP themes)</param>
<param name="sortState">State of sorting</param>
<param name="filterState">State of filtering</param>
<param name="mouseOver">Whether mouse is over item being rendered</param>
<param name="showActive">Determines whether item should be rendered as a hot item</param>
<param name="displayZero">Determines whether zero values are displayed in cells</param>
<param name="rightToLeft">Whether to draw the object with a right to left orientation</param>
<param name="containsSelection">if set to <c>true</c> [contains selection].</param>
<param name="textIndent">The text indent.</param>
<param name="cellPadding">Padding around the cell.</param>
<param name="drawEditButtons">Determins whether or buttons draw on edit controls.</param>
</member>
<member name="M:FarPoint.Win.Spread.Appearance.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.Spread.CellHorizontalAlignment,FarPoint.Win.Spread.CellVerticalAlignment,System.Boolean,System.Boolean,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,FarPoint.Win.VisualStyles,FarPoint.Win.Spread.SortState,FarPoint.Win.Spread.FilterState,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Int32)">
<summary>
Creates a set of appearance settings with the specified colors, buttons, alignment,
visual style, and state of sorting and filtering.
</summary>
<param name="backColor">Background color of an object</param>
<param name="foreColor">Foreground (text) color of an object</param>
<param name="font">Font information of an object</param>
<param name="horizontalAlignment">Horizontal alignment of an object or of text in a cell</param>
<param name="verticalAlignment">Vertical alignment of an object or text in a cell</param>
<param name="drawPrimaryButton">Whether to draw the primary button for an object</param>
<param name="drawSecondaryButton">Whether to draw the secondary button for an object</param>
<param name="selectionBackColor">Background color of an object when the object is selected</param>
<param name="selectionForeColor">Foreground (text) color of an object when the object is selected</param>
<param name="lockBackColor">Background color of an object when the cell is locked</param>
<param name="lockForeColor">Foreground (text) color of an object when the cell is locked</param>
<param name="visualStyle">Whether to render with visual styles (as in XP themes)</param>
<param name="sortState">State of sorting</param>
<param name="filterState">State of filtering</param>
<param name="mouseOver">Whether mouse is over item being rendered</param>
<param name="showActive">Determines whether item should be rendered as a hot item</param>
<param name="displayZero">Determines whether zero values are displayed in cells</param>
<param name="rightToLeft">Whether to draw the object with a right to left orientation</param>
<param name="containsSelection">if set to <c>true</c> [contains selection].</param>
<param name="textIndent">The text indent.</param>
</member>
<member name="M:FarPoint.Win.Spread.Appearance.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.Spread.CellHorizontalAlignment,FarPoint.Win.Spread.CellVerticalAlignment,System.Boolean,System.Boolean,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,FarPoint.Win.VisualStyles,FarPoint.Win.Spread.SortState,FarPoint.Win.Spread.FilterState,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Creates a set of appearance settings with the specified colors, buttons, alignment,
visual style, and state of sorting and filtering.
</summary>
<param name="backColor">Background color of an object</param>
<param name="foreColor">Foreground (text) color of an object</param>
<param name="font">Font information of an object</param>
<param name="horizontalAlignment">Horizontal alignment of an object or of text in a cell</param>
<param name="verticalAlignment">Vertical alignment of an object or text in a cell</param>
<param name="drawPrimaryButton">Whether to draw the primary button for an object</param>
<param name="drawSecondaryButton">Whether to draw the secondary button for an object</param>
<param name="selectionBackColor">Background color of an object when the object is selected</param>
<param name="selectionForeColor">Foreground (text) color of an object when the object is selected</param>
<param name="lockBackColor">Background color of an object when the cell is locked</param>
<param name="lockForeColor">Foreground (text) color of an object when the cell is locked</param>
<param name="visualStyle">Whether to render with visual styles (as in XP themes)</param>
<param name="sortState">State of sorting</param>
<param name="filterState">State of filtering</param>
<param name="mouseOver">Whether mouse is over item being rendered</param>
<param name="showActive">Determines whether item should be rendered as a hot item</param>
<param name="displayZero">Determines whether zero values are displayed in cells</param>
<param name="rightToLeft">Whether to draw the object with a right to left orientation</param>
</member>
<member name="M:FarPoint.Win.Spread.Appearance.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.Spread.CellHorizontalAlignment,FarPoint.Win.Spread.CellVerticalAlignment,System.Boolean,System.Boolean,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,FarPoint.Win.VisualStyles,FarPoint.Win.Spread.SortState,FarPoint.Win.Spread.FilterState)">
<summary>
Creates a set of appearance settings with the specified colors, buttons, alignment,
visual style, and state of sorting and filtering.
</summary>
<param name="backColor">Background color of an object</param>
<param name="foreColor">Foreground (text) color of an object</param>
<param name="font">Font information of an object</param>
<param name="horizontalAlignment">Horizontal alignment of an object or of text in a cell</param>
<param name="verticalAlignment">Vertical alignment of an object or text in a cell</param>
<param name="drawPrimaryButton">Whether to draw the primary button for an object</param>
<param name="drawSecondaryButton">Whether to draw the secondary button for an object</param>
<param name="selectionBackColor">Background color of an object when the object is selected</param>
<param name="selectionForeColor">Foreground (text) color of an object when the object is selected</param>
<param name="lockBackColor">Background color of an object when the cell is locked</param>
<param name="lockForeColor">Foreground (text) color of an object when the cell is locked</param>
<param name="visualStyle">Whether to render with visual styles (as in XP themes)</param>
<param name="sortState">State of sorting</param>
<param name="filterState">State of filtering</param>
</member>
<member name="M:FarPoint.Win.Spread.Appearance.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.Spread.CellHorizontalAlignment,FarPoint.Win.Spread.CellVerticalAlignment,System.Boolean,System.Boolean,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,FarPoint.Win.VisualStyles)">
<summary>
Creates a set of appearance settings with the specified colors, buttons, alignment,
and visual style.
</summary>
<param name="backColor">Background color of an object</param>
<param name="foreColor">Foreground (text) color of an object</param>
<param name="font">Font information of an object</param>
<param name="horizontalAlignment">Horizontal alignment of an object or of text in a cell</param>
<param name="verticalAlignment">Vertical alignment of an object or text in a cell</param>
<param name="drawPrimaryButton">Whether to draw the primary button for an object</param>
<param name="drawSecondaryButton">Whether to draw the secondary button for an object</param>
<param name="selectionBackColor">Background color of an object when the object is selected</param>
<param name="selectionForeColor">Foreground (text) color of an object when the object is selected</param>
<param name="lockBackColor">Background color of an object when the cell is locked</param>
<param name="lockForeColor">Foreground (text) color of an object when the cell is locked</param>
<param name="visualStyle">Whether to render with visual styles (as in XP themes)</param>
</member>
<member name="M:FarPoint.Win.Spread.Appearance.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,FarPoint.Win.Spread.CellHorizontalAlignment,FarPoint.Win.Spread.CellVerticalAlignment,System.Boolean,System.Boolean,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color)">
<summary>
Creates a set of appearance settings with the specified colors, buttons, and alignment.
</summary>
<param name="backColor">Background color of an object</param>
<param name="foreColor">Foreground (text) color of an object</param>
<param name="font">Font information of an object</param>
<param name="horizontalAlignment">Horizontal alignment of an object or of text in a cell</param>
<param name="verticalAlignment">Vertical alignment of an object or text in a cell</param>
<param name="drawPrimaryButton">Whether to draw the primary button for an object</param>
<param name="drawSecondaryButton">Whether to draw the secondary button for an object</param>
<param name="selectionBackColor">Background color of an object when the object is selected</param>
<param name="selectionForeColor">Foreground (text) color of an object when the object is selected</param>
<param name="lockBackColor">Background color of an object when the cell is locked</param>
<param name="lockForeColor">Foreground (text) color of an object when the cell is locked</param>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.WordWrap">
<summary>
This property indicate that in GetPreferedSize, the text can be forced as WordWrap in case horizontal is distributed or justify.
It's used as Internal only.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.NullBackColor">
<summary>
Gets or sets the background color of an objects null state.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.NullForeColor">
<summary>
Gets or sets the text color of an objects null state.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.NullFont">
<summary>
Gets or sets the font for a null object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.LockFont">
<summary>
Gets or sets the font for a locked object;
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.SelectionFont">
<summary>
Gets or sets the font for a selected object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.BackColor">
<summary>
Gets or sets the background color of an object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.ForeColor">
<summary>
Gets or sets the text color of an object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.SelectionBackColor">
<summary>
Gets or sets the background color of an object when the object is selected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.SelectionForeColor">
<summary>
Gets or sets the text color of an object when the object is selected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.LockBackColor">
<summary>
Gets or sets the background color of an object when the cell is locked.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.LockForeColor">
<summary>
Gets or sets the text color of an object when the cell is locked.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.HorizontalAlignment">
<summary>
Gets or sets the horizontal alignment of an object or text in a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.VerticalAlignment">
<summary>
Gets or sets the vertical alignment of an object or text in a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.Font">
<summary>
Gets or sets the font information of an object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.DrawPrimaryButton">
<summary>
Gets or sets whether to draw the primary button for an object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.DrawSecondaryButton">
<summary>
Gets or sets whether to draw the secondary button for an object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.VisualStyles">
<summary>
Gets or sets whether to render using VisualStyles.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.SortState">
<summary>
Gets or sets the state of sorting.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.FilterState">
<summary>
Gets or sets the state of filtering.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.MouseOver">
<summary>
Gets or sets whether the mouse is over the rendered item
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.ShowActive">
<summary>
Gets or sets whether rendered item should display an active or hot state
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.DisplayZero">
<summary>
Gets or sets whether zero values are displayed in cells
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.RightToLeft">
<summary>
Gets or sets whether object should paint right to left
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.ContainsSelection">
<summary>
Gets or sets whether the rendered item should paint as if it is selected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.TextIndent">
<summary>
Gets or sets the amount to indent the text in a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.CellPadding">
<summary>
Gets or sets the amount of spaces to cell padding in the cell(s) in pixels.
</summary>
<value>The cell padding.</value>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.DrawEditButton">
<summary>
Gets or sets whether to draw the edit button for an object.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Appearance.RowSelectorState">
<summary>
Gets or sets row header selector state.
Internal used only.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.FpScrollBarButtonClickEventHandler">
<summary>
Represents a defined method that handles the FpScrollBarButtonClickEventArgs event
for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.FpScrollBarButton">
<summary>
Represents the FarPoint scroll bar button.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButton.#ctor(System.Object)">
<summary>
Creates a new FarPoint scroll bar button for the specified parent.
</summary>
<param name="parent"></param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButton.#ctor">
<summary>
Creates a new FarPoint scroll bar button.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButton.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new FarPoint scroll bar button from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButton.GetPreferredSize">
<summary>
Gets the preferred (maximum) size.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButton.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButton.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButton.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info"><see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data</param>
<param name="context">Destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization</param>
<exception cref="T:System.Security.SecurityException">Caller does not have the required permission</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButton.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>
A new object that is a copy of this instance.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButton.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>.
</summary>
<param name="obj"><see cref="T:System.Object"></see> to compare with the current <see cref="T:System.Object"></see></param>
<returns>
true if the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>; false otherwise
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButton.GetHashCode">
<summary>
Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode"></see> is suitable for use in hashing algorithms and data structures like a hash table.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBarButton.ScrollOrientation">
<summary>
Gets the orientation of the FarPoint scroll bar.
</summary>
<value>Scroll orientation</value>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBarButton.Parent">
<summary>
Gets or sets the parent of the FarPoint scroll bar.
</summary>
<value>Parent</value>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBarButton.State">
<summary>
Gets or sets the state of the scroll bar.
</summary>
<value>State of the scroll bar.</value>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBarButton.ChangeType">
<summary>
Gets or sets the type of change of the scroll bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBarButton.ChangeValue">
<summary>
Gets or sets the moving value of the button when the scroll bar button is clicked.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBarButton.Visible">
<summary>
Gets or sets whether the scroll bar is displayed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.FpScrollBarButtonBackwardLine">
<summary>
Represents a FarPoint scroll bar back-by-line button.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonBackwardLine.#ctor(System.Object)">
<summary>
Creates a new FarPoint scroll bar back-by-line button with the specified parent.
</summary>
<param name="parent"></param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonBackwardLine.#ctor">
<summary>
Creates a new FarPoint scroll bar back-by-line button.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonBackwardLine.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new FarPoint scroll bar back-by-line button from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonBackwardLine.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info"><see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data</param>
<param name="context">Destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization</param>
<exception cref="T:System.Security.SecurityException">Caller does not have the required permission</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonBackwardLine.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonBackwardLine.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>
A new object that is a copy of this instance.
</returns>
</member>
<member name="T:FarPoint.Win.Spread.FpScrollBarButtonForwardLine">
<summary>
Represents a FarPoint scroll bar forward-by-line button.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonForwardLine.#ctor(System.Object)">
<summary>
Creates a new FarPoint scroll bar forward-by-line with the specified parent.
</summary>
<param name="parent"></param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonForwardLine.#ctor">
<summary>
Creates a new FarPoint scroll bar forward-by-line .
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonForwardLine.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new FarPoint scroll bar forward-by-line button from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonForwardLine.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info"><see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data</param>
<param name="context">Destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization</param>
<exception cref="T:System.Security.SecurityException">Caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonForwardLine.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonForwardLine.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>
A new object that is a copy of this instance.
</returns>
</member>
<member name="T:FarPoint.Win.Spread.FpScrollBarButtonBackwardPage">
<summary>
Represents a FarPoint scroll bar page back button.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonBackwardPage.#ctor(System.Object)">
<summary>
Creates a new FarPoint scroll bar page back button with the specified parent.
</summary>
<param name="parent"></param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonBackwardPage.#ctor">
<summary>
Creates a new FarPoint scroll bar page back button.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonBackwardPage.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new FarPoint scroll bar page back button from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonBackwardPage.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info"><see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data</param>
<param name="context">Destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization</param>
<exception cref="T:System.Security.SecurityException">Caller does not have the required permission</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonBackwardPage.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonBackwardPage.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>
A new object that is a copy of this instance.
</returns>
</member>
<member name="T:FarPoint.Win.Spread.FpScrollBarButtonForwardPage">
<summary>
Represents a FarPoint scroll bar page forward button.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonForwardPage.#ctor(System.Object)">
<summary>
Creates a new FarPoint scroll bar page back button with the specified parent.
</summary>
<param name="parent"></param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonForwardPage.#ctor">
<summary>
Creates a new FarPoint scroll bar page back button.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonForwardPage.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new FarPoint scroll bar page back button from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonForwardPage.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info"><see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data</param>
<param name="context">Destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization</param>
<exception cref="T:System.Security.SecurityException">Caller does not have the required permission</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonForwardPage.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonForwardPage.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>
A new object that is a copy of this instance.
</returns>
</member>
<member name="T:FarPoint.Win.Spread.FpScrollBarButtonBackwardHome">
<summary>
Represents a FarPoint scroll bar backward-to-home button.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonBackwardHome.#ctor(System.Object)">
<summary>
Creates a new FarPoint scroll bar backward-to-home button with the specified parent.
</summary>
<param name="parent"></param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonBackwardHome.#ctor">
<summary>
Creates a new FarPoint scroll bar backward-to-home button.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonBackwardHome.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new FarPoint scroll bar backward-to-home button from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonBackwardHome.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info"><see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data</param>
<param name="context">Destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization</param>
<exception cref="T:System.Security.SecurityException">Caller does not have the required permission</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonBackwardHome.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonBackwardHome.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>
A new object that is a copy of this instance.
</returns>
</member>
<member name="T:FarPoint.Win.Spread.FpScrollBarButtonForwardEnd">
<summary>
Represents a FarPoint scroll bar forward-to-end button.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonForwardEnd.#ctor(System.Object)">
<summary>
Creates a new FarPoint scroll bar forward-to-end button with the specified parent.
</summary>
<param name="parent"></param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonForwardEnd.#ctor">
<summary>
Creates a new FarPoint scroll bar forward-to-end button.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonForwardEnd.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new FarPoint scroll bar forward-to-end button from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonForwardEnd.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info"><see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data</param>
<param name="context">Destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization</param>
<exception cref="T:System.Security.SecurityException">Caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonForwardEnd.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonForwardEnd.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>
A new object that is a copy of this instance.
</returns>
</member>
<member name="T:FarPoint.Win.Spread.FpScrollBarThumb">
<summary>
Represents a FarPoint scroll bar thumb.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarThumb.#ctor(System.Object)">
<summary>
Creates a new FarPoint scroll bar thumb with the specified parent.
</summary>
<param name="parent">Parent object</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarThumb.#ctor(System.Object,FarPoint.Win.Spread.FpScrollBarGripper)">
<summary>
Creates a new FarPoint scroll bar thumb with the specified parent and grip.
</summary>
<param name="parent">Parent object</param>
<param name="scrollGripper">FarPoint scroll bar gripper object</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarThumb.#ctor">
<summary>
Creates a new FarPoint scroll bar thumb.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarThumb.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new FarPoint scroll bar thumb from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarThumb.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info"><see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data</param>
<param name="context">Destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarThumb.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarThumb.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarThumb.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>
A new object that is a copy of this instance.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarThumb.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>.
</summary>
<param name="obj"><see cref="T:System.Object"></see> to compare with the current <see cref="T:System.Object"></see></param>
<returns>
true if the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>; false otherwise
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarThumb.GetHashCode">
<summary>
Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode"></see> is suitable for use in hashing algorithms and data structures like a hash table.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBarThumb.ScrollGripper">
<summary>
Gets or sets the FarPoint scroll bar grip.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.FpScrollBarTrack">
<summary>
Represents a FarPoint scroll bar track.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarTrack.#ctor(System.Object)">
<summary>
Creates a new FarPoint scroll bar track with the specified parent.
</summary>
<param name="parent">Parent object</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarTrack.#ctor">
<summary>
Creates a new FarPoint scroll bar track.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarTrack.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new FarPoint scroll bar track from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarTrack.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info"><see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data</param>
<param name="context">Destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization</param>
<exception cref="T:System.Security.SecurityException">Caller does not have the required permission</exception>
</member>
<member name="T:FarPoint.Win.Spread.FpScrollBarTrackBackward">
<summary>
Represents the backward track of the FarPoint scroll bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarTrackBackward.#ctor(System.Object)">
<summary>
Creates a new FarPoint scroll bar backward track with the specified parent.
</summary>
<param name="parent">Parent object</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarTrackBackward.#ctor">
<summary>
Creates a new FarPoint scroll bar backward track.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarTrackBackward.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new FarPoint scroll bar backward track from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarTrackBackward.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info"><see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data</param>
<param name="context">Destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization</param>
<exception cref="T:System.Security.SecurityException">Caller does not have the required permission</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarTrackBackward.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>
A new object that is a copy of this instance.
</returns>
</member>
<member name="T:FarPoint.Win.Spread.FpScrollBarTrackForward">
<summary>
Represents the forward track of the FarPoint scroll bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarTrackForward.#ctor(System.Object)">
<summary>
Creates a new FarPoint scroll bar forward track with the specified parent.
</summary>
<param name="parent">Parent object</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarTrackForward.#ctor">
<summary>
Creates a new FarPoint scroll bar forward track.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarTrackForward.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new FarPoint scroll bar forward track from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarTrackForward.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info"><see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data</param>
<param name="context">Destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization</param>
<exception cref="T:System.Security.SecurityException">Caller does not have the required permission</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarTrackForward.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>
A new object that is a copy of this instance.
</returns>
</member>
<member name="T:FarPoint.Win.Spread.FpScrollBarGripper">
<summary>
Represents the FarPoint scroll bar grip.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarGripper.#ctor(System.Object)">
<summary>
Creates a new FarPoint scroll bar grip with the specified parent.
</summary>
<param name="parent">Parent object</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarGripper.#ctor">
<summary>
Creates a new FarPoint scroll bar grip.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarGripper.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new FarPoint scroll bar grip from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarGripper.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info"><see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data</param>
<param name="context">Destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization</param>
<exception cref="T:System.Security.SecurityException">Caller does not have the required permission</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarGripper.GetPreferredSize">
<summary>
Gets the preferred (maximum) size.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarGripper.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>
A new object that is a copy of this instance.
</returns>
</member>
<member name="T:FarPoint.Win.Spread.FpScrollBarComboThumb">
<summary>
Represents a combination of the backward track, forward track, and thumb of the scroll bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarComboThumb.#ctor(System.Object,FarPoint.Win.Spread.FpScrollBarTrackBackward,FarPoint.Win.Spread.FpScrollBarThumb,FarPoint.Win.Spread.FpScrollBarTrackForward)">
<summary>
Creates a new combination of the backward track, forward track, and thumb
of the scroll bar with the specified parent.
</summary>
<param name="parent">Parent object</param>
<param name="scrollTrackBackward">FarPoint scroll bar track backward object</param>
<param name="scrollThumb">FarPoint scroll bar thumb object</param>
<param name="scrollTrackForward">FarPoint scroll bar track forward object</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarComboThumb.#ctor">
<summary>
Creates a new combination of the backward track, forward track, and thumb
of the scroll bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarComboThumb.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new combination of the backward track, forward track, and thumb
of the scroll bar from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarComboThumb.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info"><see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data</param>
<param name="context">Destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarComboThumb.GetPreferredSize">
<summary>
Gets the preferred (maximum) size.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarComboThumb.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarComboThumb.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarComboThumb.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarComboThumb.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>
A new object that is a copy of this instance.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarComboThumb.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>.
</summary>
<param name="obj"><see cref="T:System.Object"></see> to compare with the current <see cref="T:System.Object"></see></param>
<returns>
true if the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>; false otherwise
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarComboThumb.GetHashCode">
<summary>
Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode"></see> is suitable for use in hashing algorithms and data structures like a hash table.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBarComboThumb.ScrollTrackBackward">
<summary>
Gets or sets the backward track of the FarPoint scroll bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBarComboThumb.ScrollThumb">
<summary>
Gets or sets the thumb of the FarPoint scroll bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBarComboThumb.ScrollTrackForward">
<summary>
Gets or sets the forward track of the FarPoint scroll bar.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.FpScrollBarButtonCollection">
<summary>
Represents the collection of the elements of the FarPoint scroll bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.#ctor">
<summary>
Creates a new collection of FarPoint scroll bar buttons.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.#ctor(FarPoint.Win.Spread.FpScrollBar)">
<summary>
Creates a new collection of FarPoint scroll bar buttons with the specified parent.
</summary>
<param name="parent">Parent FarPoint scroll bar object</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new collection of FarPoint scroll bar buttons from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.#ctor(FarPoint.Win.Spread.FpScrollBarButton[])">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.FpScrollBarButtonCollection"/> class.
</summary>
<param name="buttons">Array of FarPoint scroll bar button objects</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.#ctor(System.String)">
<summary>
Creates a new collection of FarPoint scroll bar buttons with the specified value.
</summary>
<param name="value">String object</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.AddRange(System.Collections.ICollection)">
<summary>
Adds a range of objects of the collection.
</summary>
<param name="c">Collection</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.op_Implicit(FarPoint.Win.Spread.ScrollBarButtons)~FarPoint.Win.Spread.FpScrollBarButtonCollection">
<summary>
Performs an implicit conversion from <see cref="T:FarPoint.Win.Spread.ScrollBarButtons"/> to <see cref="T:FarPoint.Win.Spread.FpScrollBarButtonCollection"/>.
</summary>
<param name="scrollBarButtons">ScrollBarButtons object</param>
<returns>The FpScrollBarButtonCollection object of the conversion</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.op_Implicit(FarPoint.Win.Spread.FpScrollBarButtonCollection)~FarPoint.Win.Spread.ScrollBarButtons">
<summary>
Performs an implicit conversion from <see cref="T:FarPoint.Win.Spread.FpScrollBarButtonCollection"/> to <see cref="T:FarPoint.Win.Spread.ScrollBarButtons"/>.
</summary>
<param name="buttonsCollection">FpScrollBarButtonCollection object</param>
<returns>The ScrollBarButtons object of the conversion</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>.
</summary>
<param name="obj"><see cref="T:System.Object"></see> to compare with the current <see cref="T:System.Object"></see></param>
<returns>
true if the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>; false otherwise
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.GetHashCode">
<summary>
Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode"></see> is suitable for use in hashing algorithms and data structures like a hash table.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.Add(System.Object)">
<summary>
Adds an item to the <see cref="T:System.Collections.IList"></see>.
</summary>
<param name="value">The <see cref="T:System.Object"></see> to add to the <see cref="T:System.Collections.IList"></see></param>
<returns>
The position into which the new element was inserted.
</returns>
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.IList"></see> is read-only.-or- The <see cref="T:System.Collections.IList"></see> has a fixed size. </exception>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.Clear">
<summary>
Removes all items from the <see cref="T:System.Collections.IList"></see>.
</summary>
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.IList"></see> is read-only. </exception>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.Contains(System.Object)">
<summary>
Determines whether the <see cref="T:System.Collections.IList"></see> contains a specific value.
</summary>
<param name="value">The <see cref="T:System.Object"></see> to locate in the <see cref="T:System.Collections.IList"></see></param>
<returns>
true if the <see cref="T:System.Object"></see> is found in the <see cref="T:System.Collections.IList"></see>; false otherwise
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.IndexOf(System.Object)">
<summary>
Determines the index of a specific item in the <see cref="T:System.Collections.IList"></see>.
</summary>
<param name="value">The <see cref="T:System.Object"></see> to locate in the <see cref="T:System.Collections.IList"></see></param>
<returns>
The index of value if found in the list; otherwise, -1.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.Insert(System.Int32,System.Object)">
<summary>
Inserts an item to the <see cref="T:System.Collections.IList"></see> at the specified index.
</summary>
<param name="index">The zero-based index at which value should be inserted</param>
<param name="value">The <see cref="T:System.Object"></see> to insert into the <see cref="T:System.Collections.IList"></see></param>
<exception cref="T:System.ArgumentOutOfRangeException">index is not a valid index in the <see cref="T:System.Collections.IList"></see>. </exception>
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.IList"></see> is read-only.-or- The <see cref="T:System.Collections.IList"></see> has a fixed size. </exception>
<exception cref="T:System.NullReferenceException">value is null reference in the <see cref="T:System.Collections.IList"></see>.</exception>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.Remove(System.Object)">
<summary>
Removes the first occurrence of a specific object from the <see cref="T:System.Collections.IList"></see>.
</summary>
<param name="value">The <see cref="T:System.Object"></see> to remove from the <see cref="T:System.Collections.IList"></see></param>
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.IList"></see> is read-only.-or- The <see cref="T:System.Collections.IList"></see> has a fixed size. </exception>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.RemoveAt(System.Int32)">
<summary>
Removes the <see cref="T:System.Collections.IList"></see> item at the specified index.
</summary>
<param name="index">The zero-based index of the item to remove</param>
<exception cref="T:System.ArgumentOutOfRangeException">index is not a valid index in the <see cref="T:System.Collections.IList"></see>. </exception>
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.IList"></see> is read-only.-or- The <see cref="T:System.Collections.IList"></see> has a fixed size. </exception>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.CopyTo(System.Array,System.Int32)">
<summary>
Copies the buttons of the <see cref="T:System.Collections.ICollection"></see> to an <see cref="T:System.Array"></see>, starting at a particular <see cref="T:System.Array"></see> index.
</summary>
<param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the buttons copied from <see cref="T:System.Collections.ICollection"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing</param>
<param name="index">The zero-based index in array at which copying begins</param>
<exception cref="T:System.ArgumentNullException">array is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException">index is less than zero. </exception>
<exception cref="T:System.ArgumentException">array is multidimensional.-or- index is equal to or greater than the length of array.-or- The number of buttons in the source <see cref="T:System.Collections.ICollection"></see> is greater than the available space from index to the end of the destination array. </exception>
<exception cref="T:System.InvalidCastException">The type of the source <see cref="T:System.Collections.ICollection"></see> cannot be cast automatically to the type of the destination array. </exception>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.GetEnumerator">
<summary>
Returns an enumerator that iterates through a collection.
</summary>
<returns>
An <see cref="T:System.Collections.IEnumerator"></see> object that can be used to iterate through the collection.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollection.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>
A new object that is a copy of this instance.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBarButtonCollection.Empty">
<summary>
Gets the empty collection of the FarPoint scroll bar buttons.
</summary>
<value>Empty object of FpScrollBarButtonCollection</value>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBarButtonCollection.Items">
<summary>
Gets the items.
</summary>
<value>ArrayList object.</value>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBarButtonCollection.Maximumbuttonscount">
<summary>
Gets or sets the maximum number of buttons.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBarButtonCollection.ComboThumb">
<summary>
Gets the combination of tracks and thumb of the FarPoint scroll bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBarButtonCollection.IsFixedSize">
<summary>
Gets whether the <see cref="T:System.Collections.IList"></see> has a fixed size.
</summary>
<value></value>
<returns>true if the <see cref="T:System.Collections.IList"></see> has a fixed size; false otherwise</returns>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBarButtonCollection.IsReadOnly">
<summary>
Gets a value indicating whether the <see cref="T:System.Collections.IList"></see> is read-only.
</summary>
<value></value>
<returns>true if the <see cref="T:System.Collections.IList"></see> is read-only; false otherwise</returns>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBarButtonCollection.Item(System.Int32)">
<summary>
Gets or sets the <see cref="T:System.Object"/> at the specified index.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBarButtonCollection.Count">
<summary>
Gets the number of buttons contained in the <see cref="T:System.Collections.ICollection"></see>.
</summary>
<value></value>
<returns>The number of buttons contained in the <see cref="T:System.Collections.ICollection"></see>.</returns>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBarButtonCollection.IsSynchronized">
<summary>
Gets whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).
</summary>
<value></value>
<returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); false otherwise</returns>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBarButtonCollection.SyncRoot">
<summary>
Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.
</summary>
<value></value>
<returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</returns>
</member>
<member name="T:FarPoint.Win.Spread.FpVerticalScrollBar">
<summary>
Represents the FarPoint vertical scroll bar.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.FpScrollBar">
<summary>
Represents the FarPoint scroll bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.#ctor">
<summary>
Initializes the <see cref="T:FarPoint.Win.Spread.FpScrollBar"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new FarPoint scroll bar from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.OnEnabledChanged(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.EnabledChanged"></see> event.
</summary>
<param name="e">An <see cref="T:System.EventArgs"></see> that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.OnHandleCreated(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated"></see> event.
</summary>
<param name="e">An <see cref="T:System.EventArgs"></see> that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.OnScroll(System.Windows.Forms.ScrollEventArgs)">
<summary>
Raises the Scroll event.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ScrollEventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.OnValueChanged(System.EventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.FpScrollBar.ValueChanged"/> event.
</summary>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.OnRightToLeftChanged(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.RightToLeftChanged"></see> event.
</summary>
<param name="e">An <see cref="T:System.EventArgs"></see> that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.OnPaint(System.Windows.Forms.PaintEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.Paint"></see> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs"></see> that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.OnSizeChanged(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.SizeChanged"></see> event.
</summary>
<param name="e">An <see cref="T:System.EventArgs"></see> that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.MouseHover"></see> event.
</summary>
<param name="e">An <see cref="T:System.EventArgs"></see> that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.OnMouseLeave(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.MouseLeave"></see> event.
</summary>
<param name="e">An <see cref="T:System.EventArgs"></see> that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.MouseDown"></see> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"></see> that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.MouseUp"></see> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"></see> that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.TimerTick(System.Object,System.EventArgs)">
<summary>
Raise the click event when the timer is start.
</summary>
<param name="sender">The source of the event</param>
<param name="e">A EventArgs that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.IsInputKey(System.Windows.Forms.Keys)">
<summary>
Determines whether the specified key is a regular input key or a special key that requires preprocessing.
</summary>
<param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys"></see> values</param>
<returns>
true if the specified key is a regular input key; false otherwise
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
<summary>
Process scroll of the FarPoint scroll bar through keyboard.
</summary>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.OnButtonClick(System.Object,FarPoint.Win.Spread.FpScrollBarButtonClickEventArgs)">
<summary>
Called when click the scroll bar button.
</summary>
<param name="sender">The event source</param>
<param name="e">A FpScrollBarButtonClickEventArgs that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.UpdateScrollBar">
<summary>
Updates the scroll bar when the scroll bar has been changed.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.HitTest(System.Int32,System.Int32)">
<summary>
Gets the element that contain the special point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.InvalidateElement(FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
refresh the element
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.GetScrollBarLayout">
<summary>
Gets the scroll bar layout.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.GetThumbMaximum">
<summary>
Gets maximum value when the thumb moves to end.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.CreateSystemContextMenu">
<summary>
Create the pop-up menu for the scroll bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.OnContextMenuHere(System.Object,System.EventArgs)">
<summary>
Handles context menu click event,and process the menu here action.
</summary>
<param name="sender">The event source</param>
<param name="e">A EventArgs that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.OnContextMenuStart(System.Object,System.EventArgs)">
<summary>
Handles context menu click event.
</summary>
<param name="sender">The event source</param>
<param name="e">A EventArgs that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.OnContextMenuEnd(System.Object,System.EventArgs)">
<summary>
Handles context menu click event.
</summary>
<param name="sender">The event source</param>
<param name="e">A EventArgs that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.OnContextMenuMinusLargeChange(System.Object,System.EventArgs)">
<summary>
Handles context menu click event.
</summary>
<param name="sender">The event source</param>
<param name="e">A EventArgs that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.OnContextMenuPlusLargeChange(System.Object,System.EventArgs)">
<summary>
Handles context menu click event.
</summary>
<param name="sender">The event source</param>
<param name="e">A EventArgs that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.OnContextMenuMinusSmallChange(System.Object,System.EventArgs)">
<summary>
Handles context menu click event.
</summary>
<param name="sender">The event source</param>
<param name="e">A EventArgs that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.OnContextMenuPlusSmallChange(System.Object,System.EventArgs)">
<summary>
Handles context menu click event.
</summary>
<param name="sender">The event source</param>
<param name="e">A EventArgs that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.SetButtonsParent">
<summary>
Sets the buttons parent.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.IsValidBounds(System.Drawing.Rectangle)">
<summary>
Determines whether the specified bounds are valid bounds.
</summary>
<param name="bounds">Bounds</param>
<returns>
<c>true</c> if bounds is valid; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBar.OnDeserialization(System.Object)">
<summary>
Runs when the entire object graph has been deserialized.
</summary>
<param name="sender">The object that initiated the callback. The functionality for this parameter is not currently implemented</param>
</member>
<member name="E:FarPoint.Win.Spread.FpScrollBar.AutoSizeChanged">
<summary>
This event is not relevant for this class.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpScrollBar.BackColorChanged">
<summary>
Occurs when the value of the <see cref="P:System.Windows.Forms.Control.BackColor"></see> property changes.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpScrollBar.BackgroundImageChanged">
<summary>
Occurs when the value of the <see cref="P:System.Windows.Forms.Control.BackgroundImage"></see> property changes.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpScrollBar.BackgroundImageLayoutChanged">
<summary>
Occurs when the <see cref="P:System.Windows.Forms.Control.BackgroundImageLayout"></see> property changes.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpScrollBar.Click">
<summary>
Occurs when the control is clicked.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpScrollBar.DoubleClick">
<summary>
Occurs when the control is double-clicked.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpScrollBar.FontChanged">
<summary>
Occurs when the <see cref="P:System.Windows.Forms.Control.Font"></see> property value changes.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpScrollBar.ForeColorChanged">
<summary>
Occurs when the <see cref="P:System.Windows.Forms.Control.ForeColor"></see> property value changes.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpScrollBar.ImeModeChanged">
<summary>
Occurs when the <see cref="P:System.Windows.Forms.Control.ImeMode"></see> property has changed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpScrollBar.MouseClick">
<summary>
Occurs when the control is clicked by the mouse.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpScrollBar.MouseDoubleClick">
<summary>
Occurs when the control is double clicked by the mouse.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpScrollBar.MouseDown">
<summary>
Occurs when the mouse pointer is over the control and a mouse button is pressed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpScrollBar.MouseMove">
<summary>
Occurs when the mouse pointer is moved over the control.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpScrollBar.MouseUp">
<summary>
Occurs when the mouse pointer is over the control and a mouse button is released.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpScrollBar.Paint">
<summary>
Occurs when the control is redrawn.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpScrollBar.TextChanged">
<summary>
Occurs when the <see cref="P:System.Windows.Forms.Control.Text"></see> property value changes.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpScrollBar.Scroll">
<summary>
Occurs when the scroll bar is scrolling.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpScrollBar.ValueChanged">
<summary>
Occurs when the value of the scroll bar is changed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpScrollBar.ButtonClick">
<summary>
Occurs when a button of the scroll bar is clicked.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.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>
<returns>The <see cref="T:System.Drawing.Point"></see> that represents the upper-left corner of the control relative to the upper-left corner of its container.</returns>
<PermissionSet><IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/><IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/><IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence"/><IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/></PermissionSet>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.AutoSize">
<summary>
This property is not relevant for this class.
</summary>
<returns>true if enabled; false otherwise</returns>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.BackColor">
<summary>
Gets or sets the background color for the control.
</summary>
<value></value>
<returns>A <see cref="T:System.Drawing.Color"></see> that represents the background color of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultBackColor"></see> property.</returns>
<PermissionSet><IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/></PermissionSet>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.BackgroundImage">
<summary>
Gets or sets the background image displayed in the control.
</summary>
<returns>An <see cref="T:System.Drawing.Image"></see> that represents the image to display in the background of the control.</returns>
<PermissionSet><IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/></PermissionSet>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.BackgroundImageLayout">
<summary>
Gets or sets the background image layout as defined in the <see cref="T:System.Windows.Forms.ImageLayout"></see> enumeration.
</summary>
<returns>One of the values of <see cref="T:System.Windows.Forms.ImageLayout"></see> (<see cref="F:System.Windows.Forms.ImageLayout.Center"></see> , <see cref="F:System.Windows.Forms.ImageLayout.None"></see>, <see cref="F:System.Windows.Forms.ImageLayout.Stretch"></see>, <see cref="F:System.Windows.Forms.ImageLayout.Tile"></see>, or <see cref="F:System.Windows.Forms.ImageLayout.Zoom"></see>). <see cref="F:System.Windows.Forms.ImageLayout.Tile"></see> is the default value.</returns>
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified enumeration value does not exist. </exception>
<PermissionSet><IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/></PermissionSet>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.Font">
<summary>
Gets or sets the font of the text displayed by the control.
</summary>
<returns>The <see cref="T:System.Drawing.Font"></see> to apply to the text displayed by the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultFont"></see> property.</returns>
<PermissionSet><IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/><IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/><IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence"/><IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/></PermissionSet>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.ForeColor">
<summary>
Gets or sets the foreground color of the control.
</summary>
<returns>The foreground <see cref="T:System.Drawing.Color"></see> of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultForeColor"></see> property.</returns>
<PermissionSet><IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/></PermissionSet>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.ImeMode">
<summary>
Gets or sets the Input Method Editor (IME) mode of the control.
</summary>
<returns>One of the <see cref="T:System.Windows.Forms.ImeMode"></see> values. The default is <see cref="F:System.Windows.Forms.ImeMode.Inherit"></see>.</returns>
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The assigned value is not one of the <see cref="T:System.Windows.Forms.ImeMode"></see> enumeration values. </exception>
<PermissionSet><IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/><IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/><IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence"/><IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/></PermissionSet>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.Text">
<summary>
Gets or sets the text associated with this control.
</summary>
<returns>The text associated with this control.</returns>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.Width">
<summary>
Gets or sets the width of the control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.Height">
<summary>
Gets or sets the height of the control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.Buttons">
<summary>
Gets or sets the FarPoint scroll bar buttons collection.
</summary>
<value>Buttons</value>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.Renderer">
<summary>
Get or sets the scroll bar renderer that draws the skin of the scroll bar.
</summary>
<value>Renderer</value>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.Size">
<summary>
Gets or sets the size of the control.
</summary>
<returns><see cref="T:System.Drawing.Size"></see> that represents the height and width of the control in pixels.</returns>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.TabStop">
<summary>
Gets or sets whether the user can give the focus to this control using the TAB key.
</summary>
<returns>true if the user can give the focus to the control using the TAB key; false otherwise</returns>
The default value is true.This property will always return true for an instance of the <see cref="T:System.Windows.Forms.Form"></see> class.
<PermissionSet><IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/><IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/><IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence"/><IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true"/></PermissionSet>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.CreateParams">
<summary>
Gets the required creation parameters when the control handle is created.
</summary>
<returns>A <see cref="T:System.Windows.Forms.CreateParams"></see> that contains the required creation parameters when the handle to the control is created.</returns>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.DefaultImeMode">
<summary>
Gets the default Input Method Editor (IME) mode supported by the control.
</summary>
<returns>One of the <see cref="T:System.Windows.Forms.ImeMode"></see> values.</returns>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.DefaultMargin">
<summary>
Gets the space between controls, in pixels, that is specified by default.
</summary>
<returns>A <see cref="T:System.Windows.Forms.Padding"></see> that represents the default space between controls.</returns>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.ScrollBarShowMax">
<summary>
Get the value of ScrollbarShowMax
If the parent control is Spread return parent.ScrollBarShowMax
Else return true
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.LargeChange">
<summary>
Gets or sets the amount of a large change.
</summary>
<value>Amount of a large change</value>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.Maximum">
<summary>
Gets or sets the maximum value.
</summary>
<value>Maximum value</value>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.Minimum">
<summary>
Gets or sets the minimum value.
</summary>
<value>Minimum value</value>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.SmallChange">
<summary>
Gets or sets the amount of a small change.
</summary>
<value>Amount of a small change.</value>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.Value">
<summary>
Gets or sets the value.
</summary>
<value>Value</value>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.Enabled">
<summary>
Gets or sets whether the control responds to user interaction.
</summary>
<returns>true if the control can respond to user interaction; false otherwise The default is true.</returns>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.ScrollBarLayout">
<summary>
Gets or sets the scroll bar layout.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.InnerRectangle">
<summary>
Gets the inner rectangle (the rectangle of the FpScrollBarComboThumb object) of the scroll bar.
</summary>
<returns>The inner rectangle.</returns>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.ThumbSize">
<summary>
Gets the size of the thumb of the scroll bar.
</summary>
<value>Size of the thumb.</value>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.ThumbTrack">
<summary>
Gets the thumb of the scroll bar.
</summary>
<value>Thumb track</value>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.VisualStyles">
<summary>
Gets or sets the visual styles.
</summary>
<value>The visual styles.</value>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBar.ContextMenu">
<summary>
Gets or sets the shortcut menu associated with the control.
</summary>
<returns>A <see cref="T:System.Windows.Forms.ContextMenu"></see> that represents the shortcut menu associated with the control.</returns>
</member>
<member name="M:FarPoint.Win.Spread.FpVerticalScrollBar.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.FpVerticalScrollBar"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpVerticalScrollBar.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new FarPoint vertical scroll bar from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.FpVerticalScrollBar.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Gets the object data.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="P:FarPoint.Win.Spread.FpVerticalScrollBar.CreateParams">
<summary>
Gets the required creation parameters when the control handle is created.
</summary>
<value></value>
<returns>A <see cref="T:System.Windows.Forms.CreateParams"></see> that contains the required creation parameters when the handle to the control is created.</returns>
</member>
<member name="P:FarPoint.Win.Spread.FpVerticalScrollBar.DefaultSize">
<summary>
Gets the default size of the control.
</summary>
<value></value>
<returns>The default <see cref="T:System.Drawing.Size"></see> of the control.</returns>
</member>
<member name="P:FarPoint.Win.Spread.FpVerticalScrollBar.RightToLeft">
<summary>
Gets or sets the right-to-left setting of the control.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.FpVerticalScrollBar.RightToLeftChanged">
<summary>
Occurs when the <see cref="P:System.Windows.Forms.Control.RightToLeft"></see> property value changes.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.FpHorizontalScrollBar">
<summary>
Represents the FarPoint horizontal scroll bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpHorizontalScrollBar.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.FpHorizontalScrollBar"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpHorizontalScrollBar.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new FarPoint horizontal scroll bar from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.FpHorizontalScrollBar.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Gets the object data.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="P:FarPoint.Win.Spread.FpHorizontalScrollBar.CreateParams">
<summary>
Gets the required creation parameters when the control handle is created.
</summary>
<value></value>
<returns>A <see cref="T:System.Windows.Forms.CreateParams"></see> that contains the required creation parameters when the handle to the control is created.</returns>
</member>
<member name="P:FarPoint.Win.Spread.FpHorizontalScrollBar.DefaultSize">
<summary>
Gets the default size of the control.
</summary>
<value></value>
<returns>The default <see cref="T:System.Drawing.Size"></see> of the control.</returns>
</member>
<member name="P:FarPoint.Win.Spread.FpHorizontalScrollBar.RightToLeft">
<summary>
Gets or sets the right-to-left layout setting of the control.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ChangeType">
<summary>
Specifies the type of change (of movement of) the scroll bar button.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ChangeType.None">
<summary>
Indicates no movement of the scroll bar button
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ChangeType.SmallChange">
<summary>
Indicates a small amount of movement of the scroll bar button
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ChangeType.LargeChange">
<summary>
Indicates a large amount of movement of the scroll bar button
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ChangeType.MoveToHome">
<summary>
Indicates movement to the left (horiztonally) or to the top (vertically)
of the scroll bar button
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ChangeType.MoveToEnd">
<summary>
Indicates movement to the right (horiztonally) or to the bottom (vertically)
of the scroll bar button
</summary>
</member>
<member name="T:FarPoint.Win.Spread.FpScrollBarButtonClickEventArgs">
<summary>
Represents the event data for the FpScrollBarButtonClickEvent, for the FarPoint Spread component,
which occurs when the FarPoint scroll bar button is clicked.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonClickEventArgs.#ctor(FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Creates a new FarPoint scroll bar button click event.
</summary>
<param name="element">FarPoint scroll bar button element</param>
</member>
<member name="P:FarPoint.Win.Spread.FpScrollBarButtonClickEventArgs.Button">
<summary>
Gets or sets the scroll bar button that is clicked.
</summary>
<value>FpScrollBarButton object.</value>
</member>
<member name="T:FarPoint.Win.Spread.ScrollBarLayout">
<summary>
Represents layout of all of elements of the scroll bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ScrollBarLayout.#ctor(FarPoint.Win.Spread.FpScrollBar)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.ScrollBarLayout"/> class.
</summary>
<param name="scrollBar">FpScrollBar object</param>
</member>
<member name="M:FarPoint.Win.Spread.ScrollBarLayout.Dispose">
<summary>
release resource.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ScrollBarLayout.GetElementBounds(FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Gets the button bounds.
</summary>
<param name="element">FpScrollBarButton object</param>
<returns>the button bounds</returns>
</member>
<member name="M:FarPoint.Win.Spread.ScrollBarLayout.CreateScrollBarLayout(FarPoint.Win.Spread.FpScrollBarButtonCollection,System.Drawing.Rectangle,System.Boolean)">
<summary>
Creates the scroll bar layout.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ScrollBarLayout.OffsetHomeButton">
<summary>
Gets the home offset value of the combo thumb of the FarPoint scroll bar.
</summary>
<value>offset value</value>
</member>
<member name="P:FarPoint.Win.Spread.ScrollBarLayout.OffsetEndButton">
<summary>
Gets the end offset value of the combo thumb of the FarPoint scroll bar.
</summary>
<value>offset value</value>
</member>
<member name="P:FarPoint.Win.Spread.ScrollBarLayout.InnerRectangle">
<summary>
Gets the bounds of the combo thumb of the FarPoint scroll bar.
</summary>
<value>the bounds of the combo thumb of the FarPoint scroll bar</value>
</member>
<member name="T:FarPoint.Win.Spread.IScrollBarRenderer">
<summary>
Interface that supports painting the scroll bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IScrollBarRenderer.DrawArrowButton(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the arrow button.
</summary>
<param name="g">Graphics device interface for drawing the arrow button</param>
<param name="bounds">Rectangular bounds for drawing the arrow button</param>
<param name="element">FarPoint scroll bar button object</param>
</member>
<member name="M:FarPoint.Win.Spread.IScrollBarRenderer.DrawHorizontalThumb(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the horizontal thumb.
</summary>
<param name="g">Graphics device interface for drawing the thumb</param>
<param name="bounds">Rectangular bounds for drawing the thumb</param>
<param name="element">FarPoint scroll bar button object</param>
</member>
<member name="M:FarPoint.Win.Spread.IScrollBarRenderer.DrawHorizontalThumbGrip(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the horizontal thumb grip.
</summary>
<param name="g">Graphics device interface for drawing the thumb grip</param>
<param name="bounds">Rectangular bounds for drawing the thumb grip</param>
<param name="element">FarPoint scroll bar button object</param>
</member>
<member name="M:FarPoint.Win.Spread.IScrollBarRenderer.DrawLeftHorizontalTrack(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the left horizontal track.
</summary>
<param name="g">Graphics device interface for drawing the horizontal track</param>
<param name="bounds">Rectangular bounds for drawing the horizontal track</param>
<param name="element">FarPoint scroll bar button object</param>
</member>
<member name="M:FarPoint.Win.Spread.IScrollBarRenderer.DrawLowerVerticalTrack(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the lower vertical track.
</summary>
<param name="g">Graphics device interface for drawing the scroll bar</param>
<param name="bounds">Rectangle object</param>
<param name="element">FarPoint scroll bar button object</param>
</member>
<member name="M:FarPoint.Win.Spread.IScrollBarRenderer.DrawRightHorizontalTrack(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the right horizontal track.
</summary>
<param name="g">Graphics device interface for drawing the horizontal track</param>
<param name="bounds">Rectangular bounds for drawing the horizontal track</param>
<param name="element">FarPoint scroll bar button object</param>
</member>
<member name="M:FarPoint.Win.Spread.IScrollBarRenderer.DrawUpperVerticalTrack(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the upper vertical track.
</summary>
<param name="g">Graphics device interface for drawing the vertical track</param>
<param name="bounds">Rectangular bounds for drawing the vertical track</param>
<param name="element">FarPoint scroll bar button object</param>
</member>
<member name="M:FarPoint.Win.Spread.IScrollBarRenderer.DrawVerticalThumb(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the vertical thumb.
</summary>
<param name="g">Graphics device interface for drawing the thumb</param>
<param name="bounds">Rectangular bounds for drawing the thumb</param>
<param name="element">FarPoint scroll bar button object</param>
</member>
<member name="M:FarPoint.Win.Spread.IScrollBarRenderer.DrawVerticalThumbGrip(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the vertical thumb grip.
</summary>
<param name="g">Graphics device interface for drawing the thumb grip</param>
<param name="bounds">Rectangular bounds for drawing the thumb grip</param>
<param name="element">FarPoint scroll bar button object</param>
</member>
<member name="M:FarPoint.Win.Spread.IScrollBarRenderer.DrawCustomButton(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draw the custom button.
</summary>
<param name="g">Graphics device interface for drawing the custom button</param>
<param name="bounds">Rectangular bounds for drawing the custom button</param>
<param name="element">FarPoint scroll bar button object</param>
</member>
<member name="T:FarPoint.Win.Spread.DefaultScrollBarRenderer">
<summary>
Represents the scroll bar renderer that uses the default skin.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultScrollBarRenderer.IsValidBounds(System.Drawing.Rectangle)">
<summary>
Determines whether the bounds are valid for drawing the object.
</summary>
<param name="bounds">Rectangular bound for drawing the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultScrollBarRenderer.DrawClassicTrack(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarState)">
<summary>
Draws the scroll bar track for Windows Classic themes.
</summary>
<param name="g">Graphic device interface for drawing the scroll bar track</param>
<param name="bounds">Rectangular bound for drawing the scroll bar track</param>
<param name="state">Scroll bar state</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultScrollBarRenderer.DrawClassicThumb(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarState)">
<summary>
Draws the scroll bar thumb for Windows Classic themes.
</summary>
<param name="g">Graphic device interface for drawing the scroll bar thumb</param>
<param name="bounds">Rectangular bound for drawing the scroll bar thumb</param>
<param name="state">Scroll bar state</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultScrollBarRenderer.DrawBorder(System.Drawing.Graphics,System.Drawing.Color,System.Drawing.Rectangle,System.Int32)">
<summary>
Draws a rectangular border on the specified surface with the specified color.
</summary>
<param name="graphics">Graphics device interface for drawing the border</param>
<param name="color">Color to draw the border</param>
<param name="rectangle">Rectangular bounds for drawing the border</param>
<param name="thickness">Thickness of the border (in number of pixels)</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultScrollBarRenderer.DrawBorder3D(System.Drawing.Graphics,System.Drawing.Color,System.Drawing.Color,System.Drawing.Rectangle,System.Int32)">
<summary>
Draws a three-dimensional style border around the specified
rectangle using the specified colors.
</summary>
<param name="graphics">Graphics device interface for drawing the border</param>
<param name="lightColor">Color to draw the light color of the border</param>
<param name="shadeColor">Color to draw the shade color of the border</param>
<param name="rectangle">Rectangular bounds for drawing the border</param>
<param name="thickness">Thickness of the border (in number of pixels)</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultScrollBarRenderer.DrawArrowButton(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the arrow button.
</summary>
<param name="g">Graphics device interface for drawing the arrow button</param>
<param name="bounds">Rectangular bounds of the drawing</param>
<param name="element">FarPoint scroll bar button object</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultScrollBarRenderer.DrawHorizontalThumb(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the horizontal thumb.
</summary>
<param name="g">Graphics device interface for drawing the thumb</param>
<param name="bounds">Rectangular bounds of the drawing</param>
<param name="element">FarPoint scroll bar button object</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultScrollBarRenderer.DrawHorizontalThumbGrip(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the horizontal thumb grip.
</summary>
<param name="g">Graphics device interface for drawing the thumb grip</param>
<param name="bounds">Rectangular bounds of the drawing</param>
<param name="element">FarPoint scroll bar button object</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultScrollBarRenderer.DrawLeftHorizontalTrack(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the left horizontal track.
</summary>
<param name="g">Graphics device interface for drawing the track</param>
<param name="bounds">Rectangular bounds of the drawing</param>
<param name="element">FarPoint scroll bar button object</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultScrollBarRenderer.DrawLowerVerticalTrack(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the lower vertical track.
</summary>
<param name="g">Graphics device interface for drawing the track</param>
<param name="bounds">Rectangular bounds of the drawing</param>
<param name="element">FarPoint scroll bar button object</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultScrollBarRenderer.DrawRightHorizontalTrack(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the right horizontal track.
</summary>
<param name="g">Graphics device interface for drawing the track</param>
<param name="bounds">Rectangular bounds of the drawing</param>
<param name="element">FarPoint scroll bar button object</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultScrollBarRenderer.DrawUpperVerticalTrack(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the upper vertical track.
</summary>
<param name="g">Graphics device interface for drawing the track</param>
<param name="bounds">Rectangular bounds of the drawing</param>
<param name="element">FarPoint scroll bar button object</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultScrollBarRenderer.DrawVerticalThumb(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the vertical thumb.
</summary>
<param name="g">Graphics device interface for drawing the thumb</param>
<param name="bounds">Rectangular bounds of the drawing</param>
<param name="element">FarPoint scroll bar button object</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultScrollBarRenderer.DrawVerticalThumbGrip(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the vertical thumb grip.
</summary>
<param name="g">Graphics device interface for drawing the thumb grip</param>
<param name="bounds">Rectangular bounds of the drawing</param>
<param name="element">FarPoint scroll bar button object</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultScrollBarRenderer.DrawCustomButton(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draw the custom button.
</summary>
<param name="g">Graphics device interface for drawing the custom button</param>
<param name="bounds">Rectangular bounds of the drawing</param>
<param name="element">FarPoint scroll bar button object</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultScrollBarRenderer.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultScrollBarRenderer.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultScrollBarRenderer.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultScrollBarRenderer.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>.
</summary>
<param name="obj">The <see cref="T:System.Object"></see> to compare with the current <see cref="T:System.Object"></see></param>
<returns>
true if the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>; false otherwise
</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultScrollBarRenderer.GetHashCode">
<summary>
Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode"></see> is suitable for use in hashing algorithms and data structures like a hash table.
</summary>
<returns>Hash code for the current <see cref="T:System.Object"></see>.</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultScrollBarRenderer.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>New object that is a copy of this instance</returns>
</member>
<member name="P:FarPoint.Win.Spread.DefaultScrollBarRenderer.Default">
<summary>
Gets the default value of the default scroll bar renderer.
</summary>
<value>Default value of the default scroll bar renderer</value>
</member>
<member name="P:FarPoint.Win.Spread.DefaultScrollBarRenderer.IsSupported">
<summary>
Gets whether this instance is supported.
</summary>
<value>
<c>true</c> if this instance is supported; otherwise, <c>false</c>.
</value>
</member>
<member name="T:FarPoint.Win.Spread.DefaultScrollBarRenderer.ArrowInfo">
<summary>
Specifies the arrow information.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.EnhancedScrollBarRenderer">
<summary>
Represents the renderer that paints the the scroll bar with the enhanced skin.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedScrollBarRenderer.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.EnhancedScrollBarRenderer"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedScrollBarRenderer.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,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 <see cref="T:FarPoint.Win.Spread.EnhancedScrollBarRenderer"/> class.
</summary>
<param name="arrowColor">Color of the arrow</param>
<param name="arrowHoveredColor">Color of the arrow hovered</param>
<param name="arrowSelectedColor">Color of the arrow selected</param>
<param name="buttonBackgroundColor">Color of the button background</param>
<param name="buttonBorderColor">Color of the button border</param>
<param name="buttonHoveredBackgroundColor">Color of the button hovered background</param>
<param name="buttonHoveredBorderColor">Color of the button hovered border</param>
<param name="buttonSelectedBackgroundColor">Color of the button selected background</param>
<param name="buttonSelectedBorderColor">Color of the button selected border</param>
<param name="trackBarBackgroundColor">Color of the track bar background</param>
<param name="trackBarSelectedBackgroundColor">Color of the track bar selected background</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedScrollBarRenderer.DrawArrowButton(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the arrow button.
</summary>
<param name="g">Graphics object that represents drawing device context</param>
<param name="bounds">Rectangle object that represents drawing bounds</param>
<param name="element">FpScrollBarButton object that represents drawing object</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedScrollBarRenderer.DrawHorizontalThumb(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the horizontal thumb.
</summary>
<param name="g">Graphics object that represents drawing device context</param>
<param name="bounds">Rectangle object that represents drawing bounds</param>
<param name="element">FpScrollBarButton object that represents drawing object</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedScrollBarRenderer.DrawHorizontalThumbGrip(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the horizontal thumb grip.
</summary>
<param name="g">Graphics object that represents drawing device context</param>
<param name="bounds">Rectangle object that represents drawing bounds</param>
<param name="element">FpScrollBarButton object that represents drawing object</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedScrollBarRenderer.DrawLeftHorizontalTrack(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the left horizontal track.
</summary>
<param name="g">Graphics object that represents drawing device context</param>
<param name="bounds">Rectangle object that represents drawing bounds</param>
<param name="element">FpScrollBarButton object that represents drawing object</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedScrollBarRenderer.DrawLowerVerticalTrack(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the lower vertical track.
</summary>
<param name="g">Graphics object that represents drawing device context</param>
<param name="bounds">Rectangle object that represents drawing bounds</param>
<param name="element">FpScrollBarButton object that represents drawing object</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedScrollBarRenderer.DrawRightHorizontalTrack(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the right horizontal track.
</summary>
<param name="g">Graphics object that represents drawing device context</param>
<param name="bounds">Rectangle object that represents drawing bounds</param>
<param name="element">FpScrollBarButton object that represents drawing object</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedScrollBarRenderer.DrawUpperVerticalTrack(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the upper vertical track.
</summary>
<param name="g">Graphics object that represents drawing device context</param>
<param name="bounds">Rectangle object that represents drawing bounds</param>
<param name="element">FpScrollBarButton object that represents drawing object</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedScrollBarRenderer.DrawVerticalThumb(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the vertical thumb.
</summary>
<param name="g">Graphics object that represents drawing device context</param>
<param name="bounds">Rectangle object that represents drawing bounds</param>
<param name="element">FpScrollBarButton object that represents drawing object</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedScrollBarRenderer.DrawVerticalThumbGrip(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draws the vertical thumb grip.
</summary>
<param name="g">Graphics object that represents drawing device context</param>
<param name="bounds">Rectangle object that represents drawing bounds</param>
<param name="element">FpScrollBarButton object that represents drawing object</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedScrollBarRenderer.DrawCustomButton(System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.FpScrollBarButton)">
<summary>
Draw the custom button.
</summary>
<param name="g">Graphics object that represents drawing device context</param>
<param name="bounds">Rectangle object that represents drawing bounds</param>
<param name="element">FpScrollBarButton object that represents drawing object</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedScrollBarRenderer.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedScrollBarRenderer.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedScrollBarRenderer.ToString">
<summary>
Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</summary>
<returns>
A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedScrollBarRenderer.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>.
</summary>
<param name="obj">The <see cref="T:System.Object"></see> to compare with the current <see cref="T:System.Object"></see></param>
<returns>
true if the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>; false otherwise
</returns>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedScrollBarRenderer.GetHashCode">
<summary>
Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode"></see> is suitable for use in hashing algorithms and data structures like a hash table.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedScrollBarRenderer.Clone">
<summary>
Creates a new object that is a copy of the current instance.
</summary>
<returns>
A new object that is a copy of this instance.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedScrollBarRenderer.Default">
<summary>
Gets the default value of the EnhancedScrollBarRenderer.
</summary>
<value>The default value of the EnhancedScrollBarRenderer.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedScrollBarRenderer.ButtonBackgroundColor">
<summary>
Gets or sets the color of the button background.
</summary>
<value>The color of the button background.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedScrollBarRenderer.ButtonHoveredBackgroundColor">
<summary>
Gets or sets the color of the button hovered background.
</summary>
<value>The color of the button hovered background.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedScrollBarRenderer.ButtonSelectedBackgroundColor">
<summary>
Gets or sets the color of the button selected background.
</summary>
<value>The color of the button selected background.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedScrollBarRenderer.ButtonBorderColor">
<summary>
Gets or sets the color of the button border.
</summary>
<value>The color of the button border.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedScrollBarRenderer.ButtonHoveredBorderColor">
<summary>
Gets or sets the color of the button hovered border.
</summary>
<value>The color of the button hovered border.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedScrollBarRenderer.ButtonSelectedBorderColor">
<summary>
Gets or sets the color of the button selected border.
</summary>
<value>The color of the button selected border.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedScrollBarRenderer.ArrowColor">
<summary>
Gets or sets the color of the arrow.
</summary>
<value>The color of the arrow.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedScrollBarRenderer.ArrowHoveredColor">
<summary>
Gets or sets the color of the arrow hovered.
</summary>
<value>The color of the arrow hovered.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedScrollBarRenderer.ArrowSelectedColor">
<summary>
Gets or sets the color of the arrow selected.
</summary>
<value>The color of the arrow selected.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedScrollBarRenderer.TrackBarBackgroundColor">
<summary>
Gets or sets the color of the track bar background.
</summary>
<value>The color of the track bar background.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedScrollBarRenderer.TrackBarSelectedBackgroundColor">
<summary>
Gets or sets the color of the track bar selected background.
</summary>
<value>The color of the track bar selected background.</value>
</member>
<member name="T:FarPoint.Win.Spread.ScrollBarButtonsEditor">
<summary>
Represents the editor for the ScrollBarButtons property.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ScrollBarButtonsEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
<summary>
Edits the specified object's value using the editor style indicated by the <see cref="M:System.Drawing.Design.UITypeEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)"></see> method.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that can be used to gain additional context information</param>
<param name="provider">An <see cref="T:System.IServiceProvider"></see> that this editor can use to obtain services</param>
<param name="value">Object to edit</param>
<returns>
The new value of the object. If the value of the object has not changed, this should return the same object it was passed.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.ScrollBarButtonsEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Gets the editor style used by the <see cref="M:System.Drawing.Design.UITypeEditor.EditValue(System.IServiceProvider,System.Object)"></see> method.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that can be used to gain additional context information</param>
<returns>
A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle"></see> value that indicates the style of editor used by the <see cref="M:System.Drawing.Design.UITypeEditor.EditValue(System.IServiceProvider,System.Object)"></see> method.
If the <see cref="T:System.Drawing.Design.UITypeEditor"></see> does not support this method, then <see cref="M:System.Drawing.Design.UITypeEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)"></see> will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None"></see>.
</returns>
</member>
<member name="T:FarPoint.Win.Spread.ScrollBarButtonsEditorForm">
<summary>
The ScrollBarButtonsEditorForm class that be used through ScrollBarButtonsEditor.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ScrollBarButtonsEditorForm.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ScrollBarButtonsEditorForm.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">true if managed resources should be disposed; false otherwise</param>
</member>
<member name="M:FarPoint.Win.Spread.ScrollBarButtonsEditorForm.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ScrollBarButtonsEditorForm.#ctor(FarPoint.Win.Spread.FpScrollBarButtonCollection)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.ScrollBarButtonsEditorForm"/> class.
</summary>
<param name="buttonsIn">FpScrollBarButtonCollection object</param>
</member>
<member name="M:FarPoint.Win.Spread.ScrollBarButtonsEditorForm.LocalizeUIStrings">
<summary>
Localize all UI strings
</summary>
</member>
<member name="M:FarPoint.Win.Spread.FpScrollBarButtonCollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the given value object to the specified type, using the specified context and culture information.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that provides a format context</param>
<param name="culture">A <see cref="T:System.Globalization.CultureInfo"></see>. If null is passed, the current culture is assumed</param>
<param name="value">The <see cref="T:System.Object"></see> to convert</param>
<param name="destinationType">The <see cref="T:System.Type"></see> to convert the value parameter to</param>
<returns>
An <see cref="T:System.Object"></see> that represents the converted value.
</returns>
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
<exception cref="T:System.ArgumentNullException">The destinationType parameter is null. </exception>
</member>
<member name="T:FarPoint.Win.Spread.ColorUtility">
<summary>
Represents the methods for composing the color of the alpha blend.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ColorUtility.ComposeAlphaBlendedColor(System.Drawing.Color,System.Int32)">
<summary>
Composes the color of the alpha blend.
</summary>
<param name="color">Input color</param>
<param name="alpha">Alpha value</param>
<returns></returns>
<remarks>displayColor = sourceColor ¡Á alpha / 255 + backgroundColor ¡Á (255 ¨C alpha) / 255</remarks>
</member>
<member name="T:FarPoint.Win.Spread.ScrollBarButtons">
<summary>
Specifies the type of scroll bar buttons by specifying which elements of the scroll bar are displayed.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ScrollBarButtons.None">
<summary>
[0] Indicates that no elements of the scroll bar appear.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ScrollBarButtons.Thumb">
<summary>
[1] Indicates that the thumb combo of the scroll bar appears.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ScrollBarButtons.LineUpDown">
<summary>
[2] Indicates that the backward line button and the foward line button of the scroll bar appear.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ScrollBarButtons.PageUpDown">
<summary>
[4] Indicates that the backward page button and the foward page button of the scroll bar appear.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ScrollBarButtons.HomeEnd">
<summary>
[8] Indicates that the backward-to-home button and the foward-to-end button of the scroll bar appear.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.GridLineType">
<summary>
Specifies the type of grid lines.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.GridLineType.None">
<summary>
Displays no grid lines on the sheet
</summary>
</member>
<member name="F:FarPoint.Win.Spread.GridLineType.Flat">
<summary>
Displays grid lines on the sheet as flat, no contour
</summary>
</member>
<member name="F:FarPoint.Win.Spread.GridLineType.Lowered">
<summary>
Displays grid lines on the sheet to appear as lowered contour
</summary>
</member>
<member name="F:FarPoint.Win.Spread.GridLineType.Raised">
<summary>
Displays grid lines on the sheet to appear as raised contour
</summary>
</member>
<member name="T:FarPoint.Win.Spread.GridLine">
<summary>
Represents the grid lines.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GridLine.#ctor">
<summary>
Creates a new grid line.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GridLine.#ctor(FarPoint.Win.Spread.GridLineType)">
<summary>
Creates a new grid line of the specified line type.
</summary>
<param name="type">Type of grid line</param>
</member>
<member name="M:FarPoint.Win.Spread.GridLine.#ctor(FarPoint.Win.Spread.GridLineType,System.Drawing.Color)">
<summary>
Creates a new grid line of the specified line type and color.
</summary>
<param name="type">Type of grid line</param>
<param name="color">Color of grid line</param>
</member>
<member name="M:FarPoint.Win.Spread.GridLine.#ctor(FarPoint.Win.Spread.GridLineType,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color)">
<summary>
Creates a new grid line of the specified line type and colors.
</summary>
<param name="type">Type of grid line</param>
<param name="color">Color of grid line</param>
<param name="highlightColor">Highlight color for the grid line</param>
<param name="shadowColor">Shadow color for the grid line</param>
</member>
<member name="M:FarPoint.Win.Spread.GridLine.#ctor(FarPoint.Win.Spread.GridLineType,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Int32)">
<summary>
Creates a new grid line of the specified line type, colors, and width.
</summary>
<param name="type">Type of grid line</param>
<param name="color">Color of grid line</param>
<param name="highlightColor">Highlight color for the grid line</param>
<param name="shadowColor">Shadow color for the grid line</param>
<param name="width">Width of grid line</param>
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
The type is not one of the BorderStyle values.
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
The width is less that -1.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.GridLine.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Represents the grid lines.
</summary>
<param name="info">SerializationInfo object that holds the serialized object data</param>
<param name="context">StreamingContext object with contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.GridLine.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates the SerializationInfo class with information about
the <see cref="T:FarPoint.Win.Spread.GridLine"/> object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GridLine.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the grid line to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the grid line object</param>
</member>
<member name="M:FarPoint.Win.Spread.GridLine.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the grid line from XML.
</summary>
<param name="r">XmlNodeReader object from which to read the grid line object</param>
</member>
<member name="M:FarPoint.Win.Spread.GridLine.GetDisplayedWidth">
<summary>
Gets the displayed width of the grid line.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GridLine.ShouldSerializeWidth">
<summary>
Gets whether the Width property should be serialized.
</summary>
<returns>True if Width should be serialized, false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.GridLine.GetInsetLeft">
<summary>
Gets the inset from the left.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GridLine.GetInsetTop">
<summary>
Gets the inset from the top.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GridLine.GetInsetRight">
<summary>
Gets the inset from the right.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GridLine.GetInsetBottom">
<summary>
Gets the inset from the bottom.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GridLine.Type">
<summary>
Gets whether to display the grid lines and the type of grid lines to display.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GridLine.Color">
<summary>
Gets the color of the grid lines.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GridLine.HighlightColor">
<summary>
Gets the highlight color for the grid lines.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GridLine.ShadowColor">
<summary>
Gets the shadow color for the grid lines.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GridLine.Width">
<summary>
Gets the width of the grid lines.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.GridLineConverter">
<summary>
Converts GridLine objects from one data type to another.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GridLineConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)">
<summary>
Creates an object of this type by using a specified set of
property values for the object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GridLineConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Determines whether changing a value on this object should
require a call to the CreateInstance method to create a new
value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GridLineConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])">
<summary>
Retrieves the set of properties for this type.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GridLineConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Determines whether this object supports properties.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GridLineConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Converts a string to a GridLine object
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">object</param>
<returns>GridLine object</returns>
</member>
<member name="M:FarPoint.Win.Spread.GridLineConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns a value indicating whether a grid line object can be converted to the specified type.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="destinationType">Type</param>
<returns>True if a grid line object can be converted to the specified type, and false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.GridLineConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the GridLine object to a string.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">object</param>
<param name="destinationType">Type</param>
<returns>String representation of a GridLine object.</returns>
</member>
<member name="T:FarPoint.Win.Spread.GroupBarInfo">
<summary>
Represents information about the grouping bar in the FarPoint Spread component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GroupBarInfo.#ctor">
<summary>
Initializes a new instance of the GroupBarInfo class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GroupBarInfo.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new instance of the GroupBarInfo class from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.GroupBarInfo.ResetBackColor">
<summary>
Resets the BackColor property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GroupBarInfo.ResetFont">
<summary>
Resets the Font property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GroupBarInfo.ResetForeColor">
<summary>
Resets the ForeColor property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GroupBarInfo.ResetGroupVerticalIndent">
<summary>
Resets the GroupVerticalIndent property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GroupBarInfo.ResetHeight">
<summary>
Resets the Height property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GroupBarInfo.ResetText">
<summary>
Resets the Text property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GroupBarInfo.ResetVisible">
<summary>
Resets the Visible property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GroupBarInfo.Reset">
<summary>
Resets this instance to default.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GroupBarInfo.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.GroupBarInfo.PropertyChanged"/> event.
</summary>
<param name="args">The <see cref="T:System.ComponentModel.PropertyChangedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.GroupBarInfo.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the group bar information to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.GroupBarInfo.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the group bar information from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.GroupBarInfo.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"/>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">
The caller does not have the required permission.
</exception>
</member>
<member name="P:FarPoint.Win.Spread.GroupBarInfo.BackColor">
<summary>
Gets or sets the background color of the grouping bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupBarInfo.Font">
<summary>
Gets or sets the font of the grouping bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupBarInfo.ForeColor">
<summary>
Gets or sets the text color of the grouping bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupBarInfo.GroupVerticalIndent">
<summary>
Gets or sets the separation of grouping levels.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupBarInfo.Height">
<summary>
Gets or sets the height of the grouping bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupBarInfo.Text">
<summary>
Gets or sets the text of the grouping bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupBarInfo.Visible">
<summary>
Gets or sets whether the grouping bar is displayed.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.GroupBarInfo.PropertyChanged">
<summary>
Occurs when a property value changes.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.InputMap">
<summary>
Represents the map between input by the user and the action that occurs.
</summary>
<remarks>
The input map provides a map between an input event (currently
only key strokes are supported) and an object. Input maps can
have parents that are searched for mappings not defined in the
input map.
</remarks>
</member>
<member name="M:FarPoint.Win.Spread.InputMap.#ctor">
<summary>
Creates a new input map with no parent and no mappings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.InputMap.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new input map with data from the specified serialization and stream objects.
</summary>
<param name="info">Data needed to serialize or deserialize an object</param>
<param name="context">Source and destination of a given serialized stream</param>
</member>
<member name="M:FarPoint.Win.Spread.InputMap.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates the SerializationInfo class with information about the <see cref="T:FarPoint.Win.Spread.InputMap"/> object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.InputMap.AllKeys">
<summary>
Returns the key strokes that are defined in this input map and its parent.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.InputMap.Keys">
<summary>
Gets the key strokes that are defined in this input map.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.InputMap.Clear">
<summary>
Removes all the mappings from this input map.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.InputMap.Get(FarPoint.Win.Spread.Keystroke)">
<summary>
Returns the binding for the specified key stroke.
</summary>
<remarks>
This method queries the parent input map if the binding is not defined in the current input map.
</remarks>
<param name="keystroke">Key stroke for which to get input map</param>
</member>
<member name="M:FarPoint.Win.Spread.InputMap.Put(FarPoint.Win.Spread.Keystroke,System.Object)">
<summary>
Creates a binding between the specified key stroke and an action.
</summary>
<param name="keystroke">Key stroke specified</param>
<param name="actionMapKey">Action specified</param>
</member>
<member name="M:FarPoint.Win.Spread.InputMap.Remove(FarPoint.Win.Spread.Keystroke)">
<summary>
Removes the mapping for the specified key stroke.
</summary>
<param name="keystroke">Key stroke specified</param>
</member>
<member name="P:FarPoint.Win.Spread.InputMap.Parent">
<summary>
Gets or sets the parent (<see cref="T:FarPoint.Win.Spread.InputMap"/> object) of this input map.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.InputMap.Size">
<summary>
Returns the number of mappings defined in this input map.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.InputMap.InputMapEntry">
<summary>
Private class that represents an entry in an InputMap.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Keystroke">
<summary>
Represents a key being typed on the keyboard.
It contains both a character code for the key and a modifier
(Alt, Ctrl, Shift, or a combination).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Keystroke.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new keystroke from serialization.
</summary>
<param name="info">Object that holds the serialized object data </param>
<param name="context">Contexual information about the source of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.Keystroke.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates the SerializationInfo class with information about the keystroke (<see cref="T:FarPoint.Win.Spread.Keystroke"/> object).
</summary>
<param name="info">Object that holds the serialized object data </param>
<param name="context">Contexual information about the source or destination of the serialization</param>
</member>
<member name="M:FarPoint.Win.Spread.Keystroke.#ctor(System.Char)">
<summary>
Creates a new keystroke with the specified character.
</summary>
<param name="keyChar">Character defined by this keystroke</param>
</member>
<member name="M:FarPoint.Win.Spread.Keystroke.#ctor(System.Windows.Forms.Keys,System.Windows.Forms.Keys)">
<summary>
Creates a new keystroke with a specified a key code and modifier keys.
</summary>
<param name="keyCode">Key code defined by this keystroke</param>
<param name="modifiers">Modifier keys defined by this keystroke</param>
</member>
<member name="M:FarPoint.Win.Spread.Keystroke.#ctor(System.Windows.Forms.Keys,System.Windows.Forms.Keys,System.Boolean)">
<summary>
Creates a new keystroke with a specified a key code, modifier keys,
and whether the keystroke is active on key release.
</summary>
<param name="keyCode">Key code defined by this keystroke</param>
<param name="modifiers">Modifier keys defined by this keystroke</param>
<param name="onKeyRelease">Whether the keystroke is active on key release</param>
</member>
<member name="M:FarPoint.Win.Spread.Keystroke.Equals(System.Object)">
<summary>
Determines whether an object is equal to the current one.
</summary>
<param name="o">Object to compare to the current one</param>
</member>
<member name="M:FarPoint.Win.Spread.Keystroke.op_Equality(FarPoint.Win.Spread.Keystroke,FarPoint.Win.Spread.Keystroke)">
<summary>
Determines whether two keystrokes (KeyStroke structures) are equal.
</summary>
<param name="lhs">First keystroke (left hand side of equality operator)</param>
<param name="rhs">Second keystroke (right hand side of equality operator)</param>
</member>
<member name="M:FarPoint.Win.Spread.Keystroke.op_Inequality(FarPoint.Win.Spread.Keystroke,FarPoint.Win.Spread.Keystroke)">
<summary>
Determines whether two keystrokes (KeyStroke structures) are not equal.
</summary>
<param name="lhs">First keystroke (left hand side of inequality operator)</param>
<param name="rhs">Second keystroke (right hand side of inequality operator)</param>
</member>
<member name="M:FarPoint.Win.Spread.Keystroke.GetHashCode">
<summary>
Returns a value that can used as an index in a hash table.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Keystroke.ToString">
<summary>
Returns a string that represents the keystroke.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Keystroke.KeyChar">
<summary>
Gets the character defined by this keystroke.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Keystroke.KeyCode">
<summary>
Gets the key code defined by this keystroke.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Keystroke.Modifiers">
<summary>
Gets the modifier keys defined by this keystroke.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Keystroke.OnKeyRelease">
<summary>
Gets whether the keystroke is active on key release.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.KeystrokeFactory">
<summary>
Represents a means of creating <see cref="T:FarPoint.Win.Spread.Keystroke"/> objects in environments
that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.KeystrokeFactory.#ctor">
<summary>
Creates a new KeystrokeFactory object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.KeystrokeFactory.CreateKeystroke(System.Char)">
<summary>
Creates a <see cref="T:FarPoint.Win.Spread.Keystroke"/> object from a character.
</summary>
<param name="keyChar">Character for the keystroke</param>
</member>
<member name="M:FarPoint.Win.Spread.KeystrokeFactory.CreateKeystroke(System.Windows.Forms.Keys,System.Windows.Forms.Keys)">
<summary>
Creates a <see cref="T:FarPoint.Win.Spread.Keystroke"/> object from a key code and modifiers.
</summary>
<param name="keyCode">Key code for the keystroke</param>
<param name="modifiers">Modifier keys for the keystroke</param>
</member>
<member name="M:FarPoint.Win.Spread.KeystrokeFactory.CreateKeystroke(System.Windows.Forms.Keys,System.Windows.Forms.Keys,System.Boolean)">
<summary>
Creates a <see cref="T:FarPoint.Win.Spread.Keystroke"/> object from a key code and modifiers.
</summary>
<param name="keyCode">Key code for the keystroke</param>
<param name="modifiers">Modifier keys for the keystroke</param>
<param name="onKeyRelease">Whether the keystroke is active on key release</param>
</member>
<member name="T:FarPoint.Win.Spread.SpreadDesigntimeLicense">
<summary>
Represents a designtime license.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadDesigntimeLicense.#ctor(System.Type)">
<summary>
Creates a new designtime license.
</summary>
<param name="type">Type</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadDesigntimeLicense.Dispose">
<summary>
Frees up resources.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadDesigntimeLicense.LicenseKey">
<summary>
Gets a license key.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SpreadRuntimeLicense">
<summary>
Represents a FarPoint Spread runtime license.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadRuntimeLicense.#ctor(System.Type)">
<summary>
Creates a new runtime license of the specified type.
</summary>
<param name="type">Type</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadRuntimeLicense.Dispose">
<summary>
Frees up resources.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadRuntimeLicense.LicenseKey">
<summary>
Gets the license key.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SpreadSoftwareSecureLicenseProvider">
<summary>
Represents the license provider for Software Secure.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSoftwareSecureLicenseProvider.#ctor">
<summary>
Creates a new license provider for Software Secure.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSoftwareSecureLicenseProvider.GetLicense(System.ComponentModel.LicenseContext,System.Type,System.Object,System.Boolean)">
<summary>
Gets the licence.
</summary>
<param name="context">License context</param>
<param name="type">Type</param>
<param name="instance">Instance</param>
<param name="allowExceptions">Whether to allow exceptions</param>
</member>
<member name="T:FarPoint.Win.Spread.INoteIndicatorRenderer">
<summary>
Interface that defines the methods and properties required by objects used as
painters of the note indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.INoteIndicatorRenderer.Paint(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the cell with the note indicator using the specified control and dimensions.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
</member>
<member name="T:FarPoint.Win.Spread.INoteIndicatorRenderer2">
<summary>
Interface that defines the methods and properties required by objects used as
painters of the note indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.INoteIndicatorRenderer2.Paint(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Color)">
<summary>
Paints the cell with the note indicator using the specified control and dimensions.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="indicatorColor">Color</param>
</member>
<member name="T:FarPoint.Win.Spread.INoteIndicatorRenderer3">
<summary>
Interface that defines the methods and properties required by objects used as
painters of the note indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.INoteIndicatorRenderer3.Paint(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Color,FarPoint.Win.Spread.NoteIndicatorPosition,System.Boolean)">
<summary>
Paints the cell with the note indicator using the specified control and dimensions.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="indicatorColor">Color</param>
<param name="indicatorPosition">note indicator position</param>
<param name="rightToLeft">Whether right to left orientation</param>
</member>
<member name="T:FarPoint.Win.Spread.DefaultNoteIndicatorRenderer">
<summary>
Represents the default painter for the indicator of a note in a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultNoteIndicatorRenderer.Paint(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the cell with the note indicator using the specified control and dimensions.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultNoteIndicatorRenderer.Paint(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Color)">
<summary>
Paints the cell with the note indicator using the specified control and dimensions.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="indicatorColor">Color</param>
</member>
<member name="T:FarPoint.Win.Spread.TriangleNoteIndicatorRenderer">
<summary>
Represents the painter that drawing the indicator shape for a triangle for the indicator of a note in a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.TriangleNoteIndicatorRenderer.#ctor">
<summary>
Creates a new renderer of the triangle shape indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.TriangleNoteIndicatorRenderer.#ctor(System.Drawing.Color)">
<summary>
Creates a new renderer for the triangle indicator with the specified color and thickness.
</summary>
<param name="clr">Color of the focus indicator</param>
</member>
<member name="M:FarPoint.Win.Spread.TriangleNoteIndicatorRenderer.Paint(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the cell with the note indicator using the specified control and dimensions.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.TriangleNoteIndicatorRenderer.Paint(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Color)">
<summary>
Paints the cell with the note indicator using the specified control and dimensions.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="indicatorColor">Color</param>
</member>
<member name="M:FarPoint.Win.Spread.TriangleNoteIndicatorRenderer.Paint(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Color,FarPoint.Win.Spread.NoteIndicatorPosition,System.Boolean)">
<summary>
Paints the cell with the note indicator using the specified control and dimensions.
</summary>
<param name="g">Graphics device interface for painting the cell</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="indicatorColor">Color</param>
<param name="indicatorPosition">note indicator position</param>
<param name="rightToLeft">Whether right to left orientation</param>
</member>
<member name="M:FarPoint.Win.Spread.TriangleNoteIndicatorRenderer.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.TriangleNoteIndicatorRenderer.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
</member>
<member name="M:FarPoint.Win.Spread.TriangleNoteIndicatorRenderer.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Raises the PropertyChanged event.
</summary>
<param name="e">The <see cref="T:System.ComponentModel.PropertyChangedEventArgs"/> instance containing the event data.</param>
</member>
<member name="P:FarPoint.Win.Spread.TriangleNoteIndicatorRenderer.Color">
<summary>
Gets or sets the color of the solid focus indicator.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.TriangleNoteIndicatorRenderer.PropertyChanged">
<summary>
Occurs when a property value changes.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PageSetup">
<summary>
Internal use only. Represents the printing page setup dialog.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PageSetup.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PageSetup.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:FarPoint.Win.Spread.PageSetup.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PageSetup.spreadCtl">
<summary>
Internal use only. FarPoint Spread control.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PageSetup.printSheet">
<summary>
Internal use only. Sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PageSetup.#ctor(FarPoint.Win.Spread.FpSpread,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new printing page setup.
</summary>
<param name="spread">FpSpread component</param>
<param name="sheet">Sheet index</param>
<param name="showPrintButton">Whether to show the print button</param>
<param name="showPreviewButton">Whether to show the print preview button</param>
</member>
<member name="T:FarPoint.Win.Spread.PreviewRowInfo">
<summary>
Represents information about preview row in the FarPoint Spread component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PreviewRowInfo.#ctor">
<summary>
Initializes a new instance of the PreviewRowInfo class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PreviewRowInfo.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new instance of the PreviewRowInfo class from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.PreviewRowInfo.ResetBackColor">
<summary>
Resets the BackColor property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PreviewRowInfo.ResetBorder">
<summary>
Resets the Border property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PreviewRowInfo.ResetColumnIndex">
<summary>
Resets the ColumnIndex property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PreviewRowInfo.ResetFont">
<summary>
Resets the Font property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PreviewRowInfo.ResetForeColor">
<summary>
Resets the ForeColor property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PreviewRowInfo.ResetHeight">
<summary>
Resets the Height property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PreviewRowInfo.ResetHorizontalAlignment">
<summary>
Resets the HorizontalAlignment property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PreviewRowInfo.ResetPadding">
<summary>
Resets the Padding property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PreviewRowInfo.ResetVerticalAlignment">
<summary>
Resets the VerticalAlignment property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PreviewRowInfo.ResetVisible">
<summary>
Resets the Visible property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PreviewRowInfo.Reset">
<summary>
Resets this instance to default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PreviewRowInfo.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves preview row information to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.PreviewRowInfo.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads preview row information from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.PreviewRowInfo.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"/>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.PreviewRowInfo.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Raises the PropertyChanged event.
</summary>
<param name="args">The <see cref="T:System.ComponentModel.PropertyChangedEventArgs"/> instance containing the event data.</param>
</member>
<member name="P:FarPoint.Win.Spread.PreviewRowInfo.BackColor">
<summary>
Gets or sets the background color for preview row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PreviewRowInfo.Border">
<summary>
Gets or sets the border for preview row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PreviewRowInfo.ColumnIndex">
<summary>
Gets or sets the column index of preview row bound to.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PreviewRowInfo.Font">
<summary>
Gets or sets the font settings for preview row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PreviewRowInfo.ForeColor">
<summary>
Gets or sets the text color for preview row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PreviewRowInfo.Height">
<summary>
Gets or sets the height for preview row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PreviewRowInfo.HorizontalAlignment">
<summary>
Gets or sets the horizontal alignment of the content for preview row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PreviewRowInfo.Padding">
<summary>
Gets or sets the amount of spaces to preview row in pixels.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PreviewRowInfo.VerticalAlignment">
<summary>
Gets or sets the vertical alignment of the content for preview row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PreviewRowInfo.Visible">
<summary>
Gets or sets a value indicating whether preview row is visible.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.PreviewRowInfo.PropertyChanged">
<summary>
Occurs when a property value changes.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PrintAbortDialog">
<summary>
Summary description for PrintAbortDialog.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PrintAbortDialog.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PrintAbortDialog.LocalizeGUIStrings">
<summary>
Localize all GUI Strings of this instance
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PrintAbortDialog.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PrintAbortDialog.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PrintNotes">
<summary>
Specifies how cell notes are printed.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PrintNotes.None">
<summary>
[0] Does not print the cell notes
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PrintNotes.AtEnd">
<summary>
[1] Prints the cell notes in summary form after the last sheet is printed
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PrintNotes.AsDisplayed">
<summary>
[2] Prints the cell notes as they are displayed on the sheet
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PdfWriteTo">
<summary>
Specifies the output for printing the sheet as PDF.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PdfWriteTo.File">
<summary>
Prints the sheet as PDF to a file
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PdfWriteTo.Stream">
<summary>
Prints the sheet as PDF to a stream
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PdfWriteMode">
<summary>
Specifies the output mode for printing the sheet as PDF.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PdfWriteMode.New">
<summary>
Prints the sheet as PDF to a file or stream with no reference to previous sheets
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PdfWriteMode.Append">
<summary>
Prints the sheet as PDF to the file or stream from the print information of the previous sheet
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PrintOrientation">
<summary>
Specifies the page orientation used to print the sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PrintOrientation.Auto">
<summary>
[0] Uses the current printer setting
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PrintOrientation.Portrait">
<summary>
[1] Prints the sheet in portrait orientation
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PrintOrientation.Landscape">
<summary>
[2] Prints the sheet in landscape orientation
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PrintPageOrder">
<summary>
Specifies the order in which pages are printed.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PrintPageOrder.Auto">
<summary>
[0] Automatically determines the best order for printing pages
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PrintPageOrder.DownThenOver">
<summary>
[1] Prints pages down then across
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PrintPageOrder.OverThenDown">
<summary>
[2] Prints pages across then down
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Centering">
<summary>
Specifices the type of centering for the printed page.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Centering.None">
<summary>
[0] Does not center the printed page at all.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Centering.Horizontal">
<summary>
[1] Centers the printed layout horizontally on the page.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Centering.Vertical">
<summary>
[2] Centers the printed layout vertically on the page.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Centering.Both">
<summary>
[3] Centers the printed layout both horizontally and vertically on the page.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PrintType">
<summary>
Specifies the type of print range used to print the sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PrintType.All">
<summary>
[0] Prints the entire sheet
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PrintType.CellRange">
<summary>
[1] Prints the area specified by the
PrintInfo.ColStart, PrintInfo.ColEnd,
PrintInfo.RowStart, and PrintInfo.RowEnd properties
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PrintType.CurrentPage">
<summary>
[2] Prints the current page of the sheet
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PrintType.PageRange">
<summary>
[3] Prints the pages in the range specified by the
PrintInfo.PageStart and PrintInfo.PageEnd properties
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PageLayout">
<summary>
Represents the size of a page to be printed.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PageLayout.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Single)">
<summary>
Creates a printed page layout (PageLayout object) for the specified range of rows and columns.
</summary>
<param name="row1">Starting row index</param>
<param name="column1">Starting column index</param>
<param name="row2">Ending row index</param>
<param name="column2">Ending column index</param>
<param name="pageWidth">Width of page</param>
<param name="pageHeight">Height of page</param>
</member>
<member name="M:FarPoint.Win.Spread.PageLayout.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a printed page layout (PageLayout object) for the specified range of rows and columns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PageLayout.RowStart">
<summary>
Gets the row coordinate of the upper-left corner of the range of cells to print.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PageLayout.ColumnStart">
<summary>
Gets the column coordinate of the upper-left corner of the range of cells to print.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PageLayout.RowEnd">
<summary>
Gets the row coordinate of the upper-left corner of the range of cells to print.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PageLayout.ColumnEnd">
<summary>
Gets the column coordinate of the upper-left corner of the range of cells to print
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PageLayout.PageWidth">
<summary>
Gets the width of the printed page.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PageLayout.PageHeight">
<summary>
Gets the height of the printed page.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PageLayoutModel.#ctor">
<summary>
Creates a new printed page layout model that is initially empty.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PageLayoutModel.Add(FarPoint.Win.Spread.PageLayout)">
<summary>
Adds a printed page layout to the model.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PageLayoutModel.Item(System.Int32)">
<summary>
Gets the printed page layout at the specified index.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PageLayoutModel.Count">
<summary>
Gets the number of printed page layouts in the model.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PrintMargin">
<summary>
Represents the margin for the printed page.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PrintMargin.#ctor">
<summary>
Creates a new PrintMargin object with margins set to zero.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PrintMargin.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a new PrintMargin object with the specified margins.
</summary>
<param name="left">Size of the left margin in pixels</param>
<param name="top">Size of the top margin in pixels</param>
<param name="right">Size of the right margin in pixels</param>
<param name="bottom">Size of the bottom margin in pixels</param>
<param name="header">Size of the header margin in pixels</param>
<param name="footer">Size of the footer margin in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.PrintMargin.ToString">
<summary>
Always returns null.
</summary>
<returns>Always returns null.</returns>
</member>
<member name="M:FarPoint.Win.Spread.PrintMargin.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.PrintMargin.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
</member>
<member name="P:FarPoint.Win.Spread.PrintMargin.Left">
<summary>
Gets or sets the left margin for the printed page.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintMargin.Top">
<summary>
Gets or sets the top margin for the printed page.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintMargin.Right">
<summary>
Gets or sets the right margin for the printed page.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintMargin.Bottom">
<summary>
Gets or sets the bottom margin for the printed page.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintMargin.Header">
<summary>
Gets or sets the header margin for the printed page.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintMargin.Footer">
<summary>
Gets or sets the footer margin for the printed page.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ResetOption">
<summary>
Specifies whether the rules or a particular rule should reset before testing the next rule.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ResetOption.None">
<summary>
[0] Never resets the rule(s)
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ResetOption.Current">
<summary>
[1] Resets the current rule
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ResetOption.All">
<summary>
[2] Resets all the rules
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SmartPrintRule">
<summary>
Represents the rules that determine how best to print.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SmartPrintRule.ResetOption">
<summary>
Determines whether to reset the rules that determine how best to print.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.BestFitColumnRule">
<summary>
Represents the rules that determine how best to print the columns.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.BestFitColumnRule.#ctor">
<summary>
Creates a new rule that determines how best to print the columns.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.BestFitColumnRule.#ctor(FarPoint.Win.Spread.ResetOption)">
<summary>
Creates a new rule that determines how best to print the columns, with the specified reset option.
</summary>
<param name="resetOption">Whether to reset the rules or a particular rule</param>
</member>
<member name="M:FarPoint.Win.Spread.BestFitColumnRule.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.BestFitColumnRule.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
</member>
<member name="P:FarPoint.Win.Spread.BestFitColumnRule.ResetOption">
<summary>
Determines whether to reset the rules or a particular rule before testing the next SmartPrint rule.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.LandscapeRule">
<summary>
Represents the rules that determine whether to print in landscape format.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.LandscapeRule.#ctor">
<summary>
Creates a new rule that determines whether to print in landscape format.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.LandscapeRule.#ctor(FarPoint.Win.Spread.ResetOption)">
<summary>
Creates a new rule that determines whether to print in landscape format, with the specified reset option.
</summary>
<param name="resetOption">Whether to reset the rules or a particular rule</param>
</member>
<member name="M:FarPoint.Win.Spread.LandscapeRule.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.LandscapeRule.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
</member>
<member name="P:FarPoint.Win.Spread.LandscapeRule.ResetOption">
<summary>
Determines whether to reset the rules or a particular rule before testing the next SmartPrint rule.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ScaleRule">
<summary>
Represents the rules that determine how to scale the printed sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ScaleRule.#ctor">
<summary>
Creates a new rule that determines how to scale the printed sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ScaleRule.#ctor(FarPoint.Win.Spread.ResetOption,System.Single,System.Single,System.Single)">
<summary>
Creates a new rule that determines how to scale the printed sheet, with the specified reset option, factors, and intervals.
</summary>
<param name="resetOption">Whether to reset the rules or a particular rule</param>
<param name="startFactor">Zoom factor at which to begin testing </param>
<param name="endFactor">Zoom factor at which to stop testing </param>
<param name="interval">Amount by which to decrement the zoom factor between scale tests </param>
</member>
<member name="M:FarPoint.Win.Spread.ScaleRule.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.ScaleRule.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
</member>
<member name="P:FarPoint.Win.Spread.ScaleRule.ResetOption">
<summary>
Determines whether to reset the rules or a particular rule before testing the next SmartPrint rule.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ScaleRule.StartFactor">
<summary>
Gets or sets the zoom factor at which to begin testing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ScaleRule.EndFactor">
<summary>
Gets or sets the zoom factor at which to stop testing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ScaleRule.Interval">
<summary>
Gets or sets the amount by which to decrement the zoom factor between scale tests.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SmartPaperRule">
<summary>
Represents the rules that determine the paper size.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SmartPaperRule.#ctor">
<summary>
Create a smart paper rule with no reset option.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SmartPaperRule.#ctor(FarPoint.Win.Spread.ResetOption)">
<summary>
Create a smart paper rule with the specified reset option.
</summary>
<param name="resetOption">Whether to reset the rules or a particular rule</param>
</member>
<member name="M:FarPoint.Win.Spread.SmartPaperRule.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.SmartPaperRule.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
</member>
<member name="P:FarPoint.Win.Spread.SmartPaperRule.ResetOption">
<summary>
Specifies whether to reset the rules or a particular rule before testing the next SmartPrint rule.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SmartPrintRuleConverter">
<summary>
Converts SmartPrintRule objects from one data type to another.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SmartPrintRuleConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns a value indicating whether a SmartPrintRule object can be converted to the specified type.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="destinationType">Type</param>
<returns>True if a SmartPrintRule object can be converted to the specified type, and false otherwise.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SmartPrintRuleConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the SmartPrintRule object to the specified type.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">Object</param>
<param name="destinationType">Type</param>
<returns>Specified type representation of a SmartPrintRule object.</returns>
</member>
<member name="T:FarPoint.Win.Spread.SmartPrintRulesCollection">
<summary>
Represents the set of rules that determine how best to print.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SmartPrintRulesCollection.#ctor">
<summary>
Creates a new SmartPrintRulesCollection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SmartPrintRulesCollection.CopyTo(System.Collections.ArrayList,System.Int32)">
<summary>
Copies the rules (SmartPrintRule objects) in the collection to the specified array list.
</summary>
<param name="array">Array list to which to paste the rules (SmartPrintRule objects)</param>
<param name="index">Index in the array at which to paste the rules</param>
</member>
<member name="M:FarPoint.Win.Spread.SmartPrintRulesCollection.CopyTo(System.Array,System.Int32)">
<summary>
Copies the rules (SmartPrintRule objects) in the collection to the specified array.
</summary>
<param name="array">Array to which to paste the rules (SmartPrintRule objects)</param>
<param name="index">Index in the array at which to paste the rules</param>
</member>
<member name="M:FarPoint.Win.Spread.SmartPrintRulesCollection.Add(System.Object)">
<summary>
Adds a rule (SmartPrintRule object) to the collection.
</summary>
<param name="value">Rule (SmartPrintRule object) to add</param>
<exception cref="T:System.ArgumentException">Specified object is not valid; must be a SmartPrintRule object</exception>
</member>
<member name="M:FarPoint.Win.Spread.SmartPrintRulesCollection.Add(FarPoint.Win.Spread.SmartPrintRule)">
<summary>
Adds a rule (SmartPrintRule object) to the collection.
</summary>
<param name="value">Rule (SmartPrintRule object) to add</param>
<exception cref="T:System.ArgumentException">Specified object is not valid; must be a SmartPrintRule object</exception>
</member>
<member name="M:FarPoint.Win.Spread.SmartPrintRulesCollection.Clear">
<summary>
Removes all rules (SmartPrintRule objects) from the collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SmartPrintRulesCollection.Contains(System.Object)">
<summary>
Determines whether the collection contains the specified rule (SmartPrintRule object).
</summary>
<param name="value">Object for which to check</param>
</member>
<member name="M:FarPoint.Win.Spread.SmartPrintRulesCollection.Contains(FarPoint.Win.Spread.SmartPrintRule)">
<summary>
Determines whether the collection contains the specified rule (SmartPrintRule object).
</summary>
<param name="value">Rule (SmartPrintRule object) for which to check</param>
</member>
<member name="M:FarPoint.Win.Spread.SmartPrintRulesCollection.IndexOf(FarPoint.Win.Spread.SmartPrintRule)">
<summary>
Returns the index of the specified rule (SmartPrintRule object).
</summary>
<param name="value">Rule (SmartPrintRule object) for which to return the index</param>
</member>
<member name="M:FarPoint.Win.Spread.SmartPrintRulesCollection.IndexOf(System.Object)">
<summary>
Returns the index of the specified rule (SmartPrintRule object).
</summary>
<param name="value">Object for which to return the index</param>
</member>
<member name="M:FarPoint.Win.Spread.SmartPrintRulesCollection.Insert(System.Int32,System.Object)">
<summary>
Inserts a rule (SmartPrintRule object) into the collection at the specified index.
</summary>
<param name="index">Index at which to insert the rule (SmartPrintRule object)</param>
<param name="value">Object to insert</param>
</member>
<member name="M:FarPoint.Win.Spread.SmartPrintRulesCollection.Insert(System.Int32,FarPoint.Win.Spread.SmartPrintRule)">
<summary>
Inserts a rule (SmartPrintRule object) into the collection at the specified index.
</summary>
<param name="index">Index at which to insert the rule (SmartPrintRule object)</param>
<param name="value">Rule (SmartPrintRule object) to insert</param>
</member>
<member name="M:FarPoint.Win.Spread.SmartPrintRulesCollection.Remove(FarPoint.Win.Spread.SmartPrintRule)">
<summary>
Removes the specified rule (SmartPrintRule object) from the collection.
</summary>
<param name="value">Rule (SmartPrintRule object) to remove</param>
</member>
<member name="M:FarPoint.Win.Spread.SmartPrintRulesCollection.Remove(System.Object)">
<summary>
Removes the specified rule (SmartPrintRule object) from the collection.
</summary>
<param name="value">rule (SmartPrintRule object) to remove</param>
</member>
<member name="M:FarPoint.Win.Spread.SmartPrintRulesCollection.RemoveAt(System.Int32)">
<summary>
Removes a rule (SmartPrintRule object) from the collection at the specified index.
</summary>
<param name="index">Zero-based index of the rule (SmartPrintRule object) to remove</param>
<exception cref="T:System.ArgumentException">
Specified object is not valid; must be a SmartPrintRule object
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SmartPrintRulesCollection.GetEnumerator">
<summary>
Gets an IEnumerator object for enumerating through the rules (SmartPrintRule objects) in the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SmartPrintRulesCollection.Count">
<summary>
Gets the number of rules (SmartPrintRule objects) in the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SmartPrintRulesCollection.IsSynchronized">
<summary>
Gets whether access to the collection is synchronized.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SmartPrintRulesCollection.SyncRoot">
<summary>
Gets a rule (SmartPrintRule object) to synchronize access to the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SmartPrintRulesCollection.IsFixedSize">
<summary>
Gets whether the collection has a fixed size.
(This implementation always returns false.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SmartPrintRulesCollection.IsReadOnly">
<summary>
Gets whether the collection is read-only.
(This implementation always returns false.)
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SmartPrintRulesCollection.System#Collections#IList#Item(System.Int32)">
<summary>
Creates a list item
</summary>
<param name="index">Index of the item</param>
</member>
<member name="P:FarPoint.Win.Spread.SmartPrintRulesCollection.Item(System.Int32)">
<summary>
Gets or sets the rule (SmartPrintRule object) at the specified index.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PrintHeader">
<summary>
Specifies whether the header is printed.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PrintHeader.Inherit">
<summary>
Inherit the setting from SheetView class.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PrintHeader.Show">
<summary>
Show header in printed sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PrintHeader.Hide">
<summary>
Hide header in printed sheet.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PrintTitle">
<summary>
Specifies whether the title is printed.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PrintTitle.Inherit">
<summary>
Inherit the setting from SheetView class.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PrintTitle.Show">
<summary>
Show title in printed sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.PrintTitle.Hide">
<summary>
Hide title in printed sheet.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PrintInfo">
<summary>
Represents the information to use when printing a sheet of the control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PrintInfo.#ctor">
<summary>
Creates a new PrintInfo object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PrintInfo.#ctor(FarPoint.Win.Spread.PrintInfo)">
<summary>
Creates a new PrintInfo object based on the specified PrintInfo object.
</summary>
<param name="pi">PrintInfo object on which to base new object</param>
</member>
<member name="M:FarPoint.Win.Spread.PrintInfo.#ctor(System.String,System.String,System.String,FarPoint.Win.Spread.PrintMargin,FarPoint.Win.Spread.PrintOrientation,FarPoint.Win.Spread.PrintPageOrder,System.Boolean,FarPoint.Win.Spread.PrintHeader,System.Boolean,System.Boolean,FarPoint.Win.Spread.PrintHeader,System.Boolean,System.Boolean,FarPoint.Win.Spread.PrintType,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,FarPoint.Win.Spread.SmartPrintRulesCollection,System.Boolean,System.Boolean,System.Boolean,System.String,System.Int32,System.Boolean,System.String,System.Single,System.Int32,FarPoint.Win.Spread.PrintNotes,System.Drawing.Printing.PaperSource,System.Drawing.Printing.PaperSize,System.Boolean,System.Drawing.Image[],System.Drawing.Color[],System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.Centering,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.String,System.IO.Stream,FarPoint.Win.Spread.PdfWriteMode,FarPoint.Win.Spread.PdfWriteTo)">
<summary>
Creates a new PrintInfo object with the specified printing settings.
</summary>
<param name="header">Header text</param>
<param name="footer">Footer text</param>
<param name="jobName">Print job name</param>
<param name="margin">Print margins</param>
<param name="orientation">Page orientation</param>
<param name="pageOrder">Print page order</param>
<param name="border">Whether to print the sheet border</param>
<param name="colHeaders">Whether to print column headers</param>
<param name="color">Whether to print in color</param>
<param name="grid">Whether to print grid lines</param>
<param name="rowHeaders">Whether to print row headers</param>
<param name="showShadows">Whether to print the header shadows</param>
<param name="useMax">Whether to print cells that do not have data</param>
<param name="type">What to print</param>
<param name="colStart">First column of cell range to print</param>
<param name="colEnd">Last column of cell range to print</param>
<param name="rowStart">First row of cell range to print</param>
<param name="rowEnd">Last row of cell range to print</param>
<param name="pageStart">First page of page range to print</param>
<param name="pageEnd">Last page of page range to print</param>
<param name="useSmartPrint">Whether to use SmartPrint</param>
<param name="rules">SmartPrint rules</param>
<param name="bestFitCols">Whether to adjust column widths for printing</param>
<param name="bestFitRows">Whether to adjust row heights for printing</param>
<param name="preview">Whether to preview the sheet rather than print it</param>
<param name="printer">Printer to which to print</param>
<param name="firstPageNum">Page number to print on first page</param>
<param name="showDialog">Whether to show the print dialog</param>
<param name="abortMessage">Message to display for canceling printing</param>
<param name="zoomFactor">Factor to zoom sheet for printing</param>
<param name="opacity">Alpha value used for sheet</param>
<param name="notes">Whether cell notes are printed</param>
<param name="paperSrc">Source location of paper</param>
<param name="paperSz">Paper size</param>
<param name="objects">Whether objects are printed</param>
<param name="imgList">Images to use for headers and footers</param>
<param name="colorList">Colors to use for headers and footers</param>
<param name="repeatColStart">Index of beginning column of a repeating range</param>
<param name="repeatColEnd">Index of ending column of a repeating range</param>
<param name="repeatRowStart">Index of a beginning row of a repeating range</param>
<param name="repeatRowEnd">Index of ending row of a repeating range</param>
<param name="center">Type of centering to perform on print out</param>
<param name="pagesTall">Number of pages tall to fit print out into when smart print is true</param>
<param name="pagesWide">Number of pages wide to fit print out into when smart print is true</param>
<param name="headerHeight">Sets the user defined height of the header area</param>
<param name="footerHeight">Sets the user defined height of the footer area</param>
<param name="printToPdf">Whether to print the sheet as PDF</param>
<param name="pdfFileName">file name and path for PDF printing to a file</param>
<param name="pdfStream">file stream for PDF printing to a stream</param>
<param name="pdfWriteMode">How printing the sheet as PDF is handled</param>
<param name="pdfWriteTo">Output for printing the sheet as PDF</param>
</member>
<member name="M:FarPoint.Win.Spread.PrintInfo.#ctor(System.String,System.String,System.String,FarPoint.Win.Spread.PrintMargin,FarPoint.Win.Spread.PrintOrientation,FarPoint.Win.Spread.PrintPageOrder,System.Boolean,FarPoint.Win.Spread.PrintHeader,FarPoint.Win.Spread.PrintHeader,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,FarPoint.Win.Spread.PrintHeader,System.Boolean,System.Boolean,FarPoint.Win.Spread.PrintType,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,FarPoint.Win.Spread.SmartPrintRulesCollection,System.Boolean,System.Boolean,System.Boolean,System.String,System.Int32,System.Boolean,System.String,System.Single,System.Int32,FarPoint.Win.Spread.PrintNotes,System.Drawing.Printing.PaperSource,System.Drawing.Printing.PaperSize,System.Boolean,System.Drawing.Image[],System.Drawing.Color[],System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.Centering,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.String,System.IO.Stream,FarPoint.Win.Spread.PdfWriteMode,FarPoint.Win.Spread.PdfWriteTo)">
<summary>
Creates a new PrintInfo object with the specified printing settings.
</summary>
<param name="header">Header text</param>
<param name="footer">Footer text</param>
<param name="jobName">Print job name</param>
<param name="margin">Print margins</param>
<param name="orientation">Page orientation</param>
<param name="pageOrder">Print page order</param>
<param name="border">Whether to print the sheet border</param>
<param name="colHeaders">Whether to print column headers</param>
<param name="colFooters">Whether to print column footers</param>
<param name="showColFooterEachPage">Whether to print column footers in each page</param>
<param name="showTitle">Whether to print the title</param>
<param name="showSubtitle">Whether to print the subtitle</param>
<param name="color">Whether to print in color</param>
<param name="grid">Whether to print grid lines</param>
<param name="rowHeaders">Whether to print row headers</param>
<param name="showShadows">Whether to print the header shadows</param>
<param name="useMax">Whether to print cells that do not have data</param>
<param name="type">What to print</param>
<param name="colStart">First column of cell range to print</param>
<param name="colEnd">Last column of cell range to print</param>
<param name="rowStart">First row of cell range to print</param>
<param name="rowEnd">Last row of cell range to print</param>
<param name="pageStart">First page of page range to print</param>
<param name="pageEnd">Last page of page range to print</param>
<param name="useSmartPrint">Whether to use SmartPrint</param>
<param name="rules">SmartPrint rules</param>
<param name="bestFitCols">Whether to adjust column widths for printing</param>
<param name="bestFitRows">Whether to adjust row heights for printing</param>
<param name="preview">Whether to preview the sheet rather than print it</param>
<param name="printer">Printer to which to print</param>
<param name="firstPageNum">Page number to print on first page</param>
<param name="showDialog">Whether to show the print dialog</param>
<param name="abortMessage">Message to display for canceling printing</param>
<param name="zoomFactor">Factor to zoom sheet for printing</param>
<param name="opacity">Alpha value used for sheet</param>
<param name="notes">Whether cell notes are printed</param>
<param name="paperSrc">Source location of paper</param>
<param name="paperSz">Paper size</param>
<param name="objects">Whether objects are printed</param>
<param name="imgList">Images to use for headers and footers</param>
<param name="colorList">Colors to use for headers and footers</param>
<param name="repeatColStart">Index of beginning column of a repeating range</param>
<param name="repeatColEnd">Index of ending column of a repeating range</param>
<param name="repeatRowStart">Index of a beginning row of a repeating range</param>
<param name="repeatRowEnd">Index of ending row of a repeating range</param>
<param name="center">Type of centering to perform on print out</param>
<param name="pagesTall">Number of pages tall to fit print out into when smart print is true</param>
<param name="pagesWide">Number of pages wide to fit print out into when smart print is true</param>
<param name="headerHeight">Sets the user defined height of the header area</param>
<param name="footerHeight">Sets the user defined height of the footer area</param>
<param name="printToPdf">Whether to print the sheet as PDF</param>
<param name="pdfFileName">file name and path for PDF printing to a file</param>
<param name="pdfStream">file stream for PDF printing to a stream</param>
<param name="pdfWriteMode">How printing the sheet as PDF is handled</param>
<param name="pdfWriteTo">Output for printing the sheet as PDF</param>
</member>
<member name="M:FarPoint.Win.Spread.PrintInfo.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Prints information from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.PrintInfo.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Gets the object data from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.PrintInfo.Clone">
<summary>
Creates a new PrintInfo object that is a copy of the current instance.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PrintInfo.CopyFrom(System.Object)">
<summary>
Copies the properties of the specified PrintInfo object to the current PrintInfo object.
</summary>
<param name="o">PrintInfo object from which to copy properties</param>
</member>
<member name="M:FarPoint.Win.Spread.PrintInfo.ShouldSerializeSmartPrintRules">
<summary>
Determines whether to serialize printing optimization rules.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PrintInfo.ShouldSerializeMargin">
<summary>
Determines whether to serialize the margin.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PrintInfo.ToString">
<summary>
Always returns null.
</summary>
<returns>Always returns null.</returns>
</member>
<member name="M:FarPoint.Win.Spread.PrintInfo.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.PrintInfo.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.SmartPrintRules">
<summary>
Gets or sets the collection of rules to optimize the printing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.Header">
<summary>
Gets or sets the text and format of headers on printed pages.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.Footer">
<summary>
Gets or sets the text and format of footers on printed pages.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.AbortMessage">
<summary>
Gets or sets the message to display for the abort dialog.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.SmartPrintPagesTall">
<summary>
Gets or sets the number of pages vertically to check when optimizing printing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.SmartPrintPagesWide">
<summary>
Gets or sets the number of pages horizontally to check when optimizing the printing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.Centering">
<summary>
Gets or sets how the printed page is centered.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.Images">
<summary>
Gets or sets the image list for the header and footer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.Colors">
<summary>
Gets or sets the color list for the header and footer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.RepeatColStart">
<summary>
Gets or sets the first column for a range of columns to print at the left of each page.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.RepeatColEnd">
<summary>
Gets or sets the last column for a range of columns to print at the left of each page.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.RepeatRowStart">
<summary>
Gets or sets the first row for a range of row to print at the top of each page.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.RepeatRowEnd">
<summary>
Gets or sets the last row for a range of row to print at the top of each page.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.HeaderHeight">
<summary>
Gets or sets the height in pixels of the header area.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.FooterHeight">
<summary>
Gets or sets the height in pixels of the footer area.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.JobName">
<summary>
Gets or sets the name of the print job.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.Margin">
<summary>
Gets or sets the margins for printing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.Orientation">
<summary>
Gets or sets the page orientation used for printing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.PageOrder">
<summary>
Gets or sets the order in which pages print.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.ShowBorder">
<summary>
Gets or sets whether to print the outline border around the entire control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.ShowColumnFooter">
<summary>
Gets or sets whether to print the column footer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.ShowColumnFooterEachPage">
<summary>
Gets or sets whether to print the column footer every page.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.ShowColumnHeader">
<summary>
Gets or sets whether to print the column header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.ShowColumnHeaders">
<summary>
Gets or sets whether to print the column headers.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.ShowTitle">
<summary>
Get or set wheather whether to print title
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.ShowSubtitle">
<summary>
Get or set wheather whether to print subtitle
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.ShowColor">
<summary>
Gets or sets whether to print the colors as they appear on the screen.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.ShowGrid">
<summary>
Gets or sets whether to print the grid lines.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.ShowRowHeader">
<summary>
Gets or sets whether to print the row header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.ShowRowHeaders">
<summary>
Gets or sets whether to print the row headers.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.ShowShadows">
<summary>
Gets or sets whether to print the header shadows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.UseMax">
<summary>
Gets or sets whether to print only rows containing data.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.PrintType">
<summary>
Gets or sets what is to be printed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.PageStart">
<summary>
Gets or sets the first page to print when printing a page range.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.PageEnd">
<summary>
Gets or sets the last page to print when printing a page range.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.UseSmartPrint">
<summary>
Gets or sets whether the control optimizes the printing using rules.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.ColStart">
<summary>
Gets or sets the first column to print when printing a cell range.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.ColEnd">
<summary>
Gets or sets the last column to print when printing a cell range.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.RowStart">
<summary>
Gets or sets the first row to print when printing a cell range.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.RowEnd">
<summary>
Gets or sets the last row to print when printing a cell range.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.Preview">
<summary>
Gets or sets whether to preview the sheet instead of printing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.FirstPageNumber">
<summary>
Gets or sets the page number to print on the first page.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.Printer">
<summary>
Gets or sets the name of the printer to use for printing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.ShowPrintDialog">
<summary>
Gets or sets whether to display a print dialog before printing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.BestFitCols">
<summary>
Gets or sets whether column widths are adjusted to fit the longest string width for printing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.BestFitRows">
<summary>
Gets or sets whether row heights are adjusted to fit the tallest string height for printing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.ZoomFactor">
<summary>
Gets or sets the zoom factor used for printing this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.Opacity">
<summary>
Gets or sets the opacity used when printing this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.PrintNotes">
<summary>
Gets or sets how cell notes are printed after the sheet(s).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.PrintShapes">
<summary>
Gets or sets whether shapes are printed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.PaperSize">
<summary>
Gets or sets the paper size for printing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.PaperSource">
<summary>
Gets or sets the paper source for printing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.PrintToPdf">
<summary>
Gets or sets whether to print the sheet as PDF.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.PdfFileName">
<summary>
Gets or sets the path and filename for printing the sheet as PDF.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.PdfStream">
<summary>
Gets or sets the stream for printing the sheet as PDF.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.PdfWriteTo">
<summary>
Gets or sets the output for printing the sheet as PDF.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintInfo.PdfWriteMode">
<summary>
Gets or sets how printing of the sheet as PDF is handled relative to other sheets.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.RowLayout">
<summary>
Class describes the location and height of a row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RowLayout.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.RowLayout"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RowLayout.#ctor(System.Int32,System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RowLayout.ContainsY(System.Int32)">
<summary>
Checks whether or not this row contains the specified
point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RowLayout.PreviewRowContainsY(System.Int32)">
<summary>
Checks whether or not the preview row contains the specified
point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RowLayout.IntersectsContainPreviewRow(System.Drawing.Rectangle)">
<summary>
Checks whether or not this row and its preview row intersects with the
specified rectangle.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RowLayout.Intersects(System.Drawing.Rectangle)">
<summary>
Checks whether or not this row Intersects with the
specified rectangle.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowLayout.Row">
<summary>
Gets the row index.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowLayout.Y">
<summary>
Gets the y coordinate of the top of this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowLayout.Height">
<summary>
Gets the height of this row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowLayout.PreviewRowHeight">
<summary>
Gets the height of this preview row.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.RowLayoutModel">
<summary>
Represents a collection of rows along with their locations
sizes.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RowLayoutModel.#ctor">
<summary>
Creates a new row layout model that is initially empty.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RowLayoutModel.Add(FarPoint.Win.Spread.RowLayout)">
<summary>
Adds a layout to the model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RowLayoutModel.FindRow(System.Int32)">
<summary>
Finds the layout for the specified row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RowLayoutModel.FindY(System.Int32)">
<summary>
Finds the layout that contains the specified point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RowLayoutModel.FindNearY(System.Int32)">
<summary>
Finds the layout that contains or is near the specified point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RowLayoutModel.FindMinimumRow">
<summary>
Find the row with mininum Y in the model
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RowLayoutModel.FindMaximumRow">
<summary>
Find the row with maxinum Y in the model
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowLayoutModel.Item(System.Int32)">
<summary>
Gets the element at the specified index.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowLayoutModel.Count">
<summary>
Gets the number of layouts in the model.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ScrollingContentInfo">
<summary>
Represents information about the scrolling grid content in the FarPoint Spread component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ScrollingContentInfo.#ctor">
<summary>
Initializes a new instance of the ScrollingContentInfo class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ScrollingContentInfo.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new instance of the ScrollingContentInfo class from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.ScrollingContentInfo.ResetColumnIndices">
<summary>
Resets the ColumnIndices property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ScrollingContentInfo.ResetMaxHeight">
<summary>
Resets the MaxHeight property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ScrollingContentInfo.ResetRowNumberPolicy">
<summary>
Resets the RowNumberPolicy property to its default value.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ScrollingContentInfo.Reset">
<summary>
Resets this instance to default.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ScrollingContentInfo.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the scrolling grid content information to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.ScrollingContentInfo.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the scrolling grid content information from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.ScrollingContentInfo.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> with the data needed to serialize the target object.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> to populate with data.</param>
<param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"/>) for this serialization.</param>
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
</member>
<member name="M:FarPoint.Win.Spread.ScrollingContentInfo.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Raises the PropertyChanged event.
</summary>
<param name="args">The <see cref="T:System.ComponentModel.PropertyChangedEventArgs"/> instance containing the event data.</param>
</member>
<member name="P:FarPoint.Win.Spread.ScrollingContentInfo.ColumnIndices">
<summary>
Gets or sets column indices for the vertical scrolling tip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ScrollingContentInfo.MaxHeight">
<summary>
Gets or sets the maximum height in pixels for the vertical scrolling tip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ScrollingContentInfo.RowNumberPolicy">
<summary>
Gets or sets the policy that controls how to display row numbers in the vertical scrolling tip when the ColumnIndices property is not empty.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.ScrollingContentInfo.PropertyChanged">
<summary>
Occurs when a property value changes.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ScrollingContentRowNumberPolicy">
<summary>
Specifies how to display the current row number in scrolling content.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ScrollingContentRowNumberPolicy.Never">
<summary>
Doesn't display the current row number in the scrolling content.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ScrollingContentRowNumberPolicy.First">
<summary>
Display the current row number at the start of the scrolling content.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ScrollingContentRowNumberPolicy.Last">
<summary>
Display the current row number at the end of the scrolling content.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ScrollingContentRenderer">
<summary>
A class that create vertical scrolling content image.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ScrollingContentRenderer.#ctor(FarPoint.Win.Spread.SpreadView)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.ScrollingContentRenderer"/> class.
</summary>
<param name="spreadView">The spread view.</param>
</member>
<member name="M:FarPoint.Win.Spread.ScrollingContentRenderer.CreateScrollingContentImage(System.Int32)">
<summary>
Creates the scrolling content image.
</summary>
<param name="rowIndex">Index of the row.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.ScrollingContentRenderer.InitScrollingContentInfo">
<summary>
Initialize the scrolling content info of the render by ScrollingContentInfo property of current sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ScrollingContentRenderer.PaintRowNumber(System.Drawing.Graphics,System.Drawing.Rectangle,System.String)">
<summary>
Paints the row number.
</summary>
<param name="g">Graphics object.</param>
<param name="r">Paint bounds.</param>
<param name="text">row number string.</param>
</member>
<member name="M:FarPoint.Win.Spread.ScrollingContentRenderer.InitLayout(System.Int32,System.Boolean)">
<summary>
Initialize the layout of the scrolling content of the row with index rowIndex.
</summary>
<param name="rowIndex">Index of the row.</param>
<param name="isGroupRow">Whether the row is group row.</param>
<returns></returns>
</member>
<member name="T:FarPoint.Win.Spread.SheetCorner">
<summary>
Represents the corner of the control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetCorner.#ctor(FarPoint.Win.Spread.SheetView)">
<summary>
Initializes a new instance of the <see cref="T:SheetCorner"/> class.
</summary>
<param name="sheet">The sheet.</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetCorner.ShouldSerializeCells">
<summary>
Shoulds the serialize cells.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetCorner.ShouldSerializeColumns">
<summary>
Shoulds the serialize columns.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetCorner.ShouldSerializeRows">
<summary>
Shoulds the serialize rows.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetCorner.ShouldSerializeAlternatingRows">
<summary>
Shoulds the serialize alternating rows.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetCorner.ShouldSerializeDefaultStyle">
<summary>
Gets whether the DefaultStyle property should be serialized.
</summary>
<returns></returns>
</member>
<member name="P:FarPoint.Win.Spread.SheetCorner.Cells">
<summary>
Gets a Cells object for the cells in the sheet corner.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetCorner.Columns">
<summary>
Gets a Columns object for the columns in the sheet corner.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetCorner.Rows">
<summary>
Gets a Rows object for the rows in the sheet corner.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetCorner.AlternatingRows">
<summary>
Gets the alternating rows information for the sheet corner
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetCorner.DefaultStyle">
<summary>
Gets or sets the default style information for the cells in the sheet corner.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetCorner.DefaultStyleName">
<summary>
Gets or sets the name of the default style for the sheet corner.
</summary>
<exception cref="T:System.ArgumentException">Specified style (NamedStyle object) could not be found in the collection</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetCorner.HorizontalGridLine">
<summary>
Gets or sets the horizontal grid line for the sheet corner.
</summary>
<exception cref="T:System.ArgumentNullException">
No value is specified (specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetCorner.VerticalGridLine">
<summary>
Gets or sets the vertical grid line for the sheet corner.
</summary>
<exception cref="T:System.ArgumentNullException">
No value is specified (specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetCorner.RowCount">
<summary>
Gets or sets the number of rows in the sheet corner.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row count is less than 0 or greater than 256.
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetCorner.ColumnCount">
<summary>
Gets or sets the number of columns in the sheet corner.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column count is less than 0 or greater than 256.
</exception>
</member>
<member name="T:FarPoint.Win.Spread.SheetSkinsForm">
<summary>
Represents a sheet skin form.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetSkinsForm.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkinsForm.#ctor">
<summary>
Creates a new sheet skin form with defaul values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkinsForm.#ctor(FarPoint.Win.Spread.FpSpread)">
<summary>
Creates a sheet skin form for the specified FarPoint Spread component.
</summary>
<param name="target">Target FarPoint Spread component</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkinsForm.#ctor(FarPoint.Win.Spread.SheetView)">
<summary>
Creates a new sheet skin form for the specified sheet.
</summary>
<param name="target">Target sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkinsForm.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkinsForm.OnKeyUp(System.Windows.Forms.KeyEventArgs)">
<summary>
Raises the KeyUp event.
</summary>
<param name="e">An event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkinsForm.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetSkinsForm.OnLoad(System.EventArgs)">
<summary>
Occurs when the skin is loaded.
</summary>
<param name="e">EventArgs object with event data</param>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkinsForm.CustomDirty">
<summary>
Gets a value indicating whether user has changed settings.
</summary>
<value><c>true</c> if user has changed settings; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.Win.Spread.SheetSkinsForm.HelpBtn">
<summary>
Internal use only. Gets the help button.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.NonEmptyItemFlag">
<summary>
Specifies the type of contents of a cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NonEmptyItemFlag.Data">
<summary>
[1] Indicates that a cell contains data
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NonEmptyItemFlag.Style">
<summary>
[2] Indicates that a cell contains formatting information
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SheetViewCollection">
<summary>
Represents a collection of sheets (SheetView objects).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewCollection.#ctor(FarPoint.Win.Spread.FpSpread,FarPoint.Win.Spread.SpreadView)">
<summary>
Default constructor
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewCollection.System#Collections#IList#Add(System.Object)">
<summary>
Adds a sheet to the collection.
</summary>
<param name="value">Sheet (SheetView object) to add</param>
<returns>Zero-based index of the sheet in the collection</returns>
<exception cref="T:System.ArgumentException">Specified object type is invalid; object type must be SheetView.</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewCollection.System#Collections#IList#Contains(System.Object)">
<summary>
Specifies whether the collection contains the specified sheeet.
</summary>
<param name="value">Sheet (SheetView object) for which to check in the collection</param>
<returns>True if the sheet is found in the collection; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewCollection.Contains(FarPoint.Win.Spread.SheetView)">
<summary>
Specifies whether the collection contains the specified sheet.
</summary>
<param name="sheetView">Sheet (SheetView object) for which to check the collection</param>
<returns>True if the sheet is found in the collection; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewCollection.System#Collections#IList#IndexOf(System.Object)">
<summary>
Returns the index of the specified sheet.
</summary>
<param name="value">Sheet (SheetView object) for which to search</param>
<returns>Zero-based index of the sheet in the collection, or -1 if the sheet was not found</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewCollection.IndexOf(FarPoint.Win.Spread.SheetView)">
<summary>
Returns the index of the specified sheet in the collection.
</summary>
<param name="sheetView">Sheet (SheetView object) for which to return the index</param>
<returns>Zero-based index of the sheet in the collection, or -1 if the sheet was not found</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
<summary>
Inserts a sheet into the collection at the specified index.
</summary>
<param name="index">Zero-based index at which to insert the sheet</param>
<param name="value">Sheet (SheetView object) to insert into the collection</param>
<exception cref="T:System.ArgumentException">Specified object type is invalid; object type must be SheetView.</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewCollection.Insert(System.Int32,FarPoint.Win.Spread.SheetView)">
<summary>
Inserts a sheet into the collection at the specified index.
</summary>
<param name="index">Zero-based index at which to insert the sheet</param>
<param name="sheetView">Sheet (SheetView object) to insert into the collection</param>
<exception cref="T:System.ArgumentNullException">
Sheet is not specified (that is, specified sheet is null)
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewCollection.System#Collections#IList#Remove(System.Object)">
<summary>
Removes the specified sheet from the collection.
</summary>
<param name="value">Sheet (SheetView object) to remove from the collection</param>
<exception cref="T:System.ArgumentException">Specified object type is invalid; object type must be SheetView.</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewCollection.Remove(FarPoint.Win.Spread.SheetView)">
<summary>
Removes the specified sheet from the collection.
</summary>
<param name="sheetView">Sheet (SheetView object) to remove from the collection</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewCollection.RemoveAt(System.Int32)">
<summary>
Removes a sheet (SheetView object) from the collection at the specified index.
</summary>
<param name="index">Zero-based index of the sheet to remove from the collection</param>
<exception cref="T:System.IndexOutOfRangeException">
Specified sheet index is not valid; must be between 0 and the total number of sheets in the collection
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewCollection.Add(System.Object)">
<summary>
Adds a sheet to the collection.
</summary>
<param name="obj">Sheet (SheetView object) to add to the collection</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewCollection.AddRange(System.Collections.ICollection)">
<summary>
Adds a range of sheets to the collection.
</summary>
<param name="c">Collection of sheets to add to the collection</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewCollection.AddRange(FarPoint.Win.Spread.SheetView[])">
<summary>
Adds an array of SheetView objects to the collection.
</summary>
<param name="sheets">array of SheetView objects</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewCollection.Clear">
<summary>
Removes all the sheets from the collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewCollection.CopyTo(System.Array,System.Int32)">
<summary>
Copies the sheets in the collection to an array.
</summary>
<param name="array">Array to which to copy the sheets</param>
<param name="arrayIndex">Array index at which to start pasting the sheets</param>
</member>
<member name="F:FarPoint.Win.Spread.SheetViewCollection.changing">
<summary>
Occurs when a sheet is about to be added, removed, or changed in the collection.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetViewCollection.changed">
<summary>
Occurs when a sheet is added, removed, or changed in the collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewCollection.Find(System.String)">
<summary>
Searches the collection for a sheet with the specified name.
</summary>
<param name="name">Name of sheet (SheetView object) to find</param>
<returns>
Sheet in the collection with the specified name,
or null if no sheet is found
</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewCollection.Move(System.Int32,System.Int32)">
<summary>
Moves the specified SheetView to a different index in the collection.
</summary>
<param name="from">current index of SheetView</param>
<param name="to">new index for SheetView</param>
</member>
<member name="P:FarPoint.Win.Spread.SheetViewCollection.IsFixedSize">
<summary>
Gets whether the collection has a fixed size.
(This implementation always returns false.)
</summary>
<returns>Always returns false</returns>
</member>
<member name="P:FarPoint.Win.Spread.SheetViewCollection.IsReadOnly">
<summary>
Gets whether the collection is read-only.
(This implementation always returns false.)
</summary>
<returns>Always returns false</returns>
</member>
<member name="P:FarPoint.Win.Spread.SheetViewCollection.System#Collections#IList#Item(System.Int32)">
<summary>
Gets or sets the sheet (SheetView object) at the specified index.
</summary>
<param name="index">Index of sheet in the collection</param>
<exception cref="T:System.ArgumentException">Specified object type is invalid; object type must be SheetView.</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetViewCollection.Count">
<summary>
Gets or sets the number of sheets (SheetView objects) in the collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetViewCollection.Item(System.Int32)">
<summary>
Gets or sets the sheet (SheetView object) at the specified position in the collection.
</summary>
<exception cref="T:System.Exception">
Specified sheet index is invalid; must be between 0 and total number of sheets in the collection
</exception>
<exception cref="T:System.ArgumentNullException">
Sheet index is not specified (that is, specified index is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetViewCollection.Item(System.String)">
<summary>
Gets or sets the sheet (SheetView object) at the specified position in the collection.
</summary>
<exception cref="T:System.Exception">
Specified sheet name is not found in the sheet collection.
</exception>
<exception cref="T:System.ArgumentNullException">
Sheet name is not specified (that is, specified index is null or empty)
</exception>
</member>
<member name="E:FarPoint.Win.Spread.SheetViewCollection.Changing">
<summary>
Occurs when a sheet is about to be added, removed, or changed in the collection.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.SheetViewCollection.Changed">
<summary>
Occurs when a sheet is added, removed, or changed in the collection.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.NoteEventHandler">
<summary>
Represents a method that handles the note events.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.NoteEventArgs">
<summary>
Represents the data for the note event.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.NoteEventArgs.#ctor(FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo)">
<summary>
Creates a new event arguments object for the note.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.NoteEventArgs.NoteStyleInfo">
<summary>
Gets or sets the style information of the note that has changed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.StickyNoteEventHandler">
<summary>
Obsoleted. Use NoteEventHandler instead.
Represents a method that handles the sticky note events.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.StickyNoteEventArgs">
<summary>
Obsoleted. Use NoteEventArgs class instead.
Represents the data for the sticky note event.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.StickyNoteEventArgs.#ctor(FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo)">
<summary>
Creates a new event arguments object for the sticky note.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.StickyNoteEventArgs.StickyNoteStyleInfo">
<summary>
Gets or sets the style information of the sticky note that has changed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SheetViewEventArgs">
<summary>
Represents the event data for the sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewEventArgs.#ctor">
<summary>
Creates a new event arguments object for the sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewEventArgs.#ctor(System.Int32,System.Int32)">
<summary>
Creates a new event arguments object for the sheet,
specifying the row and column.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewEventArgs.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a new event arguments object for the sheet,
specifying the row, column, and number of rows and columns.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
</member>
<member name="P:FarPoint.Win.Spread.SheetViewEventArgs.Row">
<summary>
Gets the row index.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetViewEventArgs.Column">
<summary>
Gets the column index.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetViewEventArgs.RowCount">
<summary>
Gets the number of rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetViewEventArgs.ColumnCount">
<summary>
Gets the number of columns.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SheetViewEventHandler">
<summary>
Represents a method that handles the sheet events.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SheetViewPropertyChangeEventArgs">
<summary>
Represents the data for changes to the sheet properties.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewPropertyChangeEventArgs.#ctor(System.String)">
<summary>
Creates a new event arguments object for sheet property changes.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetViewPropertyChangeEventArgs.PropertyName">
<summary>
Gets the name of the property that has changed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SheetViewPropertyChangeEventHandler">
<summary>
Represents a defined method that handles sheet property change events.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SheetViewShapeChangeEventHandler">
<summary>
Represents a defined method that handles sheet shape change events.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SheetViewShapeChangeEventArgs">
<summary>
Represents the rectangle for changes to the sheet shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetViewShapeChangeEventArgs.#ctor(System.Drawing.Rectangle,System.Windows.Forms.Control,FarPoint.Win.Spread.DrawingSpace.PSShape)">
<summary>
Creates a new event arguments object for sheet shape changes.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetViewShapeChangeEventArgs.Rectangle">
<summary>
Gets the rectangle of the shape that has changed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.TextFileFlags">
<summary>
Specifies how to process the data when saving to a text file.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TextFileFlags.None">
<summary>
[0] Not specified
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TextFileFlags.Unformatted">
<summary>
[1] Whether to bypass the IFormatter in the StyleInfo for the cell
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TextFileFlags.SaveFormulas">
<summary>
[2] Whether to save formulas
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TextFileFlags.IncludeFooter">
<summary>
[4] Whether to save the column footer
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TextFileFlags.FilterRows">
<summary>
[8] Whether to filter the rows with RowFilter
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TextFileFlags.ForceCellDelimiter">
<summary>
[16] Whether to force the cell delimiter
</summary>
</member>
<member name="T:FarPoint.Win.Spread.HeaderAutoText">
<summary>
Specifies what default labels are displayed in headers.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HeaderAutoText.Blank">
<summary>
[0] Displays blanks in the headers
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HeaderAutoText.Numbers">
<summary>
[1] Displays numbers in the headers
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HeaderAutoText.Letters">
<summary>
[2] Displays letters in the headers
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ButtonDrawModes">
<summary>
Specifies how to display buttons in cells for button and combo box cell types.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ButtonDrawModes.Always">
<summary>
[0] Always displays buttons
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ButtonDrawModes.CurrentCell">
<summary>
[1] Displays buttons only in the current cell
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ButtonDrawModes.CurrentColumn">
<summary>
[2] Displays buttons only in the current column
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ButtonDrawModes.CurrentRow">
<summary>
[4] Displays buttons only in the current row
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ButtonDrawModes.AlwaysPrimaryButton">
<summary>
[8] Always displays buttons for button cells
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ButtonDrawModes.AlwaysSecondaryButton">
<summary>
[16] Always displays buttons for combo box cells
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ButtonDrawModes.AlwaysEditButtons">
<summary>
[32] Always displays buttons for edit cells
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ClipboardOptions">
<summary>
Specifies which headers are included when data is copied to or pasted from the Clipboard.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ClipboardOptions.NoHeaders">
<summary>
[0] Includes neither column nor row headers when data is copied;
does not overwrite selected column or row headers when data is pasted
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ClipboardOptions.RowHeaders">
<summary>
[1] Includes selected row headers when data is copied;
overwrites selected row headers when data is pasted
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ClipboardOptions.ColumnHeaders">
<summary>
[2] Includes selected column headers when data is copied;
overwrites selected column headers when data is pasted
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ClipboardOptions.AllHeaders">
<summary>
[3] Includes selected headers when data is copied;
overwrites selected headers when data is pasted
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ClipboardPasteOptions">
<summary>
Specifies what data is pasted from the Clipboard.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ClipboardPasteOptions.All">
<summary>
[0] Pastes all data objects, including values, formatting, and formulas
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ClipboardPasteOptions.Values">
<summary>
[1] Pastes only values
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ClipboardPasteOptions.Formatting">
<summary>
[2] Pastes only formatting
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ClipboardPasteOptions.Formulas">
<summary>
[3] Pastes only formulas
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ClipboardPasteOptions.AsLink">
<summary>
[4] Pastes as a link to the original cell
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ClipboardPasteOptions.AsString">
<summary>
[5] Pastes as a text string
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ClipboardPasteOptions.AsStringSkipHidden">
<summary>
[6] Pastes as a text string and skips hidden cells
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ClipboardPasteOptions.Shape">
<summary>
[7] Pastes only shape
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ClipboardCopyOptions">
<summary>
Specifies what data is pasted from the Clipboard.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ClipboardCopyOptions.All">
<summary>
[0] Copies all data objects, including values, formatting, and formulas
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ClipboardCopyOptions.Values">
<summary>
[1] Copies only values
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ClipboardCopyOptions.Formatting">
<summary>
[2] Copies only formatting
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ClipboardCopyOptions.Formulas">
<summary>
[3] Copies only formulas
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ClipboardCopyOptions.AsString">
<summary>
[5] Copies as a text string
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ClipboardCopyOptions.AsStringSkipHidden">
<summary>
[6] Copies as a text string and skips hidden cells
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SelectionStyles">
<summary>
Specifies the style for the display of selected cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SelectionStyles.None">
<summary>
[0] Does not change how the cells are displayed when selected
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SelectionStyles.SelectionColors">
<summary>
[1] Uses the selection text and background color when cells are selected
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SelectionStyles.SelectionRenderer">
<summary>
[2] Uses the default settings in the renderer when cells are selected
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SelectionStyles.Both">
<summary>
[3] Uses both the selection color settings and the renderer when cells are selected
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ShapeClipboardObject">
<summary>
Internal use only.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ShapeClipboardObject.Top">
<summary>
Gets or sets the top.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ShapeClipboardObject.Left">
<summary>
Gets or sets the near (left) side.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ShapeClipboardObject.Height">
<summary>
Gets or sets the height.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ShapeClipboardObject.Width">
<summary>
Gets or sets the width.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ShapeClipboardObject.Shape">
<summary>
Gets or sets the shape.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DefaultGroupFooterCollection">
<summary>
Contains defaultGroupFooters for grouping
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultGroupFooterCollection.Remove(System.Int32)">
<summary>
Remove item which specified by column index
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultGroupFooterCollection.Contains(System.Int32)">
<summary>
Specifies whether item which specified by column index already in list
</summary>
<param name="columnIndex"></param>
<returns>True if item which specified by column index aleady in list</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultGroupFooterCollection.Clear">
<summary>
Clear list of defaultGroupFooters
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultGroupFooterCollection.#ctor(System.Int32,System.Int32)">
<summary>
Constructor of DefaultGroupFooterCollection class
</summary>
<param name="rowCount">Number of rows of the data model DefaultGroupFooterCollection refers to</param>
<param name="columnCount">Number of columns of the data model DefaultGroupFooterCollection refers to</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultGroupFooterCollection.Add(System.Int32)">
<summary>
Create a new defaultGroupFooter item in list by column index
</summary>
<param name="columnIndex">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultGroupFooterCollection.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the DefaultGroupFooterCollection to the SerializationInfo.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultGroupFooterCollection.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a DefaultGroupFooterCollection object from serialization.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultGroupFooterCollection.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultGroupFooterCollection.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="P:FarPoint.Win.Spread.DefaultGroupFooterCollection.Count">
<summary>
Number of items
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultGroupFooterCollection.Item(System.Int32)">
<summary>
Get defaultGroupFooter based on index
</summary>
<param name="columnIndex">Column index</param>
<returns>DefaultGroupFooter object</returns>
</member>
<member name="P:FarPoint.Win.Spread.DefaultGroupFooterCollection.CanSerializeXml">
<summary>
Gets whether the entire object can
be saved to XML and successfully loaded again.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DefaultGroupFooter">
<summary>
Contains default setting for group footer
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultGroupFooter.#ctor(FarPoint.Win.Spread.Model.ISheetDataModel)">
<summary>
Constructor of DefaultGroupFooter
</summary>
<param name="model">Data model</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultGroupFooter.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the DefaultGroupFooter to the SerializationInfo.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultGroupFooter.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a DefaultGroupFooter object from serialization.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultGroupFooter.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.DefaultGroupFooter.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="P:FarPoint.Win.Spread.DefaultGroupFooter.DataModel">
<summary>
Get data model of DefaultGroupFooter
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DefaultGroupFooter.CanSerializeXml">
<summary>
Gets whether the entire object can
be saved to XML and successfully loaded again.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SheetView">
<summary>
Represents an individual sheet in the FarPoint Spread component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeCharts">
<summary>
Shoulds the serialize charts.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ResetCharts">
<summary>
Resets the charts.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddChart(System.Int32,System.Int32,System.Type,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Chart.ChartViewType,System.Boolean)">
<summary>
Adds the chart control.
</summary>
<param name="row">The row.</param>
<param name="column">The column.</param>
<param name="seriesType">Type of the series.</param>
<param name="width">Width of the chart.</param>
<param name="height">Height of the chart.</param>
<param name="x">The position X.</param>
<param name="y">The position Y.</param>
<param name="viewType">Type of the view.</param>
<param name="showLegend">if set to <c>true</c> the new chart will have a default legend area. Otherwise, there is no legend area.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddChart(System.Int32,System.Int32,System.Type,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Adds the chart control.
</summary>
<param name="row">The row.</param>
<param name="column">The column.</param>
<param name="seriesType">Type of the series.</param>
<param name="width">Width of the chart.</param>
<param name="height">Height of the chart.</param>
<param name="x">The position X.</param>
<param name="y">The position Y.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddChart(System.Int32,System.Int32,System.Int32,System.Int32,System.Type,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Chart.ChartViewType,System.Boolean)">
<summary>
Adds the chart control.
</summary>
<param name="row">Starting row index.</param>
<param name="column">Starting column index.</param>
<param name="rowCount">The number of rows.</param>
<param name="columnCount">The number of columns.</param>
<param name="seriesType">Type of the series.</param>
<param name="width">Width of the chart.</param>
<param name="height">Height of the chart.</param>
<param name="x">The position X.</param>
<param name="y">The position Y.</param>
<param name="viewType">Type of the view.</param>
<param name="showLegend">if set to <c>true</c> the new chart will have a default legend area. Otherwise, there is no legend area.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddChart(FarPoint.Win.Spread.Model.CellRange[],System.Type,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Chart.ChartViewType,System.Boolean)">
<summary>
Adds a chart to the SheetView. The chart will be aligned in the center of the SheetView.
</summary>
<param name="cellRanges">Multiple cell ranges that are used to create data for the chart.</param>
<param name="seriesType">Indicates which chart type will be added.</param>
<param name="width">Width of the chart.</param>
<param name="height">Height of the chart.</param>
<param name="x">The position X.</param>
<param name="y">The position Y.</param>
<param name="viewType">Type of the view.</param>
<param name="showLegend">if set to <c>true</c> the new chart will have a default legend area. Otherwise, there is no legend area.</param>
<returns>The new created instance of the chart.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddChart(FarPoint.Win.Spread.Model.CellRange[],System.Type,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Adds a chart to the SheetView. The chart will be aligned in the center of the SheetView.
</summary>
<param name="cellRanges">Multiple cell ranges that are used to create data for the chart.</param>
<param name="seriesType">Indicates which chart type will be added.</param>
<param name="width">Width of the chart.</param>
<param name="height">Height of the chart.</param>
<param name="x">The position X.</param>
<param name="y">The position Y.</param>
<returns>The new created instance of the chart.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddChart(FarPoint.Win.Spread.Model.CellRange,System.Type,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Chart.ChartViewType,System.Boolean)">
<summary>
Adds the chart control.
</summary>
<param name="cellRange">The range of data used in the chart.</param>
<param name="seriesType">Type of the series.</param>
<param name="width">Width of the chart.</param>
<param name="height">Height of the chart.</param>
<param name="x">The position X.</param>
<param name="y">The position Y.</param>
<param name="viewType">Type of the view.</param>
<param name="showLegend">if set to <c>true</c> the new chart will have a default legend area. Otherwise, there is no legend area.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddChart(FarPoint.Win.Spread.Model.CellRange,System.Type,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Adds the chart control.
</summary>
<param name="cellRange">The range of data used in the chart.</param>
<param name="seriesType">Type of the series.</param>
<param name="width">Width of the chart.</param>
<param name="height">Height of the chart.</param>
<param name="x">The position X.</param>
<param name="y">The position Y.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.#ctor">
<summary>
Creates a sheet (SheetView object).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.Finalize">
<summary>
The destructor method
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.#ctor(System.String)">
<summary>
Creates a sheet (SheetView object) with a specified name.
</summary>
<param name="name">Name of sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.#ctor(FarPoint.Win.Spread.Model.ISheetDataModel)">
<summary>
Creates a sheet (SheetView object) according to a specified data model.
</summary>
<param name="dataModel">Data model</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.#ctor(FarPoint.Win.Spread.Model.ISheetDataModel,FarPoint.Win.Spread.NamedStyleCollection)">
<summary>
Creates a sheet (SheetView object) according to a specified data model and named style.
</summary>
<param name="dataModel">Data model</param>
<param name="namedStyles">Named style</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a sheet (SheetView object) from serialization.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the object to the SerializationInfo.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.InitHeadersAndCorner">
<summary>
Initializes all headers and sheet corner to default.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.Init">
<summary>
Initializes all internal fields.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.Reset">
<summary>
Resets the view on this sheet to its original state.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ExpandRow(System.Int32,System.Boolean)">
<summary>
Expands or collapses the specified parent row, which shows or hides the child view
in a hierarchical display.
</summary>
<param name="row">Index of parent row to expand or collapse</param>
<param name="expand">Whether to expand and show the child sheet (or collapse and hide it)</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified parent row index is out of range; must be between 0 and the total number of rows
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.IsRowExpanded(System.Int32)">
<summary>
Gets whether the row on this sheet displays a child view in a hierarchical display.
</summary>
<param name="row">Row index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between 0 and the total number of rows
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetRowExpandable(System.Int32,System.Boolean)">
<summary>
Sets whether the row on this sheet can be expanded to show a child view in a hierarchical display.
</summary>
<param name="row">Row index</param>
<param name="expandable">Whether the row can be expanded to show a child view</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between 0 and the total number of rows
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetRowExpandable(System.Int32)">
<summary>
Gets whether the row on this sheet can be expanded to show a child view in a hierarchical display.
</summary>
<param name="row">Row index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between 0 and the total number of rows
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetChildView(System.Int32,System.Int32)">
<summary>
Creates the sheet (SheetView object) for the specified row and the specified relation index.
</summary>
<param name="row">Row whose child sheet is to be created</param>
<param name="relationIndex">Index to the data relation collection</param>
<exception cref="T:System.Exception">
Specified sheet does not support a child sheet
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between 0 and the number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified relation index is out of range; must be between 0 and the number of relations
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetRootSheet">
<summary>
Gets the top <see cref="T:FarPoint.Win.Spread.SheetView"/> object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetChildSheets">
<summary>
Gets a list of child sheet views that have been created.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FindChildView(System.Int32,System.Int32)">
<summary>
Gets the child view for this sheet with the specified name.
</summary>
<param name="row">Row index of the related sheet</param>
<param name="relationIndex">Relation index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetChildVisible(FarPoint.Win.Spread.SheetView,System.Boolean)">
<summary>
Sets whether to make the child view on this sheet visible when the parent row is expanded.
</summary>
<param name="child">Child view to show</param>
<param name="visible">Whether to make it visible when parent row is expanded</param>
If this is set to true, the child view is displayed when the parent row of the
child view is expanded. If this is set to false or the parent row is not expanded,
the child view is not displayed.
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetChildVisible(FarPoint.Win.Spread.SheetView)">
<summary>
Gets whether to show the child view on this sheet when the parent row is expanded.
</summary>
<param name="child">Child view to show</param>
If this method returns true and the parent row of the child view is expanded,
the child view is displayed; otherwise, the child view is not displayed.
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetChildRelation(System.Int32)">
<summary>
Gets the name of the child data relation at the specified index on the sheet.
</summary>
<param name="index">Index of relation (child view)</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetLastNonEmptyRow(FarPoint.Win.Spread.NonEmptyItemFlag)">
<summary>
Gets the row index of the last row that contains data or formatting on this sheet.
</summary>
<param name="dataFlag">Whether to look for data or formatting (NonEmptyItemFlag setting)</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetLastNonEmptyColumn(FarPoint.Win.Spread.NonEmptyItemFlag)">
<summary>
Gets the index of the last column that contains data or formatting on this sheet.
</summary>
<param name="dataFlag">Whether to look for data or formatting (NonEmptyItemFlag setting)</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeNamedStyles">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeSaveNamedStyles">
<summary>
Determines whether the named styles should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetActiveCell(System.Int32,System.Int32)">
<summary>
Sets the active cell on this sheet.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetActiveCell(System.Int32,System.Int32,System.Boolean)">
<summary>
Sets the active cell on this sheet.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
<param name="clearSelection">Whether to clear selections</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddSelection(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Adds a selection on this sheet.
</summary>
<param name="row">Starting row index of selection </param>
<param name="column">Starting column index of selection </param>
<param name="rowCount">Number of rows in selection </param>
<param name="columnCount">Number of columns in selection </param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetSelection(System.Int32)">
<summary>
Gets the selection on this sheet with the specified index.
</summary>
<param name="index">Index into the list of selections</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.RemoveSelection(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Removes the specified selection from this sheet.
</summary>
<param name="row">Starting row index of selection to remove </param>
<param name="column">Starting column index of selection to remove </param>
<param name="rowCount">Number of rows in selection to remove </param>
<param name="columnCount">Number of columns in selection to remove </param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClearSelection">
<summary>
Removes all selections from this sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SSFileCleanUp">
<summary>
Cleans up temporary variables created when loading COM Spread files.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OpenSpreadFile(System.String)">
<summary>
Opens a saved Spread file into this sheet.
</summary>
<param name="fileName">Path and name of the file to open</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeGrayAreaBackColor">
<summary>
Gets whether the GrayAreaBackColor property should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeNullFont">
<summary>
Determines whether null font should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeLockFont">
<summary>
Determines whether lock font should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeSelectionFont">
<summary>
Determines whether selection font should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeNullBackColor">
<summary>
Determines whether null background color should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeNullForeColor">
<summary>
Determines whether null text color should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeSelectionBackColor">
<summary>
Determines whether selection background color should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeSelectionForeColor">
<summary>
Determines whether selection text color should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeColumnFooterSheetCornerHorizontalGridLine">
<summary>
Gets whether the horizontal grid line for the footer corner should be serialized.
</summary>
<returns>true if the horizontal grid line for the footer corner should be serialized; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeColumnFooterSheetCornerVerticalGridLine">
<summary>
Gets whether the vertical grid line for footer corner should be serialized.
</summary>
<returns>true if VerticalGridLine for footer corner should be serialized; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeSheetCornerHorizontalGridLine">
<summary>
Gets whether the horizontal grid line for the corner should be serialized.
</summary>
<returns>true if the horizontal grid line for the corner should be serialized; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeSheetCornerVerticalGridLine">
<summary>
Gets whether the vertical grid line should be serialized.
</summary>
<returns>true if VerticalGridLine should be serialized; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeHorizontalGridLine">
<summary>
Gets whether the horizontal grid line for the data area should be serialized.
</summary>
<returns>true if HorizontalGridLine should be serialized; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeVerticalGridLine">
<summary>
Gets whether the vertical grid line for the data area should be serialized.
</summary>
<returns>true if VerticalGridLine should be serialized; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeZoomFactor">
<summary>
Gets whether the zoom factor should be serialized.
</summary>
<returns>true if ZoomFactor should be serialized; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializePrintInfo">
<summary>
Determines whether print information should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetStickyNoteStyleInfo(System.Int32,System.Int32)">
<summary>
Gets the style information for the cell notes on this sheet that stay visible.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetStickyNoteStyleInfo(System.Int32,System.Int32,FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo)">
<summary>
Sets the style information for the cell notes on this sheet that stay visible.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
<param name="info">Style information</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShowNotes(System.Boolean)">
<summary>
Shows or hides all cell notes on the sheet.
</summary>
<param name="show">Whether to show the cell notes</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.Recalculate">
<summary>
Evaluates all the formulas in cells on the sheet that have changed
since the last calculation cycle.
</summary>
There is no Spread 6 equivalent.
</member>
<member name="M:FarPoint.Win.Spread.SheetView.RecalculateAll">
<summary>
Evaluates all the formulas in cells on the sheet
(including those that have not changed since the last calculation cycle).
</summary>
This accomplishes the same as Spread6's ReCalc method.
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClearRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
Removes all of the data, formatting, formulas, and notes from a range of cells on this sheet.
</summary>
<param name="row">Row index of first cell in range</param>
<param name="column">Column index of first cell in range</param>
<param name="rowCount">Number of rows in range</param>
<param name="columnCount">Number of columns in range</param>
<param name="dataOnly">Whether to remove only data</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClearRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,FarPoint.Win.Spread.ClipboardCopyOptions)">
<summary>
Removes all of the data, formatting, formulas, and notes from a range of cells on this sheet.
</summary>
<param name="row">Row index of first cell in range</param>
<param name="column">Column index of first cell in range</param>
<param name="rowCount">Number of rows in range</param>
<param name="columnCount">Number of columns in range</param>
<param name="dataOnly">Whether to remove only data</param>
<param name="copyOptions">ClipboardCopyOptions</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.CopyRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
Copies the data, formatting, formulas, and notes from a block of cells on the sheet to a new location.
</summary>
<param name="fromRow">Row index of top-left cell in block to copy</param>
<param name="fromColumn">Column index of top-left cell in block to copy</param>
<param name="toRow">Row index of top-left cell in destination</param>
<param name="toColumn">Column index of top-left cell in destination</param>
<param name="rowCount">Number of rows in the block</param>
<param name="columnCount">Number of columns in the block</param>
<param name="dataOnly">Whether only the data is copied, or the data and formatting</param>
<exception cref="T:System.InvalidOperationException">
Operation is not valid; cannot copy entire sheet of cells
</exception>
<exception cref="T:System.InvalidOperationException">
Operation is not valid; cannot copy entire columns over partial columns
</exception>
<exception cref="T:System.InvalidOperationException">
Operation is not valid; cannot copy entire rows over partial rows
</exception>
<exception cref="T:System.InvalidOperationException">
Operation is not valid; cannot copy a range of cells over part of a spanned cell
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.CopyRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Copies the data, formatting, formulas, and notes from a block of cells on the sheet to a new location.
</summary>
<param name="fromRow">Row index of top-left cell in block to copy</param>
<param name="fromColumn">Column index of top-left cell in block to copy</param>
<param name="toRow">Row index of top-left cell in destination</param>
<param name="toColumn">Column index of top-left cell in destination</param>
<param name="rowCount">Number of rows in the block</param>
<param name="columnCount">Number of columns in the block</param>
<param name="dataOnly">Whether only the data is copied, or the data and formatting</param>
<param name="dataModelDataOnly">Whether only the data is copied in the data model, or the data and formulas and notes and tags</param>
<exception cref="T:System.InvalidOperationException">
Operation is not valid; cannot copy entire sheet of cells
</exception>
<exception cref="T:System.InvalidOperationException">
Operation is not valid; cannot copy entire columns over partial columns
</exception>
<exception cref="T:System.InvalidOperationException">
Operation is not valid; cannot copy entire rows over partial rows
</exception>
<exception cref="T:System.InvalidOperationException">
Operation is not valid; cannot copy a range of cells over part of a spanned cell
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.MoveRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
Moves the data, formatting, formulas, and notes from a block of cells on this sheet to a new location.
</summary>
<param name="fromRow">Row index of top-left cell in block to move</param>
<param name="fromColumn">Column index of top-left cell in block to move</param>
<param name="toRow">Row index for destination of upper-left cell in block</param>
<param name="toColumn">Column index for destination of upper-left cell in block</param>
<param name="rowCount">Number of rows in the block</param>
<param name="columnCount">Number of columns in the block</param>
<param name="dataOnly">Whether data only or data with formatting are swapped</param>
<exception cref="T:System.InvalidOperationException">
Operation is not valid; cannot move entire sheet of cells
</exception>
<exception cref="T:System.InvalidOperationException">
Operation is not valid; cannot move entire columns over partial columns
</exception>
<exception cref="T:System.InvalidOperationException">
Operation is not valid; cannot move entire rows over partial columns
</exception>
<exception cref="T:System.InvalidOperationException">
Operation is not valid; cannot move a range of cells over part of a spanned cell
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SwapRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
Swaps the data and formatting in a block of cells on this sheet
with another block of cells on this sheet.
</summary>
<param name="fromRow">Row index of the top-left cell in the block from which to swap</param>
<param name="fromColumn">Column index of the top-left cell in the block from which to swap</param>
<param name="toRow">Row index of the top-left cell in the destination block</param>
<param name="toColumn">Column index of the top-left cell in the destination block</param>
<param name="rowCount">Number of rows in the block of cells</param>
<param name="columnCount">Number of columns in the block of cells</param>
<param name="dataOnly">Whether only the data is copied, or the data and formatting</param>
<exception cref="T:System.InvalidOperationException">
Operation is not valid; cannot swap entire sheet of cells
</exception>
<exception cref="T:System.InvalidOperationException">
Operation is not valid; cannot swap entire columns over partial columns
</exception>
<exception cref="T:System.InvalidOperationException">
Operation is not valid; cannot swap entire rows over partial rows
</exception>
<exception cref="T:System.InvalidOperationException">
Operation is not valid; cannot swap a range of cells over part of a spanned cell
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.CopyNoteInfo(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Copies the NoteStyleInfo of notes from a block of cells on the sheet to a new location.
</summary>
<param name="fromRow"></param>
<param name="fromColumn"></param>
<param name="toRow"></param>
<param name="toColumn"></param>
<param name="rowCount"></param>
<param name="columnCount"></param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FillRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.FillDirection)">
<summary>
Fills a range of cells on this sheet by copying a specified range in the specified direction.
</summary>
<param name="row">Row index of the starting cell in the range to copy</param>
<param name="column">Column index of the starting cell in the range to copy</param>
<param name="rowCount">Number of rows in the range to copy</param>
<param name="columnCount">Number of columns in the range to copy</param>
<param name="fillCount">Number of rows or columns into which to copy the specified range</param>
<param name="fillDirection">Direction of fill (to copy the specified range)</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is not valid; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is not valid; must be between -1 and the total number of columns
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row count is not valid; must be -1 or
between 0 and the total number of rows minus the current row index
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column count is not valid; must be -1 or
between 0 and the total number of columns minus the current column index
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified number of rows or columns (fill count) is not valid; must be -1 or
between 0 and the total number of rows or columns
</exception>
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
Specified direction of the fill is not valid;
must be one of the allowed enumeration settings
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FillRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.FillDirection,System.Boolean)">
<summary>
Fills a range of cells on this sheet by copying a specified range in the specified direction.
</summary>
<param name="row">Row index of the starting cell in the range to copy</param>
<param name="column">Column index of the starting cell in the range to copy</param>
<param name="rowCount">Number of rows in the range to copy</param>
<param name="columnCount">Number of columns in the range to copy</param>
<param name="fillCount">Number of rows or columns into which to copy the specified range</param>
<param name="fillDirection">Direction of fill (to copy the specified range)</param>
<param name="dataOnly">Whether to fill data only (or also styles and spans)</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is not valid; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is not valid; must be between -1 and the total number of columns
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row count is not valid; must be -1 or
between 0 and the total number of rows minus the current row index
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column count is not valid; must be -1 or
between 0 and the total number of columns minus the current column index
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified number of rows or columns (fill count) is not valid; must be -1 or
between 0 and the total number of rows or columns
</exception>
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
Specified direction of the fill is not valid;
must be one of the allowed enumeration settings
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FillRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.FillDirection,System.Boolean,System.Boolean)">
<summary>
Fills a range of cells on this sheet by copying a specified range in the specified direction.
</summary>
<param name="row">Row index of the starting cell in the range to copy</param>
<param name="column">Column index of the starting cell in the range to copy</param>
<param name="rowCount">Number of rows in the range to copy</param>
<param name="columnCount">Number of columns in the range to copy</param>
<param name="fillCount">Number of rows or columns into which to copy the specified range</param>
<param name="fillDirection">Direction of fill (to copy the specified range)</param>
<param name="dataOnly">Whether to fill data only (or also styles and spans)</param>
<param name="valuesOnly">Whether to fill in values only (or also formulas, notes, and tags)</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is not valid; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is not valid; must be between -1 and the total number of columns
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row count is not valid; must be -1 or
between 0 and the total number of rows minus the current row index
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column count is not valid; must be -1 or
between 0 and the total number of columns minus the current column index
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified number of rows or columns (fill count) is not valid; must be -1 or
between 0 and the total number of rows or columns
</exception>
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
Specified direction of the fill is not valid;
must be one of the allowed enumeration settings
</exception>
<exception cref="T:System.InvalidOperationException">
Specified target range contains one or more cell spans so the operation cannot be completed.
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClipboardCut">
<summary>
Cuts the contents from the sheet to the Clipboard.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClipboardCut(FarPoint.Win.Spread.ClipboardCopyOptions)">
<summary>
Cuts the contents from specified range in the sheet to the Clipboard using the specified copy options.
</summary>
<param name="copyOptions">ClipboardCopyOptions</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClipboardCutDataOnly">
<summary>
Cuts only the data to the Clipboard.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClipboardCopy">
<summary>
Copies the contents from the sheet to the Clipboard.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClipboardCopy(System.Boolean)">
<summary>
Copies the contents from the sheet to the Clipboard.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClipboardCopy(FarPoint.Win.Spread.ClipboardCopyOptions)">
<summary>
Copies the contents from the sheet to the Clipboard using the specified ClipboardCopyOptions.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClipboardCopy(FarPoint.Win.Spread.Model.CellRange)">
<summary>
Copies the contents from the specified CellRange in the sheet to the Clipboard.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClipboardCopy(FarPoint.Win.Spread.Model.CellRange,FarPoint.Win.Spread.ClipboardCopyOptions)">
<summary>
Copies the contents from the specified CellRange in the sheet to the Clipboard using the specified ClipboardCopyOptions.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClipboardCopy(System.Boolean,FarPoint.Win.Spread.Model.CellRange)">
<summary>
Copies the contents from the sheet to the Clipboard.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClipboardCopy(System.Boolean,FarPoint.Win.Spread.Model.CellRange,FarPoint.Win.Spread.ClipboardCopyOptions)">
<summary>
Copies the contents from the sheet to the Clipboard.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetClipDataObject(System.Boolean,FarPoint.Win.Spread.Model.CellRange)">
<summary>
Gets a data object with the necessary formats for Clipboard usage:
CellInfoRange, ColumnInfoRange and RowInfoRange
</summary>
<param name="fromCutting">Whether from cutting</param>
<param name="cellRange">Cell range</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetClipDataObject(System.Boolean,FarPoint.Win.Spread.Model.CellRange,FarPoint.Win.Spread.ClipboardCopyOptions)">
<summary>
Gets a data object with the necessary formats for Clipboard usage:
CellInfoRange, ColumnInfoRange and RowInfoRange
</summary>
<param name="fromCutting">Whether from cutting</param>
<param name="cellRange">Cell range</param>
<param name="copyOptions">ClipboardCopyOptions</param>
<returns>DataObject</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClipboardPaste">
<summary>
Pastes the contents from the Clipboard to the sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClipboardPaste(FarPoint.Win.Spread.ClipboardPasteOptions)">
<summary>
Pastes the contents from the Clipboard to the sheet according to the specified paste option.
</summary>
<param name="pasteOption">Clipboard paste option (a setting of the <see cref="T:FarPoint.Win.Spread.ClipboardPasteOptions"/> enumeration)</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClipboardPaste(FarPoint.Win.Spread.ClipboardPasteOptions,System.Windows.Forms.IDataObject)">
<summary>
Pastes the contents from the Clipboard to the sheet according to the specified paste option.
</summary>
<param name="pasteOption">Clipboard paste option (a setting of the <see cref="T:FarPoint.Win.Spread.ClipboardPasteOptions"/> enumeration)</param>
<param name="data">IDataObject</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClipboardPaste(FarPoint.Win.Spread.ClipboardPasteOptions,System.Windows.Forms.IDataObject,FarPoint.Win.Spread.Model.CellRange)">
<summary>
Pastes the contents from the Clipboard to the sheet according to the specified paste option.
</summary>
<param name="pasteOption">Clipboard paste option (a setting of the <see cref="T:FarPoint.Win.Spread.ClipboardPasteOptions"/> enumeration)</param>
<param name="data">IDataObject</param>
<param name="cellRange">Range of cells</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClipboardCopyShape">
<summary>
Copies the active shape to the Clipboard.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClipboardCutShape">
<summary>
Cuts the active shape to the Clipboard.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClipboardPasteShape">
<summary>
Pastes the shape from the Clipboard.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClipboardPasteShape(FarPoint.Win.Spread.ShapeClipboardObject)">
<summary>
Pastes the shape from the Clipboard with the specified shape information.
</summary>
<param name="shapeInfo">Shape with placement information</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeColumnFooterSheetCornerStyle">
<summary>
Gets whether the style for the sheet corner should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeSheetCornerStyle">
<summary>
Gets whether the style for the sheet corner should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.IsColumnBound(System.Int32)">
<summary>
Gets whether the specified column on this sheet is bound to a data source.
</summary>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.BindDataColumn(System.Int32,System.String)">
<summary>
Binds the column to the data source column for a sheet.
</summary>
<param name="column">Column index</param>
<param name="columnName">Name of the data source column</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetDataView(System.Boolean)">
<summary>
Gets the DataView object on this sheet.
</summary>
<param name="create">Whether to re-create the DataView</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddUnboundRows(System.Int32,System.Int32)">
<summary>
Adds unbound rows to the data model for a sheet.
</summary>
<param name="row">Row index at which to start adding rows</param>
<param name="count">Number of rows to add</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddRowToDataSource(System.Int32,System.Boolean)">
<summary>
Adds the unbound row to the data source for a sheet.
</summary>
<param name="row">Row index at which to add row</param>
<param name="autoFillData">Whether to automatically fill the row with data</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetUnboundValue(System.Int32,System.Int32)">
<summary>
Gets the unbound value for the cell on this sheet.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.IsRowBound(System.Int32)">
<summary>
Gets whether the specified row on this sheet is bound to a data source.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.IndexToLetters(System.Int32)">
<summary>
Converts a row or column index to a text represention
consisting of letters.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.LettersToIndex(System.String)">
<summary>
Converts a column A1 notation string to an index.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetRowAutoText(System.Int32)">
<summary>
Gets the automatic text displayed in the row header for the specified row on this sheet.
</summary>
<param name="row">Row index of the row header</param>
<excpetion cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be at least zero.
</excpetion>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetColumnAutoText(System.Int32)">
<summary>
Gets the automatic text displayed in the column header for the specified column on this sheet.
</summary>
<param name="column">Column index of column header</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be at least zero
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetViewRowFromModelRow(System.Int32)">
<summary>
Gets the row on the sheet that corresponds to the specified row index in the model.
</summary>
<param name="modelrow">Row index in model</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetViewColumnFromModelColumn(System.Int32)">
<summary>
Gets the column on the sheet that corresponds to the specified column index in the model.
</summary>
<param name="modelcolumn">Column index in model</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetModelRowFromViewRow(System.Int32)">
<summary>
Gets the row index in the data model that corresponds to the specified row index in the sheet.
</summary>
<param name="row">Row index in the sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetModelRowForViewRow(System.Int32,System.Int32)">
<summary>
Sets the row index in the data model that corresponds to the specified row index in the sheet.
</summary>
<param name="viewRow">Row index in the sheet</param>
<param name="modelRow">Row index in the data model</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row in the sheet is out of range; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row in the model is out of range; must be between -1 and the total number of rows
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetModelColumnFromViewColumn(System.Int32)">
<summary>
Gets the column index in the data model that corresponds to the specified column index in the sheet.
</summary>
<param name="column">Column index in the sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetModelColumnForViewColumn(System.Int32,System.Int32)">
<summary>
Sets the column index in the data model that corresponds to the specified column index in the sheet.
</summary>
<param name="viewColumn">Column index in the sheet</param>
<param name="modelColumn">Column index in the data model</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column in the sheet is out of range; must be between -1 and the total number of columns in the sheet
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column in the model is out of range; must be between -1 and the total number of columns in the model
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnDataModelChanged(System.Object,FarPoint.Win.Spread.Model.SheetDataModelEventArgs)">
<summary>
Changes the data model for this sheet in synchronization with the data source.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e"><see cref="T:FarPoint.Win.Spread.Model.SheetDataModelEventArgs"/> object that contains event data</param>
</member>
<member name="F:FarPoint.Win.Spread.SheetView.nameChanging">
<summary>
Occurs when the name of the data model is changing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnSheetRowAxisModelChanged(System.Object,FarPoint.Win.Spread.Model.SheetAxisModelEventArgs)">
<summary>
Changes the sheet row axis model in synchronization with the data source.
</summary>
<param name="sender">Object that raised the event </param>
<param name="e"><see cref="T:FarPoint.Win.Spread.Model.SheetAxisModelEventArgs"/> object that contains event data </param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnSheetColumnAxisModelChanged(System.Object,FarPoint.Win.Spread.Model.SheetAxisModelEventArgs)">
<summary>
Changes the sheet column axis model in synchronization with the data source.
</summary>
<param name="sender">Object that raised the event </param>
<param name="e"><see cref="T:FarPoint.Win.Spread.Model.SheetAxisModelEventArgs"/> object that contains event data </param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnAddColumns(System.Int32,System.Int32)">
<summary>
Occurs when columns are added.
</summary>
<param name="column">Column index</param>
<param name="count">Number of columns</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnAddRowHeaderColumns(System.Int32,System.Int32)">
<summary>
Occurs when row header columns are added.
</summary>
<param name="column">Column index</param>
<param name="count">Number of columns</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnAddRows(System.Int32,System.Int32)">
<summary>
Occurs when rows are added.
</summary>
<param name="row">Row index</param>
<param name="count">Number of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnAddColumnHeaderRows(System.Int32,System.Int32)">
<summary>
Occurs when column header rows are added.
</summary>
<param name="row">Row index</param>
<param name="count">Number of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnAddColumnFooterRows(System.Int32,System.Int32)">
<summary>
Occurs when footer rows are added
</summary>
<param name="row">Determines adding position</param>
<param name="count">Determines number or added rows</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnCopyColumns(System.Int32,System.Int32,System.Int32)">
<summary>
Occurs when the columns are copied.
</summary>
<param name="fromColumn">Start column index</param>
<param name="toColumn">End column index</param>
<param name="count">Number of columns</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnCopyRows(System.Int32,System.Int32,System.Int32)">
<summary>
Occurs when rows are copied.
</summary>
<param name="fromRow">Start row index</param>
<param name="toRow">End row index</param>
<param name="count">Number of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnMoveColumns(System.Int32,System.Int32,System.Int32)">
<summary>
Occurs when columns are moved.
</summary>
<param name="fromColumn">Start column index</param>
<param name="toColumn">End column index</param>
<param name="count">Number of columns</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnMoveRows(System.Int32,System.Int32,System.Int32)">
<summary>
Occurs when rows are moved.
</summary>
<param name="fromRow">Start row index</param>
<param name="toRow">End row index</param>
<param name="count">Number of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnRemoveColumns(System.Int32,System.Int32)">
<summary>
Occurs when columns are removed.
</summary>
<param name="column">Column index</param>
<param name="count">Number of columns</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnRemoveRowHeaderColumns(System.Int32,System.Int32)">
<summary>
Occurs when row header columns are removed.
</summary>
<param name="column">Column index</param>
<param name="count">Number of columns</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnRemoveRows(System.Int32,System.Int32)">
<summary>
Occurs when rows are removed.
</summary>
<param name="row">Row index</param>
<param name="count">Number of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnRemoveColumnHeaderRows(System.Int32,System.Int32)">
<summary>
Occurs when column header rows are removed.
</summary>
<param name="row">Row index</param>
<param name="count">Number of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnRemoveColumnFooterRows(System.Int32,System.Int32)">
<summary>
Occurs when column footer rows are removed.
</summary>
<param name="row">Row index</param>
<param name="count">Number of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnSwapColumns(System.Int32,System.Int32,System.Int32)">
<summary>
Occurs when columns are swapped.
</summary>
<param name="fromColumn">Start column index</param>
<param name="toColumn">End column index</param>
<param name="count">Number of columns</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnSwapRows(System.Int32,System.Int32,System.Int32)">
<summary>
Occurs when rows are swapped.
</summary>
<param name="fromRow">Start row index</param>
<param name="toRow">End row index</param>
<param name="count">Number of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnCopyCells(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Occurs when the cells are copied.
</summary>
<param name="fromRow">Start row index</param>
<param name="fromColumn">Start column index</param>
<param name="toRow">End row index</param>
<param name="toColumn">End column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnMoveCells(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Occurs when the cells are moved.
</summary>
<param name="fromRow">Start row index</param>
<param name="fromColumn">Start column index</param>
<param name="toRow">End row index</param>
<param name="toColumn">End column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnSwapCells(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Occurs when the cells are swapped.
</summary>
<param name="fromRow">Start row index</param>
<param name="fromColumn">Start column index</param>
<param name="toRow">End row index</param>
<param name="toColumn">End column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnCellChanged(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Occurs when the cell is changed.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnSpanModelChanged(System.Object,FarPoint.Win.Spread.Model.SheetSpanModelEventArgs)">
<summary>
Changes the span model in sync with the data source for this sheet.
</summary>
<param name="sender">Object that raised the event</param>
<param name="e"><see cref="T:FarPoint.Win.Spread.Model.SheetSpanModelEventArgs"/> object that contains event data</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnStyleModelChanged(System.Object,FarPoint.Win.Spread.Model.SheetStyleModelEventArgs)">
<summary>
Occurs when the style model is changed.
</summary>
<param name="sender">Source of the event</param>
<param name="e">SheetStyleModelEventArgs object containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetPreferredColumnWidth(System.Int32)">
<summary>
Gets the width of the widest cell (based on text contents) in the specified column on this sheet.
</summary>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetPreferredColumnWidth(System.Int32,System.Boolean)">
<summary>
Gets the width of the widest cell (based on text contents) in the specified column on this sheet.
</summary>
<param name="column">Column index</param>
<param name="ignoreHeaders">Whether to ignore column header cells</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetPreferredColumnWidth(System.Int32,System.Boolean,System.Boolean)">
<summary>
Gets the width of the widest cell (based on text contents) in the specified column on this sheet.
</summary>
<param name="column">Column index</param>
<param name="ignoreHeaders">Whether to ignore column header cells</param>
<param name="ignoreSpans">Whether to ignore spans</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetPreferredColumnWidth(System.Int32,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Gets the width of the widest cell (based on text contents) in the specified column on this sheet.
</summary>
<param name="column">Column index</param>
<param name="ignoreHeaders">Whether to ignore column header cells</param>
<param name="ignoreSpans">Whether to ignore spans</param>
<param name="excludeWordWrap">Whether to exclude cells with wrapped contents</param>
<remarks>
A cell has wrapped contents (text that wraps to multiple lines) when the renderer
in the composite style for the cell implements IWordWrapSupport interface and
its WordWrap property returns true.
</remarks>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetPreferredPrintColumnWidth(System.Drawing.Graphics,System.Int32)">
<summary>
Gets the width of the widest cell (based on text contents) in the specified column
on this sheet for printing to the specified graphics device.
</summary>
<param name="g">Graphics device interface</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetPreferredRowHeight(System.Int32)">
<summary>
Gets the height in pixels of the tallest cell (based on text contents) in the specified row on this sheet.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetPreferredRowHeight(System.Int32,System.Boolean)">
<summary>
Gets the height in pixels of the tallest cell (based on text contents) in the specified row on this sheet.
</summary>
<param name="row">Row index</param>
<param name="ignoreHeaders">Whether to ignore the row header cells</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetPreferredRowHeight(System.Int32,System.Boolean,System.Boolean)">
<summary>
Gets the height in pixels of the tallest cell (based on text contents) in the specified row on this sheet.
</summary>
<param name="row">Row index</param>
<param name="ignoreHeaders">Whether to ignore the row header cells</param>
<param name="ignoreSpans">Whether to ignore spans</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetPreferredPrintRowHeight(System.Drawing.Graphics,System.Int32)">
<summary>
Gets the height in pixels of the tallest cell (based on text contents) in the specified row on this sheet.
</summary>
<param name="g">Graphics device</param>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetPreferredCellSize(System.Int32,System.Int32)">
<summary>
Gets the desired size of the given cell on this sheet.
</summary>
<param name="row">Row index</param>
<param name="col">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetColumnHeaderRowHeight(System.Int32)">
<summary>
Gets the height in pixels for the specified row.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetColumnFooterRowHeight(System.Int32)">
<summary>
Gets the height in pixels for the specified row.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetColumnHeaderRowHeight(System.Int32,System.Int32)">
<summary>
Sets the height in pixels for the specified row on this sheet.
</summary>
<param name="row">Row index</param>
<param name="value">Height in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetColumnFooterRowHeight(System.Int32,System.Int32)">
<summary>
Sets the height in pixels for the specified row on this sheet.
</summary>
<param name="row">Row index</param>
<param name="value">Height in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetRowHeight(System.Int32)">
<summary>
Gets the height in pixels for the specified row on this sheet.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetRowHeightWithPreviewRow(System.Int32)">
<summary>
Gets the height in pixels for the specified row on this sheet.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetPreferredPrintPreviewRowHeight(System.Int32)">
<summary>
Gets the preferred print height in pixels for the specific preview row.
</summary>
<param name="row">Row index.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetRowHeight(System.Int32,System.Int32)">
<summary>
Sets the height in pixels for the specified row on this sheet.
</summary>
<param name="row">Row index</param>
<param name="value">Height in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetMultipleRowHeights(System.Int32,System.Int32,System.Int32)">
<summary>
Sets the height in pixels for the specified rows on this sheet.
</summary>
<param name="row">Row index of first row</param>
<param name="count">Number of rows for which to set the height</param>
<param name="value">Height in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetOutlineBorder(FarPoint.Win.Spread.Model.CellRange,FarPoint.Win.IBorder)">
<summary>
Sets borders to the outline of a range of cells.
</summary>
<param name="cr">Cell range around which to put outline border</param>
<param name="border">Border to place around the outside of the range of cells</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetInsideBorder(FarPoint.Win.Spread.Model.CellRange,FarPoint.Win.IBorder)">
<summary>
Sets borders to the inside of a range of cells.
</summary>
<param name="cr">Cell range to which to apply borders</param>
<param name="border">Border to put around cells in the range</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetRowLabel(System.Int32,System.Int32)">
<summary>
Gets the text in the specified row header cell on this sheet.
</summary>
<param name="row">Row index</param>
<param name="column">Row header column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetRowLabel(System.Int32,System.Int32,System.String)">
<summary>
Sets the value for a specified cell in the row header on this sheet.
</summary>
<param name="row">Row index</param>
<param name="column">Row header column index</param>
<param name="value">Text for the label</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetColumnHeaderRowSizeable(System.Int32)">
<summary>
Gets whether the user can resize the specified row in the column header.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetColumnFooterRowSizeable(System.Int32)">
<summary>
Gets whether the user can resize the specified row in the column footer.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetColumnHeaderRowSizeable(System.Int32,System.Boolean)">
<summary>
Sets whether users can resize individual rows in the column header.
</summary>
<param name="row">Row index</param>
<param name="sizeable">Whether to allow users to resize the row</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetColumnFooterRowSizeable(System.Int32,System.Boolean)">
<summary>
Sets whether users can resize individual rows in the column footer.
</summary>
<param name="row">Row index</param>
<param name="sizeable">Whether to allow users to resize the row</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetRowSizeable(System.Int32)">
<summary>
Gets whether the user can resize the specified row on this sheet.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetRowSizeable(System.Int32,System.Boolean)">
<summary>
Sets whether users can resize individual rows on this sheet.
</summary>
<param name="row">Row index</param>
<param name="sizeable">Whether to allow users to resize the row</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetRowVisible(System.Int32)">
<summary>
Gets whether a row on this sheet is displayed.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetRowVisible(System.Int32,System.Boolean)">
<summary>
Sets whether a row on this sheet is displayed.
</summary>
<param name="row">Row index</param>
<param name="visible">Whether to display the row</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetRowMerge(System.Int32)">
<summary>
Gets whether or how cells in a row on this sheet that have the same content
are joined into a single cell across multiple columns.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetRowMerge(System.Int32,FarPoint.Win.Spread.Model.MergePolicy)">
<summary>
Sets whether or how cells in a row on this sheet that have the same content
are joined into a single cell across multiple columns.
</summary>
<param name="row">Row index (use -1 for all rows)</param>
<param name="value">MergePolicy enumeration setting </param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetRowHeaderColumnWidth(System.Int32)">
<summary>
Gets the width in pixels for the specified column.
</summary>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetRowHeaderColumnWidth(System.Int32,System.Int32)">
<summary>
Sets the width in pixels for the specified column.
</summary>
<param name="column">Column index</param>
<param name="value">Width in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetColumnWidth(System.Int32)">
<summary>
Gets the width in pixels for the specified column on this sheet.
</summary>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetColumnWidth(System.Int32,System.Int32)">
<summary>
Sets the width in pixels for the specified column on this sheet.
</summary>
<param name="column">Column index</param>
<param name="value">Width in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetMultipleColumnWidths(System.Int32,System.Int32,System.Int32)">
<summary>
Sets the width in pixels for the specified columns on this sheet.
</summary>
<param name="column">Column index of first column</param>
<param name="count">Number of columns for which to set the width</param>
<param name="value">Width in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetNoteStyle(System.Int32,System.Int32)">
<summary>
Gets the composited style of notes of a specified cell on this sheet.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.UpdateNotes(System.Int32,System.Int32)">
<summary>
Updates cell note appearances based on style being set or on changes to note text.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.UpdateNotes(System.Int32,System.Int32,System.Boolean)">
<summary>
Obsoleted. Use UpdateNotes(int row, int column) instead.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetNote(System.Int32,System.Int32)">
<summary>
Gets the note of a specified cell on this sheet.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between 0 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between 0 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetCellNoteInternal(System.Int32,System.Int32)">
<summary>
Internal use only. Gets the cell note object of a specified cell on this sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetNote(System.Int32,System.Int32,System.String)">
<summary>
Sets a note in a specified cell on this sheet.
</summary>
<param name="row">Row index of specified cell</param>
<param name="column">Column index of specified cell</param>
<param name="value">Note text to associate with the cell</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between 0 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between 0 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetValue(System.Int32,System.Int32)">
<summary>
Gets unformatted data from the specified cell on this sheet.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between 0 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between 0 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetValue(System.Int32,System.Int32,System.Object)">
<summary>
Sets the value for the specified cell on this sheet.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="value">Value to set for the specified cell</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between 0 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between 0 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetValue(System.Int32,System.Int32,System.Object,System.Boolean)">
<summary>
Sets the value for the specified cell on this sheet.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="value">Value to set for the specified cell</param>
<param name="validate">Perform value validation</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between 0 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between 0 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetText(System.Int32,System.Int32)">
<summary>
Gets the formatted text in the cell on this sheet
using the <see cref="T:FarPoint.Win.Spread.CellType.IFormatter"/> object for the cell.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between 0 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between 0 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetText(System.Int32,System.Int32,System.String)">
<summary>
Sets the formatted text in the cell on this sheet
using the <see cref="T:FarPoint.Win.Spread.CellType.IFormatter"/> object for the cell.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="value">Text for the specified cell</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between 0 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between 0 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetFormula(System.Int32,System.Int32)">
<summary>
Gets the formula of the specified cell on this sheet.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between 0 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between 0 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetFormula(System.Int32,System.Int32,System.String)">
<summary>
Sets a formula in a specified cell on this sheet.
</summary>
<param name="row">Row index of the specified cell</param>
<param name="column">Column index of the specified cell</param>
<param name="value">Formula to place in the specified cell</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between 0 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between 0 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetExpression(System.Int32,System.Int32)">
<summary>
Gets the formula, as an expression value, for the cell of the specified row and column of this sheet.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between 0 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between 0 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetExpression(System.Int32,System.Int32,FarPoint.CalcEngine.Expression)">
<summary>
Sets the formula, as an expression, in the cell at the specified row and column of this sheet.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<param name="value">Formula to place in the cell</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between 0 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between 0 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddCustomName(System.String,System.String,System.Int32,System.Int32)">
<summary>
Adds a custom name to the model using the specified string value.
</summary>
<param name="name">Custom name to add</param>
<param name="value">String value for the custom name</param>
<param name="baseRow">Base row index for calculating relative row references in the value</param>
<param name="baseColumn">Base column index for calculating relative column references in the value</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddCustomName(System.String,FarPoint.CalcEngine.Expression)">
<summary>
Adds a custom name to the model using the specified expression value.
</summary>
<param name="name">Custom name to add</param>
<param name="value">Expression value for the custom name</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.RemoveCustomName(System.String)">
<summary>
Removes a custom name on this sheet from the model.
</summary>
<param name="name">Custom name to remove</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClearCustomNames">
<summary>
Removes all custom names on this sheet from the model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetCustomName(System.String,System.Int32,System.Int32)">
<summary>
Gets the string value for a custom name on this sheet from the model.
</summary>
<param name="name">Custom name to get</param>
<param name="baseRow">Base row index for calculating relative row references in the value</param>
<param name="baseColumn">Base column index for calculating relative column references in the value</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetCustomName(System.String)">
<summary>
Gets the expression value for a custom name on this sheet from the model.
</summary>
<param name="name">Custom name to get</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetCustomNameEnumerator">
<summary>
Gets an IEnumerator on this sheet that enumerates through the custom names defined in the model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddCustomFunction(FarPoint.CalcEngine.FunctionInfo)">
<summary>
Adds a user-defined custom function (FunctionInfo object) to the model for use in formulas.
</summary>
<param name="functionInfo">FunctionInfo object of the custom function to add</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.RemoveCustomFunction(System.String)">
<summary>
Removes a user-defined custom function (FunctionInfo object) on this sheet from the model.
</summary>
<param name="name">Name of custom function to remove</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClearCustomFunctions">
<summary>
Removes all user-defined custom functions (FunctionInfo object) on this sheet from the model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetCustomFunction(System.String)">
<summary>
Gets a user-defined custom function (FunctionInfo object) from the model for this sheet.
</summary>
<param name="name">Name of custom function to get</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetCustomFunctionEnumerator">
<summary>
Gets an IEnumerator for this sheet that enumerates through the names of
the user-defined custom functions (FunctionInfo objects) in the model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetColumnLabel(System.Int32,System.Int32)">
<summary>
Gets the text in the specified column header cell on this sheet.
</summary>
<param name="row">Column header row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetColumnFooterText(System.Int32,System.Int32)">
<summary>
Gets the text in the specified column footer cell on this sheet.
</summary>
<param name="row">Column header row footer index</param>
<param name="column">Column footer index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetColumnLabel(System.Int32,System.Int32,System.String)">
<summary>
Sets the value for a specified cell in a column header on this sheet.
</summary>
<param name="row">Column header row index</param>
<param name="column">Column index</param>
<param name="value">Text for the label</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetColumnSortIndicator(System.Int32)">
<summary>
Gets the sort indicator for the specified column on this sheet.
</summary>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetColumnSortIndicator(System.Int32,FarPoint.Win.Spread.Model.SortIndicator)">
<summary>
Sets the sort indicator for the specified column on this sheet.
</summary>
<param name="column">Index of column to set</param>
<param name="order">SortIndicator enumeration setting</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetRowHeaderColumnSizeable(System.Int32)">
<summary>
Gets whether the user can resize a specified column.
</summary>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetRowHeaderColumnSizeable(System.Int32,System.Boolean)">
<summary>
Sets whether users can resize individual columns.
</summary>
<param name="column">Column index</param>
<param name="sizeable">Whether to allow users to resize the column</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetColumnSizeable(System.Int32)">
<summary>
Gets whether the user can resize a specified column on this sheet.
</summary>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetColumnSizeable(System.Int32,System.Boolean)">
<summary>
Sets whether users can resize individual columns on this sheet.
</summary>
<param name="column">Column index</param>
<param name="sizeable">Whether to allow users to resize the column</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetColumnVisible(System.Int32)">
<summary>
Gets whether a column on this sheet is displayed.
</summary>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetColumnVisible(System.Int32,System.Boolean)">
<summary>
Sets whether a column on this sheet is displayed.
</summary>
<param name="column">Column index</param>
<param name="visible">Whether to display the column</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetColumnMerge(System.Int32)">
<summary>
Gets whether or how cells in a column on this sheet that have the same content
are joined into a single cell across multiple rows.
</summary>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetColumnMerge(System.Int32,FarPoint.Win.Spread.Model.MergePolicy)">
<summary>
Sets whether or how cells in a column on this sheet that have the same content
are joined into a single cell across multiple rows.
</summary>
<param name="column">Column index (use -1 for all columns)</param>
<param name="value">MergePolicy enumeration setting</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnSheetRangeGroupModelChanged(System.Object,FarPoint.Win.Spread.RangeGroupModelEventArgs)">
<summary>
Changes the sheet row axis model in synchronization with the data source.
</summary>
<param name="sender">Object that raised the event </param>
<param name="e"><see cref="T:FarPoint.Win.Spread.Model.SheetAxisModelEventArgs"/> object that contains event data </param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddRangeGroup(System.Int32,System.Int32,System.Boolean)">
<summary>
Groups all the rows or columns from the specified start index by the specified amount to an outline (range group).
</summary>
<param name="startIndex">Start index</param>
<param name="count">Number of rows or columns to group into an outline (range group)</param>
<param name="isRowGroup">Whether the outline is a group of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClearRangeGroup(System.Boolean)">
<summary>
Removes all the outlines (range grouping) from all rows or columns.
</summary>
<param name="isRowGroup">Whether the outline is a group of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.RemoveRangeGroup(System.Int32,System.Int32,System.Boolean)">
<summary>
Removes rows or columns from an outline (range group) from a specified start index by a specified amount,
and returns them to individual rows or columns.
</summary>
<param name="startIndex">Starting index</param>
<param name="count">Number of the rows or columns to remove from being grouped together in the outline (range group)</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ExpandRangeGroup(FarPoint.Win.Spread.RangeGroupInfo,System.Boolean,System.Boolean)">
<summary>
Expands or collapses a specified outline (range group) of rows or columns.
</summary>
<param name="group">Outline (range group) to expand or collapse</param>
<param name="isRowGroup">Whether the outline is a group of rows</param>
<param name="expand">Whether the action is to expand the outline</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ExpandRangeGroup(System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Expands or collapses an outline (range group) of rows or columns, specified by level and index.
</summary>
<param name="level">Level of the outline (range group) to expand or collapse</param>
<param name="endIndex">End index of the outline (range group) to expand or collapse</param>
<param name="isRowGroup">Whether the outline is a group of rows</param>
<param name="expand">Whether the action is to expand</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetRangeGroupInfo(System.Int32,System.Boolean)">
<summary>
Gets range groups of rows or columns by level.
</summary>
<param name="level">Level for the associated range group</param>
<param name="isRowGroup">Whether the outline is a group of rows</param>
<returns>The collection of range groups with the specified level.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetRangeGroupLevels(System.Boolean)">
<summary>
Gets the number of levels of rows or columns in the outline (range group).
</summary>
<param name="isRowGroup">Whether the outline is a group of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddRows(System.Int32,System.Int32)">
<summary>
Adds a row or rows to the data model for a sheet.
</summary>
<param name="row">Row where the new rows are to be added</param>
<param name="count">Number of rows to be added</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.RemoveRows(System.Int32,System.Int32)">
<summary>
Removes the row or rows on this sheet at the specified index.
</summary>
<param name="row">Index of first row to be removed</param>
<param name="count">Number of rows to be removed</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddColumns(System.Int32,System.Int32)">
<summary>
Adds the column or columns to the data model at the specified index.
</summary>
<param name="column">Position at which to add the new column(s)</param>
<param name="count">Number of columns to add</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.RemoveColumns(System.Int32,System.Int32)">
<summary>
Removes the column or columns on this sheet at the specified index.
</summary>
<param name="column">Index of first column to remove</param>
<param name="count">Number of columns to remove</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetSpanCell(System.Int32,System.Int32)">
<summary>
Gets the range of cells that are spanned at a specified cell on this sheet.
</summary>
<param name="row">Row index of the specified cell</param>
<param name="column">Column index of the specified cell</param>
<returns>CellRange object containing the span information, or null if no span exists</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddSpanCell(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Adds a span of cells on this sheet.
</summary>
<param name="row">Row index of cell at which to start span</param>
<param name="column">Column index of cell at which to start span</param>
<param name="rowCount">Number of rows to span</param>
<param name="columnCount">Number of columns to span</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetColumnHeaderSpanCell(System.Int32,System.Int32)">
<summary>
Gets the range of cells that are spanned at a specified cell on columnHeader of this sheet.
</summary>
<param name="row">Row index of the specified cell</param>
<param name="column">Column index of the specified cell</param>
<returns>CellRange object containing the span information, or null if no span exists</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddColumnHeaderSpanCell(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Adds a span of cells to a column header for a sheet.
</summary>
<param name="row">Row index of cell to start span</param>
<param name="column">Column index of cell to start span</param>
<param name="rowCount">Number of rows to span</param>
<param name="columnCount">Number of columns to span</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddColumnFooterSpanCell(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Adds a span of cells to a column Footer for a sheet.
</summary>
<param name="row">Row index of cell to start span</param>
<param name="column">Column index of cell to start span</param>
<param name="rowCount">Number of rows to span</param>
<param name="columnCount">Number of columns to span</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetRowHeaderSpanCell(System.Int32,System.Int32)">
<summary>
Gets the range of cells that are spanned at a specified cell on rowHeader of this sheet.
</summary>
<param name="row">Row index of the specified cell</param>
<param name="column">Column index of the specified cell</param>
<returns>CellRange object containing the span information, or null if no span exists</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddRowHeaderSpanCell(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Adds a span of cells to a row header for a sheet.
</summary>
<param name="row">Row index of cell to start span</param>
<param name="column">Column index of cell to start span</param>
<param name="rowCount">Number of rows to span</param>
<param name="columnCount">Number of columns to span</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClearSpanCells">
<summary>
Removes all spans from this sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClearColumnHeaderSpanCells">
<summary>
Removes all spans from the column headers.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClearColumnFooterSpanCells">
<summary>
Removes all spans from the column footers.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClearRowHeaderSpanCells">
<summary>
Removes all spans from the row headers.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.RemoveSpanCell(System.Int32,System.Int32)">
<summary>
Removes the span that contains a specified anchor cell from a range of cells on this sheet.
</summary>
<param name="row">Row index of anchor cell for span (at which spanned cells started)</param>
<param name="column">Column index of anchor cell for span (at which spanned cells started)</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.RemoveColumnHeaderSpanCell(System.Int32,System.Int32)">
<summary>
Removes the span that contains a specified anchor cell from a range of cells in the column headers.
</summary>
<param name="row">Row index of anchor cell for span (at which spanned cells started)</param>
<param name="column">Column index of anchor cell for span (at which spanned cells started)</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.RemoveColumnFooterSpanCell(System.Int32,System.Int32)">
<summary>
Removes the span that contains a specified anchor cell from a range of cells in the column footers.
</summary>
<param name="row">Row index of anchor cell for span (at which spanned cells started)</param>
<param name="column">Column index of anchor cell for span (at which spanned cells started)</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.RemoveRowHeaderSpanCell(System.Int32,System.Int32)">
<summary>
Removes the span that contains a specified anchor cell from a range of cells in the row headers.
</summary>
<param name="row">Row index of anchor cell for span (at which spanned cells started)</param>
<param name="column">Column index of anchor cell for span (at which spanned cells started)</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnNoteCreated(System.Object,System.EventArgs)">
<summary>
Occurs when a note of viewport area is created in the sheet's notes container.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnNoteMoved(System.Object,System.EventArgs)">
<summary>
Occurs when a note of viewport area is moved in the sheet's notes container.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnNoteSized(System.Object,System.EventArgs)">
<summary>
Occurs when a note of viewport area is sized in the sheet's notes container.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnStickyNoteCreated(System.Object,System.EventArgs)">
<summary>
Obsoleted. Use OnNoteCreated(object sender, EventArgs e) instead.
Occurs when a note is created in the sheet's notes container.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FireStickyNoteCreated(FarPoint.Win.Spread.DrawingSpace.Internal.CellNote)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnStickyNoteMoved(System.Object,System.EventArgs)">
<summary>
Obsoleted. Use OnNoteMoved(object sender, EventArgs e) instead.
Occurs when a note is moved in the sheet's notes container.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FireStickyNoteMoved(FarPoint.Win.Spread.DrawingSpace.Internal.CellNote)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnStickyNoteSized(System.Object,System.EventArgs)">
<summary>
Obsoleted. Use OnNoteSized(object sender, EventArgs e) instead.
Occurs when a note is sized in the sheet's notes container.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FireStickyNoteSized(FarPoint.Win.Spread.DrawingSpace.Internal.CellNote)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FirePropertyChanged(System.String)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FireChanged">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FireRowChanged(System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FireColumnChanged(System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetColumnVisibleCount">
<summary>
Gets the number of the visible columns.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetRowVisibleCount">
<summary>
Gets the number of the visible rows.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FireCellChanged(System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.RaiseCellChanged(System.Int32,System.Int32)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.SheetView.CellChanged"/> event
(that a change has been made to a cell on this sheet).
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.RaiseCellChanged(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.SheetView.CellChanged"/> event
(that a change has been made to a cell on this sheet).
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="rowCount">Number of rows in range of cells</param>
<param name="columnCount">Number of columns in range of cells</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.RaisePropertyChanged(System.String)">
<summary>
Raises the <see cref="E:FarPoint.Win.Spread.SheetView.PropertyChanged"/> event for this sheet.
</summary>
<param name="propertyName">Name of property to pass in <see cref="T:FarPoint.Win.Spread.SheetViewPropertyChangeEventArgs"/> object</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SortRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,FarPoint.Win.Spread.SortInfo[])">
<summary>
Sorts a range of cells on this sheet in the data model.
</summary>
<param name="row">Index of the starting row of the block of cells to sort</param>
<param name="column">Index of the starting column of the block of cells to sort</param>
<param name="rowCount">Number of rows in the block of cells</param>
<param name="columnCount">Number of columns in the block of cells</param>
<param name="byRows">Whether to sort by rows (or else by columns)</param>
<param name="sortInfo">SortInfo object with sort criteria and how to perform sort</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SortRows(System.Int32,System.Boolean,System.Boolean)">
<summary>
Sorts all the rows on this sheet by the specified column.
</summary>
<param name="keyColumn">Column index whose values are compared during sorting</param>
<param name="ascending">Whether to sort in ascending order</param>
<param name="showIndicator">Whether the sort indicator should be displayed</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SortRows(System.Int32,System.Boolean,System.Boolean,System.Collections.IComparer)">
<summary>
Sorts all the rows on this sheet by the specified column using the specified comparison.
</summary>
<param name="keyColumn">Column index whose values are compared during sorting </param>
<param name="ascending">Whether to sort in ascending order</param>
<param name="showIndicator">Whether the sort indicator should be displayed</param>
<param name="comparer">IComparer object used to compare the values</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SortRows(System.Int32,System.Boolean,System.Boolean,System.Collections.IComparer,System.Boolean,System.Boolean)">
<summary>
Sorts all the rows on this sheet by the specified column using the specified comparison.
</summary>
<param name="keyColumn">Column index whose values are compared during sorting </param>
<param name="ascending">Whether to sort in ascending order</param>
<param name="showIndicator">Whether the sort indicator should be displayed</param>
<param name="comparer">IComparer object used to compare the values</param>
<param name="sortFrozenRows">Whether frozen rows are sorted</param>
<param name="sortTrailingFrozenRows">Whether trailing frozen rows are sorted</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SortRows(System.Int32,System.Int32,FarPoint.Win.Spread.SortInfo[])">
<summary>
Sorts a range of rows on this sheet according to the specified sort information.
</summary>
<param name="row">Index of first row in range to sort</param>
<param name="rowCount">Number of rows in range to sort</param>
<param name="sortInfo">Array of SortInfo objects with the column indexes and sort order</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SortColumns(System.Int32,System.Boolean)">
<summary>
Sorts all the columns on the sheet by the specified row.
</summary>
<param name="keyRow">Index of the row to use as a key to sorting</param>
<param name="ascending">Whether to sort in ascending order</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SortColumns(System.Int32,System.Boolean,System.Collections.IComparer)">
<summary>
Sorts all the columns on the sheet by the specified row using the specified comparison.
</summary>
<param name="keyRow">Index of the row to use as a key to sorting</param>
<param name="ascending">Whether to sort in ascending order</param>
<param name="comparer">IComparer object used to compare the values</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SortColumns(System.Int32,System.Int32,FarPoint.Win.Spread.SortInfo[])">
<summary>
Sorts a specified range of columns on the sheet by the specified sort information.
</summary>
<param name="column">Index of first column to start sorting </param>
<param name="columnCount">Number of columns in range to sort</param>
<param name="sortInfo">Array of SortInfo objects with the row indexes and sort order</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeCells">
<summary>
Determines whether the cells should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeColumns">
<summary>
Determines whether the columns should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeRows">
<summary>
Determines whether the rows should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeAlternatingRows">
<summary>
Determines whether the alternating rows should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeDefaultStyle">
<summary>
Gets whether the DefaultStyle property should be serialized.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.InitPropArray">
<summary>
Property names.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.UpdatePropArray(System.String,System.Object)">
<summary>
Internal use only. Update the property array.
</summary>
<param name="propertyName">Property name</param>
<param name="propertyToUpdate">Property to update</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the sheet to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the SheetView object</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FarPoint#Win#ISerializeSettings#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the settings of the sheet to a XML.
</summary>
<param name="w">XmlTextWriter object to which to save the SheetView settings</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FarPoint#Win#ISerializeStyles#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the styles of the sheet to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the SheetView styles</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FarPoint#Win#ISerializeData#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the contents of the sheet to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the SheetView contents</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FarPoint#Win#ISerializeData#Serialize(System.Xml.XmlTextWriter,System.Boolean)">
<summary>
Saves the contents of the sheet to XML, with or without the data source and bound data.
</summary>
<param name="w">XmlTextWriter object to which to save the SheetView contents</param>
<param name="saveDataSource">Whether to save the data source and bound data</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FarPoint#Win#ISerializePresentation#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the presentation of the sheet to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the SheetView presentation</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FarPoint#Win#ISerializeDrawing#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the drawing objects of the sheet from XML.
</summary>
<param name="r">XmlNodeReader from which to load the drawing objects</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FarPoint#Win#ISerializeDrawing#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the drawing objects of the sheet to XML.
</summary>
<param name="w">XmlTextWriter object to which to save the SheetView drawing objects</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object of the sheet from XML.
</summary>
<param name="r">XmlNodeReader from which to load the object</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.DeserializeCategories(System.Xml.XmlNodeReader)">
<summary>
Loads the categories of the sheet from XML.
</summary>
<param name="r">XmlNodeReader from which to load the categories</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FarPoint#Win#ISerializeSettings#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the settings of the sheet from XML.
</summary>
<param name="r">XmlNodeReader from which to load the settings</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FarPoint#Win#ISerializeStyles#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the styles of the sheet from XML.
</summary>
<param name="r">XmlNodeReader from which to load the styles</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FarPoint#Win#ISerializeData#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the contents of the sheet from XML.
</summary>
<param name="r">XmlNodeReader from which to load the contents</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FarPoint#Win#ISerializePresentation#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the presentation of the sheet from XML.
</summary>
<param name="r">XmlNodeReader from which to load the presentation</param>
<returns>True if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.LoadFormulas(System.Boolean)">
Loads formulas that are deserialized during deserialization. But, not parsing yet.
This method is called after all the sheets has been created and deserialized.
<summary>
Loads formulas that are deserialized but not parsed yet,
to be used after all sheets have been created and deserialized.
</summary>
<param name="recalculate">Whether to recalculate all the formulas in cells on the sheet that have changed</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SerializeProp(System.Xml.XmlTextWriter,System.String,System.Object)">
<summary>
Serializes the individual properties.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SerializeProp(System.Object)">
<summary>
Serializes the individual properties.
</summary>
<param name="prop">object</param>
<returns>String</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.DeserializeProp(System.Object@,System.String)">
<summary>
Deserializes the individual propertiess
</summary>
<param name="prop">ref object</param>
<param name="s">String</param>
<returns>object</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFile(System.String,FarPoint.Win.Spread.TextFileFlags)">
<summary>
Saves the sheet as delimited text to a stream with specific delimiters.
</summary>
<param name="fileName">Path and name of file to which to save the text of the sheet</param>
<param name="textFileFlags">Specifies how to process the data when saving to a text file</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFile(System.IO.Stream,FarPoint.Win.Spread.TextFileFlags)">
<summary>
Saves the sheet as delimited text to a stream with specific delimiters.
</summary>
<param name="stream">Stream to which to save the text of the sheet</param>
<param name="textFileFlags">Specifies how to process the data when saving to a text file</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFile(System.String,FarPoint.Win.Spread.TextFileFlags,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String)">
<summary>
Saves the sheet as delimited text to a stream with specific delimiters.
</summary>
<param name="fileName">Path and name of file to which to save the text of the sheet</param>
<param name="textFileFlags">Specifies how to process the data when saving to a text file</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFile(System.IO.Stream,FarPoint.Win.Spread.TextFileFlags,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String)">
<summary>
Saves the sheet as delimited text to a stream with specific delimiters.
</summary>
<param name="stream">Stream to which to save the text of the sheet</param>
<param name="textFileFlags">Specifies how to process the data when saving to a text file</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFile(System.String,System.Boolean)">
<summary>
Saves the sheet to a text file.
</summary>
<param name="fileName">Path and name of file to which to save the text of the sheet</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFile(System.IO.Stream,System.Boolean)">
<summary>
Saves the sheet as text to a stream.
</summary>
<param name="stream">Stream to which to save the text of the sheet</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFile(System.String,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String)">
<summary>
Saves the sheet to a text file with the specified name, formatting settings, and delimiters.
</summary>
<param name="fileName">Path and name of file to which to save the text of the sheet</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFile(System.String,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.Boolean)">
<summary>
Saves the sheet to a text file with the specified name, formatting settings, and delimiters.
</summary>
<param name="fileName">Path and name of file to which to save the text of the sheet</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="filterRows">Whether to filter the rows with RowFilter</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFile(System.IO.Stream,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String)">
<summary>
Saves the sheet as delimited text to a stream with specific delimiters.
</summary>
<param name="stream">Stream to which to save the text of the sheet</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFile(System.IO.Stream,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.Boolean)">
<summary>
Saves the sheet as delimited text to a stream with specific delimiters.
</summary>
<param name="stream">Stream to which to save the text of the sheet</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="filterRows">Whether to filter the rows with RowFilter</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.LoadTextFile(System.String,FarPoint.Win.Spread.TextFileFlags)">
<summary>
Loads delimited text from a specified file into the sheet, with or without headers, with the specified encoding.
</summary>
<param name="fileName">Path and name of the file to load</param>
<param name="textFileFlags">Specifies how to process the data when loading from a text file</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.LoadTextFile(System.IO.Stream,FarPoint.Win.Spread.TextFileFlags)">
<summary>
Loads delimited text from a specified file into the sheet, with or without headers, with the specified encoding.
</summary>
<param name="stream">Stream to which to load the text</param>
<param name="textFileFlags">Specifies how to process the data when loading from a text file</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.LoadTextFile(System.String,FarPoint.Win.Spread.TextFileFlags,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String)">
<summary>
Loads delimited text from a specified file into the sheet, with or without headers, with the specified encoding.
</summary>
<param name="fileName">Path and name of the file to load</param>
<param name="textFileFlags">Specifies how to process the data when loading from a text file</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<exception cref="T:System.ArgumentException">
Cell delimiter cannot be contained in a row or column delimiter
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.LoadTextFile(System.String,FarPoint.Win.Spread.TextFileFlags,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.Text.Encoding)">
<summary>
Loads delimited text from a specified file into the sheet, with or without headers, with the specified encoding.
</summary>
<param name="fileName">Path and name of the file to load</param>
<param name="textFileFlags">Specifies how to process the data when loading from a text file</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding</param>
<exception cref="T:System.ArgumentException">
Cell delimiter cannot be contained in a row or column delimiter
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.LoadTextFile(System.IO.Stream,FarPoint.Win.Spread.TextFileFlags,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String)">
<summary>
Loads delimited text from a specified file into the sheet, with or without headers, with the specified encoding.
</summary>
<param name="stream">Stream to which to save the text of the sheet</param>
<param name="textFileFlags">Specifies how to process the data when loading from a text file</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<exception cref="T:System.ArgumentException">
Cell delimiter cannot be contained in a row or column delimiter
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.LoadTextFile(System.IO.Stream,FarPoint.Win.Spread.TextFileFlags,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.Text.Encoding)">
<summary>
Loads delimited text from a specified file into the sheet, with or without headers, with the specified encoding.
</summary>
<param name="stream">Stream to which to load the text of the sheet</param>
<param name="textFileFlags">Specifies how to process the data when loading from a text file</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding</param>
<exception cref="T:System.ArgumentException">
Cell delimiter cannot be contained in a row or column delimiter
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFileRange(System.Int32,System.Int32,System.Int32,System.Int32,System.String,FarPoint.Win.Spread.TextFileFlags,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String)">
<summary>
Saves the range of cells in a sheet to a text file
with the specified name, formatting settings, and delimiters.
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="fileName">Path and name of file to which to save the text of the range</param>
<param name="textFileFlags">Specifies how to process the data when saving to a text file</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFileRange(System.Int32,System.Int32,System.Int32,System.Int32,System.String,FarPoint.Win.Spread.TextFileFlags,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.Text.Encoding)">
<summary>
Saves the range of cells in a sheet to a text file
with the specified name, formatting settings, and delimiters.
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="fileName">Path and name of file to which to save the text of the range</param>
<param name="textFileFlags">Specifies how to process the data when saving to a text file</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFileRange(System.Int32,System.Int32,System.Int32,System.Int32,System.IO.Stream,FarPoint.Win.Spread.TextFileFlags,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String)">
<summary>
Saves the range of cells in a sheet to a text file
with the specified name, formatting settings, and delimiters.
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="stream">Stream to which to save the text of the sheet</param>
<param name="textFileFlags">Specifies how to process the data when saving to a text file</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFileRange(System.Int32,System.Int32,System.Int32,System.Int32,System.IO.Stream,FarPoint.Win.Spread.TextFileFlags,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.Text.Encoding)">
<summary>
Saves the range of cells in a sheet to a text file
with the specified name, formatting settings, and delimiters.
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="stream">Stream to which to save the text of the sheet</param>
<param name="textFileFlags">Specifies how to process the data when saving to a text file</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFileRange(System.Int32,System.Int32,System.Int32,System.Int32,System.String,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String)">
<summary>
Saves the range of cells in a sheet to a text file
with the specified name, formatting settings, and delimiters.
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="fileName">Path and name of file to which to save the text of the range</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<exception cref="T:System.ArgumentException">
Cell delimiter cannot be contained in a row or column delimiter
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFileRange(System.Int32,System.Int32,System.Int32,System.Int32,System.IO.Stream,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String)">
<summary>
Saves the range of cells in the sheet as delimited text
to a stream with specified delimiters.
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="stream">Stream to which to save the text of the range</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<exception cref="T:System.ArgumentException">
Cell delimiter cannot be contained in a row or column delimiter
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFileRange(System.Int32,System.Int32,System.Int32,System.Int32,System.String,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.Text.Encoding)">
<summary>
Saves the range of cells in a sheet to a text file
with the specified name, formatting settings, and delimiters.
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="fileName">Path and name of file to which to save the text of the range</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding</param>
<exception cref="T:System.ArgumentException">
Cell delimiter cannot be contained in a row or column delimiter
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFileRange(System.Int32,System.Int32,System.Int32,System.Int32,System.String,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.Text.Encoding,System.Boolean)">
<summary>
Saves the range of cells in a sheet to a text file
with the specified name, formatting settings, and delimiters.
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="fileName">Path and name of file to which to save the text of the range</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding</param>
<param name="saveFormulas">Whether to save formulas</param>
<exception cref="T:System.ArgumentException">
Cell delimiter cannot be contained in a row or column delimiter
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFileRange(System.Int32,System.Int32,System.Int32,System.Int32,System.String,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.Text.Encoding,System.Boolean,System.Boolean)">
<summary>
Saves the range of cells in a sheet to a text file
with the specified name, formatting settings, and delimiters.
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="fileName">Path and name of file to which to save the text of the range</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding</param>
<param name="saveFormulas">Whether to save formulas</param>
<param name="filterRows">Whether to filter the rows with RowFilter</param>
<exception cref="T:System.ArgumentException">
Cell delimiter cannot be contained in a row or column delimiter
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFileRange(System.Int32,System.Int32,System.Int32,System.Int32,System.IO.Stream,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.Text.Encoding,System.Boolean,System.Boolean)">
<summary>
Saves the range of cells in a sheet to a text file
with the specified name, formatting settings, and delimiters.
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="stream">Stream to which to save the text of the range</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding</param>
<param name="saveFormulas">Whether to save formulas</param>
<param name="filterRows">Whether to filter the rows with RowFilter</param>
<exception cref="T:System.ArgumentException">
Cell delimiter cannot be contained in a row or column delimiter
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFileRange(System.Int32,System.Int32,System.Int32,System.Int32,System.IO.Stream,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.Text.Encoding)">
<summary>
Saves the range of cells in the sheet as delimited text
to a stream with specified delimiters.
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="stream">Stream to which to save the text of the range</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding</param>
<exception cref="T:System.ArgumentException">
Cell delimiter cannot be contained in a row or column delimiter
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveTextFileRange(System.Int32,System.Int32,System.Int32,System.Int32,System.IO.Stream,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.Text.Encoding,System.Boolean)">
<summary>
Saves the range of cells in the sheet as delimited text
to a stream with specified delimiters.
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="stream">Stream to which to save the text of the range</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding</param>
<param name="saveFormulas">Whether to save formulas</param>
<exception cref="T:System.ArgumentException">
Cell delimiter cannot be contained in a row or column delimiter
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.LoadTextFile(System.String,System.Boolean)">
<summary>
Loads text from a specified file into the sheet.
</summary>
<param name="fileName">Path and name of the file to load</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.LoadTextFile(System.IO.Stream,System.Boolean)">
<summary>
Loads text from a specified stream into the sheet.
</summary>
<param name="stream">Stream to which to save</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.LoadTextFile(System.String,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String)">
<summary>
Loads delimited text from a specified file into the sheet with or without headers.
</summary>
<param name="fileName">Path and name of the file to load</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<exception cref="T:System.ArgumentException">
Cell delimiter cannot be contained in a row or column delimiter
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.LoadTextFile(System.IO.Stream,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String)">
<summary>
Loads delimited text from a specified stream into the sheet with or without headers.
</summary>
<param name="stream">Stream to which to save</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.LoadTextFile(System.String,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.Text.Encoding)">
<summary>
Loads delimited text from a specified file into the sheet, with or without headers, with the specified encoding.
</summary>
<param name="fileName">Path and name of the file to load</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding</param>
<exception cref="T:System.ArgumentException">
Cell delimiter cannot be contained in a row or column delimiter
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.LoadTextFile(System.String,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.Text.Encoding,System.Boolean)">
<summary>
Loads delimited text from a specified file into the sheet, with or without headers and formulas, with the specified encoding.
</summary>
<param name="fileName">Path and name of the file to load</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding</param>
<param name="loadFormulas">Whether to load formulas</param>
<exception cref="T:System.ArgumentException">
Cell delimiter cannot be contained in a row or column delimiter
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.LoadTextFile(System.IO.Stream,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.Text.Encoding)">
<summary>
Loads delimited text from a specified stream into the sheet, with or without headers, with the specified encoding.
</summary>
<param name="stream">Stream to which to save</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.LoadTextFile(System.IO.Stream,System.Boolean,FarPoint.Win.Spread.Model.IncludeHeaders,System.String,System.String,System.String,System.Text.Encoding,System.Boolean)">
<summary>
Loads delimited text from a specified stream into the sheet, with or without headers and formulas, with the specified encoding.
</summary>
<param name="stream">Stream to which to save</param>
<param name="unformatted">Whether to bypass the IFormatter in the StyleInfo for the cell so data is unformatted</param>
<param name="includeHeaders">Whether to export headers as data</param>
<param name="rowDelimiter">Row delimiter string</param>
<param name="columnDelimiter">Column delimiter string</param>
<param name="cellDelimiter">Cell delimiter string</param>
<param name="encoding">Encoding</param>
<param name="loadFormulas">Whether to load formulas</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveXml(System.IO.Stream,System.IO.Stream)">
<summary>
Saves the data on the sheet to the specified XML stream and
the schema to the specified schema stream.
</summary>
<param name="xmlStream">XML stream</param>
<param name="schemaStream">Schema stream</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveXml(System.String,System.String)">
<summary>
Saves the data on the sheet to the specified XML file and
the schema to the specified schema file.
</summary>
<param name="xmlFileName">Path and name of XML file</param>
<param name="schemaFileName">Path and name of schema file</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveXml(System.IO.Stream)">
<summary>
Saves the data on the sheet to the specified XML stream.
</summary>
<param name="xmlStream">XML stream</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveXml(System.String)">
<summary>
Saves the data on the sheet to the specified XML file.
</summary>
<param name="xmlFileName">Path and name of the XML file</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.Save(System.String,System.Boolean)">
<summary>
Saves the contents of the sheet view to the specified file.
</summary>
<param name="fileName">Path and name of file to which to save </param>
<param name="dataOnly">Whether to save data only</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.Save(System.IO.Stream,System.Boolean)">
<summary>
Saves the contents of the sheet view to the specified stream.
</summary>
<param name="stream">The stream to save sheet view as XML</param>
<param name="dataOnly">Whether to save data only</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.Open(System.String)">
<summary>
Opens a saved XML file into a sheet view.
</summary>
<param name="fileName">Path and name of file from which to load the data</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.Open(System.IO.Stream)">
<summary>
Opens saved XML from a stream.
</summary>
<param name="stream">Stream from which to load the data</param>
<exception cref="T:System.ArgumentNullException">
No stream specified or specified stream is null
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetClip(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets a tab-delimited string that contains the formatted data
in a specified range of cells on this sheet.
</summary>
<param name="row">Starting row index of the range of cells (or -1 for all rows)</param>
<param name="column">Starting column index of the range of cells (or -1 for all columns)</param>
<param name="rowCount">Number of rows in the range (or -1 for all rows)</param>
<param name="columnCount">Number of columns in the range (or -1 for all columns)</param>
<returns>Tab-delimited string that contains the formatted data in the range</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between -1 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between -1 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetClipValue(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets a tab-delimited string that contains the unformatted data
in a range of cells on this sheet.
</summary>
<param name="row">Starting row index of the range of cells (or -1 for all rows)</param>
<param name="column">Starting column index of the range of cells (or -1 for all columns)</param>
<param name="rowCount">Number of rows in the range (or -1 for all rows) </param>
<param name="columnCount">Number of columns in the range (or -1 for all columns) </param>
<returns>Tab-delimited string that contains the unformatted data in the range of cells</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between 0 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between 0 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetClipSpecial(System.Int32,System.Int32,System.Int32,System.Int32,System.Object,FarPoint.Win.Spread.ClipboardPasteOptions)">
<summary>
Sets the information to paste from the Clipboard for a specified range of cells
on this sheet based on the paste option.
</summary>
<param name="row">Starting row index of the range of cells (or -1 for all rows)</param>
<param name="column">Starting column index of the range of cells (or -1 for all columns)</param>
<param name="rowCount">Number of rows in the range of cells (or -1 for all rows)</param>
<param name="columnCount">Number of columns in the range of cells (or -1 for all columns)</param>
<param name="value">CellInfo object to set into the cells of the specified range</param>
<param name="pasteOption">Clipboard paste option that determines what to paste</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between 0 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between 0 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetClipSpecial(System.Int32,System.Int32,System.Int32,System.Int32,System.Object,FarPoint.Win.Spread.ClipboardPasteOptions,System.Boolean,System.Boolean)">
<summary>
Sets the information to paste from the Clipboard for a specified range of cells
on this sheet based on the paste option.
</summary>
<param name="row">Starting row index of the range of cells (or -1 for all rows)</param>
<param name="column">Starting column index of the range of cells (or -1 for all columns)</param>
<param name="rowCount">Number of rows in the range of cells (or -1 for all rows)</param>
<param name="columnCount">Number of columns in the range of cells (or -1 for all columns)</param>
<param name="value">CellInfo object to set into the cells of the specified range</param>
<param name="pasteOption">Clipboard paste option that determines what to paste</param>
<param name="rowHeader">Whether to include row headers</param>
<param name="columnHeader">Whether to include column headers</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between 0 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between 0 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetClip(System.Int32,System.Int32,System.Int32,System.Int32,System.String)">
<summary>
Sets a tab-delimited string of formatted text
in a specified range of cells on this sheet.
</summary>
<param name="row">Starting row index of the range of cells (or -1 for all rows)</param>
<param name="column">Starting column index of the range of cells (or -1 for all columns) </param>
<param name="rowCount">Number of rows in the range of cells (or -1 for all rows) </param>
<param name="columnCount">Number of columns in the range of cells (or -1 for all columns) </param>
<param name="value">Tab-delimited string (formatted data) to set into the cells of the specified range</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between 0 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between 0 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetClipValue(System.Int32,System.Int32,System.Int32,System.Int32,System.String)">
<summary>
Sets a tab-delimited string of unformatted data
in a specified range of cells on this sheet.
</summary>
<param name="row">Starting row index or -1 for all rows</param>
<param name="column">Starting column index or -1 for all columns</param>
<param name="rowCount">Number of rows or -1 for all rows</param>
<param name="columnCount">Number of columns or -1 for all columns</param>
<param name="value">Tab-delimited string (data only) to set into the specified range of cells</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row index is out of range; must be between 0 and the total number of rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between 0 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OpenExcel(System.String,System.String)">
<summary>
Opens an Excel file and loads the specified sheet (by name) from that file into this sheet.
</summary>
<param name="fileName">Path and name of the file to open</param>
<param name="excelSheetName">Name of the sheet to load from the file</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OpenExcel(System.String,System.String,System.String)">
<summary>
Opens an Excel file and loads the specified sheet (by name) from that file into this sheet.
</summary>
<param name="fileName">Path and name of the file to open</param>
<param name="excelSheetName">Name of the sheet to load from the file</param>
<param name="password">The password.</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OpenExcel(System.String,System.Int32)">
<summary>
Opens an Excel file and load the specified sheet (by number) from that file into this sheet.
</summary>
<param name="fileName">Path and name of the file to open</param>
<param name="excelSheetIndex">Index of the sheet to load from the file</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OpenExcel(System.String,System.Int32,System.String)">
<summary>
Opens an Excel file and load the specified sheet (by number) from that file into this sheet.
</summary>
<param name="fileName">Path and name of the file to open</param>
<param name="excelSheetIndex">Index of the sheet to load from the file</param>
<param name="password">The password.</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ShouldSerializeModels">
<summary>
Gets whether the document models for the sheet should be persisted.
</summary>
<returns>True if the SheetView.Models property should be saved; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetEditor(System.Int32,System.Int32)">
<summary>
Gets the editor used to edit a specified cell on this sheet.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetRenderer(System.Int32,System.Int32)">
<summary>
Gets the renderer used to render a specified cell on this sheet.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetCellType(System.Int32,System.Int32)">
<summary>
Gets the composited (that is, inherited) cell type for a specified cell on the sheet.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetStyleInfo(System.Int32,System.Int32)">
<summary>
Gets the style information for a specified cell on this sheet.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetStyleInfo(System.Int32,System.Int32,FarPoint.Win.Spread.StyleInfo)">
<summary>
Gets the style information for a specified cell on this sheet using the specified StyleInfo object.
</summary>
<param name="row">Row index of specified cell</param>
<param name="column">Column index of specified cell</param>
<param name="info"><see cref="T:FarPoint.Win.Spread.StyleInfo"/> object in which to return the style information</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetStyleInfo(System.Int32,System.Int32,FarPoint.Win.Spread.StyleInfo)">
<summary>
Sets the style for a cell, a column, a row, or an entire sheet.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="info"><see cref="T:FarPoint.Win.Spread.StyleInfo"/> object</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AutoSortColumn(System.Int32)">
<summary>
Automatically sorts the rows of a sheet according to the specified column.
</summary>
<param name="column">Index of column to set</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AutoSortColumn(System.Int32,System.Boolean)">
<summary>
Automatically sorts the rows of a sheet according to the specified column in the specified order
and shows the sort indicator (unless disabled).
</summary>
<param name="column">Index of column to set</param>
<param name="ascending">Whether sort is ascending (or else descending)</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AutoSortColumn(System.Int32,System.Boolean,System.Boolean)">
<summary>
Automatically sorts the rows of a sheet according to the specified column in the specified order
and using the sort indicator as specified.
</summary>
<param name="column">Index of column to set</param>
<param name="ascending">Whether sort is ascending (or else descending)</param>
<param name="showIndicator">Whether to display the sort indicator</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetColumnAllowAutoSort(System.Int32)">
<summary>
Gets whether the specified column on this sheet allows automatic sorting.
</summary>
<param name="column">Index of column to set</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetColumnAllowFilter(System.Int32,System.Boolean)">
<summary>
Sets whether the specified column on this sheet allows filtering.
</summary>
<param name="column">Index of the single column that is set</param>
<param name="allowFilter">Whether to allow filtering for the specified column</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetColumnAllowFilter(System.Int32,System.Int32,System.Boolean)">
<summary>
Sets whether the specified columns on this sheet allow filtering.
</summary>
<param name="column">Index of the first column that is set</param>
<param name="count">Number of columns to set</param>
<param name="allowFilter">Whether to allow filtering for the specified columns</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between -1 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetColumnAllowAutoSort(System.Int32,System.Boolean)">
<summary>
Sets whether the specified column on this sheet allows automatic sorting.
</summary>
<param name="column">Index of the single column that is set</param>
<param name="allowAutoSort">Whether to allow automatic sorting for the specified column</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetColumnAllowAutoSort(System.Int32,System.Int32,System.Boolean)">
<summary>
Sets whether the specified columns on this sheet allow automatic sorting.
</summary>
<param name="column">Index of the first column that is set</param>
<param name="count">Number of columns to set</param>
<param name="allowAutoSort">Whether to allow automatic sorting for the specified columns</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between -1 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetColumnShowSortIndicator(System.Int32)">
<summary>
Gets whether the specified column on this sheet should show a sort indicator when automatically sorted.
</summary>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetColumnShowSortIndicator(System.Int32,System.Boolean)">
<summary>
Sets whether the specified column on this sheet should show a sort indicator
when automatically sorted.
</summary>
<param name="column">Index of the single column that is set</param>
<param name="showIndicator">Whether to display the sort indicator in the column header</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetColumnShowSortIndicator(System.Int32,System.Int32,System.Boolean)">
<summary>
Sets whether the specified columns on this sheet should show a sort indicator
when automatically sorted.
</summary>
<param name="column">Index of the first column that is set</param>
<param name="count">Number of columns to set</param>
<param name="showIndicator">Whether to display the sort indicators in the column headers</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column index is out of range; must be between -1 and the total number of columns
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetSelections">
<summary>
Gets an ordered array of <see cref="T:FarPoint.Win.Spread.Model.CellRange"/> objects, from largest to smallest,
containing the selected cells on the sheet with minimal overlap between the ranges.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetArray(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets a two-dimensional array of objects containing the data for the specified range of cells on the sheet.
</summary>
<param name="row">Row index of first cell in range</param>
<param name="column">Column index of first cell in range</param>
<param name="rowCount">Number of rows in range</param>
<param name="columnCount">Number of columns in range</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetArray(System.Int32,System.Int32,System.Object[0:,0:])">
<summary>
Sets the values in the specified two-dimensional array of objects
into the specified range of cells on this sheet.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="value">Array from which to set values</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.IsAnyCellInRowSelected(System.Int32)">
<summary>
Gets whether any cells in the specified row on this sheet are selected.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.IsAnyCellInColumnSelected(System.Int32)">
<summary>
Gets whether any cells in the specified column on this sheet are selected.
</summary>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.IsSelected(System.Int32,System.Int32)">
<summary>
Gets whether the specified cell on this sheet is selected.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetColumnPageBreak(System.Int32)">
<summary>
Gets whether a forced page break is inserted before the specified column on this sheet when printing.
</summary>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetRowPageBreak(System.Int32)">
<summary>
Gets whether a forced page break is inserted before the specified row on this sheet when printing.
</summary>
<param name="row">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetColumnPageBreak(System.Int32,System.Boolean)">
<summary>
Sets whether a forced page break is inserted before the specified column on this sheet when printing.
</summary>
<param name="column">Column index</param>
<param name="value">Whether to force a page break before the specified column</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetRowPageBreak(System.Int32,System.Boolean)">
<summary>
Sets whether a forced page break is inserted before the specified row on this sheet when printing.
</summary>
<param name="row">Row index</param>
<param name="value">Whether to force a page break before the specified row</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetColumnFromTag(FarPoint.Win.Spread.Column,System.Object)">
<summary>
Gets a column on this sheet with a specific tag.
</summary>
<param name="columnToStart">Column object in Columns collection from which to start (pass null to start from beginning)</param>
<param name="tagToFind">Tag object to identify the Column you are looking for</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetRowFromTag(FarPoint.Win.Spread.Row,System.Object)">
<summary>
Gets a row on this sheet with a specific tag.
</summary>
<param name="rowToStart">Row object in Rows collection from which to start (pass null to start from beginning)</param>
<param name="tagToFind">Tag object to identify the Row you are looking for</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetCellFromTag(FarPoint.Win.Spread.Cell,System.Object)">
<summary>
Gets a cell with a specific tag on the sheet.
</summary>
<param name="cellToStart">Cell object in Cells collection from which to start (pass null to start from beginning)</param>
<param name="tagToFind">Tag object to identify the Cell you are looking for</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetTag(System.Int32,System.Int32)">
<summary>
Gets the application-defined tag value for the specified cell, column, row, or entire sheet.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetTag(System.Int32,System.Int32,System.Object)">
<summary>
Sets the application-defined tag value for the specified cell, column, row, or entire sheet.
</summary>
<param name="row">Row index (Set to -1 for all rows)</param>
<param name="column">Column index (Set to -1 for all columns)</param>
<param name="value">Tag value for the specified cell, column, row, or sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.RemoveControl(System.Windows.Forms.Control)">
<summary>
Removes the child control from the control container for the sheet.
</summary>
<param name="child">Child control</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.RemoveControl(System.String)">
<summary>
Removes the child control, by name, from the control container for the sheet.
</summary>
<param name="name">Name of child control</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClearControls">
<summary>
Removes all child controls from the control container for the sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddControl(System.Windows.Forms.Control)">
<summary>
Adds a child control to the control container for the sheet.
</summary>
<param name="control">Child control to add</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddControl(System.Windows.Forms.Control,System.Int32,System.Int32)">
<summary>
Adds a child control to the control container for the sheet at the specified row and column.
</summary>
<param name="control">Child control to add</param>
<param name="row">Row index at which to add child control</param>
<param name="column">Column index at which to add child control</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddControl(System.Windows.Forms.Control,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Adds a child control to the control container for the sheet at the specified row and column, with specified pixel offsets.
</summary>
<param name="control">Child control to add</param>
<param name="row">Row index at which to add child control</param>
<param name="column">Column index at which to add child control</param>
<param name="offsetX">Number of horizontal pixels to offset from the specified column index</param>
<param name="offsetY">Number of vertical pixels to offset from the specified row index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetControl(System.String)">
<summary>
Gets a child control.
</summary>
<param name="name">Name of child control</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetControlContainer">
<summary>
Gets the control container for a sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.RemoveShape(System.String)">
<summary>
Removes the shape from the drawing container for the sheet.
</summary>
<param name="name">Name of shape</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClearShapes">
<summary>
Removes all shapes from the drawing container for the sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.JoinShapes(System.String,System.String)">
<summary>
Joins two shapes in the drawing container for the sheet.
</summary>
<param name="destinationShapeName">Name of destination shape for merge</param>
<param name="sourceShapeName">Name of source shape for merge</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddShape(FarPoint.Win.Spread.DrawingSpace.PSShape)">
<summary>
Adds a shape to the drawing container for the sheet.
</summary>
<param name="shape">Shape to add</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddShape(FarPoint.Win.Spread.DrawingSpace.PSShape,System.Int32,System.Int32)">
<summary>
Adds a shape to the drawing container for the sheet at the specified row and column.
</summary>
<param name="shape">Shape to add</param>
<param name="row">Row index at which to add shape</param>
<param name="column">Column index at which to add shape</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetShape(System.String)">
<summary>
Gets a shape.
</summary>
<param name="name">Name of shape</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetNoteBounds(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Sets the location and dimensions for a cell note when the style sets the note to always be shown.
</summary>
<param name="row">Row index of cell with note</param>
<param name="column">Column index of cell with note</param>
<param name="x">X-coordinate of beginning of note</param>
<param name="y">Y-coordinate of beginning of note</param>
<param name="width">Number of pixels in width of note</param>
<param name="height">Number of pixels in height of note</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetNoteBounds(System.Int32,System.Int32)">
<summary>
Gets the rectangle for the cell note for the specified cell if its NoteStyle is StickyNote.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetFilteredColumn(System.Int32,System.String)">
<summary>
Internal Use: Applies the row filtering to the specified column when the specified filter item
is selected from the drop-down list.
(Internal use only.)
</summary>
<param name="column">Column index</param>
<param name="filterBy">String by which to filter the rows in this column; item in the filter drop-down list</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ResetFilteredColumn(System.Int32)">
<summary>
Internal Use: Resets the display of rows based on the "(All)" filter item
in the drop-down list. (Internal use only.)
</summary>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.InvalidateRowFilter(System.Boolean,System.Boolean)">
<summary>
Resets all the temporary filter settings and filters the rows again
based on the filter settings of each column. (Internal use only.)
</summary>
<param name="clear">Whether to clear</param>
<param name="forceInvalidate">Whether to force the invalidate</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.FilterRows(System.Int32,System.String)">
<summary>
Filters the rows based on the specified column and the specified filter item.
</summary>
<param name="viewColumn">Colum index</param>
<param name="filterBy">String by which to filter the rows in this column; filter item in the drop-down list</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AddFilterListItem(System.Int32,System.Int32,System.Collections.ArrayList,System.Collections.ArrayList,FarPoint.Win.Spread.FilterListBehavior)">
<summary>
Adds an filter item to the drop-down list of filter items.
</summary>
<param name="viewRow">Row index</param>
<param name="viewColumn">Column index</param>
<param name="list">List of filter items</param>
<param name="occurrenceCountList">List of occurences</param>
<param name="filterSort">Filter list behavior</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetDropDownFilterItems(System.Int32)">
<summary>
Gets the filter items to be displayed in the drop-down list for the specified column.
</summary>
<param name="viewColumn">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.HasBlanks(System.Int32)">
<summary>
Determines whether the intersected filtered-in list for the specified column contains blanks.
</summary>
<param name="modelColumn">Column index</param>
<returns>Whether it has blanks</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.HasNonBlanks(System.Int32)">
<summary>
Determines whether the intersected filtered-in list for the specified column contains NonBlanks.
</summary>
<param name="modelColumn">Column index</param>
<returns>Whether it has non-blanks</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetRowFilter(FarPoint.Win.Spread.IRowFilter)">
<summary>
Sets the row filter for this sheet.
</summary>
<param name="rowFilter">Row filter</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClearRowFilter">
<summary>
Removes all of the row filters from this sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClearRowFilter(System.Int32,System.Int32)">
<summary>
Removes all of the row filters from a specified column range for this sheet.
</summary>
<param name="column">Column index of starting column</param>
<param name="columnCount">Number of columns in the range</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetColumnAllowFilter(System.Int32)">
<summary>
Gets whether this column contains a column filter definition.
</summary>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetColumnAutoFilterIndex(System.Int32)">
<summary>
Gets the auto filter index for the specified column.
</summary>
<param name="column">column index</param>
<returns>auto filter index</returns>
<remarks>The auto filter index is the row index in the column header where the auto filter indicator is drawn.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetColumnAutoFilterIndex(System.Int32,System.Int32)">
<summary>
Sets the auto filter index for the specified column.
</summary>
<param name="column">column index</param>
<param name="value">auto filter index</param>
<remarks>The auto filter index is the row index in the column header where the auto filter indicator is drawn.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetColumnAutoSortIndex(System.Int32)">
<summary>
Gets the auto sort index for the specified column.
</summary>
<param name="column">column index</param>
<returns>auto sort index</returns>
<remarks>The auto sort index is the row index in the column header where the auto sort indicator is drawn.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetColumnAutoSortIndex(System.Int32,System.Int32)">
<summary>
Sets the auto sort index for the specified column.
</summary>
<param name="column">column index</param>
<param name="value">auto sort index</param>
<remarks>The auto sort index is the row index in the column header where the auto sort indicator is drawn.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AutoFilterColumn(System.Int32,System.String,System.Int32)">
<summary>
Automatically filters the rows in the specified column according to the specified filter.
</summary>
<param name="column">Column index</param>
<param name="filterString">Filter string</param>
<param name="filterItemIndex">Filter item index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.AutoFilterReset(System.Int32)">
<summary>
Resets the filters on the rows in the specified column.
</summary>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetConditionalFormatListeners(System.Int32,System.Int32,System.String)">
<summary>
Sets the listeners for the conditional format expression string.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="condition">Condition</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetConditionalFormatListeners(System.Int32,System.Int32,FarPoint.CalcEngine.Expression)">
<summary>
Sets the listeners for the conditional format expression.
</summary>
<param name="row"></param>
<param name="column"></param>
<param name="expr"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetFormulaConditionalFormat(System.Int32,System.Int32,FarPoint.Win.Spread.NamedStyle,System.String)">
<summary>
Sets conditional formatting for a specified cell on the sheet based on a specified formula.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<param name="style">Style to be applied to the cell if the formula evaluates to true</param>
<param name="formula">Formula to evaluate for the condition</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetConditionalFormat(System.Int32,System.Int32,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.ComparisonOperator)">
<summary>
Sets conditional formatting for a specified cell on the sheet based on a specified comparison.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<param name="style">Style to be applied to the cell if the condition is satisfied</param>
<param name="op">Comparison operator to apply to the cell value and the specified value</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetConditionalFormat(System.Int32,System.Int32,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.ComparisonOperator,System.String)">
<summary>
Sets conditional formatting for a specified cell on the sheet based on a specified comparison.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<param name="style">Style to be applied to the cell if the condition is satisfied</param>
<param name="op">Comparison operator to apply to the cell value and the specified value</param>
<param name="value">String with the specified value</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetConditionalFormat(System.Int32,System.Int32,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.ComparisonOperator,System.String,System.String)">
<summary>
Sets conditional formatting for a specified cell on a sheet based on a specified comparison (and conditions).
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<param name="style">Style to be applied to the cell if the condition is satisfied</param>
<param name="op">Comparison operator to apply to the cell value and the parameter values</param>
<param name="firstCondition">First condition value</param>
<param name="lastCondition">Last condition value</param>
<exception cref="T:System.ArgumentNullException">No condition is specified or specified condition is empty</exception>
<exception cref="T:System.ArgumentException">Specified condition is not valid; must be a string</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetConditionalFormat(System.Int32,System.Int32,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.ComparisonOperator,FarPoint.CalcEngine.Expression,FarPoint.CalcEngine.Expression)">
<summary>
Sets conditional formatting for a specified cell on the sheet based on a specified expression.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<param name="style">Style to be applied to the cell if the condition is satisfied</param>
<param name="op">Comparison operator to apply to the cell value and the specified value</param>
<param name="firstCondition">First condition expression</param>
<param name="lastCondition">Last condition expression</param>
<exception cref="T:System.ArgumentNullException">
No condition is specified or specified condition is empty
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetConditionalFormat(System.Int32,System.Int32,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.ComparisonOperator,FarPoint.CalcEngine.Expression)">
<summary>
Sets conditional formatting for a specified cell on the sheet based on a specified expression.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<param name="style">Style to be applied to the cell if the condition is satisfied</param>
<param name="op">Comparison operator to apply to the cell value and the specified value</param>
<param name="condition">Single condition expression</param>
<exception cref="T:System.ArgumentNullException">
No condition is specified or specified condition is empty
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetConditionalFormat(System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.ComparisonOperator)">
<summary>
Sets conditional formatting for a specified range of cells on the sheet based on a specified comparison.
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="style">Style to be applied to the cell if the condition is satisfied</param>
<param name="op">Comparison operator to apply to the cell value and the parameter value</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetConditionalFormat(System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.ComparisonOperator,System.String)">
<summary>
Sets conditional formatting for a specified range of cells on the sheet based on a specified comparison (and parameter).
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="style">Style to be applied to the cell if the condition is satisfied</param>
<param name="op">Comparison operator to apply to the cell value and the parameter value</param>
<param name="value">Parameter value</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetConditionalFormat(System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.ComparisonOperator,System.String,System.String)">
<summary>
Sets conditional formatting for a specified range of cells on the sheet on a specified comparison (with conditions).
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="style">Style to be applied to the cell if the condition is satisfied</param>
<param name="op">Comparison operator to apply to the cell value and the parameter values</param>
<param name="firstCondition">First parameter value</param>
<param name="lastCondition">Last parameter value</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetConditionalFormat(System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.ComparisonOperator,FarPoint.CalcEngine.Expression)">
<summary>
Sets conditional formatting for a specified range of cells on the sheet based on a specified comparison (and expression).
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="style">Style to be applied to the cell if the condition is satisfied</param>
<param name="op">Comparison operator to apply to the cell value and the parameter values</param>
<param name="firstCondition">Single condition expression</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetConditionalFormat(System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.ComparisonOperator,FarPoint.CalcEngine.Expression,FarPoint.CalcEngine.Expression)">
<summary>
Sets conditional formatting for a specified range of cells on the sheet based on a specified comparison (with parameters).
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="style">Style to be applied to the cell if the condition is satisfied</param>
<param name="op">Comparison operator to apply to the cell value and the parameter values</param>
<param name="firstCondition">First parameter value</param>
<param name="lastCondition">Last parameter value</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetFormulaConditionalFormat(System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.NamedStyle,System.String)">
<summary>
Sets conditional formatting on a specified range of cells on the sheet based on a specified formula.
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="style">Style to be applied to the cell if the formula evaluates to true</param>
<param name="formula">Formula for the condition</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SetConditionalFormat(System.Int32,System.Int32,FarPoint.Win.Spread.ConditionalFormat[])">
<summary>
Sets conditional format(s) for the cell at the specified row and column.
</summary>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
<param name="conditionalFormats">Conditional format(s)</param>
<returns>Does the conditional formate set.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetConditionalFormats(System.Int32,System.Int32)">
<summary>
Gets the conditional formats for the cell at the specified row and column.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.GetConditionalFormats(System.Int32@,System.Int32@,System.Boolean)">
<summary>
Gets the conditional formats for the cells starting at the specified row and column.
</summary>
<param name="row">Row index of the first cell</param>
<param name="column">Column index of the first cell</param>
<param name="findNext">Whether to continue to find cells with conditional formats</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ClearConditionalFormats(System.Int32,System.Int32)">
<summary>
Removes all of the conditional formats from the cell at the specified row and column.
</summary>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SuspendFormulaParsing">
<summary>
Suspends parsing of formulas.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.ResumeFormulaParsing">
<summary>
Resumes parsing of formulas and parses all formulas set while parsing was suspended.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.MoveColumn(System.Int32,System.Int32,System.Boolean)">
<summary>
Moves the specified column from its current index to the specified index,
and shifts each column in between and the destination column one
column in the direction of the specified column.
</summary>
<param name="fromIndex">Current index of the column to move</param>
<param name="toIndex">New index of the column after the move</param>
<param name="moveContent">Whether to move the content</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.MoveColumn(System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
Moves the specified column from its current index to the specified index,
and shifts each column in between and the destination column one
column in the direction of the specified column.
</summary>
<param name="fromIndex">Current index of the column to move</param>
<param name="toIndex">New index of the column after the move</param>
<param name="columnCount">The column count.</param>
<param name="moveContent">Whether to move the content</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.MoveColumn(System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Moves the specified column from its current index to the specified index,
and shifts each column in between and the destination column one
column in the direction of the specified column.
</summary>
<param name="fromIndex">Current index of the column to move</param>
<param name="toIndex">New index of the column before the move</param>
<param name="columnCount">The column count.</param>
<param name="moveContent">Whether to move the content</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.MoveRow(System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
Moves the specified row from its current index to the specified index,
and shifts each column in between and the destination column one
column in the direction of the specified column.
</summary>
<param name="fromIndex">Current index of the column to move</param>
<param name="toIndex">New index of the column after the move</param>
<param name="rowCount">The column count.</param>
<param name="moveContent">Whether to move the content</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.MoveRow(System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Moves the specified row from its current index to the specified index,
and shifts each column in between and the destination column one
column in the direction of the specified column.
</summary>
<param name="fromIndex">Current index of the column to move</param>
<param name="toIndex">New index of the column before the move</param>
<param name="rowCount">The column count.</param>
<param name="moveContent">Whether to move the content</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.MoveRow(System.Int32,System.Int32,System.Boolean)">
<summary>
Moves the specified row from its current index to the specified index,
and shifts each row in between and the destination row one
row in the direction of the specified row.
</summary>
<param name="fromIndex">Current index of the row to move</param>
<param name="toIndex">New index of the row after the move</param>
<param name="moveContent">Whether to move content</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.Clone">
<summary>
Creates a copy of the sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveHtml(System.String)">
<summary>
Saves the sheet to the specified file in HTML.
</summary>
<param name="filename">string</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveHtml(System.IO.Stream)">
<summary>
Saves the sheet to the specified stream in HTML.
</summary>
<param name="stream">Stream</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveHtmlRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.String)">
<summary>
Saves the specified range in the sheet to the specified file in HTML.
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="rowHeaders">True to include row headers</param>
<param name="columnHeaders">True to include column headers</param>
<param name="filename">string</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveHtmlRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.String)">
<summary>
Saves the specified range in the sheet to the specified file in HTML.
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="rowHeaders">True to include row headers</param>
<param name="columnHeaders">True to include column headers</param>
<param name="columnFooter">True to include column footer</param>
<param name="filename">string</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveHtmlRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.IO.Stream)">
<summary>
Saves the specified range in the sheet to the specified stream in HTML.
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="rowHeaders">True to include row headers</param>
<param name="columnHeaders">True to include column headers</param>
<param name="stream">Stream to which to save the text of the range</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveHtmlRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.IO.Stream)">
<summary>
Saves the specified range in the sheet to the specified stream in HTML.
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="rowHeaders">True to include row headers</param>
<param name="columnHeaders">True to include column headers</param>
<param name="columnFooter">True to include column footers</param>
<param name="stream">Stream to which to save the text of the range</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.OnDisposing(System.EventArgs)">
<summary>
Raises the Disposing event
</summary>
<param name="e"></param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">Whether disposing</param>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.SheetCorner">
<summary>
Gets the sheet corner of the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.AllowTableCorner">
<summary>
Gets or sets whether the sheet corner can have a grid structure (table).
</summary>
<value>Boolean: <c>true</c> to allow a sheet corner with a table; <c>false</c> otherwise</value>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.Charts">
<summary>
Gets the charts.
</summary>
<value>The charts.</value>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.Expandable">
<summary>
Gets or sets whether the rows are expandable.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ParentRowIndex">
<summary>
Gets the index of the parent row on this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ParentRelationName">
<summary>
Gets the data relation name for this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.Parent">
<summary>
Gets or sets the name of the parent sheet (<see cref="T:FarPoint.Win.Spread.SheetView"/> object) of this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ChildViews">
<summary>
Returns the child sheets.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ChildRelationCount">
<summary>
Gets the number of child relations (data relation count) for a sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.Visible">
<summary>
Gets or sets whether to display the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.TitleInfo">
<summary>
Sheet title
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.FpSpread">
<summary>
Get Fpspread form sheet view
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.SheetName">
<summary>
Gets or sets the name of the sheet.
</summary>
<exception cref="T:System.ArgumentException">Specified sheet name is not valid; must not be null or empty</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.RestrictColumns">
<summary>
Gets or sets whether users are restricted from typing data in a column on this sheet
that is more than one column beyond the last column that contains data.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.RestrictRows">
<summary>
Gets or sets whether users are restricted from typing data in a row on this sheet
that is more than one row beyond the last row that contains data.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.RowCount">
<summary>
Gets or sets the number of rows on this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnCount">
<summary>
Gets or sets the number of columns in the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnHeaderRowCount">
<summary>
Gets or sets the number of rows in the column headers for the sheet.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row count is out of range; must be between 0 and 256
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnFooterRowCount">
<summary>
Gets or sets the number of rows in the column footers for the sheet.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified row count is out of range; must be between 0 and 256
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.RowHeaderColumnCount">
<summary>
Gets or sets the number of columns in the row header on this sheet.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified column count is out of range; must be between 0 and 256
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.NamedStyles">
<summary>
Gets or sets a <see cref="T:FarPoint.Win.Spread.NamedStyleCollection"/> of NamedStyle objects for this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.SaveNamedStyles">
<summary>
Internal use only.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.OperationMode">
<summary>
Gets or sets the mode that determines mouse, keyboard, and selection behavior for this sheet.
</summary>
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
Specified operation mode is not valid
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ActiveRowIndex">
<summary>
Gets or sets the row index of the active cell on the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.IsBlockSelected">
<summary>
Gets whether a block of cells on this sheet is currently selected.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ActiveColumnIndex">
<summary>
Gets or sets the column index of the active cell on the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.SelectionCount">
<summary>
Gets the number of selections on this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DataAutoCellTypes">
<summary>
Gets or sets whether a bound sheet automatically sets the cell type for the cells in a column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DataAutoHeadings">
<summary>
Gets or sets whether a bound sheet automatically assigns the data field names
to be the text in the column headers.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DataAutoSizeColumns">
<summary>
Gets or sets whether a bound sheet automatically sizes its columns
based on the data in the associated database fields.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DataSource">
<summary>
Gets or sets the name of the data source that populates the sheet.
</summary>
<exception cref="T:System.InvalidOperationException">
Data model does not support IDataSourceSupport interface
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DataMember">
<summary>
Gets or sets the name of the data member that populates the sheet.
</summary>
<exception cref="T:System.InvalidOperationException">
Data model does not support IDataSourceSupport interface
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.FrozenRowCount">
<summary>
Gets or sets the number of non-scrolling rows on the leading edge of this sheet.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified value is out of range; must be greater than or equal to zero
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.FrozenColumnCount">
<summary>
Gets or sets the number of non-scrolling columns on the leading edge of this sheet.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified value is out of range; must be greater than or equal to zero
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.FrozenTrailingRowCount">
<summary>
Gets or sets the number of non-scrolling rows on the trailing edge of this sheet.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified value is out of range; must be greater than or equal to zero
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.FrozenTrailingColumnCount">
<summary>
Gets or sets the number of non-scrolling columns on the trailing edge of this sheet.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified value is out of range; must be greater than or equal to zero
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.GrayAreaBackColor">
<summary>
Gets or sets the color in the area between the sheet and the edge of the control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.SelectionStyle">
<summary>
Gets or sets how selections on this sheet are drawn.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DisplayZero">
<summary>
Gets or sets whether zero values are displayed in cells.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.NullFont">
<summary>
Gets or sets the default font for null items on this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.LockFont">
<summary>
Gets or sets the default font for locked items on this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.SelectionFont">
<summary>
Gets or sets the default font for selected items on this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.NullBackColor">
<summary>
Gets or sets the background color of null items on this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.NullForeColor">
<summary>
Gets or sets the foreground color of null items on this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.SelectionBackColor">
<summary>
Gets or sets the background color of selections on this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.SelectionForeColor">
<summary>
Gets or sets the foreground color of selections on this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.LockBackColor">
<summary>
Gets or sets the background color of locked cells on this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.LockForeColor">
<summary>
Gets or sets the foreground color of locked cells on this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnFooterSheetCornerHorizontalGridLine">
<summary>
Gets or sets the horizontal grid line for the column footer sheet corner.
</summary>
<exception cref="T:System.ArgumentNullException">
No value is specified (specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnFooterSheetCornerVerticalGridLine">
<summary>
Gets or sets the vertical grid line for the column footer sheet corner.
</summary>
<exception cref="T:System.ArgumentNullException">
No value is specified (specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.SheetCornerHorizontalGridLine">
<summary>
Gets or sets the horizontal grid line for the sheet corner.
</summary>
<exception cref="T:System.ArgumentNullException">
No value is specified (specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.SheetCornerVerticalGridLine">
<summary>
Gets or sets the vertical grid line for the sheet corner.
</summary>
<exception cref="T:System.ArgumentNullException">
No value is specified (specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.RowHeaderHorizontalGridLine">
<summary>
Gets or sets the horizontal grid line in the row header on this sheet.
</summary>
<exception cref="T:System.ArgumentNullException">
No value is specified (specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.RowHeaderVerticalGridLine">
<summary>
Gets or sets the vertical grid line in the row header on this sheet.
</summary>
<exception cref="T:System.ArgumentNullException">
No value is specified (specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnHeaderHorizontalGridLine">
<summary>
Gets or sets the horizontal grid line for the sheet.
</summary>
<exception cref="T:System.ArgumentNullException">
No value is specified (specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnFooterHorizontalGridLine">
<summary>
Gets or sets the horizontal grid line for the columnFooter.
</summary>
<exception cref="T:System.ArgumentNullException">
No value is specified (specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnHeaderVerticalGridLine">
<summary>
Gets or sets the vertical grid line in the column header for the sheet.
</summary>
<exception cref="T:System.ArgumentNullException">
No value is specified (specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnFooterVerticalGridLine">
<summary>
Gets or sets the vertical grid line in the column footer for the sheet.
</summary>
<exception cref="T:System.ArgumentNullException">
No value is specified (specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.HorizontalGridLine">
<summary>
Gets or sets the horizontal grid line for this sheet.
</summary>
<exception cref="T:System.ArgumentNullException">
No value is specified (specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.VerticalGridLine">
<summary>
Gets or sets the vertical grid line on this sheet.
</summary>
<exception cref="T:System.ArgumentNullException">
No value is specified (specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.PrintInfo">
<summary>
Gets or sets a <see cref="T:FarPoint.Win.Spread.PrintInfo"/> object that determines
printing behavior for the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.AllowNoteEdit">
<summary>
Gets or sets whether notes on this sheet are editable.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.Protect">
<summary>
Gets or sets whether cells on this sheet that are marked as locked are uneditable.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ReferenceStyle">
<summary>
Gets or sets the style for cell and range references in formulas in cells on this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.AutoCalculation">
<summary>
Gets or sets whether the control recalculates each formula
when the contents of dependent cells change for a sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.Iteration">
<summary>
Gets or sets whether circular references are evaluated on this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.MaximumIterations">
<summary>
Gets or sets the maximum number of iterations for calculating circular references on this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.MaximumChange">
<summary>
Gets or sets the maximum amount of change below which iterations stop
when circular references are evaluated on this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.Tag">
<summary>
Gets or sets an application-defined tag value associated with the cells in this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnFooterSheetCornerStyle">
<summary>
Gets or sets the style information for the sheet corner for columnFooter.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.SheetCornerStyle">
<summary>
Gets or sets the style information for the sheet corner.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.SheetCornerStyleName">
<summary>
Gets or sets the name of the style for the sheet corner.
</summary>
<exception cref="T:System.ArgumentException">
Specified NamedStyle object could not be found in the collection
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnFooterSheetCornerStyleName">
<summary>
Gets or sets the name of the style for the sheet corner of column Footer.
</summary>
<exception cref="T:System.ArgumentException">
Specified NamedStyle object could not be found in the collection
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.AutoGenerateColumns">
<summary>
Gets or sets whether to automatically generate the columns for a sheet based on the data source.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.StartingRowNumber">
<summary>
Gets or sets the number or letter displayed in the first row header on this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.StartingColumnNumber">
<summary>
Gets or sets the number or letter displayed in the first column header on this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.RowHeaderAutoText">
<summary>
Gets or sets whether row headers on this sheet display letters or numbers or are blank.
</summary>
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
Specified header setting is not valid; must be one of the HeaderAutoText enumeration settings
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnHeaderAutoTextIndex">
<summary>
Gets or sets which column header row for the sheet displays the automatic text
when there are multiple column header rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.RowHeaderAutoTextIndex">
<summary>
Gets or sets which row header column on this sheet displays the automatic text
when there are multiple row header columns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnHeaderAutoText">
<summary>
Gets or sets whether column headers for the sheet display letters or numbers or are blank.
</summary>
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
Specified header setting is not valid; must be one of the HeaderAutoText enumeration settings
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnHeaderVisible">
<summary>
Gets or sets whether the column headers for this sheet are visible.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnFooterVisible">
<summary>
Gets or sets whether the column Footers for this sheet are visible.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.RowHeaderVisible">
<summary>
Gets or sets whether the row headers for this sheet are visible.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DesignMode">
<summary>
</summary>
</member>
<member name="E:FarPoint.Win.Spread.SheetView.NameChanging">
<summary>
Occurs when the name of the data model is changing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DataModel">
<summary>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.RowHeaderDataModel">
<summary>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnHeaderDataModel">
<summary>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnFooterDataModel">
<summary>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.RowHeaderStyleModel">
<summary>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnHeaderStyleModel">
<summary>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnFooterStyleModel">
<summary>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.RowAxisModel">
<summary>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnAxisModel">
<summary>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.RowHeaderColumnAxisModel">
<summary>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnHeaderRowAxisModel">
<summary>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.SelectionModel">
<summary>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.SpanModel">
<summary>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.RowHeaderSpanModel">
<summary>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnHeaderSpanModel">
<summary>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.StyleModel">
<summary>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.AutoUpdateNotes">
<summary>
Gets or sets whether cell notes are automatically updated
when changes are made to the note style or to the text,
or notes are added, removed, or moved.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.SheetView.NoteCreated">
<summary>
Occurs when a note of viewport area is created on the sheet.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.SheetView.NoteMoved">
<summary>
Occurs when a note of viewport area is moved on the sheet.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.SheetView.NoteSized">
<summary>
Occurs when a note of viewport area is sized on the sheet.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.SheetView.StickyNoteCreated">
<summary>
Obsoleted. Use NoteCreated instead.
Occurs when a sticky note is created on the sheet.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.SheetView.StickyNoteMoved">
<summary>
Obsoleted. Use NoteMoved instead.
Occurs when a sticky note is moved on the sheet.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.SheetView.StickyNoteSized">
<summary>
Obsoleted. Use NoteSized instead.
Occurs when a sticky note is sized on the sheet.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.SheetView.PropertyChanged">
<summary>
Occurs when the user changes a property of the sheet.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.SheetView.Changed">
<summary>
Occurs when a change is made to the sheet that may require the entire sheet
to be repainted (as with DefaultStyle or AlternatingRows).
</summary>
</member>
<member name="E:FarPoint.Win.Spread.SheetView.RowChanged">
<summary>
Occurs when a change is made to a row or range of rows on this sheet
that may require the row or range of rows be repainted.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.SheetView.ColumnChanged">
<summary>
Occurs when a change is made to a column or range of columns
that may require the column or range of columns be repainted.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.IsInitializing">
<summary>
Gets a value indicates whether <see cref="T:FarPoint.Win.Spread.SheetView"/> is initialized.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.IgnoreApplySpreadSkin">
<summary>
Gets or sets a value indicates whether to ignore applying Spread skin.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.SheetView.CellChanged">
<summary>
Occurs when a change is made to a cell or range of cells on this sheet
that may require the cell or range of cells be repainted.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DefaultGroupFooter">
<summary>
Default setting for group footers
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.Cells">
<summary>
Gets a <see cref="T:FarPoint.Win.Spread.Cells"/> object for the cells in the data area of the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.Columns">
<summary>
Gets a <see cref="T:FarPoint.Win.Spread.Columns"/> object for the columns in the data area of the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.Rows">
<summary>
Gets a <see cref="T:FarPoint.Win.Spread.Rows"/> object for the rows in the data area of the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.AlternatingRows">
<summary>
Gets an <see cref="T:FarPoint.Win.Spread.AlternatingRows"/> object for the alternating rows
in the data area of the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnHeader">
<summary>
Gets the <see cref="T:FarPoint.Win.Spread.ColumnHeader"/> object for the column header area of the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnFooter">
<summary>
Gets the <see cref="T:FarPoint.Win.Spread.ColumnHeader"/> object for the column footer area of the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.RowHeader">
<summary>
Gets the <see cref="T:FarPoint.Win.Spread.RowHeader"/> object for the row header area of the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DefaultStyle">
<summary>
Gets or sets a <see cref="T:FarPoint.Win.Spread.StyleInfo"/> object for the default style of the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DefaultStyleName">
<summary>
Gets or sets the name of the default style for the sheet.
</summary>
<exception cref="T:System.ArgumentException">
Specified NamedStyle object could not be found in the collection
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ZoomFactor">
<summary>
Gets or sets the scaling factor for displaying this sheet.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified scaling amount is out of range; must be betwen 0.1 (10%) and 4.0 (400%)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.Models">
<summary>
Gets or sets a <see cref="T:FarPoint.Win.Spread.SheetView.DocumentModels"/> object
that contains all the models for the sheet.
</summary>
<exception cref="T:System.ArgumentNullException">
Model object is not specified (or specified object is null)
</exception>
<exception cref="T:System.ArgumentNullException">
Model.ColumnAxis object is not specified (or specified object is null)
</exception>
<exception cref="T:System.ArgumentNullException">
Model.ColumnHeaderData object is not specified (or specified object is null)
</exception>
<exception cref="T:System.ArgumentNullException">
Model.ColumnHeaderRowAxis object is not specified (or specified object is null)
</exception>
<exception cref="T:System.ArgumentNullException">
Models.ColumnHeaderSpan object is not specified (or specified object is null)
</exception>
<exception cref="T:System.ArgumentNullException">
Model.ColumnHeaderStyle object is not specified (or specified object is null)
</exception>
<exception cref="T:System.ArgumentNullException">
Model.Data object is not specified (or specified object is null)
</exception>
<exception cref="T:System.ArgumentNullException">
Model.RowAxis object is not specified (or specified object is null)
</exception>
<exception cref="T:System.ArgumentNullException">
Model.RowHeaderColumnAxis object is not specified (or specified object is null)
</exception>
<exception cref="T:System.ArgumentNullException">
Model.RowHeaderData object is not specified (or specified object is null)
</exception>
<exception cref="T:System.ArgumentNullException">
Model.RowHeaderSpan object is not specified (or specified object is null)
</exception>
<exception cref="T:System.ArgumentNullException">
Model.RowHeaderStyle object is not specified (or specified object is null)
</exception>
<exception cref="T:System.ArgumentNullException">
Model.Selection object is not specified (or specified object is null)
</exception>
<exception cref="T:System.ArgumentNullException">
Model.Span object is not specified (or specified object is null)
</exception>
<exception cref="T:System.ArgumentNullException">
Model.Style object is not specified (or specified object is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ActiveSkin">
<summary>
Gets or sets the skin for the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.AutoSortColumns">
<summary>
Gets or sets whether to allow automatic sorting for a sheet and whether to show the sort indicator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnAutoSorted">
<summary>
Gets the index of the last column that was automatically sorted for the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnHeaderAutoSortIndex">
<summary>
Gets or sets which column header row in the sheet displays the sort indicator when there are multiple column header rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.AutoSortFrozenRows">
<summary>
Gets or sets a value indicates whether frozen rows are sorted.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.AutoSortTrailingFrozenRows">
<summary>
Gets or sets a value indicates whether trailing frozen rows are sorted.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ColumnHeaderAutoFilterIndex">
<summary>
Gets or sets which column header row in the sheet displays the filter indicator when there are multiple column header rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.AllowGroup">
<summary>
Gets or sets whether to allow the user to group rows on the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.GroupInfos">
<summary>
Gets or sets the collection of grouping information objects for the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.GroupBarVisible">
<summary>
Obsoleted. Use GroupBarInfo.Visible instead.
Gets or sets whether the grouping bar for the sheet is displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.GroupFooterVisible">
<summary>
Gets or sets whether the group footer is displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.GroupBarHeight">
<summary>
Obsoleted. Use GroupBarInfo.Height instead.
Gets or sets the height of the grouping bar for the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.GroupMaximumLevel">
<summary>
Gets or sets the maximum number of levels of grouping for the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.GroupVerticalIndent">
<summary>
Obsoleted. Use GroupBarInfo.GroupVerticalIndent instead.
Gets or sets the separation of grouping levels for the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.GroupBarBackColor">
<summary>
Obsoleted. Use GroupBarInfo.BackColor instead.
Gets or sets the background color for the grouping bar of the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.RangeGroupButtonStyle">
<summary>
Gets or sets the style of the outline (range group) button.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.RangeGroupBackgroundColor">
<summary>
Gets or sets the background color of the outline (range group) region.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ActiveCell">
<summary>
Gets a <see cref="T:FarPoint.Win.Spread.Cell"/> object for the active cell on the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ActiveColumn">
<summary>
Gets a <see cref="T:FarPoint.Win.Spread.Column"/> object for the active column on the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ActiveRow">
<summary>
Gets a <see cref="T:FarPoint.Win.Spread.Row"/> object for the active row on the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.NonEmptyRowCount">
<summary>
Gets a value that is one more than the index of the last row on this sheet containing data.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.NonEmptyColumnCount">
<summary>
Gets a value that is one more than the index of the last column on this sheet containing data.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.SelectionPolicy">
<summary>
Gets the selection policy for the sheet for normal operation mode.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.SelectionUnit">
<summary>
Gets or sets the smallest unit users or the application can select on this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.SerializeModels">
<summary>
Gets or sets whether the DocumentModels for this sheet should be serialized to the form resources,
rather than generating code that initializes the Cells, Columns, Rows, and AlternatingRows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.RowFilter">
<summary>
Gets or sets the row filter for the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ControlContainer">
<summary>
Gets or sets a control container for the sheet for a child control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DrawingContainer">
<summary>
Gets or sets a drawing container for the sheet for a drawing object in the drawing space.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.NotesContainer">
<summary>
Internal use only. Gets or sets the drawing container for cell notes in the drawing space.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.Site">
<summary>
Gets or sets the site.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ContainingViews">
<summary>
Gets the containing views.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.VisualStyles">
<summary>
Gets or sets whether to use visual styles when rendering objects in the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DataAllowAddNew">
<summary>
Gets or sets whether to allow the user to add a new row when the sheet is bound.
</summary>
<value>Boolean: <c>true</c> if allowed to add new row; <c>false</c> otherwise</value>
</member>
<member name="E:FarPoint.Win.Spread.SheetView.Disposing">
<summary>
Fires when the SheetView is being disposed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.GroupBarInfo">
<summary>
Gets or sets the info of the grouping bar for the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.GroupingPolicy">
<summary>
Gets or sets grouping policy to collapse or expand rows when grouping occurs.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ScrollingContentInfo">
<summary>
Gets or sets the info of the vertical scrolling tip for the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.PreviewRowInfo">
<summary>
Gets or sets preview row information for the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.RowHeaderSelectorIndex">
<summary>
Gets or sets which row header column in the sheet displays the row selector when there are multiple row header columns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.ShowRowSelector">
<summary>
Gets or sets a value indicating whether display a row selector in the row header of the selected row for the sheet.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SheetView.PropInfo">
<summary>
Represents the property information.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetView.PropInfo.category">
<summary>
Property category
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetView.PropInfo.name">
<summary>
Property name
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetView.PropInfo.prop">
<summary>
Property value
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetView.PropInfo.createSubElement">
<summary>
Sets createSubElement to false.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.PropInfo.#ctor(System.String,System.String,System.Object)">
<summary>
Creates a PropInfo object.
</summary>
<param name="category">String of category</param>
<param name="name">String of name</param>
<param name="prop">Object of property</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.PropInfo.#ctor(System.String,System.String,System.Object,System.Boolean)">
<summary>
Creates a PropInfo object.
</summary>
<param name="category">String of category</param>
<param name="name">String of name</param>
<param name="prop">Object of property</param>
<param name="createSubElement">Whether to create as a sub-element</param>
</member>
<member name="T:FarPoint.Win.Spread.SheetView.DocumentModels">
<summary>
Represents a container of the models that make up the sheet document.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.DocumentModels.Serialize(System.Xml.XmlTextWriter)">
<summary>
Save the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.DocumentModels.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.DocumentModels.#ctor">
<summary>
Creates a new, empty container of the models that make up the sheet document.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.DocumentModels.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the DocumentModel object to the SerializationInfo.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.DocumentModels.SetViewColumnIndex(System.Int32,System.Int32)">
<summary>
Sets the column index in the sheet for the specified column index in the data model.
</summary>
<param name="modelColumnIndex">Column index in the model</param>
<param name="value">Column index in the sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.DocumentModels.SetViewRowIndex(System.Int32,System.Int32)">
<summary>
Sets the row index in the sheet for the specified row index in the data model.
</summary>
<param name="modelRowIndex">Row index in the data model</param>
<param name="value">Row index in the sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.DocumentModels.ResetViewColumnIndexes">
<summary>
Resets all column indexes in the sheet to be the same as the column indexes in the corresponding data model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.DocumentModels.ResetViewRowIndexes">
<summary>
Resets all row indexes in the sheet to be the same as the row indexes in the corresponding data model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.DocumentModels.IsAnyColumnViewIndexSet">
<summary>
Determines whether any columns have been mapped to different column indexes in the sheet.
</summary>
<returns>true if there is a mapping; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.DocumentModels.IsAnyRowViewIndexSet">
<summary>
Determines whether any rows have been mapped to different row indexes in the sheet.
</summary>
<returns>true if there is a mapping; false otherwise</returns>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.ColumnAxis">
<summary>
Gets or sets the column axis model.
</summary>
<exception cref="T:System.ArgumentNullException">
Model is not specified (or specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.ColumnHeaderData">
<summary>
Gets or sets the column header data model.
</summary>
<exception cref="T:System.ArgumentNullException">
Model is not specified (or specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.ColumnFooterData">
<summary>
Gets or sets the column footer data model.
</summary>
<exception cref="T:System.ArgumentNullException">
Model is not specified (or specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.ColumnHeaderRowAxis">
<summary>
Gets or sets the column header row axis model.
</summary>
<exception cref="T:System.ArgumentNullException">
Model is not specified (or specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.ColumnFooterRowAxis">
<summary>
Gets or sets the column footer row axis model.
</summary>
<exception cref="T:System.ArgumentNullException">
Model is not specified (or specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.ColumnHeaderSpan">
<summary>
Gets or sets the column header span model.
</summary>
<exception cref="T:System.ArgumentNullException">
Model is not specified (or specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.ColumnFooterSpan">
<summary>
Gets or sets the column footer span model.
</summary>
<exception cref="T:System.ArgumentNullException">
Model is not specified (or specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.ColumnHeaderStyle">
<summary>
Gets or sets the column header style model.
</summary>
<exception cref="T:System.ArgumentNullException">
Model is not specified (or specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.ColumnFooterStyle">
<summary>
Gets or sets a style model for ColumnFooter.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.Data">
<summary>
Gets or sets the data model.
</summary>
<exception cref="T:System.ArgumentNullException">
Model is not specified (or specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.RowAxis">
<summary>
Gets or sets the row axis model.
</summary>
<exception cref="T:System.ArgumentNullException">
Model is not specified (or specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.RowHeaderColumnAxis">
<summary>
Gets or sets the row header column axis model.
</summary>
<exception cref="T:System.ArgumentNullException">
Model is not specified (or specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.RowHeaderData">
<summary>
Gets or sets the row header data model.
</summary>
<exception cref="T:System.ArgumentNullException">
Model is not specified (or specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.RowHeaderSpan">
<summary>
Gets or sets the row header span model.
</summary>
<exception cref="T:System.ArgumentNullException">
Model is not specified (or specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.RowHeaderStyle">
<summary>
Gets or sets the row header style model.
</summary>
<exception cref="T:System.ArgumentNullException">
Model is not specified (or specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.SheetCornerData">
<summary>
Gets or sets the sheet corner data model
</summary>
<value>The sheet corner data.</value>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.SheetCornerSpan">
<summary>
Gets or sets the sheet corner span model
</summary>
<value>The sheet corner span.</value>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.SheetCornerStyle">
<summary>
Gets or sets the sheet corner style model
</summary>
<value>The sheet corner style.</value>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.Selection">
<summary>
Gets or sets the selection model.
</summary>
<exception cref="T:System.ArgumentNullException">
Model is not specified (or specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.Span">
<summary>
Gets or sets the span model.
</summary>
<exception cref="T:System.ArgumentNullException">
Model is not specified (or specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.Style">
<summary>
Gets or sets the style model.
</summary>
<exception cref="T:System.ArgumentNullException">
Model is not specified (or specified value is null)
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.DocumentModels.RangeGroupModel">
<summary>
Gets or sets the data model for the outline (range group).
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SheetView.SaveAutoSortColumns">
<summary>
Saves the sorting settings for all columns in a sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetView.SaveAutoSortColumns.allowAutoSort">
<summary>
The values of AllowAutoSort for the columns.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetView.SaveAutoSortColumns.showIndicator">
<summary>
The values of ShowSortIndicator for the columns.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveAutoSortColumns.#ctor(System.Collections.BitArray,System.Collections.BitArray)">
<summary>
Creates a new set of sorting settings.
</summary>
<param name="allowAutoSort">Values of AllowAutoSort for the columns</param>
<param name="showIndicator">Values of ShowSortIndicator for the columns</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveAutoSortColumns.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new set of sorting settings from serialization.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveAutoSortColumns.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Populates the SerializationInfo class with information about the automatic sorting settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveAutoSortColumns.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter to which to write (save) the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.SaveAutoSortColumns.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read (load) the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.SaveAutoSortColumns.AllowAutoSort">
<summary>
Gets the values of AllowAutoSort (whether to allow automatic sorting)
for the columns in this sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.SaveAutoSortColumns.ShowIndicator">
<summary>
Gets the values of ShowSortIndicator (whether to show a sort indicator when automatically sorted)
for the columns in the sheet.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SheetView.MultipleColumnMovingException">
<summary>
Exception thrown when moving multiple columns
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.MultipleColumnMovingException.#ctor(System.Int32,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.SheetView.MultipleColumnMovingException"/> class.
</summary>
<param name="actualMovedColumnCount">the number of column moved successfully before exception.</param>
<param name="innerException">The inner exception.</param>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.MultipleColumnMovingException.ActualMovedColumnCount">
<summary>
Indicate the number of column moved successfully before exception.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SheetView.MultipleRowMovingException">
<summary>
Exception thrown when moving multiple rows
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetView.MultipleRowMovingException.#ctor(System.Int32,System.Exception)">
<summary>
Initializes a new instance of the <see ref="MultipleRowMovingException"/> class.
</summary>
<param name="actualMovedRowCount">the number of row moved successfully before exception.</param>
<param name="innerException">The inner exception.</param>
</member>
<member name="P:FarPoint.Win.Spread.SheetView.MultipleRowMovingException.ActualMovedRowCount">
<summary>
Indicate the number of row moved successfully before exception.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DataAddNewException">
<summary>
Represents an exception thrown when adding AutoAddNewRow.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DataAddNewException.#ctor">
<summary>
Creates a DataAddNewException
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DataAddNewException.#ctor(System.String)">
<summary>
Creates a DataAddNewException
</summary>
<param name="message">Exception message</param>
</member>
<member name="M:FarPoint.Win.Spread.DataAddNewException.#ctor(System.String,System.Exception)">
<summary>
Creates a DataAddNewException
</summary>
<param name="message">Exception message</param>
<param name="inner">Inner exception message</param>
</member>
<member name="M:FarPoint.Win.Spread.DataAddNewException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a DataAddNewException from SerializationInfo
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="T:FarPoint.Win.Spread.IApplyEvents">
<summary>
Internal use only. Interface that supports apply events in Spread Designer.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.IApplyEvents.Applying">
<summary>
Occurs when applying.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.IApplyEvents.Applied">
<summary>
Occurs when applied.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CollectionEditorOptions">
<summary>
Specifies which UITypeEditor to invoke directly at runtime.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CollectionEditorOptions.Sheets">
<summary>
Displays the Sheets Collection Editor
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CollectionEditorOptions.NamedStyles">
<summary>
Displays the NamedStyles Collection Editor
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CollectionEditorOptions.AlternatingRow">
<summary>
Displays the AlternatingRow Collection Editor
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CollectionEditorOptions.GroupInfo">
<summary>
Displays the GroupInfo Collection Editor
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ScrollBarPolicy">
<summary>
Specifies when the component displays the scroll bars.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded">
<summary>
Displays the scroll bars only when needed
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ScrollBarPolicy.Always">
<summary>
Displays the scroll bars at all times
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ScrollBarPolicy.Never">
<summary>
Does not display the scroll bars
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ScrollBarTrackPolicy">
<summary>
Specifies whether the component scrolls the sheet when the user moves the scroll box.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ScrollBarTrackPolicy.Off">
<summary>
Does not scroll the sheet when the user moves the scroll box
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ScrollBarTrackPolicy.Vertical">
<summary>
Scrolls the sheet when the user moves the vertical scroll box
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ScrollBarTrackPolicy.Horizontal">
<summary>
Scrolls the sheet when the user moves the horizontal scroll box
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ScrollBarTrackPolicy.Both">
<summary>
Scrolls the sheet when the user moves either the horizontal or the vertical scroll box
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ScrollTipPolicy">
<summary>
Specifies whether the component displays the text tip when the user moves the scroll box.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ScrollTipPolicy.Off">
<summary>
Does not display the text tip when the user moves the scroll box
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ScrollTipPolicy.Vertical">
<summary>
Displays the row number in a text tip when the user moves the vertical scroll box
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ScrollTipPolicy.Horizontal">
<summary>
Displays the column number in a text tip when the user moves the horizontal scroll box
</summary>
</member>
<member name="F:FarPoint.Win.Spread.ScrollTipPolicy.Both">
<summary>
Displays the text tip when the user moves either the horizontal or the vertical scroll box
</summary>
</member>
<member name="T:FarPoint.Win.Spread.TabStripPlacement">
<summary>
Specifies the location of the tab strip in the component.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TabStripPlacement.WithHorizontalScrollBar">
<summary>
The tab strip is located next to the horizontal scroll bar.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TabStripPlacement.Top">
<summary>
The tab strip is located across the top of the component.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TabStripPlacement.Bottom">
<summary>
The tab strip is located across the bottom of the component.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.TabStripPolicy">
<summary>
Specifies when the component displays the sheet name tabs.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TabStripPolicy.Always">
<summary>
Always displays the sheet tabs
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TabStripPolicy.Never">
<summary>
Does not display the sheet tabs
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TabStripPolicy.AsNeeded">
<summary>
Displays the sheet tabs only when needed
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SplitBoxPolicy">
<summary>
Specifies when the component displays the split boxes.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SplitBoxPolicy.Always">
<summary>
Displays the split box all the time
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SplitBoxPolicy.Never">
<summary>
Does not display the split box
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SplitBoxPolicy.AsNeeded">
<summary>
Displays the split box only when needed
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SplitBoxAlignment">
<summary>
Specifies the placement of split boxes in the component
with respect to their alignment with the scroll bars.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SplitBoxAlignment.Leading">
<summary>
Displays the split boxes before (to the left or above) the scroll bars.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SplitBoxAlignment.Trailing">
<summary>
Displays the split boxes after (to the right or below) the scroll bars.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ClipboardPastingEventArgs">
<summary>
Represents the event data for the ClipboardPastingEvent event for the FarPoint Spread component,
which occurs when the user invokes the Clipboard paste action.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ClipboardPastingEventArgs.#ctor">
<summary>
Creates a new object with the ClipboardPasting event arguments.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ClipboardPastingEventArgs.Handled">
<summary>
Gets or sets whether the paste was handled or the default paste action should be performed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ClipboardPastingEventHandler">
<summary>
Represents a defined method that handles the ClipboardPasting event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.ClipboardPastedEventArgs">
<summary>
Represents the event data for the ClipboardPasted event for the FarPoint Spread component,
which occurs after the Clipboard paste action.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ClipboardPastedEventArgs.#ctor(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.ClipboardPasteOptions,FarPoint.Win.Spread.Model.CellRange,System.Windows.Forms.IDataObject)">
<summary>
Creates a new ClipboardPastedEventArgs.
</summary>
<param name="sheetView">SheetView</param>
<param name="pasteOption">ClipboardPasteOptions</param>
<param name="cellRange">CellRange</param>
<param name="dataObject">IDataObject</param>
</member>
<member name="P:FarPoint.Win.Spread.ClipboardPastedEventArgs.SheetView">
<summary>
Gets the SheetView.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ClipboardPastedEventArgs.PasteOption">
<summary>
Gets the ClipboardPasteOptions
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ClipboardPastedEventArgs.CellRange">
<summary>
Gets the CellRange.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ClipboardPastedEventArgs.DataObject">
<summary>
Gets the IDataObject
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ClipboardPastedEventHandler">
<summary>
Event handler for ClipboardPasted event.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="T:FarPoint.Win.Spread.TopChangeEventArgs">
<summary>
Represents the event data for the TopChange event in the FarPoint Spread component,
which occurs when the top row changes.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.TopChangeEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a new object with the TopChange event arguments.
</summary>
<param name="view">View that contains the row</param>
<param name="oldTop">Index of the previous top row</param>
<param name="newTop">Index of the new top row</param>
<param name="rowViewportIndex">Index of the viewport row in which the change occurred</param>
</member>
<member name="P:FarPoint.Win.Spread.TopChangeEventArgs.OldTop">
<summary>
Gets the index of the previous top row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TopChangeEventArgs.NewTop">
<summary>
Gets the index of the new top row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TopChangeEventArgs.RowViewportIndex">
<summary>
Gets the index of the viewport row in which the change occurred.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.TopChangeEventHandler">
<summary>
Represents a defined method that handles the TopChange event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.LeftChangeEventArgs">
<summary>
Represents the event data for the LeftChange event for the FarPoint Spread component,
which occurs when the left column in the view changes.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.LeftChangeEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a new object with the LeftChange event arguments.
</summary>
<param name="view">View in which the change occurred</param>
<param name="oldLeft">Index of the previous left column</param>
<param name="newLeft">Index of the new left column</param>
<param name="columnViewportIndex">Index of the viewport column in which the change occurred</param>
</member>
<member name="P:FarPoint.Win.Spread.LeftChangeEventArgs.OldLeft">
<summary>
Gets the index of the previous left column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.LeftChangeEventArgs.NewLeft">
<summary>
Gets the index of the new left column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.LeftChangeEventArgs.ColumnViewportIndex">
<summary>
Gets the index of the viewport column in which the change occurred.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.LeftChangeEventHandler">
<summary>
Represents a defined method that handles the LeftChange event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.DragDropBlockEventArgs">
<summary>
Represents the event data for the DragDropBlock event for the FarPoint Spread component,
which occurs when a range of cells is being dragged and dropped.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DragDropBlockEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Int32,System.Boolean)">
<summary>
Creates a new object with the DragDropBlock event arguments.
</summary>
<param name="view">View from which to make a selection</param>
<param name="rowBegin">Row index of the top left cell of the source range</param>
<param name="columnBegin">Column index of the top left cell of the source range</param>
<param name="rowEnd">Row index of the bottom right cell of the source range</param>
<param name="columnEnd">Column index of the bottom right cell of the source range</param>
<param name="destRowBegin">Row index of the top left cell of the destination range</param>
<param name="destColumnBegin">Column index of the top left cell of the destination range</param>
<param name="destRowEnd">Row index of the bottom right cell of the destination range</param>
<param name="destColumnEnd">Column index of the bottom right cell of the destination range</param>
<param name="overwrite">Whether the destination range contains data</param>
<param name="action">Whether the source range is copied or moved</param>
<param name="dataOnly">Whether data or formatting (or both) is copied or moved</param>
</member>
<member name="M:FarPoint.Win.Spread.DragDropBlockEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new object with the DragDropBlock event arguments.
</summary>
<param name="view">View from which to make a selection</param>
<param name="rowBegin">Row index of the top left cell of the source range</param>
<param name="columnBegin">Column index of the top left cell of the source range</param>
<param name="rowEnd">Row index of the bottom right cell of the source range</param>
<param name="columnEnd">Column index of the bottom right cell of the source range</param>
<param name="destRowBegin">Row index of the top left cell of the destination range</param>
<param name="destColumnBegin">Column index of the top left cell of the destination range</param>
<param name="destRowEnd">Row index of the bottom right cell of the destination range</param>
<param name="destColumnEnd">Column index of the bottom right cell of the destination range</param>
<param name="overwrite">Whether the destination range contains data</param>
<param name="action">Whether the source range is copied or moved</param>
<param name="dataOnly">Whether data or formatting (or both) is copied or moved</param>
<param name="cancel">Whether the copying or moving of data is cancelled</param>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockEventArgs.RowBegin">
<summary>
Gets the row index of the top left cell of the source range (being dragged).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockEventArgs.RowEnd">
<summary>
Gets the row index of the bottom right cell of the source range (being dragged).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockEventArgs.ColumnBegin">
<summary>
Gets the column index of the top left cell of the source range (being dragged).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockEventArgs.ColumnEnd">
<summary>
Gets the column index of the bottom right cell of the source range (being dragged).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockEventArgs.DestinationRowBegin">
<summary>
Gets the row index of the top left cell of the destination range (where selection is dropped).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockEventArgs.DestinationRowEnd">
<summary>
Gets the row index of the bottom right cell of the destination range (where selection is dropped).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockEventArgs.DestinationColumnBegin">
<summary>
Gets the column index of the top left cell of the destination range (where selection is dropped).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockEventArgs.DestinationColumnEnd">
<summary>
Gets the column index of the bottom right cell of the destination range (where selection is dropped).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockEventArgs.Overwrite">
<summary>
Gets whether the destination range contains data (that is overwritten).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockEventArgs.Action">
<summary>
Gets or sets whether the source range is copied or moved.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockEventArgs.Cancel">
<summary>
Gets or sets whether the copying or moving of data is cancelled.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockEventArgs.DataOnly">
<summary>
Gets or sets whether data or formatting (or both) is copied or moved.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DragDropBlockEventHandler">
<summary>
Represents a defined method that handles the DragDropBlock event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.DragFillBlockEventArgs">
<summary>
Represents the event data for the DragFillBlock event for the FarPoint Spread component,
which occurs when the range of cells is being dragged and filled.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DragFillBlockEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.FillDirection,System.Boolean)">
<summary>
Creates a new object with the DragFillBlock event arguments.
</summary>
<param name="view">View from which to make a selection</param>
<param name="rowBegin">Row index of the top left cell of the range being used for the fill</param>
<param name="columnBegin">Column index of the top left cell of the range being used for the fill</param>
<param name="rowEnd">Row index of the bottom right cell of the range being used for the fill</param>
<param name="columnEnd">Column index of the bottom right cell of the range being used for the fill</param>
<param name="numberToCopy">Number of rows or columns being filled</param>
<param name="direction">Direction of the fill</param>
<param name="dataOnly">Data only flag</param>
</member>
<member name="M:FarPoint.Win.Spread.DragFillBlockEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.FillDirection,System.Boolean,System.Boolean)">
<summary>
Creates a new object with the DragFillBlock event arguments.
</summary>
<param name="view">View from which to make a selection</param>
<param name="rowBegin">Row index of the top left cell of the range being used for the fill</param>
<param name="columnBegin">Column index of the top left cell of the range being used for the fill</param>
<param name="rowEnd">Row index of the bottom right cell of the block range used for the fill</param>
<param name="columnEnd">Column index of the bottom right cell of the range being used for the fill</param>
<param name="numberToCopy">Number of rows or columns being filled</param>
<param name="direction">Direction of the fill</param>
<param name="dataOnly">Data only flag</param>
<param name="cancel">Whether to cancel the fill</param>
</member>
<member name="P:FarPoint.Win.Spread.DragFillBlockEventArgs.RowBegin">
<summary>
Gets the row index of the top left cell of the range being used for the fill.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragFillBlockEventArgs.RowEnd">
<summary>
Gets the row index of the bottom right cell of the range being used for the fill.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragFillBlockEventArgs.ColumnBegin">
<summary>
Gets the column index of the top left cell of the range being used for the fill.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragFillBlockEventArgs.ColumnEnd">
<summary>
Gets the column index of the bottom right cell of the range being used for the fill.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragFillBlockEventArgs.NumberToCopy">
<summary>
Gets the number of rows or columns being filled.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragFillBlockEventArgs.Direction">
<summary>
Gets the direction of the fill.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragFillBlockEventArgs.DataOnly">
<summary>
Gets the data only flag.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragFillBlockEventArgs.Cancel">
<summary>
Gets or sets whether to cancel the fill.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DragFillBlockEventHandler">
<summary>
Represents a defined method that handles the DragFillBlock event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.DragDropBlockCompletedEventArgs">
<summary>
Represents the event data for the DragDropBlockCompleted event for the FarPoint Spread component,
which occurs when the dragging and dropping of a range of cells is completed.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DragDropBlockCompletedEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Int32,System.Boolean)">
<summary>
Creates a new object with the DragDropBlockCompleted event arguments.
</summary>
<param name="view">View from which to make a selection</param>
<param name="rowBegin">Row index of the top left cell of the source range</param>
<param name="columnBegin">Column index of the top left cell of the source range</param>
<param name="rowEnd">Row index of the bottom right cell of the source range</param>
<param name="columnEnd">Column index of the bottom right cell of the source range</param>
<param name="destRowBegin">Row index of the top left cell of the destination range</param>
<param name="destColumnBegin">Column index of the top left cell of the destination range</param>
<param name="destRowEnd">Row index of the bottom right cell of the destination range</param>
<param name="destColumnEnd">Column index of the bottom right cell of the destination range</param>
<param name="overwrite">Whether the destination range contains data</param>
<param name="action">Whether the source range is copied or moved</param>
<param name="dataOnly">Whether data or formatting (or both) is copied or moved</param>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockCompletedEventArgs.RowBegin">
<summary>
Gets the row index of the top left cell of the source range (being dragged).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockCompletedEventArgs.RowEnd">
<summary>
Gets the row index of the bottom right cell of the source range (being dragged).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockCompletedEventArgs.ColumnBegin">
<summary>
Gets the column index of the top left cell of the source range (being dragged).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockCompletedEventArgs.ColumnEnd">
<summary>
Gets the column index of the bottom right cell of the source range (being dragged).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockCompletedEventArgs.DestinationRowBegin">
<summary>
Gets the row index of the top left cell of the destination range (where selection is dropped).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockCompletedEventArgs.DestinationRowEnd">
<summary>
Gets the row index of the bottom right cell of the destination range (where selection is dropped).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockCompletedEventArgs.DestinationColumnBegin">
<summary>
Gets the column index of the top left cell of the destination range (where selection is dropped).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockCompletedEventArgs.DestinationColumnEnd">
<summary>
Gets the column index of the bottom right cell of the destination range (where selection is dropped).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockCompletedEventArgs.Overwrite">
<summary>
Gets whether the destination range contains data (that is overwritten).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockCompletedEventArgs.Action">
<summary>
Gets whether the source range is copied or moved.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragDropBlockCompletedEventArgs.DataOnly">
<summary>
Gets whether data or formatting (or both) is copied or moved.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DragDropBlockCompletedEventHandler">
<summary>
Represents a defined method that handles the drag-drop event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.DragFillBlockCompletedEventArgs">
<summary>
Represents the event data for the DragFillBlockCompleted event for the FarPoint Spread component,
which occurs when the dragging and filling of a range of cells is completed.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DragFillBlockCompletedEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.FillDirection,System.Boolean)">
<summary>
Creates a new object with the DragDropBlockCompleted event arguments.
</summary>
<param name="view">View from which to make a selection</param>
<param name="rowBegin">Row index of the top left cell of the range being used for the fill</param>
<param name="columnBegin">Column index of the top left cell of the range being used for the fill</param>
<param name="rowEnd">Row index of the bottom right cell of the range being used for the fill</param>
<param name="columnEnd">Column index of the bottom right cell of the range being used for the fill</param>
<param name="numberToCopy">Number of rows or columns being filled</param>
<param name="direction">Direction of the fill</param>
<param name="dataOnly">Whether only data is used</param>
</member>
<member name="P:FarPoint.Win.Spread.DragFillBlockCompletedEventArgs.RowBegin">
<summary>
Gets the row index of the top left cell of the range being used for the fill.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragFillBlockCompletedEventArgs.RowEnd">
<summary>
Gets the row index of the bottom right cell of the range being used for the fill.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragFillBlockCompletedEventArgs.ColumnBegin">
<summary>
Gets the column index of the top left cell of the range being used for the fill.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragFillBlockCompletedEventArgs.ColumnEnd">
<summary>
Gets the column index of the bottom right cell of the range being used for the fill.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragFillBlockCompletedEventArgs.NumberToCopy">
<summary>
Gets the number of rows or columns being filled.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragFillBlockCompletedEventArgs.Direction">
<summary>
Gets the direction of the fill.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragFillBlockCompletedEventArgs.DataOnly">
<summary>
Gets whether only data is used.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DragFillBlockCompletedEventHandler">
<summary>
Represents a defined method that handles the DragFillBlockCompleted event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.DragMoveEventArgs">
<summary>
Represents the event data for the ColumnDragMove and RowDragMove events for the FarPoint Spread component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DragMoveEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new object with the DragMove event arguments.
</summary>
<param name="view">SpreadView view</param>
<param name="index">Column or row index of the drag</param>
<param name="moveContent">Whether to move content in models without re-mapping the indexes</param>
<param name="cancel">Whether to cancel the drag opertation</param>
</member>
<member name="M:FarPoint.Win.Spread.DragMoveEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new object with the DragMove event arguments.
</summary>
<param name="view">SpreadView view</param>
<param name="index">Column or row index of the drag</param>
<param name="count">Number of columns or rows being moved</param>
<param name="moveContent">Whether to move content in models without re-mapping the indexes</param>
<param name="cancel">Whether to cancel the drag opertation</param>
</member>
<member name="P:FarPoint.Win.Spread.DragMoveEventArgs.View">
<summary>
Gets the view in which the columns or row are being dragged.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragMoveEventArgs.Index">
<summary>
Gets the column or row index of the drag.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragMoveEventArgs.Count">
<summary>
Gets the number of columns or rows to move.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragMoveEventArgs.MoveContent">
<summary>
Gets or sets whether the move operation moves the contents
of the rows or columns (and rows or columns in between)
without changing the index mapping.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragMoveEventArgs.Cancel">
<summary>
Gets or sets whether to cancel the drag operation.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DragMoveEventHandler">
<summary>
Represents a defined method that handles the ColumnDragMove or RowDragMove event
for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.DragMoveCompletedEventArgs">
<summary>
Represents the event data for the ColumnDragMoveCompleted and RowDragMoveCompleted event
for the FarPoint Spread component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DragMoveCompletedEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a new object with the DragMoveCompleted event arguments.
</summary>
<param name="view">SpreadView view</param>
<param name="fromIndex">Column or row index of starting place of the drag</param>
<param name="count">Number of columns or rows</param>
<param name="toIndex">Column or row index of the destination of the drag</param>
</member>
<member name="M:FarPoint.Win.Spread.DragMoveCompletedEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32,System.Int32)">
<summary>
Creates a new object with the DragMoveCompleted event arguments.
</summary>
<param name="view">SpreadView view</param>
<param name="fromIndex">Column or row index of starting place of the drag</param>
<param name="toIndex">Column or row index of the destination of the drag</param>
</member>
<member name="P:FarPoint.Win.Spread.DragMoveCompletedEventArgs.Count">
<summary>
Gets the number of columns or rows being moved
</summary>
<value>the number of columns or rows being moved</value>
</member>
<member name="P:FarPoint.Win.Spread.DragMoveCompletedEventArgs.View">
<summary>
Gets the view in which the columns or row have been dragged.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragMoveCompletedEventArgs.FromIndex">
<summary>
Gets the column or row index of the starting place of the drag.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DragMoveCompletedEventArgs.ToIndex">
<summary>
Gets the column or row index of the destination of the drag
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DragMoveCompletedEventHandler">
<summary>
Represents a defined method that handles the ColumnDragMoveCompleted or RowDragMoveCompleted event
for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.AdvanceEventArgs">
<summary>
Represents the event data for the Advance event for the FarPoint Spread component,
which occurs when focus is advanced to another control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AdvanceEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Boolean)">
<summary>
Creates a new object with the Advance event arguments.
</summary>
<param name="view">View of the current control from which to advance</param>
<param name="advanceNext">Whether to move to the next control</param>
</member>
<member name="P:FarPoint.Win.Spread.AdvanceEventArgs.AdvanceNext">
<summary>
Gets whether to move to the next component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AdvanceEventArgs.Cancel">
<summary>
Gets or sets whether to cancel default processing.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.AdvanceEventHandler">
<summary>
Represents a defined method that handles the Advance event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.ChildViewCreatedEventArgs">
<summary>
Represents the event data for a ChildViewCreated event for the FarPoint Spread component,
which occurs when a child sheet is created in a hierarchical spreadsheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ChildViewCreatedEventArgs.#ctor(FarPoint.Win.Spread.SheetView)">
<summary>
Creates a new object with the ChildViewCreated event arguments.
</summary>
<param name="sheet">Child sheet (Sheetview object) being created</param>
</member>
<member name="P:FarPoint.Win.Spread.ChildViewCreatedEventArgs.SheetView">
<summary>
Gets the child SheetView object being created.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ChildViewCreatedEventHandler">
<summary>
Represents a defined method that handles the ChildViewCreated event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.TextTipFetchEventArgs">
<summary>
Represents the event data for the TextTipFetch event for the FarPoint Spread component,
which occurs when the text tip is being fetched.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.TextTipFetchEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.String,System.Int32,System.Int32,System.Boolean,System.Int32,System.Boolean)">
<summary>
Creates a new object with the TextTipFetch event arguments.
</summary>
<param name="view">View that contains the cell that is clicked</param>
<param name="text">Text in the text tip</param>
<param name="row">Row index of the cell that is clicked</param>
<param name="column">Column index of the cell that is clicked</param>
<param name="wrapText">Whether the text tip or cell note should wrap for multiple lines</param>
<param name="width">Width of the text tip or cell note</param>
<param name="showTip">Whether to show the text tip or cell note</param>
</member>
<member name="M:FarPoint.Win.Spread.TextTipFetchEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.String,System.Int32,System.Int32,System.Boolean,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Creates a new object with the TextTipFetch event arguments.
</summary>
<param name="view">View that contains the cell that is clicked</param>
<param name="text">Text in the text tip</param>
<param name="row">Row index of the cell that is clicked</param>
<param name="column">Column index of the cell that is clicked</param>
<param name="wrapText">Whether the text tip or cell note should wrap for multiple lines</param>
<param name="width">Width of the text tip or cell note</param>
<param name="showTip">Whether to show the text tip or cell note</param>
<param name="rowHeader">Whether the cell is in the row headers</param>
<param name="columnHeader">Whether the cell is in the column headers</param>
<param name="fetchCellNote">Whether to display the cell note</param>
</member>
<member name="M:FarPoint.Win.Spread.TextTipFetchEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.String,System.Int32,System.Int32,System.Boolean,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Creates a new object with the TextTipFetch event arguments.
</summary>
<param name="view">View that contains the cell that is clicked</param>
<param name="text">Text in the text tip</param>
<param name="row">Row index of the cell that is clicked</param>
<param name="column">Column index of the cell that is clicked</param>
<param name="wrapText">Whether the text tip or cell note should wrap for multiple lines</param>
<param name="width">Width of the text tip or cell note</param>
<param name="showTip">Whether to show the text tip or cell note</param>
<param name="rowHeader">Whether the cell is in the row headers</param>
<param name="columnHeader">Whether the cell is in the column headers</param>
<param name="columnFooter">Whether the cell is in the column footers</param>
<param name="fetchCellNote">Whether to display the cell note</param>
</member>
<member name="P:FarPoint.Win.Spread.TextTipFetchEventArgs.View">
<summary>
Gets the view that contains the cell that is clicked.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TextTipFetchEventArgs.Row">
<summary>
Gets the row index of the cell that is clicked.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TextTipFetchEventArgs.Column">
<summary>
Gets the column index of the cell that is clicked.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TextTipFetchEventArgs.TipText">
<summary>
Gets or sets the text in the text tip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TextTipFetchEventArgs.TipWidth">
<summary>
Gets or sets the width of the text tip or cell note.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TextTipFetchEventArgs.WrapText">
<summary>
Gets or sets whether the text tip or cell note should wrap for multiple lines.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TextTipFetchEventArgs.ShowTip">
<summary>
Gets or sets whether to show the text tip or show the cell note as a tip window.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TextTipFetchEventArgs.RowHeader">
<summary>
Gets whether the cell is in the row headers.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TextTipFetchEventArgs.ColumnHeader">
<summary>
Gets whether the cell is in the column headers.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TextTipFetchEventArgs.ColumnFooter">
<summary>
Gets whether the cell is in the column footer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TextTipFetchEventArgs.FetchCellNote">
<summary>
Gets whether to fetch the cell note.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.TextTipFetchEventHandler">
<summary>
Represents a defined method that handles the TextTipFetch event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.ZoomEventArgs">
<summary>
Represents the event data for the UserZooming event for the FarPoint Spread component,
which occurs when the user zooms.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ZoomEventArgs.#ctor(System.Single,System.Single)">
<summary>
Creates a new object with the Zoom event arguments.
</summary>
<param name="oldZoomFactor">Old zoom factor</param>
<param name="newZoomFactor">New zoom factor</param>
</member>
<member name="P:FarPoint.Win.Spread.ZoomEventArgs.OldZoomFactor">
<summary>
Gets the old zoom factor of the spread.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ZoomEventArgs.NewZoomFactor">
<summary>
Gets or sets the new zoom factor of the spread.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.UserZoomingEventHandler">
<summary>
Represents a defined method that handles the UserZooming event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.ScrollTipFetchEventArgs">
<summary>
Represents the event data for the ScrollTipFetch event for the FarPoint Spread component,
which occurs when the spread is scrolled.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ScrollTipFetchEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.String,System.Int32,System.Int32,System.Boolean)">
<summary>
Creates a new object with the ScrollTipFetch event arguments.
</summary>
<param name="view">View that is scrolled</param>
<param name="text">Text in the scroll tip</param>
<param name="row">New top row</param>
<param name="column">New left column</param>
<param name="showTip">Whether to show the scroll tip</param>
</member>
<member name="P:FarPoint.Win.Spread.ScrollTipFetchEventArgs.View">
<summary>
Gets the view that is scrolled.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ScrollTipFetchEventArgs.Row">
<summary>
Gets the new top row index. If user changes horizontal scrollbar, this value is -1.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ScrollTipFetchEventArgs.Column">
<summary>
Gets the new left column index. If user changes vertical scrollbar, this value is -1.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ScrollTipFetchEventArgs.TipText">
<summary>
Gets or sets the text in the scroll tip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ScrollTipFetchEventArgs.ShowTip">
<summary>
Gets or sets whether to show the scroll tip.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ScrollTipFetchEventHandler">
<summary>
Represents a defined method that handles the ScrollTipFetch event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.CellClickEventArgs">
<summary>
Represents the event data for the CellClick and CellDoubleClick events for the FarPoint Spread component,
which occurs when the user clicks or double-clicks the mouse button with the pointer on a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.CellClickEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.MouseButtons,System.Boolean,System.Boolean)">
<summary>
Creates a new object with the CellClick event arguments.
</summary>
<param name="view">View (Spreadview object) that contains the cell clicked</param>
<param name="row">Row index of cell clicked</param>
<param name="column">Column index of cell clicked</param>
<param name="x">X-coordinate of the pointer position</param>
<param name="y">Y-coordinate of the pointer position</param>
<param name="button">Which mouse button was pressed</param>
<param name="columnHeader">Whether cell clicked is in column header</param>
<param name="rowHeader">Whether cell clicked is in row header</param>
</member>
<member name="M:FarPoint.Win.Spread.CellClickEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.MouseButtons,System.Boolean,System.Boolean,System.Boolean)">
<param name="columnFooter">Whether cell clicked is in column footer</param>
</member>
<member name="P:FarPoint.Win.Spread.CellClickEventArgs.View">
<summary>
Gets the view that contains the cell that is clicked.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellClickEventArgs.Row">
<summary>
Gets the row index of the cell that is clicked.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellClickEventArgs.Column">
<summary>
Gets the column index of the cell that is clicked.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellClickEventArgs.ColumnHeader">
<summary>
Gets whether the cell that is clicked is in the column headers.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellClickEventArgs.ColumnFooter">
<summary>
Gets whether the cell that is clicked is in the column footer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellClickEventArgs.RowHeader">
<summary>
Gets whether the cell that is clicked is in the row headers.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellClickEventArgs.X">
<summary>
Gets the x-coordinate of the pointer position.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellClickEventArgs.Y">
<summary>
Gets the y-coordinate of the pointer position.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellClickEventArgs.Button">
<summary>
Gets which mouse button has been pressed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.CellClickEventArgs.Cancel">
<summary>
Gets or sets whether to cancel default processing.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellClickEventHandler">
<summary>
Represents a defined method that handles the CellClick and CellDoubleClick events for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.GroupingEventArgs">
<summary>
Represents the event data for grouping events in the FarPoint Spread component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GroupingEventArgs.#ctor(FarPoint.Win.Spread.SortInfo[])">
<summary>
Creates a new set of grouping event arguments.
</summary>
<param name="info">Sorting information</param>
</member>
<member name="P:FarPoint.Win.Spread.GroupingEventArgs.SortInfo">
<summary>
Gets the sorting information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupingEventArgs.GroupComparer">
<summary>
Gets or sets the group comparer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.GroupingEventArgs.Cancel">
<summary>
Determines whether to cancel the grouping.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.GroupingEventHandler">
<summary>
Represents a defined method that handles the Grouping event in the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.PaintGroupBarBackgroundEventArgs">
<summary>
Represents the event data for PaintGroupBarBackground events in the FarPoint Spread component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PaintGroupBarBackgroundEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Creates a new set of PaintGroupBarBackgroundEventArgs event arguments.
</summary>
<param name="g">Graphics object</param>
<param name="bounds">Rectangular bounds</param>
</member>
<member name="P:FarPoint.Win.Spread.PaintGroupBarBackgroundEventArgs.Graphics">
<summary>
The Graphics object used to paint the background.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PaintGroupBarBackgroundEventArgs.Bounds">
<summary>
The boundary of the group bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PaintGroupBarBackgroundEventArgs.Handled">
<summary>
Determines whether the event is handled.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PaintGroupBarBackgroundEventHandler">
<summary>
Represents a defined method that handles the PaintGroupBarBackground event in the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.ColumnWidthChangingEventArgs">
<summary>
Represents the event data for the ColumnWidthChanging event for the FarPoint Spread component,
which occurs when the width of a column is changing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ColumnWidthChangingEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Collections.ArrayList,System.Int32,System.Boolean)">
<summary>
Creates a new object with the ColumnWidthChanging event arguments.
</summary>
<param name="view">View (Spreadview object) that contains the columns that have changed</param>
<param name="columnList">Array list of the columns whose widths have changed</param>
<param name="width">New width</param>
<param name="header">Whether to include header</param>
</member>
<member name="P:FarPoint.Win.Spread.ColumnWidthChangingEventArgs.View">
<summary>
Gets the view that contains the columns whose widths have changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnWidthChangingEventArgs.ColumnList">
<summary>
Gets the list of columns whose widths have changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnWidthChangingEventArgs.Header">
<summary>
Gets whether the column indexes are row header columns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnWidthChangingEventArgs.Width">
<summary>
Gets the new width of the column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnWidthChangingEventArgs.Cancel">
<summary>
Gets or sets whether to cancel the column width change.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ColumnWidthChangingEventHandler">
<summary>
Represents a defined method that handles the ColumnWidthChanging event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.RowHeightChangingEventArgs">
<summary>
Represents the event data for the RowHeightChanging event for the FarPoint Spread component,
which occurs when the height of a row is changing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RowHeightChangingEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Collections.ArrayList,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new object with the RowHeightChanging event arguments.
</summary>
<param name="view">View (Spreadview object) that contains the columns that have changed</param>
<param name="rowList">Array list of the rows whose heights have changed</param>
<param name="height">New height</param>
<param name="header">Whether to include header</param>
<param name="footer">Whether to include footer</param>
</member>
<member name="M:FarPoint.Win.Spread.RowHeightChangingEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Collections.ArrayList,System.Int32,System.Boolean)">
<summary>
Creates a new object with the RowHeightChanging event arguments.
</summary>
<param name="view">View (Spreadview object) that contains the columns that have changed</param>
<param name="rowList">Array list of the rows whose heights have changed</param>
<param name="height">New height</param>
<param name="header">Whether to include header</param>
</member>
<member name="P:FarPoint.Win.Spread.RowHeightChangingEventArgs.Footer">
<summary>
Gets whether the column indexes are column footer rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowHeightChangingEventArgs.View">
<summary>
Gets the view that contains the rows whose heights have changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowHeightChangingEventArgs.RowList">
<summary>
Gets the list of rows whose heights have changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowHeightChangingEventArgs.Header">
<summary>
Gets whether the column indexes are column header rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowHeightChangingEventArgs.Height">
<summary>
Gets the new height of the row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowHeightChangingEventArgs.Cancel">
<summary>
Gets or sets whether to cancel the row height change.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.RowHeightChangingEventHandler">
<summary>
Represents a defined method that handles the ColumnWidthChanging event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.ActiveSheetChangingEventArgs">
<summary>
Represents the event data for the ActiveSheetChanging event for the component,
which occurs when the component changes to another active sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ActiveSheetChangingEventArgs.#ctor(System.Int32)">
<summary>
Creates a new object with the ActiveSheetChanging event arguments.
</summary>
<param name="newActiveSheetIndex">Sheet index for the new active sheet</param>
</member>
<member name="P:FarPoint.Win.Spread.ActiveSheetChangingEventArgs.ActivatedSheetIndex">
<summary>
Gets or sets the index of the new active sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ActiveSheetChangingEventArgs.Cancel">
<summary>
Gets or sets whether to cancel the active sheet change.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ActiveSheetChangingEventHandler">
<summary>
Represents a defined method that handles the ActiveSheetChanging event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.SheetTabClickEventArgs">
<summary>
Represents the event data for the SheetTabClick event for the FarPoint Spread component,
which occurs when the user clicks the mouse button with the pointer on the sheet name tab.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetTabClickEventArgs.#ctor(System.Int32)">
<summary>
Creates a new object with the SheetTabClick event arguments.
</summary>
<param name="sheetTabIndex">Index of the sheet tab that was clicked </param>
</member>
<member name="P:FarPoint.Win.Spread.SheetTabClickEventArgs.SheetTabIndex">
<summary>
Gets the index of the sheet tab that is clicked.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SheetTabDoubleClickEventArgs">
<summary>
Represents the event data for the SheetTabDoubleClick event for the FarPoint Spread component,
which occurs when the user double-clicks on a sheet name tab.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetTabDoubleClickEventArgs.#ctor(System.Int32)">
<summary>
Creates a new object with the SheetTabDoubleClick event arguments.
</summary>
<param name="sheetTabIndex">Index of the sheet tab that was clicked</param>
</member>
<member name="P:FarPoint.Win.Spread.SheetTabDoubleClickEventArgs.SheetTabIndex">
<summary>
Gets the index of the sheet tab that is clicked.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetTabDoubleClickEventArgs.Cancel">
<summary>
Gets or sets whether to cancel the default action (in-place editing).
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SheetTabClickEventHandler">
<summary>
Represents a defined method that handles the SheetTabClick event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.SheetTabDoubleClickEventHandler">
<summary>
Represents a defined method that handles the SheetTabDoubleClick event for the FarPoint Spread component.
which occurs when the user double-clicks the mouse button with the pointer on the sheet name tab.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.RowHeightChangeExtents">
<summary>
Represents an object that contains first and last rows in contiguous selection whose heights are changing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RowHeightChangeExtents.#ctor(System.Int32,System.Int32)">
<summary>
Creates a new object with the RowHeightChange event arguments.
</summary>
<param name="firstRow">First row of the contiguous selection</param>
<param name="lastRow">Last row of the contiguous selection</param>
</member>
<member name="P:FarPoint.Win.Spread.RowHeightChangeExtents.FirstRow">
<summary>
Gets the index of the first row in the contiguous selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowHeightChangeExtents.LastRow">
<summary>
Gets the index of the last row in the contiguous selection.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.RowHeightChangedEventArgs">
<summary>
Represents the event data for the RowHeightChanged event for the FarPoint Spread component,
which occurs when the height of a row is changed.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RowHeightChangedEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Collections.ArrayList,System.Boolean)">
<summary>
Creates a new object with the RowHeightChanged event arguments.
</summary>
<param name="view">View that contains the rows whose heights have changed </param>
<param name="rowList">Array list of the rows whose heights have changed </param>
<param name="header">True if row indexes are column header rows</param>
</member>
<member name="M:FarPoint.Win.Spread.RowHeightChangedEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Collections.ArrayList,System.Boolean,System.Boolean)">
<summary>
Creates a new object with the RowHeightChanged event arguments.
</summary>
<param name="view">View that contains the rows whose heights have changed </param>
<param name="rowList">Array list of the rows whose heights have changed </param>
<param name="header">True if row indexes are column header rows</param>
<param name="footer">True if row indexes are column footer rows</param>
</member>
<member name="P:FarPoint.Win.Spread.RowHeightChangedEventArgs.View">
<summary>
Gets the view that contains the rows whose heights have changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowHeightChangedEventArgs.RowList">
<summary>
Gets the list of rows whose heights have changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowHeightChangedEventArgs.Header">
<summary>
Gets whether the row indexes are column header rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowHeightChangedEventArgs.Footer">
<summary>
Gets whether the row indexes are column footer rows.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.RowHeightChangedEventHandler">
<summary>
Represents a defined method that handles the RowHeightChanged event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.ColumnWidthChangeExtents">
<summary>
Represents an object that contains first and last columns in a contiguous selection whose widths are changing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ColumnWidthChangeExtents.#ctor(System.Int32,System.Int32)">
<summary>
Creates a new ColumnWidthChangeExtents object.
</summary>
<param name="firstColumn">First column of the contiguous selection </param>
<param name="lastColumn">Last column of the contiguous selection </param>
</member>
<member name="P:FarPoint.Win.Spread.ColumnWidthChangeExtents.FirstColumn">
<summary>
Gets the index of the first column in the contiguous selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnWidthChangeExtents.LastColumn">
<summary>
Gets the index of the last column in the contiguous selection.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ColumnWidthChangedEventArgs">
<summary>
Represents the event data for the ColumnWidthChanged event for the FarPoint Spread component,
which occurs when the width of a column has changed.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ColumnWidthChangedEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Collections.ArrayList,System.Boolean)">
<summary>
Creates a new object with the ColumnWidthChanged event arguments.
</summary>
<param name="view">View (Spreadview object) that contains the columns that have changed</param>
<param name="columnList">Array list of the columns whose widths have changed</param>
<param name="header">Whether to include header</param>
</member>
<member name="P:FarPoint.Win.Spread.ColumnWidthChangedEventArgs.View">
<summary>
Gets the view that contains the columns whose widths have changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnWidthChangedEventArgs.ColumnList">
<summary>
Gets the list of columns whose widths have changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnWidthChangedEventArgs.Header">
<summary>
Gets whether the column indexes are row header columns.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ColumnWidthChangedEventHandler">
<summary>
Represents a defined method that handles the ColumnWidthChanged event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.RowViewportHeightChangedEventArgs">
<summary>
Represents the event data for the RowViewportHeightChanged event for the FarPoint Spread component,
which occurs when the height of a viewport row has changed.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RowViewportHeightChangedEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32,System.Int32)">
<summary>
Creates a new object with the RowViewportHeightChanged event arguments.
</summary>
<param name="view">View that contains the viewport whose height has changed</param>
<param name="viewportIndex">Index of the viewport row whose height has changed</param>
<param name="viewportHeight">Height of the viewport row whose height has changed</param>
</member>
<member name="P:FarPoint.Win.Spread.RowViewportHeightChangedEventArgs.View">
<summary>
Gets the view that contains the viewport row whose height has changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowViewportHeightChangedEventArgs.ViewportIndex">
<summary>
Gets the index of the viewport row whose height has changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RowViewportHeightChangedEventArgs.ViewportHeight">
<summary>
Gets the height of the viewport row whose height has changed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.RowViewportHeightChangedEventHandler">
<summary>
Represents a defined method that handles the RowViewportHeightChanged event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.ColumnViewportWidthChangedEventArgs">
<summary>
Represents the event data for the ColumnViewportWidthChanged event for the FarPoint Spread component,
which occurs when the width of a viewport column has changed.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ColumnViewportWidthChangedEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32,System.Int32)">
<summary>
Creates a new object with the ColumnViewportWidthChanged event arguments.
</summary>
<param name="view">Spreadview object</param>
<param name="viewportIndex">Index of the viewport column that has changed</param>
<param name="viewportWidth">Width of the viewport column that has changed</param>
</member>
<member name="P:FarPoint.Win.Spread.ColumnViewportWidthChangedEventArgs.View">
<summary>
Gets the view that contains the viewport column whose width has changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnViewportWidthChangedEventArgs.ViewportIndex">
<summary>
Gets the index of the viewport column whose width has changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ColumnViewportWidthChangedEventArgs.ViewportWidth">
<summary>
Gets the width of the viewport column whose width has changed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ColumnViewportWidthChangedEventHandler">
<summary>
Represents a defined method that handles the ColumnViewportWidthChanged event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.SelectionChangedEventArgs">
<summary>
Represents the event data for the SelectionChanged event for the FarPoint Spread component,
which occurs when the user has changed selecting another range of cells.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SelectionChangedEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,FarPoint.Win.Spread.Model.CellRange)">
<summary>
Creates a new object with the SelectionChanged event arguments.
</summary>
<param name="view">View that contains the selection </param>
<param name="cellRange">Range of cells encompassing the selection </param>
</member>
<member name="P:FarPoint.Win.Spread.SelectionChangedEventArgs.View">
<summary>
Gets the view that contain the selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SelectionChangedEventArgs.Range">
<summary>
Gets the range of cells encompassing the selection.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SelectionChangedEventHandler">
<summary>
Represents a defined method that handles the SelectionChanged events for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.SelectionChangingEventArgs">
<summary>
Represents the event data for the SelectionChanging event for the FarPoint Spread component,
which occurs when the user is selecting another range of cells.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SelectionChangingEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,FarPoint.Win.Spread.Model.CellRange,System.Int32,System.Int32)">
<summary>
Creates a new object with the SelectionChanging event arguments.
</summary>
<param name="view">View that contains the selection</param>
<param name="cellRange">Range of cells encompassing the selection</param>
<param name="currentRow">Row index of the cell that contains the pointer</param>
<param name="currentColumn">Column index of the cell that contains the pointer</param>
</member>
<member name="P:FarPoint.Win.Spread.SelectionChangingEventArgs.View">
<summary>
Gets the view that contains the selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SelectionChangingEventArgs.Range">
<summary>
Gets the range of cells encompassing the selection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SelectionChangingEventArgs.CurrentRow">
<summary>
Gets the row index of the cell that contains the mouse pointer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SelectionChangingEventArgs.CurrentColumn">
<summary>
Gets the column index of the cell that contains the mouse pointer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SelectionChangingEventArgs.Cancel">
<summary>
Gets or sets whether the selection action should be cancelled.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SelectionChangingEventHandler">
<summary>
Represents a defined method that handles the SelectionChanging events for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.EditorNotifyEventArgs">
<summary>
Represents the event data for the EditorNotify event for the component,
which occurs when the editor notifies the component of one of several changes.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.EditorNotifyEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Windows.Forms.Control,System.Int32,System.Int32)">
<summary>
Creates a new object with the EditorNotify event arguments.
</summary>
<param name="view">View that contains the cell with the editor that raised the event </param>
<param name="editingControl">Control that raised the event </param>
<param name="row">Row index of the cell with the editor that raised the event </param>
<param name="column">Column index of the cell with the editor that raised the event </param>
</member>
<member name="P:FarPoint.Win.Spread.EditorNotifyEventArgs.View">
<summary>
Gets the view that contains the cell with the editor that raised the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.EditorNotifyEventArgs.EditingControl">
<summary>
Gets the Control object that raises the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.EditorNotifyEventArgs.Row">
<summary>
Gets the row index of the cell with the editor that raised the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.EditorNotifyEventArgs.Column">
<summary>
Gets the column index of the cell with the editor that raised the event.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.EditorNotifyEventHandler">
<summary>
Represents a defined method that handles the ButtonClicked, ComboCloseUp,
ComboDropDown, ComboSelChange, and EditChange events for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.SubEditorClosedEventArgs">
<summary>
Represents the event data for the SubEditorClosed event for the FarPoint Spread component,
which occurs when the subeditor in a cell has closed.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SubEditorClosedEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Windows.Forms.Control,System.Windows.Forms.Control,System.Int32,System.Int32)">
<summary>
Creates a new object with the SubEditorClosed event arguments.
</summary>
<param name="view">View that contains the cell with the editor that raised the event </param>
<param name="editingControl">Parent of control that raised the event </param>
<param name="subEditor">Control that raised the event</param>
<param name="row">Row index of the cell with the editor that raised the event </param>
<param name="column">Column index of the cell with the editor that raised the event </param>
</member>
<member name="P:FarPoint.Win.Spread.SubEditorClosedEventArgs.View">
<summary>
Gets the view that contains the cell with the editor that raised the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SubEditorClosedEventArgs.EditingControl">
<summary>
Gets the parent of the control that raised the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SubEditorClosedEventArgs.SubEditor">
<summary>
Gets the Control object that raises the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SubEditorClosedEventArgs.Row">
<summary>
Gets the row index of the cell with the editor that raised the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SubEditorClosedEventArgs.Column">
<summary>
Gets the column index of the cell with the editor that raised the event.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SubEditorClosedEventHandler">
<summary>
Represents a defined method that handles the SubEditorClosed event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.SubEditorOpeningEventArgs">
<summary>
Represents the event data for the SubEditorOpening event in the FarPoint Spread component,
which occurs when the subeditor in a cell is opening.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SubEditorOpeningEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Windows.Forms.Control,System.Windows.Forms.Control,System.Int32,System.Int32)">
<summary>
Creates a new object with the SubEditorOpening event arguments.
</summary>
<param name="view">View that contains the cell with the editor that raised the event </param>
<param name="editingControl">Parent of control that raised the event </param>
<param name="subEditor">Control that raised the event</param>
<param name="row">Row index of the cell with the editor that raised the event </param>
<param name="column">Column index of the cell with the editor that raised the event </param>
</member>
<member name="P:FarPoint.Win.Spread.SubEditorOpeningEventArgs.View">
<summary>
Gets the view that contains the cell with the editor that raised the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SubEditorOpeningEventArgs.EditingControl">
<summary>
Gets the parent of the control that raised the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SubEditorOpeningEventArgs.SubEditor">
<summary>
Gets the Control object that raises the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SubEditorOpeningEventArgs.Row">
<summary>
Gets the row index of the cell with the editor that raised the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SubEditorOpeningEventArgs.Column">
<summary>
Gets the column index of the cell with the editor that raised the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SubEditorOpeningEventArgs.Cancel">
<summary>
Gets or sets whether to cancel the default processing of opening a subeditor.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SubEditorOpeningEventHandler">
<summary>
Represents a defined method that handles the SubEditorOpening event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.ChildWorkbookCreatedEventArgs">
<summary>
Represents the event data for a ChildWorkbookCreated event for the FarPoint Spread component,
which occurs when a child sheet is created in a hierarchical spreadsheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ChildWorkbookCreatedEventArgs.#ctor(FarPoint.Win.Spread.SpreadView)">
<summary>
Creates a new object with the ChildWorkbookCreated event arguments.
</summary>
<param name="spreadView">Child workbook (Spreadview object) being created</param>
</member>
<member name="P:FarPoint.Win.Spread.ChildWorkbookCreatedEventArgs.Workbook">
<summary>
Gets the child SpreadView object being created.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ChildWorkbookCreatedEventHandler">
<summary>
Represents a defined method that handles the ChildWorkbookCreated event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.PreviewRowFetchEventArgs">
<summary>
Represents the event data for the PreviewRowFetch event for the FarPoint Spread component,
which occurs when the user format preview row content.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PreviewRowFetchEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32,System.String)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.PreviewRowFetchEventArgs"/> class.
</summary>
<param name="spreadView">The SpreadView.</param>
<param name="row">The row index.</param>
<param name="previewRowContent">The preview row content.</param>
</member>
<member name="P:FarPoint.Win.Spread.PreviewRowFetchEventArgs.View">
<summary>
Gets the view that contains the preview row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PreviewRowFetchEventArgs.Row">
<summary>
Gets the row index of the preview row belong to.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PreviewRowFetchEventArgs.PreviewRowContent">
<summary>
Gets or Sets the content of the preview row.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PreviewRowFetchEventHandler">
<summary>
Represents a defined method that handles the PreviewRowFetch event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.EditError">
<summary>
Specifies the possible editor messages based on user action.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.EditError.CellIsLocked">
<summary>
[1] Indicates the user attempted to interact with a locked cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.EditError.ColumnRestricted">
<summary>
Indicates the user attempted to move the focus to a restricted column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.EditError.RowRestricted">
<summary>
Indicates the user attempted to move the focus to a restricted row.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.EditError.ColumnAndRowRestricted">
<summary>
Indicates the user attempted to move the focus to a cell
that is located in both a restricted row and column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.EditError.InvalidCellData">
<summary>
Indicates the current inputing value in editor is invalid
</summary>
</member>
<member name="F:FarPoint.Win.Spread.EditError.TypedInCheckbox">
<summary>
Indicates the user attempted to type in a check box cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.EditError.InvalidCellFormula">
<summary>
Indicates the user typed an invalid formula into a cell
(sent when the user left the cell).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.EditError.InvalidHyperlink">
<summary>
Indicates the user clicked a link that is invalid.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.EditError.InvalidCellValue">
<summary>
Indicates the user typed invalid data into a cell
(sent when the user left the cell).
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ChildControlEventArgs">
<summary>
Represents the event data for the child control related events for the FarPoint Spread component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ChildControlEventArgs.#ctor(System.Windows.Forms.Control)">
<summary>
Creates a new object with the ChildControl event arguments.
</summary>
<param name="childControl">Child control</param>
</member>
<member name="P:FarPoint.Win.Spread.ChildControlEventArgs.ChildControl">
<summary>
Gets the child control for the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ChildControlEventArgs.Cancel">
<summary>
Gets or sets whether to cancel the event action.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ChildControlEventHandler">
<summary>
Represents a defined method that handles the child control related events for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.HitTestType">
<summary>
Specifies the locations in the component for the HitTest method.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HitTestType.Empty">
<summary>
Specifies an empty location
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HitTestType.Corner">
<summary>
Specifies that the location is in the upper left sheet corner of a workbook
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HitTestType.TabStrip">
<summary>
Specifies that the location is in the sheet name tab area of the component
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HitTestType.RowHeader">
<summary>
Specifies that the location is in the row header area of the component
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HitTestType.ColumnHeader">
<summary>
Specifies that the location is in the column header area of the component
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HitTestType.ColumnFooter">
<summary>
Specifies that the location is in the column footer area of the component
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HitTestType.Viewport">
<summary>
Specifies that the location is in a viewport of the data area of the component
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HitTestType.RowSplitBar">
<summary>
Specifies that the location is in the row splitter bar area of the component
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HitTestType.ColumnSplitBar">
<summary>
Specifies that the location is in the column splitter bar area of the component
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HitTestType.RowSplitBox">
<summary>
Specifies that the location is in the row split box of the component
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HitTestType.ColumnSplitBox">
<summary>
Specifies that the location is in the column split box of the component
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HitTestType.TabSplitBox">
<summary>
Specifies that the location is in the tab split box of the component
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HitTestType.HorizontalScrollBar">
<summary>
Specifies that the location is in the horizontal scroll bar of the component
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HitTestType.VerticalScrollBar">
<summary>
Specifies that the location is in the vertical scroll bar of the component
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HitTestType.RangeGroup">
<summary>
Specifies that the location is in the outline (range group) area of the component
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HitTestType.TitleBar">
<summary>
Specifies that the location is in titles bar
</summary>
</member>
<member name="T:FarPoint.Win.Spread.TabStripHitTestInformation">
<summary>
Represents hit test information for the tab strip of the spreadsheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.TabStripHitTestInformation.#ctor">
<summary>
Creates a new hit test information for the tab strip of the spreadsheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TabStripHitTestInformation.Sheet">
<summary>
Returns the sheet given location refers to
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TabStripHitTestInformation.Button">
<summary>
Returns the tab strip button location refers to
</summary>
</member>
<member name="T:FarPoint.Win.Spread.TitlebarHitTestInformation">
<summary>
Represents hit test information for the Title and Subtitle.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.TitlebarHitTestInformation.#ctor">
<summary>
Creates a new instance of the <see cref="T:FarPoint.Win.Spread.TitlebarHitTestInformation"/> class.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TitlebarHitTestInformation.InTitle">
<summary>
Gets whether the location refers to title area.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TitlebarHitTestInformation.InSubtitle">
<summary>
Gets whether the location refers to subtitle area.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.RangeGroupHitTestInformation">
<summary>
Represents hit test information for the outline (range group) of the spreadsheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupHitTestInformation.#ctor">
<summary>
Initializes a new instance of the <see cref="T:RangeGroupHitTestInformation"/> class.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupHitTestInformation.InCorner">
<summary>
Gets whether the location refers to an outline (range group) corner area.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupHitTestInformation.InRowBar">
<summary>
Gets whether the location refers to an outline (range group) row bar area.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupHitTestInformation.InColumnBar">
<summary>
Gets whether the location refers to an outline (range group) column bar area.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupHitTestInformation.InRowPanel">
<summary>
Gets whether the location refers to an outline (range group) row panel area.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupHitTestInformation.InColumnPanel">
<summary>
Gets whether the location refers to an outline (range group) column panel area.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupHitTestInformation.RowLevel">
<summary>
Gets the row level location referred to in an outline (range group).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupHitTestInformation.RowIndex">
<summary>
Gets the row location referred to in an outline (range group).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupHitTestInformation.ColumnLevel">
<summary>
Gets the column level location referred to in an outline (range group).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupHitTestInformation.ColumnIndex">
<summary>
Gets the column location referred to in an outline (range group).
</summary>
</member>
<member name="T:FarPoint.Win.Spread.HeaderHitTestInformation">
<summary>
Represents hit test information for the headers of the spreadsheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.HeaderHitTestInformation.#ctor">
<summary>
Creates a new set of header hit test information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HeaderHitTestInformation.InRowResize">
<summary>
Gets whether the location refers to a row resize area.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HeaderHitTestInformation.InColumnResize">
<summary>
Gets whether the location refers to a column resize area.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HeaderHitTestInformation.InFilter">
<summary>
Gets whether the location refers to a filter button.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HeaderHitTestInformation.InSort">
<summary>
Gets whether the location refers to the sort button.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HeaderHitTestInformation.InRowExpansion">
<summary>
Gets whether the location refers to the row expand button.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HeaderHitTestInformation.InNoteIndicator">
<summary>
Gets whether the location refers to a note indicator.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HeaderHitTestInformation.InNote">
<summary>
Gets whether the location refers to a sticky note.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HeaderHitTestInformation.Row">
<summary>
Gets the row location referred to in the header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HeaderHitTestInformation.Column">
<summary>
Gets the column location referred to in the header.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HeaderHitTestInformation.ResizingRow">
<summary>
Gets the row being resized, if InRowResize is true.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HeaderHitTestInformation.ResizingColumn">
<summary>
Gets the column being resized, if InColumnResize is true.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ViewportHitTestInformation">
<summary>
Represents hit test information for the viewports of the spreadsheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ViewportHitTestInformation.#ctor">
<summary>
Creates a new set of viewport hit test information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ViewportHitTestInformation.InDragFill">
<summary>
Gets whether the location refers to a drag fill area.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ViewportHitTestInformation.InDragDrop">
<summary>
Gets whether the location refers to a drag drop area.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ViewportHitTestInformation.InNoteIndicator">
<summary>
Gets whether the location refers to a note indicator area.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ViewportHitTestInformation.InNote">
<summary>
Gets whether the location refers to a sticky note.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ViewportHitTestInformation.InShape">
<summary>
Gets whether the location refers to a shape.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ViewportHitTestInformation.InReservedLocation">
<summary>
Gets whether the location refers to a reserved location for a cell.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ViewportHitTestInformation.Row">
<summary>
Gets the row location referred to in the viewport.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ViewportHitTestInformation.Column">
<summary>
Gets the column location referred to in the viewport.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.HitTestInformation">
<summary>
Represents hit test information for the data area of the spreadsheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.HitTestInformation.#ctor">
<summary>
Creates a new set of hit test information.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HitTestInformation.RowViewport">
<summary>
Gets the row viewport referred to in the spreadsheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HitTestInformation.ColumnViewport">
<summary>
Gets the column viewport referred to in the spreadsheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HitTestInformation.Type">
<summary>
Gets the general area referred to in the spreadsheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HitTestInformation.TabStripInfo">
<summary>
Gets more detailed hit test information for the tab strip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HitTestInformation.HeaderInfo">
<summary>
Gets more detailed hit test information for the headers (column headers, row headers, and corner).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HitTestInformation.ViewportInfo">
<summary>
Gets more detailed hit test information for the viewport.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HitTestInformation.RangeGroupInfo">
<summary>
Gets more detailed hit test information for the range group.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HitTestInformation.TitleBarInfo">
<summary>
Gets more detailed hit test information for the title bar.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ErrorEventArgs">
<summary>
Represents the event data for the Error event for the FarPoint Spread component,
which occurs when errors are generated by user interaction.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ErrorEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Boolean,FarPoint.Win.Spread.EditError,System.Int32,System.Int32,System.String,System.Exception)">
<summary>
Creates a new object with the Error event arguments.
</summary>
<param name="view">View that contains the cell with the editor that raised the event</param>
<param name="isEditError">Whether the error occured in the editing of the control</param>
<param name="editError">Type of edit error</param>
<param name="row">Row index of the cell with the editor that raised the event</param>
<param name="column">Column index of the cell with the editor that raised the event</param>
<param name="errorMessage">Text describing the error</param>
<param name="exception">Exception being thrown</param>
</member>
<member name="P:FarPoint.Win.Spread.ErrorEventArgs.View">
<summary>
Gets the view that contains the cell with the editor that raised the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ErrorEventArgs.EditError">
<summary>
Gets the type of edit error.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ErrorEventArgs.IsEditError">
<summary>
Determines whether the error is an editing error.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ErrorEventArgs.Row">
<summary>
Gets the row index of the cell with the editor that raised the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ErrorEventArgs.Column">
<summary>
Gets the column index of the cell with the editor that raised the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ErrorEventArgs.ErrorMessage">
<summary>
Gets the text description of the error.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ErrorEventArgs.Exception">
<summary>
Gets the exception thrown by the error.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ErrorEventArgs.Cancel">
<summary>
Gets or sets whether to cancel default processing and throw exceptions or EditError event.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ErrorEventHandler">
<summary>
Represents a defined method that handles the Error events for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.EditErrorEventArgs">
<summary>
Represents the event data for the EditError event for the FarPoint Spread component,
which occurs when errors are generated when using the editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.EditErrorEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,FarPoint.Win.Spread.EditError,System.Int32,System.Int32)">
<summary>
Creates a new object with the EditError event arguments.
</summary>
<param name="view">View that contains the cell with the editor that raised the event</param>
<param name="editError">Type of edit error</param>
<param name="row">Row index of the cell with the editor that raised the event</param>
<param name="column">Column index of the cell with the editor that raised the event</param>
</member>
<member name="P:FarPoint.Win.Spread.EditErrorEventArgs.View">
<summary>
Gets the view that contains the cell with the editor that raised the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.EditErrorEventArgs.EditError">
<summary>
Gets the type of edit error.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.EditErrorEventArgs.Row">
<summary>
Gets the row index of the cell with the editor that raised the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.EditErrorEventArgs.Column">
<summary>
Gets the column index of the cell with the editor that raised the event.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.EditErrorEventHandler">
<summary>
Represents a defined method that handles the EditError events for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.ExpandEventArgs">
<summary>
Represents the event data for the Expand event for the FarPoint Spread component,
which occurs when the hierarchy display is being expanded (showing child sheet views).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ExpandEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Boolean,System.Int32)">
<summary>
Creates a new object with the Expand event arguments.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ExpandEventArgs.View">
<summary>
Gets the view that contains the row to expand or collapse.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ExpandEventArgs.Expand">
<summary>
Gets whether the row is going to be expanded.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ExpandEventArgs.Row">
<summary>
Gets the row to expand or collapse.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ExpandEventHandler">
<summary>
Represents a defined method that handles the Expand event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.LeaveCellEventArgs">
<summary>
Represents the event data for the LeaveCell event for the FarPoint Spread component,
which occurs when the focus leaves a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.LeaveCellEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a new object with the LeaveCell event arguments.
</summary>
<param name="view">View with the cell being left</param>
<param name="row">Row index of the cell being left</param>
<param name="column">Column index of the cell being left</param>
<param name="newRow">Row index of the cell being entered</param>
<param name="newColumn">Column index of the cell being entered</param>
</member>
<member name="P:FarPoint.Win.Spread.LeaveCellEventArgs.Column">
<summary>
Gets the column index of the cell being left.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.LeaveCellEventArgs.Row">
<summary>
Gets the row index index of the cell being left.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.LeaveCellEventArgs.NewColumn">
<summary>
Gets the column index of the cell being entered.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.LeaveCellEventArgs.NewRow">
<summary>
Gets the row index of the cell being entered.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.LeaveCellEventArgs.Cancel">
<summary>
Gets or sets whether to cancel the cell navigation.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.LeaveCellEventHandler">
<summary>
Represents a defined method that handles the LeaveCell event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.EnterCellEventArgs">
<summary>
Represents the event data for the EnterCell event for the FarPoint Spread component,
which occurs when the focus enters a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.EnterCellEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32,System.Int32)">
<summary>
Creates a new object with the EnterCell event arguments.
</summary>
<param name="view">View that contains the cell being entered</param>
<param name="row">Row index of the cell being entered</param>
<param name="column">Column index of the cell being entered</param>
</member>
<member name="P:FarPoint.Win.Spread.EnterCellEventArgs.View">
<summary>
Gets the view that contains the cell being entered.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.EnterCellEventArgs.Column">
<summary>
Gets the column index of the cell being entered.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.EnterCellEventArgs.Row">
<summary>
Gets the row index of the cell being entered.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.EnterCellEventHandler">
<summary>
Represents a defined method that handles the EnterCell event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.AnnotationModeEventArgs">
<summary>
Represents the event data for the AnnotationMode events for the FarPoint Spread component,
which allows the user to be notified when annotation mode is starting and ending.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AnnotationModeEventArgs.#ctor(System.Windows.Forms.Control)">
<summary>
Creates a new object with the AnnotationMode event arguments.
</summary>
<param name="drawingSurface">Control that represents the drawing surface </param>
</member>
<member name="P:FarPoint.Win.Spread.AnnotationModeEventArgs.DrawingSurface">
<summary>
Gets the drawing surface control.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.AnnotationModeStartingEventHandler">
<summary>
Represents a defined method that handles the AnnotationModeStarting event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.AnnotationModeEndingEventHandler">
<summary>
Represents a defined method that handles the AnnotationModeEnding event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.HyperLinkClickedEventArgs">
<summary>
Represents the event data for the HyperLinkClicked event for the component,
which occurs when the hyper link cell is clicked.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.HyperLinkClickedEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Windows.Forms.Control,System.Int32,System.Int32,System.Int32,System.String)">
<summary>
Creates a new object with the ActiveSheetChanging event arguments.
</summary>
<param name="view">the view that contains the cell with the editor that raised the event.</param>
<param name="editingControl">The Control object that raises the event.</param>
<param name="row">The row index of the cell with the editor that raised the event.</param>
<param name="column">The column index of the cell with the editor that raised the event.</param>
<param name="linkIndex">The index of the link clicked.</param>
<param name="link">The link.</param>
</member>
<member name="P:FarPoint.Win.Spread.HyperLinkClickedEventArgs.View">
<summary>
Gets the view that contains the cell with the editor that raised the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HyperLinkClickedEventArgs.EditingControl">
<summary>
Gets the Control object that raises the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HyperLinkClickedEventArgs.Row">
<summary>
Gets the row index of the cell with the editor that raised the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HyperLinkClickedEventArgs.Column">
<summary>
Gets the column index of the cell with the editor that raised the event.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HyperLinkClickedEventArgs.LinkIndex">
<summary>
Gets or sets the index of the link clicked.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.HyperLinkClickedEventArgs.Link">
<summary>
Gets or sets the link.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.HyperLinkClickedEventHandler">
<summary>
Represents a defined method that handles the HyperLinkClicked event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.PrintPreviewShowingEventArgs">
<summary>
Represents the event data for the PrintPreviewShowing event for the FarPoint Spread component,
which occurs before the print preview dialog appears.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PrintPreviewShowingEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Windows.Forms.PrintPreviewDialog,System.Windows.Forms.PrintPreviewControl)">
<summary>
Creates a new object with the PrintPreviewShowing event arguments.
</summary>
<param name="view">View that contains the sheet being printed</param>
<param name="ppd">Print preview dialog</param>
<param name="ppc">Print preview dialog control</param>
</member>
<member name="P:FarPoint.Win.Spread.PrintPreviewShowingEventArgs.PreviewDialog">
<summary>
Gets the print preview dialog to be displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintPreviewShowingEventArgs.PreviewControl">
<summary>
Gets the control associated with the print preview dialog.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintPreviewShowingEventArgs.Cancel">
<summary>
Gets or sets whether to cancel the print preview.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PrintPreviewShowingEventHandler">
<summary>
Represents a defined method that handles the PrintPreviewShowing event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.PrintMessageBoxEventArgs">
<summary>
Represents the event data for the PrintMessageBox event for the FarPoint Spread component,
which occurs when the print message box is to be displayed.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PrintMessageBoxEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.String,System.Int32,System.Boolean)">
<summary>
Creates a new object with the PrintMessageBox event arguments.
</summary>
<param name="view">View that contains the sheet being printed</param>
<param name="abortMessage">Value of the PrintInfo.AbortMessage property for this sheet</param>
<param name="id">Print job identifier</param>
<param name="beginPrinting">Whether the print job is beginning</param>
</member>
<member name="P:FarPoint.Win.Spread.PrintMessageBoxEventArgs.AbortMessage">
<summary>
Gets the message displayed if the print job is canceled.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintMessageBoxEventArgs.Id">
<summary>
Gets the print job identifier.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintMessageBoxEventArgs.BeginPrinting">
<summary>
Gets whether the print job is beginning or ending.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintMessageBoxEventArgs.Cancel">
<summary>
Gets or sets whether to cancel the default abort message box.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PrintMessageBoxEventHandler">
<summary>
Represents a defined method that handles the PrintMessageBox event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.PrintAbortEventArgs">
<summary>
Represents the event data for the PrintAbort event for the FarPoint Spread component,
which allows the user to discontinue the printing at any time during a print job.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PrintAbortEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Boolean)">
<summary>
Creates a new object with the PrintAbort event arguments.
</summary>
<param name="view">View that contains the sheet being printed </param>
<param name="abort">Whether to discontinue the print job </param>
</member>
<member name="P:FarPoint.Win.Spread.PrintAbortEventArgs.Abort">
<summary>
Gets or sets whether to discontinue the print job.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PrintAbortEventHandler">
<summary>
Represents a defined method that handles the PrintAbort event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.PaintGrayAreaEventArgs">
<summary>
Represents the event data for the PaintGrayArea event for the FarPoint Spread component
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PaintGrayAreaEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Creates a new object with the PaintGrayArea event arguments.
</summary>
<param name="view">View that contains the sheet</param>
<param name="g">Graphics device</param>
<param name="drawRectangle">Rectangle area representing the background</param>
</member>
<member name="P:FarPoint.Win.Spread.PaintGrayAreaEventArgs.Graphics">
<summary>
Gets or sets the graphics device that handles the gray area.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PaintGrayAreaEventArgs.DrawRectangle">
<summary>
Gets or sets the rectangle area representing the gray area.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PaintGrayAreaEventHandler">
<summary>
Represents a defined method that handles the PaintBackground event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.PaintTabStripEventArgs">
<summary>
Represents the event data for the PaintTabStrip event for the FarPoint Spread component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PaintTabStripEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Creates a new object with the PaintTabStrip event arguments.
</summary>
<param name="view">View that contains the sheet</param>
<param name="g">Graphics device</param>
<param name="tabStripRectangle">Rectangle area representing the tab strip</param>
</member>
<member name="P:FarPoint.Win.Spread.PaintTabStripEventArgs.Graphics">
<summary>
Gets the graphics device that handles the tab.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PaintTabStripEventArgs.TabStripRectangle">
<summary>
Gets the rectangle area representing the tab.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PaintTabStripEventHandler">
<summary>
Represents a defined method that handles the PaintTabStrip event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.PaintTabStripTabEventArgs">
<summary>
Represents the event data for the PaintTabStripTab event for the FarPoint Spread component
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PaintTabStripTabEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Drawing.Graphics,System.Int32,System.Drawing.Rectangle,System.Drawing.Drawing2D.GraphicsPath)">
<summary>
Creates a new object with the PaintTabStripTab event arguments.
</summary>
<param name="view">View that contains the sheet</param>
<param name="g">Graphics device</param>
<param name="tabIndex">Index of the tab</param>
<param name="tabRectangle">Rectangle area representing the tab</param>
<param name="tabPath">Outline around the tab</param>
</member>
<member name="P:FarPoint.Win.Spread.PaintTabStripTabEventArgs.Graphics">
<summary>
Gets the graphics device that handles the tab.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PaintTabStripTabEventArgs.TabRectangle">
<summary>
Gets the rectangle area representing the tab.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PaintTabStripTabEventArgs.TabIndex">
<summary>
Gets the index of the tab to be painted.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PaintTabStripTabEventArgs.TabPath">
<summary>
Gets the outline of the tab.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PaintTabStripTabEventArgs.Cancel">
<summary>
Gets or sets the cancel flag.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PaintTabStripTabEventHandler">
<summary>
Represents a defined method that handles the PaintTabStripTab event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.PaintTabStripButtonEventArgs">
<summary>
Represents the event data for the PaintTabStripButton event for the FarPoint Spread component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PaintTabStripButtonEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Drawing.Graphics,System.Drawing.Rectangle,FarPoint.Win.Spread.TabStripButton,System.Boolean)">
<summary>
Creates a new object with the PaintTabStrip event arguments.
</summary>
<param name="view">View that contains the sheet</param>
<param name="g">Graphics device</param>
<param name="buttonRectangle">Rectangle area representing the tab</param>
<param name="tabButton">TabStripButton to paint</param>
<param name="pressed">Specifies whether button is pressed</param>
</member>
<member name="P:FarPoint.Win.Spread.PaintTabStripButtonEventArgs.Graphics">
<summary>
Gets the graphics device that handles the tab button.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PaintTabStripButtonEventArgs.ButtonRectangle">
<summary>
Gets the rectangle area representing the tab button.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PaintTabStripButtonEventArgs.TabButton">
<summary>
Gets the tab button to paint.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PaintTabStripButtonEventArgs.Pressed">
<summary>
Gets or sets whether the tab button is pressed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PaintTabStripButtonEventArgs.Cancel">
<summary>
Gets or sets the cancel flag.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PaintTabStripButtonEventHandler">
<summary>
Represents a defined method that handles the PaintTabStrip event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.PrintBackgroundEventArgs">
<summary>
Represents the event data for the PrintBackground event for the FarPoint Spread component,
which occurs when the background is printing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PrintBackgroundEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32)">
<summary>
Creates a new object with the PrintBackground event arguments.
</summary>
<param name="view">View that contains the sheet being printed</param>
<param name="g">Graphics device that handles printing</param>
<param name="sheetRectangle">Rectangle area representing the area of the sheet to be printed</param>
<param name="pageNum">Number of the current page being printed</param>
</member>
<member name="P:FarPoint.Win.Spread.PrintBackgroundEventArgs.Graphics">
<summary>
Gets or sets the graphics device that does the printing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintBackgroundEventArgs.SheetRectangle">
<summary>
Gets or sets the rectangle area representing the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintBackgroundEventArgs.PageNumber">
<summary>
Gets or sets the current page being printed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PrintBackgroundEventHandler">
<summary>
Represents a defined method that handles the PrintBackground event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.PrintCancelledEventArgs">
<summary>
Represents the event data for the PrintCancelled event for the FarPoint Spread component,
which occurs when the printing is discontinued by the user.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PrintCancelledEventArgs.#ctor(FarPoint.Win.Spread.SpreadView)">
<summary>
Creates a new object with the PrintCancelled event arguments.
</summary>
<param name="view">View that contains the sheet being printed </param>
</member>
<member name="T:FarPoint.Win.Spread.PrintCancelledEventHandler">
<summary>
Represents a defined method that handles the PrintCancelled event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.PrintHeaderFooterAreaEventArgs">
<summary>
Represents the event data for the PrintHeaderFooterArea event for the FarPoint Spread component,
which occurs when the background is printing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.PrintHeaderFooterAreaEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Drawing.Graphics,System.Boolean,System.Drawing.Rectangle,System.Int32,FarPoint.Win.Spread.Model.CellRange)">
<summary>
Creates a new object with the PrintBackground event arguments.
</summary>
<param name="view">View that contains the sheet being printed</param>
<param name="g">Graphics device that handles printing</param>
<param name="isHeader">Determines if the area being printed in the header or footer</param>
<param name="rectangle">Rectangle area representing the area of the sheet to be printed</param>
<param name="pageNum">Number of the current page being printed</param>
<param name="cells">Cell range</param>
</member>
<member name="P:FarPoint.Win.Spread.PrintHeaderFooterAreaEventArgs.Cancel">
<summary>
Gets or sets the cancel flag.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintHeaderFooterAreaEventArgs.Graphics">
<summary>
Gets or sets the graphics device that does the printing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintHeaderFooterAreaEventArgs.Rectangle">
<summary>
Gets or sets the rectangle area representing the sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintHeaderFooterAreaEventArgs.PageNumber">
<summary>
Gets or sets the current page being printed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintHeaderFooterAreaEventArgs.Cells">
<summary>
Returns the range of cells being printed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.PrintHeaderFooterAreaEventArgs.IsHeader">
<summary>
Gets whether we are printing the header or footer.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.PrintHeaderFooterAreaEventHandler">
<summary>
Represents a defined method that handles the PrintHeaderFooterArea event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.ChangeEventArgs">
<summary>
Represents the event data for the Change event for the FarPoint Spread component,
which occurs when a cell changes.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ChangeEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32,System.Int32)">
<summary>
Creates a new object with the Change event arguments.
</summary>
<param name="view">Spreadview object that contain the cell that is changed</param>
<param name="row">Row index of the cell that is changed</param>
<param name="column">Column index of the cell that is changed</param>
</member>
<member name="P:FarPoint.Win.Spread.ChangeEventArgs.View">
<summary>
Gets the view that contains the cell that is changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ChangeEventArgs.Row">
<summary>
Gets the row index of the cell that is changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.ChangeEventArgs.Column">
<summary>
Gets the column index of the cell that is changed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ChangeEventHandler">
<summary>
Represents a defined method that handles the Change event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.UserFormulaEnteredEventArgs">
<summary>
Represents the event data for the UserFormulaEntered event for the FarPoint Spread component,
which occurs when the user has entered a formula in a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UserFormulaEnteredEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32,System.Int32)">
<summary>
Creates a new object with the UserFormulaEntered event arguments.
</summary>
<param name="view">View that contains the entering of a formula</param>
<param name="row">Row index of the cell in which user entered a formula</param>
<param name="column">Column index of the cell in which user entered a formula</param>
</member>
<member name="P:FarPoint.Win.Spread.UserFormulaEnteredEventArgs.View">
<summary>
Gets the main view in which the user entered a formula.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.UserFormulaEnteredEventArgs.Row">
<summary>
Gets the row index of the cell in which user entered a formula.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.UserFormulaEnteredEventArgs.Column">
<summary>
Gets the column index of the cell in which user entered a formula.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.UserFormulaEnteredEventHandler">
<summary>
Represents a defined method that handles the UserFormulaEntered event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.ViewportInfo">
<summary>
Represents the information about the location and size of a viewport.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SearchFoundFlags">
<summary>
Specifies where the search string is found.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SearchFoundFlags.Error">
<summary>
[0] Indicates an error has occured due to an invalid argument
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SearchFoundFlags.CellText">
<summary>
[1] Indicates that the string is found in the cell text
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SearchFoundFlags.CellNote">
<summary>
[2] Indicates that the string is found in the cell note
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SearchFoundFlags.CellTag">
<summary>
[4] Indicates that the string is found in the cell tag
</summary>
</member>
<member name="T:FarPoint.Win.Spread.AutoSortingColumnEventHandler">
<summary>
Represents a defined method that handles the AutoSortingColumn event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.AutoSortingColumnEventArgs">
<summary>
Represents the event data for the AutoSortingColumn event for the FarPoint Spread component,
which occurs when columns are being automatically sorted.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AutoSortingColumnEventArgs.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new object with the AutoSortingColumn event arguments.
</summary>
<param name="sheetView">Sheet (SheetView object) to be automatically sorted</param>
<param name="column">Index of the column to be used as the key for automatic sort</param>
<param name="ascending">Whether the automatic sort is ascending</param>
<param name="showIndicator">Whether to display the sort indicator</param>
</member>
<member name="M:FarPoint.Win.Spread.AutoSortingColumnEventArgs.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Creates a new object with the AutoSortingColumn event arguments.
</summary>
<param name="sheetView">Sheet (SheetView object) to be automatically sorted</param>
<param name="column">Index of the column to be used as the key for automatic sort</param>
<param name="ascending">Whether the automatic sort is ascending</param>
<param name="showIndicator">Whether to display the sort indicator</param>
<param name="sortFrozenRows">Whether frozen rows sort</param>
<param name="sortTrailingFrozenRows">Whether trailing frozen rows sort</param>
</member>
<member name="P:FarPoint.Win.Spread.AutoSortingColumnEventArgs.Ascending">
<summary>
Gets or sets whether the automatic sort is ascending.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AutoSortingColumnEventArgs.Cancel">
<summary>
Gets or sets whether to cancel the default processing of automatically sorting columns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AutoSortingColumnEventArgs.Column">
<summary>
Gets the index of the column to be automatically sorted.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AutoSortingColumnEventArgs.Sheet">
<summary>
Gets the sheet whose rows are to be automatically sorted.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AutoSortingColumnEventArgs.ShowIndicator">
<summary>
Gets whether the sort indicator is displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AutoSortingColumnEventArgs.SortFrozenRows">
<summary>
Gets or sets whether frozen rows sort
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AutoSortingColumnEventArgs.SortTrailingFrozenRows">
<summary>
Gets or sets whether trailing frozen rows sort
</summary>
</member>
<member name="T:FarPoint.Win.Spread.AutoSortedColumnEventHandler">
<summary>
Represents a defined method that handles the AutoSortedColumn event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.AutoSortedColumnEventArgs">
<summary>
Represents the event data for the AutoSortedColumn event for the FarPoint Spread component,
which occurs when the column has been automatically sorted.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AutoSortedColumnEventArgs.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new object with the AutoSortedColumn event arguments.
</summary>
<param name="sheetView">Sheet (SheetView object) that was automatically sorted</param>
<param name="column">Index of the column that was used as the key column for the automatic sort</param>
<param name="ascending">Whether the automatic sort was ascending</param>
<param name="showIndicator">Whether the sort indicator was displayed</param>
</member>
<member name="P:FarPoint.Win.Spread.AutoSortedColumnEventArgs.Ascending">
<summary>
Gets whether the automatic sort was ascending.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AutoSortedColumnEventArgs.Column">
<summary>
Gets the index of the column that was automatically sorted.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AutoSortedColumnEventArgs.Sheet">
<summary>
Gets the sheet whose rows were just automatically sorted.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AutoSortedColumnEventArgs.ShowIndicator">
<summary>
Gets whether the sort indicator was displayed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.AutoFilteringColumnEventHandler">
<summary>
Represents a defined method that handles the AutoFilteringColumn event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.AutoFilteringColumnEventArgs">
<summary>
Represents the event data for the AutoFilteringColumn event for the FarPoint Spread component,
which occurs when columns are being automatically filtered.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AutoFilteringColumnEventArgs.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.String)">
<summary>
Creates a new object with the AutoFilteringColumn event arguments.
</summary>
<param name="sheetView">Sheet (SheetView object) to be automatically sorted</param>
<param name="column">Index of the column to be used</param>
<param name="filterString">String to be used to filter the column</param>
</member>
<member name="P:FarPoint.Win.Spread.AutoFilteringColumnEventArgs.FilterString">
<summary>
Gets or sets the string to filter the column by.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AutoFilteringColumnEventArgs.Cancel">
<summary>
Gets or sets whether to cancel the default processing of automatically filtering columns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AutoFilteringColumnEventArgs.Column">
<summary>
Gets the index of the column to be automatically filtered.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AutoFilteringColumnEventArgs.Sheet">
<summary>
Gets the sheet whose rows are to be automatically filtered.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.AutoFilteredColumnEventHandler">
<summary>
Represents a defined method that handles the AutoFilteredColumn event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.AutoFilteredColumnEventArgs">
<summary>
Represents the event data for the AutoFilteredColumn event for the FarPoint Spread component,
which occurs when the column has been automatically filtered.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.AutoFilteredColumnEventArgs.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.String)">
<summary>
Creates a new object with the AutoFilteredColumn event arguments.
</summary>
<param name="sheetView">Sheet (SheetView object) that was automatically filtered</param>
<param name="column">Index of the column that was automatically filtered</param>
<param name="filterString">String to be used to filter the column</param>
</member>
<member name="P:FarPoint.Win.Spread.AutoFilteredColumnEventArgs.FilterString">
<summary>
Gets the string the column was filtered by.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AutoFilteredColumnEventArgs.Column">
<summary>
Gets the index of the column that was automatically filtered.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.AutoFilteredColumnEventArgs.Sheet">
<summary>
Gets the sheet whose rows were just automatically filtered.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DataColumnConfigureEventHandler">
<summary>
Represents a defined method that handles the DataColumnConfigure event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the DataColumnConfigureEvent</param>
<param name="e">Event arguments</param>
</member>
<member name="T:FarPoint.Win.Spread.DataColumnConfigureEventArgs">
<summary>
Represents the event data for the DataColumnConfigure event,
which occurs when the column is being configured for data binding.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DataColumnConfigureEventArgs.#ctor(FarPoint.Win.Spread.SheetView,System.Int32)">
<summary>
Creates a new object with the DataColumnConfigure event arguments.
</summary>
<param name="sheetView">Sheet (<see cref="T:FarPoint.Win.Spread.SheetView"/> object) that is binding to a data source</param>
<param name="column">Index of the column that was just configured</param>
</member>
<member name="P:FarPoint.Win.Spread.DataColumnConfigureEventArgs.Column">
<summary>
Gets the index of the column that was just configured.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DataColumnConfigureEventArgs.Sheet">
<summary>
Gets the sheet (SheetView object) that is binding to a data source.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.EditModeStartingEventHandler">
<summary>
Represents a defined method that handles the EditModeStarting event for the FarPoint Spread component.
</summary>
<param name="sender">Source of the event</param>
<param name="e">Event data</param>
</member>
<member name="T:FarPoint.Win.Spread.EditModeStartingEventArgs">
<summary>
Represents the event data for the EditModeOn event for the FarPoint Spread component,
which occurs when edit mode is starting.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.EditModeStartingEventArgs.#ctor(System.Boolean,System.Boolean)">
<summary>
Creates a new object with the EditModeStarting event arguments.
</summary>
<param name="editFormula">True if a cell formula will be edited; false if a cell value will be edited</param>
<param name="cancel">True to cancel edit mode.</param>
</member>
<member name="M:FarPoint.Win.Spread.EditModeStartingEventArgs.#ctor(System.Boolean)">
<summary>
Creates a new object with the EditModeStarting event arguments.
</summary>
<param name="editFormula">True if a cell formula will be edited; false if a cell value will be edited</param>
</member>
<member name="P:FarPoint.Win.Spread.EditModeStartingEventArgs.EditFormula">
<summary>
Gets or sets whether the formula for the cell should be edited.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.EditModeStartingEventArgs.Cancel">
<summary>
Gets or sets whether to cancel edit mode.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DialogCharEventHandler">
<summary>
Represents the method that handles the DialogChar event of a FarPoint Spread component.
</summary>
<param name="sender">Source of the DialogChar event</param>
<param name="e">DialogCharEventArgs object containing the event data</param>
</member>
<member name="T:FarPoint.Win.Spread.DialogCharEventArgs">
<summary>
Represents the event data for the DialogChar event of a FarPoint Spread component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DialogCharEventArgs.#ctor(System.Char,System.Boolean)">
<summary>
Creates a new instance of the DialogCharEventAgrs class.
</summary>
<param name="charCode">Character to process</param>
<param name="handled">Whether the event was handled</param>
</member>
<member name="P:FarPoint.Win.Spread.DialogCharEventArgs.CharCode">
<summary>
Gets the character corresponding to the key the user pressed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DialogCharEventArgs.Handled">
<summary>
Gets or sets whether the event was handled.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.DialogKeyEventHandler">
<summary>
Represents the method that handles the DialogKey event of a FarPoint Spread component.
</summary>
<param name="sender">Source of the DialogKey event</param>
<param name="e">DialogKeyEventArgs object containing the event data</param>
</member>
<member name="T:FarPoint.Win.Spread.DialogKeyEventArgs">
<summary>
Represents the event data for the DialogKey event of a FarPoint Spread component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DialogKeyEventArgs.#ctor(System.Windows.Forms.Keys,System.Boolean)">
<summary>
Creates a new instance of the DialogKeyEvents class.
</summary>
<param name="keyData">Key data for the key the user pressed</param>
<param name="handled">Whether the event was handled</param>
</member>
<member name="P:FarPoint.Win.Spread.DialogKeyEventArgs.KeyData">
<summary>
Gets the key data for the key the user pressed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DialogKeyEventArgs.KeyCode">
<summary>
Gets the key code for the key the user pressed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DialogKeyEventArgs.Modifiers">
<summary>
Gets which combination of CTRL, SHIFT, and ALT keys is pressed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DialogKeyEventArgs.Alt">
<summary>
Gets whether the ALT key was pressed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DialogKeyEventArgs.Control">
<summary>
Gets whether the CTRL key was pressed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DialogKeyEventArgs.Shift">
<summary>
Gets whether the SHIFT key was pressed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.DialogKeyEventArgs.Handled">
<summary>
Gets or sets whether the event was handled.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.RangeGroupStateChangedEventHandler">
<summary>
Represents a defined method that handles the RangeGroupStateChanged event for an outline (range group)
of the FarPoint Spread component.
</summary>
<param name="sender">Source of the RangeGroupStateChanged event</param>
<param name="e">RangeGroupStateChangedEventArgs object containing the event data</param>
</member>
<member name="T:FarPoint.Win.Spread.RangeGroupStateChangingEventHandler">
<summary>
Represents a defined method that handles the RangeGroupStateChanging event for an outline (range group)
of the FarPoint Spread component.
</summary>
<param name="sender">Source of the RangeGroupStateChanging event</param>
<param name="e">RangeGroupStateChangingEventArgs object containing the event data</param>
</member>
<member name="T:FarPoint.Win.Spread.RangeGroupStateChangedEventArgs">
<summary>
Represents the event data for the RangeGroupStateChanged event for an outline (range group)
of rows and columns in the FarPoint Spread component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupStateChangedEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,FarPoint.Win.Spread.RangeGroupInfo,System.Boolean)">
<summary>
Creates a new set of event arguments for a change of state of the outline (range group).
</summary>
<param name="view">View (SpreadView object)</param>
<param name="rangeGroupInfo">Range group (outline) information</param>
<param name="isRowGroup">Whether the outline (range group) is a group of rows</param>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupStateChangedEventArgs.View">
<summary>
Gets the view that contains the outline (range group) whose state has changed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupStateChangedEventArgs.IsRowGroup">
<summary>
Gets whether the outline (range group) is a group of rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupStateChangedEventArgs.RangeGroupInfo">
<summary>
Gets the infomation about the outline (range group) whose state has changed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.RangeGroupStateChangingEventArgs">
<summary>
Represents the event data for the RangeGroupStateChanging event for an outline (range group)
of rows and columns in the FarPoint Spread component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.RangeGroupStateChangingEventArgs.#ctor(FarPoint.Win.Spread.SpreadView,FarPoint.Win.Spread.RangeGroupInfo,System.Boolean)">
<summary>
Creates a new set of event arguments for the change of state of the outline (range group).
</summary>
<param name="view">View (SpreadView object)</param>
<param name="rangeGroupInfo">Range group (outline) information</param>
<param name="isRowGroup">Whether the outline (range group) is a group of rows</param>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupStateChangingEventArgs.View">
<summary>
Gets the view that contains the outline (range group) whose state is changing.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupStateChangingEventArgs.IsRowGroup">
<summary>
Gets whether the outline (range group) is a group of rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.RangeGroupStateChangingEventArgs.RangeGroupInfo">
<summary>
Gets the infomation about the outline (range group) whose state was changed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Data.SpreadDataView">
<summary>
Represents a data view of a sheet in a Spread.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.#ctor(FarPoint.Win.Spread.FpSpread,System.String)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Data.SpreadDataView"/> class.
</summary>
<param name="spread">The spread.</param>
<param name="sheetViewName">Name of the sheet view.</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.#ctor(FarPoint.Win.Spread.FpSpread,System.String,FarPoint.Win.Spread.Data.ISpreadDataViewMapper)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Data.SpreadDataView"/> class.
</summary>
<param name="spread">The spread.</param>
<param name="sheetViewName">Name of the sheet view.</param>
<param name="mapper">The mapper.</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.WireEvents">
<summary>
Wires the events of the <see cref="T:FarPoint.Win.Spread.FpSpread"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.UnwireEvents">
<summary>
Unwires the events of the <see cref="T:FarPoint.Win.Spread.FpSpread"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.OnSpradSheetViewUpdated(System.Object,FarPoint.Win.Spread.SheetViewEventArgs)">
<summary>
Updates when a cell changes.
This function is added when fixing bug 99901963
1 Process Cell update.
2 Process row and column moved.
</summary>
<param name="sender">Object source of the event</param>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.OnSpradSheetViewModelChanged(System.Object,FarPoint.Win.Spread.Model.SheetDataModelEventArgs)">
<summary>
Handles the Changed event of the SheetView_Models_Data.
1 Process Row/Column added.
2 Process Row/Column removed.
3 Process the model instance changed.
</summary>
<param name="sender">Source of the event</param>
<param name="e"><see cref="T:FarPoint.Win.Spread.Model.SheetDataModelEventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.OnSpreadCellUpdated(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Handles the cells updated event of the SheetView_Models_Data.
</summary>
<param name="column">Column index</param>
<param name="columnCount">Number of columns</param>
<param name="row">Row index</param>
<param name="rowCount">Number of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.OnSpreadRowsAdded(System.Int32,System.Int32)">
<summary>
Handles the rows added event of the SheetView_Models_Data.
</summary>
<param name="row">Row index</param>
<param name="rowCount">Number of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.OnSpreadRowsRemoved(System.Int32,System.Int32)">
<summary>
Handles the rows removed event of the SheetView_Models_Data.
</summary>
<param name="row">Row index</param>
<param name="rowCount">Number of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.OnSpreadColumnAdded(System.Int32,System.Int32)">
<summary>
Handles the columns added event of the SheetView_Models_Data.
</summary>
<param name="column">Column index</param>
<param name="columnCount">Number of columns</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.OnSpreadColumnRemoved(System.Int32,System.Int32)">
<summary>
Handles the columns removed event of the SheetView_Models_Data.
</summary>
<param name="column">Column index</param>
<param name="columnCount">Number of columns</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.OnSpreadReset">
<summary>
Handles the model updated event of the SheetView_Models_Data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.OnDataSourceItemAdded(System.ComponentModel.ListChangedEventArgs)">
<summary>
Handles the item added event of the binding list.
</summary>
<param name="e"><see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.OnDataSourceItemRemoved(System.ComponentModel.ListChangedEventArgs)">
<summary>
Handles the item deleted event of the binding list.
</summary>
<param name="e"><see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.OnDataSourceItemMoved(System.ComponentModel.ListChangedEventArgs)">
<summary>
Handles the item moved event of the binding list.
</summary>
<param name="e"><see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.OnDataSourceItemUpdated(System.ComponentModel.ListChangedEventArgs)">
<summary>
Handles the item changed event of the binding list.
</summary>
<param name="e"><see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.OnDataSourceReseted(System.ComponentModel.ListChangedEventArgs)">
<summary>
Handles the reset event of the binding list.
</summary>
<param name="e"><see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.OnMapperPropertyChanged(System.Object,System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Handles the PropertyChanged event of the _spreadDataViewMapper control.
</summary>
<param name="sender">Source of the event</param>
<param name="e"><see cref="T:System.ComponentModel.PropertyChangedEventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.RebuildSpreadDataRowViewCollection">
<summary>
Rebuilds the Spread data row view collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.EnsureMappingColumn(System.Int32)">
<summary>
Ensures the specified mapping column index is valid.
</summary>
<param name="index">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.AddNewCore">
<summary>
Adds a new item to the end of the collection.
</summary>
<returns>Item that was added to the collection</returns>
<exception cref="T:System.InvalidCastException">new item is not the same type as the objects contained in the <see cref="T:System.ComponentModel.BindingList`1"></see>.</exception>
</member>
<member name="F:FarPoint.Win.Spread.Data.SpreadDataView.needClearItemWhenReset">
<summary>
Because of call Clear will raise ListChangedType.Reset so this flag will notify the method that handle reset event need clear all items
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.ClearItems">
<summary>
Removes all elements from the collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
<summary>
Raises the <see cref="E:System.ComponentModel.BindingList`1.ListChanged"></see> event.
</summary>
<param name="e">A <see cref="T:System.ComponentModel.ListChangedEventArgs"></see> that contains the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.EnsureDataBound">
<summary>
Validates this Spread data view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.Move(System.Int32,System.Int32)">
<summary>
Moves a row in the Spread data view.
</summary>
<param name="fromIndex">Originating row index</param>
<param name="toIndex">Destination row index</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.Remove(System.Int32)">
<summary>
Removes a row from the Spread data view.
</summary>
<param name="Index">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataView.Insert(System.Int32)">
<summary>
Inserts a row in the Spread data view.
</summary>
<param name="Index">Row index</param>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataView.RaiseListChangedEvents">
<summary>
Gets or set a value indicating whether adding or removing items within the list raises <see cref="E:System.ComponentModel.BindingList`1.ListChanged"/> events.
</summary>
<value></value>
<returns>true if adding or removing items raises <see cref="E:System.ComponentModel.BindingList`1.ListChanged"/> events; otherwise, false. The default is true.
<remarks>This property will always return true</remarks>
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataView.Mapper">
<summary>
Gets or sets the mapper of the Spread data view.
</summary>
<value>Mapper</value>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataView.SheetView">
<summary>
Gets the sheet.
</summary>
<value>Sheet (SheetView object)</value>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataView.Columns">
<summary>
Gets the columns.
</summary>
<value>Columns</value>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataView.IgnoreModelDataChangeEvents">
<summary>
Gets or sets whether to ignore data model change events.
</summary>
<value>
<c>true</c> if ignore datamodel change events; otherwise, <c>false</c>.
</value>
</member>
<member name="T:FarPoint.Win.Spread.Data.DefaultSpreadDataViewMapper">
<summary>
Represents the default coordinate mapper from Spread data view to its underlying sheet.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Data.ISpreadDataViewMapper">
<summary>
Represents the coordinate mapper from Spread data view to its underlying sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.ISpreadDataViewMapper.GetModelColumnFromDataViewColumn(System.Int32)">
<summary>
Gets the model column from data view column.
</summary>
<param name="dataViewColumn">Data view column index</param>
<returns>Index of column in model.</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.ISpreadDataViewMapper.GetModelRowFromDataViewRow(System.Int32)">
<summary>
Gets the model row from data view row.
</summary>
<param name="dataViewRow">Data view row index</param>
<returns>Index of row in model.</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.ISpreadDataViewMapper.GetDataViewColumnFromModelColumn(System.Int32)">
<summary>
Gets the data view column from model column.
</summary>
<param name="modelColumn">model column</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.ISpreadDataViewMapper.GetDataViewRowFromModelRow(System.Int32)">
<summary>
Gets the data view row from model row.
</summary>
<param name="modelRow">Model row index</param>
<returns>Index of row in view.</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.ISpreadDataViewMapper.GetDataViewRowFromModelRowWhenAddNew(System.Int32)">
<summary>
Gets the data view row from model row when add new row.
This method is only used when add a new row to sheetview
</summary>
<param name="modelRow">Model row index</param>
<returns>Index of row in view</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.ISpreadDataViewMapper.OnDataRowAdded(System.Int32,System.Int32,System.ComponentModel.PropertyDescriptor)">
<summary>
Occurs when the data row is added.
</summary>
<param name="newIndex">New index</param>
<param name="oldIndex">Old index</param>
<param name="propertyDescriptor">Property descriptor</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.ISpreadDataViewMapper.OnDataRowChanged(System.Int32,System.Int32,System.ComponentModel.PropertyDescriptor)">
<summary>
Occurs when the data row is changed.
</summary>
<param name="newIndex">New index</param>
<param name="oldIndex">Old index</param>
<param name="propertyDescriptor">Property descriptor</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.ISpreadDataViewMapper.OnDataRowDeleted(System.Int32,System.Int32,System.ComponentModel.PropertyDescriptor)">
<summary>
Occurs when the data row is deleted.
</summary>
<param name="newIndex">New index</param>
<param name="oldIndex">Old index</param>
<param name="propertyDescriptor">Property descriptor</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.ISpreadDataViewMapper.OnDataRowMoved(System.Int32,System.Int32,System.ComponentModel.PropertyDescriptor)">
<summary>
Occurs when the data row is moved.
</summary>
<param name="newIndex">New index</param>
<param name="oldIndex">Old index</param>
<param name="propertyDescriptor">Property descriptor</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.ISpreadDataViewMapper.OnDataReset(System.Int32,System.Int32,System.ComponentModel.PropertyDescriptor)">
<summary>
Occurs when the data is reset.
</summary>
<param name="newIndex">New index</param>
<param name="oldIndex">Old index</param>
<param name="propertyDescriptor">Property descriptor</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.ISpreadDataViewMapper.IsValid(FarPoint.Win.Spread.SheetView)">
<summary>
Determines whether this mapper is valid in the specified sheet.
</summary>
<param name="sheetView">Sheet</param>
<returns>
<c>true</c> if [is valid mapper] [the specified sheet view]; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.ISpreadDataViewMapper.OnDataModelRowInserted(System.Int32)">
<summary>
Occurs when the data model row is inserted.
</summary>
<param name="index">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.ISpreadDataViewMapper.OnDataModelRowRemoved(System.Int32)">
<summary>
Occurs when the data model row is removed.
</summary>
<param name="index">Row index</param>
</member>
<member name="P:FarPoint.Win.Spread.Data.ISpreadDataViewMapper.DataViewColumnCount">
<summary>
Gets the number of columns in the data view.
</summary>
<value>Number of columns</value>
</member>
<member name="P:FarPoint.Win.Spread.Data.ISpreadDataViewMapper.DataViewRowCount">
<summary>
Gets the number of rows in the data view.
</summary>
<value>Number of rows</value>
</member>
<member name="M:FarPoint.Win.Spread.Data.DefaultSpreadDataViewMapper.GetModelColumnFromDataViewColumn(System.Int32)">
<summary>
Gets the model column from the data view column.
</summary>
<param name="dataViewColumn">Data view column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.DefaultSpreadDataViewMapper.GetModelRowFromDataViewRow(System.Int32)">
<summary>
Gets the model row from data view row.
</summary>
<param name="dataViewRow">Data view row index</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.DefaultSpreadDataViewMapper.GetDataViewColumnFromModelColumn(System.Int32)">
<summary>
Gets the data view column from model column.
</summary>
<param name="modelColumn">Model column index</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.DefaultSpreadDataViewMapper.GetDataViewRowFromModelRow(System.Int32)">
<summary>
Gets the data view row from model row.
</summary>
<param name="modelRow">Model row index</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.DefaultSpreadDataViewMapper.GetDataViewRowFromModelRowWhenAddNew(System.Int32)">
<summary>
Gets the data view row from the model row when a new row is added.
This method is used only when a new row is added to a sheet.
</summary>
<param name="modelRow">Model row index</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.DefaultSpreadDataViewMapper.OnPropertyChanged(System.String)">
<summary>
Occurs when a property is changed.
</summary>
<param name="propertyName">Name of the property</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.DefaultSpreadDataViewMapper.OnDataRowAdded(System.Int32,System.Int32,System.ComponentModel.PropertyDescriptor)">
<summary>
Occurs when a data row is added.
</summary>
<param name="newIndex">New row index</param>
<param name="oldIndex">Old row index</param>
<param name="propertyDescriptor">Property descriptor</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.DefaultSpreadDataViewMapper.OnDataRowChanged(System.Int32,System.Int32,System.ComponentModel.PropertyDescriptor)">
<summary>
Occurs when a data row is changed.
</summary>
<param name="newIndex">New row index</param>
<param name="oldIndex">Old row index</param>
<param name="propertyDescriptor">Property descriptor</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.DefaultSpreadDataViewMapper.OnDataRowDeleted(System.Int32,System.Int32,System.ComponentModel.PropertyDescriptor)">
<summary>
Occurs when a data row is deleted.
</summary>
<param name="newIndex">New row index</param>
<param name="oldIndex">Old row index</param>
<param name="propertyDescriptor">Property descriptor</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.DefaultSpreadDataViewMapper.OnDataRowMoved(System.Int32,System.Int32,System.ComponentModel.PropertyDescriptor)">
<summary>
Occurs when a data row is moved.
</summary>
<param name="newIndex">New index</param>
<param name="oldIndex">Old index</param>
<param name="propertyDescriptor">Property descriptor</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.DefaultSpreadDataViewMapper.OnDataReset(System.Int32,System.Int32,System.ComponentModel.PropertyDescriptor)">
<summary>
Occurs when a data row is reset.
</summary>
<param name="newIndex">New row index</param>
<param name="oldIndex">Old row index</param>
<param name="propertyDescriptor">Property descriptor</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.DefaultSpreadDataViewMapper.OnDataModelRowInserted(System.Int32)">
<summary>
Occurs when a data model row is inserted.
</summary>
<param name="index">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.DefaultSpreadDataViewMapper.OnDataModelRowRemoved(System.Int32)">
<summary>
Occurs when a data model row is removed.
</summary>
<param name="index">Row index</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.DefaultSpreadDataViewMapper.IsValid(FarPoint.Win.Spread.SheetView)">
<summary>
Determines whether this cell range is valid in the specified sheet.
</summary>
<param name="sheetView">Sheet</param>
<returns>
<c>true</c> if [is valid mapper] [the specified sheet view]; otherwise, <c>false</c>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Data.DefaultSpreadDataViewMapper.CellRange">
<summary>
Gets or sets the model data source range.
</summary>
<value>Model data source cell range</value>
</member>
<member name="E:FarPoint.Win.Spread.Data.DefaultSpreadDataViewMapper.PropertyChanged">
<summary>
Occurs when a property changes.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Data.DefaultSpreadDataViewMapper.DataViewColumnCount">
<summary>
Gets the number of columns in the data view.
</summary>
<value>Number of columns in the data view</value>
</member>
<member name="P:FarPoint.Win.Spread.Data.DefaultSpreadDataViewMapper.DataViewRowCount">
<summary>
Gets the number of rows in the data view.
</summary>
<value>Number of rows in the data view</value>
</member>
<member name="T:FarPoint.Win.Spread.Data.SpreadDataRowView">
<summary>
Represents a row of data in a Spread data view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataRowView.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Data.SpreadDataRowView"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataRowView.#ctor(FarPoint.Win.Spread.Data.SpreadDataView)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Data.SpreadDataRowView"/> class.
</summary>
<param name="ownerDataView">Owner data view</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataRowView.GetAttributes">
<summary>
Returns a collection of custom attributes for this instance of a component.
</summary>
<returns>
An <see cref="T:System.ComponentModel.AttributeCollection"></see> containing the attributes for this object.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataRowView.GetClassName">
<summary>
Returns the class name of this instance of a component.
</summary>
<returns>
The class name of the object, or null if the class does not have a name.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataRowView.GetComponentName">
<summary>
Returns the name of this instance of a component.
</summary>
<returns>
The name of the object, or null if the object does not have a name.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataRowView.GetConverter">
<summary>
Returns a type converter for this instance of a component.
</summary>
<returns>
A <see cref="T:System.ComponentModel.TypeConverter"></see> that is the converter for this object, or null if there is no <see cref="T:System.ComponentModel.TypeConverter"></see> for this object.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataRowView.GetDefaultEvent">
<summary>
Returns the default event for this instance of a component.
</summary>
<returns>
An <see cref="T:System.ComponentModel.EventDescriptor"></see> that represents the default event for this object, or null if this object does not have events.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataRowView.GetDefaultProperty">
<summary>
Returns the default property for this instance of a component.
</summary>
<returns>
A <see cref="T:System.ComponentModel.PropertyDescriptor"></see> that represents the default property for this object, or null if this object does not have properties.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataRowView.GetEditor(System.Type)">
<summary>
Returns an editor of the specified type for this instance of a component.
</summary>
<param name="editorBaseType">A <see cref="T:System.Type"></see> that represents the editor for this object</param>
<returns>
An <see cref="T:System.Object"></see> of the specified type that is the editor for this object, or null if the editor cannot be found.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataRowView.GetEvents(System.Attribute[])">
<summary>
Returns the events for this instance of a component using the specified attribute array as a filter.
</summary>
<param name="attributes">An array of type <see cref="T:System.Attribute"></see> that is used as a filter</param>
<returns>
An <see cref="T:System.ComponentModel.EventDescriptorCollection"></see> that represents the filtered events for this component instance.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataRowView.GetEvents">
<summary>
Returns the events for this instance of a component.
</summary>
<returns>
An <see cref="T:System.ComponentModel.EventDescriptorCollection"></see> that represents the events for this component instance.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataRowView.GetProperties(System.Attribute[])">
<summary>
Returns the properties for this instance of a component using the attribute array as a filter.
</summary>
<param name="attributes">An array of type <see cref="T:System.Attribute"></see> that is used as a filter</param>
<returns>
A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"></see> that represents the filtered properties for this component instance.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataRowView.GetProperties">
<summary>
Returns the properties for this instance of a component.
</summary>
<returns>
A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"></see> that represents the properties for this component instance.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataRowView.GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
<summary>
Returns an object that contains the property described by the specified property descriptor.
</summary>
<param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"></see> that represents the property whose owner is to be found</param>
<returns>
An <see cref="T:System.Object"></see> that represents the owner of the specified property.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataRowView.BeginEdit">
<summary>
Begins an edit on an object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataRowView.CancelEdit">
<summary>
Discards changes since the last <see cref="M:System.ComponentModel.IEditableObject.BeginEdit"></see> call.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataRowView.EndEdit">
<summary>
Pushes changes since the last <see cref="M:System.ComponentModel.IEditableObject.BeginEdit"></see> or <see cref="M:System.ComponentModel.IBindingList.AddNew"></see> call into the underlying object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataRowView.RaisePropertyChanged(System.String)">
<summary>
Raises the property changed.
</summary>
<param name="propertyName">Name of the property</param>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataRowView.Parent">
<summary>
Gets or sets the parent of the <see cref="T:FarPoint.Win.Spread.Data.SpreadDataRowView"/> class.
</summary>
<value>Parent</value>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataRowView.Item(System.String)">
<summary>
Gets or sets the <see cref="T:System.Object"/> with the specified property name.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataRowView.Item(System.Int32)">
<summary>
Gets or sets the <see cref="T:System.Object"/> at the specified index.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataRowView.Error">
<summary>
Gets an error message indicating what is wrong with this object.
</summary>
<value></value>
<returns>An error message indicating what is wrong with this object. The default is an empty string ("").</returns>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataRowView.System#ComponentModel#IDataErrorInfo#Item(System.String)">
<summary>
Gets the data error info with the specified column name.
</summary>
<value></value>
</member>
<member name="E:FarPoint.Win.Spread.Data.SpreadDataRowView.PropertyChanged">
<summary>
Occurs when property changes.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Data.SpreadDataColumnPropertyDescriptor">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumnPropertyDescriptor.#ctor(System.String,System.Type)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Data.SpreadDataColumnPropertyDescriptor"/> class.
</summary>
<param name="propertyName">Name of the property</param>
<param name="propertyType">Type of the property</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumnPropertyDescriptor.CanResetValue(System.Object)">
<summary>
When overridden in a derived class, returns whether resetting an object changes its value.
</summary>
<param name="component">component to test for reset capability</param>
<returns>
true if resetting the component changes its value; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumnPropertyDescriptor.GetValue(System.Object)">
<summary>
When overridden in a derived class, gets the current value of the property on a component.
</summary>
<param name="component">component with the property for which to retrieve the value</param>
<returns>
The value of a property for a given component.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumnPropertyDescriptor.ResetValue(System.Object)">
<summary>
When overridden in a derived class, resets the value for this property of the component to the default value.
</summary>
<param name="component">component with the property value that is to be reset to the default value</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumnPropertyDescriptor.SetValue(System.Object,System.Object)">
<summary>
When overridden in a derived class, sets the value of the component to a different value.
</summary>
<param name="component">component with the property value that is to be set</param>
<param name="value">new value</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumnPropertyDescriptor.ShouldSerializeValue(System.Object)">
<summary>
When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
</summary>
<param name="component">component with the property to be examined for persistence</param>
<returns>
true if the property should be persisted; otherwise, false.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataColumnPropertyDescriptor.ComponentType">
<summary>
When overridden in a derived class, gets the type of the component this property is bound to.
</summary>
<value></value>
<returns>A <see cref="T:System.Type"></see> that represents the type of component this property is bound to. When the <see cref="M:System.ComponentModel.PropertyDescriptor.GetValue(System.Object)"></see> or <see cref="M:System.ComponentModel.PropertyDescriptor.SetValue(System.Object,System.Object)"></see> methods are invoked, the object specified might be an instance of this type.</returns>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataColumnPropertyDescriptor.IsReadOnly">
<summary>
When overridden in a derived class, gets a value indicating whether this property is read-only.
</summary>
<value></value>
<returns>true if the property is read-only; otherwise, false.</returns>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataColumnPropertyDescriptor.PropertyType">
<summary>
When overridden in a derived class, gets the type of the property.
</summary>
<value></value>
<returns>A <see cref="T:System.Type"></see> that represents the type of the property.</returns>
</member>
<member name="T:FarPoint.Win.Spread.Data.SpreadDataColumn">
<summary>
Represents the schema of a column in a <see cref="T:FarPoint.Win.Spread.Data.SpreadDataView"/>.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Data.SpreadDataColumn.DEFAULT_COLUMN_NAME">
<summary>
This is the default name of new column. When a column is initailized without column name parameter,
this name is used as the default name.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumn.#ctor">
<summary>
Creates a new Spread data column (no name) where the data type of the column is string.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumn.#ctor(System.String)">
<summary>
Creates a new Spread data column where the data type of the column is string.
</summary>
<param name="columnName">Name of the column</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumn.#ctor(System.String,System.Type)">
<summary>
Creates a new Spread data column with the specified data type.
</summary>
<param name="dataColumnName">Name of the column</param>
<param name="columnDataType">Type of the data</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumn.SetColumnName(System.String)">
<summary>
Sets the name of the column.
This method is used by the DataColumnCollection to modify the column name.
When an empty column name is added to the collection then the new generated column name is set.
</summary>
<param name="newColumnName">Name of the column</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumn.OnPropertyChanged(System.String)">
<summary>
Occurs when a property is changed.
</summary>
<param name="propertyName">Name of the property</param>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataColumn.AllowDBNull">
<summary>
Gets or sets whether null values are allowed in this
column for rows that belong to the table.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataColumn.Caption">
<summary>
Gets or sets the caption for the column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataColumn.ColumnName">
<summary>
Gets the name of the column in the Spread data column collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataColumn.IsDefautColumnName">
<summary>
Gets whether this instance is a defaut column name.
When user uses the none-parameter contructor then this property is true.
</summary>
<value>
<c>true</c> if this instance is defaut column name; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataColumn.DataType">
<summary>
Gets the type of data stored in the column.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataColumn.Ordinal">
<summary>
Gets the position of the column in the Spread data column collection.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataColumn.PropertyDescriptor">
<summary>
Gets the property descriptor.
</summary>
<value>Property descriptor</value>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataColumn.Formatter">
<summary>
Gets or sets the data formatter which is used to transfer data between the data model and the Spread data view.
</summary>
<value>Data transfer</value>
</member>
<member name="E:FarPoint.Win.Spread.Data.SpreadDataColumn.PropertyChanged">
<summary>
Occurs when a property changes.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Data.SpreadDataColumnCollection">
<summary>
Represents a <see cref="T:FarPoint.Win.Spread.Data.SpreadDataColumn"/> collection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumnCollection.Add(FarPoint.Win.Spread.Data.SpreadDataColumn)">
<summary>
Adds the specified column.
</summary>
<param name="column">Column</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumnCollection.InsertAt(System.Int32,FarPoint.Win.Spread.Data.SpreadDataColumn)">
<summary>
Inserts the column at specified index.
</summary>
<param name="index">Index</param>
<param name="column">Column</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumnCollection.Contains(System.String)">
<summary>
Determines whether this collection contains the column with the specified name.
</summary>
<param name="name">Name</param>
<returns>
<c>true</c> if [contains] [the specified name]; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumnCollection.IndexOf(FarPoint.Win.Spread.Data.SpreadDataColumn)">
<summary>
Gets the index of the specified column.
</summary>
<param name="column">Column</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumnCollection.IndexOf(System.String)">
<summary>
Gets the index of the column with specified name
</summary>
<param name="columnName">Name of the column</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumnCollection.Remove(FarPoint.Win.Spread.Data.SpreadDataColumn)">
<summary>
Removes the specified column.
</summary>
<param name="column">Column</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumnCollection.Remove(System.String)">
<summary>
Removes the column with specified name.
</summary>
<param name="name">Name</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumnCollection.OnClearComplete">
<summary>
Performs additional custom processes after clearing the contents of the <see cref="T:System.Collections.CollectionBase"></see> instance.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumnCollection.OnInsertComplete(System.Int32,System.Object)">
<summary>
Performs additional custom processes after inserting a new element into the <see cref="T:System.Collections.CollectionBase"></see> instance.
</summary>
<param name="index">zero-based index at which to insert value</param>
<param name="value">new value of the element at index</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumnCollection.OnRemoveComplete(System.Int32,System.Object)">
<summary>
Performs additional custom processes after removing an element from the <see cref="T:System.Collections.CollectionBase"></see> instance.
</summary>
<param name="index">Zero-based index at which value can be found</param>
<param name="value">Value of the element to remove from index</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumnCollection.OnSetComplete(System.Int32,System.Object,System.Object)">
<summary>
Performs additional custom processes after setting a value in the <see cref="T:System.Collections.CollectionBase"></see> instance.
</summary>
<param name="index">Zero-based index at which oldValue can be found</param>
<param name="oldValue">Value to replace with newValue</param>
<param name="newValue">New value of the element at index</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumnCollection.CreateDataColumnPropertyDescriptors">
<summary>
Creates the data column property descriptors.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumnCollection.BuildDataColumnPropertyDescriptors">
<summary>
Builds the data column property descriptors.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumnCollection.BuildDataColumnOrdinalValues">
<summary>
Builds the data column ordinal values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataColumnCollection.GetNewColumnName">
<summary>
Gets the new name of the column.
This algorithm is gotten from MS
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataColumnCollection.Item(System.Int32)">
<summary>
Gets the <see cref="T:FarPoint.Win.Spread.Data.SpreadDataColumn"/> at the specified index.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataColumnCollection.Item(System.String)">
<summary>
Gets the <see cref="T:FarPoint.Win.Spread.Data.SpreadDataColumn"/> with the specified name.
</summary>
<value></value>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataColumnCollection.DataColumnPropertyDescriptors">
<summary>
Gets the data column property descriptors.
</summary>
<value>Data column property descriptors</value>
</member>
<member name="T:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter">
<summary>
Represents the FarPoint Spread data binding adapter.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.#ctor">
<summary>
Creates a new FarPoint Spread data binding adapter.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.CreateMapper(FarPoint.Win.Spread.Data.MapperInfo)">
<summary>
Creates the mapper base on the mapper information.
</summary>
<param name="info">Mapper information</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.FillSpreadDataByDataSource">
<summary>
Fills the Spread data with data from the data source.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.SetColumnCellType(System.Int32,FarPoint.Win.Spread.CellType.ICellType)">
<summary>
Sets the cell type of the column in the data source.
</summary>
<param name="colIndex">Index of the column in the data source</param>
<param name="cellType">Type of the cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.GetColumnCellType(System.Int32)">
<summary>
Gets the cell type of the column in the data source.
</summary>
<param name="colIndex">Index of the column in the data source</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.Reset">
<summary>
Resets this instance according to the set properties.
</summary>
<remarks>
When the data model is changed, this method should be called to ensure that all the functions
of the SpreadDataAdapter work properly.
</remarks>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.FillSpreadDataByDataSource(System.Int32)">
<summary>
Fills the Spread data with data from the data source.
</summary>
<param name="rowIndex">Index of the row</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.GetDatatableSource">
<summary>
Gets the data table that is bound to this adapter.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.GetListSource">
<summary>
Gets the list that is bound to this adapter.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.CreateNewRowWithDefaultValue(System.Data.DataTable)">
<summary>
Creates the new row with a default value.
</summary>
<param name="dt">Data table</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.SpreadDataViewItemAddedEventHandler(System.ComponentModel.ListChangedEventArgs)">
<summary>
Handles the SpreadDataViewItemAdded event.
</summary>
<param name="e"><see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.SpreadDataViewItemDeletedEventHandler(System.ComponentModel.ListChangedEventArgs)">
<summary>
Handles the SpreadDataViewItem event.
</summary>
<param name="e"><see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.SpreadDataViewItemMovedEventHandler(System.ComponentModel.ListChangedEventArgs)">
<summary>
Handles the SpreadDataViewItemMoved event.
</summary>
<param name="e"><see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.BuildColumnCelltypes">
<summary>
Builds the column cell types.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.GetCellType(System.Type)">
<summary>
Gets the cell type according to the .NET data type.
</summary>
<param name="dataType">.NET data type</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.OnBindingContextChanged">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.BindingContextChanged"></see> event.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.OnInitialized">
<summary>
Raises the Initialized event.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.BeginInit">
<summary>
Signals the object that initialization is starting.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.EndInit">
<summary>
Signals the object that initialization is complete.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.Dispose(System.Boolean)">
<summary>
Releases the unmanaged resources used by the <see cref="T:System.ComponentModel.Component"/> and optionally releases the managed resources.
</summary>
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.MapperInfo">
<summary>
Gets or sets the mapper information.
</summary>
<value>Mapper information</value>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.DataSource">
<summary>
Gets or sets the data source.
</summary>
<value>Data source</value>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.DataMember">
<summary>
Gets or sets the data member.
</summary>
<value>Data member</value>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.Spread">
<summary>
Gets or sets the FarPoint Spread.
</summary>
<value>FarPoint Spread</value>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.SheetName">
<summary>
Gets or sets the name of the sheet.
</summary>
<value>Name of the sheet</value>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.DataAutoCellTypes">
<summary>
Gets or sets whether the cell type is set automatically when filling data.
</summary>
<value><c>true</c> if the cell type is set automatically when filling data; otherwise, <c>false</c></value>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.AutoGenerateRow">
<summary>
Gets or sets whether a row or column is automatically generated when filling data.
</summary>
<value><c>true</c> if [auto generate row and column]; otherwise, <c>false</c></value>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.BindingContext">
<summary>
Gets or sets the collection of currency managers for the <see cref="T:System.Windows.Forms.IBindableComponent"></see>.
</summary>
<value></value>
<returns>Collection of <see cref="T:System.Windows.Forms.BindingManagerBase"></see> objects for this <see cref="T:System.Windows.Forms.IBindableComponent"></see>.</returns>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.DataBindings">
<summary>
Gets the collection of data-binding objects for this <see cref="T:System.Windows.Forms.IBindableComponent"></see>.
</summary>
<value></value>
<returns><see cref="T:System.Windows.Forms.ControlBindingsCollection"></see> for this <see cref="T:System.Windows.Forms.IBindableComponent"></see>. </returns>
</member>
<member name="E:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.Initialized">
<summary>
Occurs when this componet is initialized
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataBindingAdapter.IsInitialized">
<summary>
Gets a value indicating whether the component is initialized.
</summary>
<value></value>
<returns>true to indicate the component has completed initialization; otherwise, false. </returns>
</member>
<member name="T:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection">
<summary>
Represents the Spread data binding adapter connection.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection._ignoreListMoveEvents">
<summary>
Ignore Event List Move
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.#ctor(FarPoint.Win.Spread.Data.SpreadDataBindingAdapter)">
<summary>
Initializes a new instance of the <see cref="T:SpreadDataBindingAdapterConnection"/> class.
</summary>
<param name="owner">Owner</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.AssertMappedRange">
<summary>
Checks the Spread view column collection.
Checks whether the column is mapped to a column that is out of range in the sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.OnDataSourceInitialized(System.Object,System.EventArgs)">
<summary>
Occurs when the data source is initialized.
</summary>
<param name="sender">Source of the event</param>
<param name="e"><see cref="T:System.EventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.WireEvents">
<summary>
Wires the events.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.UnWireEvents">
<summary>
Unwires the events.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.OnDataSourceItemAdded(System.Int32)">
<summary>
Occurs when the data source item is added.
</summary>
<param name="newIndex">New index</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.OnDataSourceItemDeleted(System.Int32)">
<summary>
Occurs when the data source item is deleted.
</summary>
<param name="newIndex">New index</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.OnDataSourceItemMoved(System.Int32,System.Int32)">
<summary>
Occurs when the data source item is moved.
</summary>
<param name="oldIndex">Old index</param>
<param name="newIndex">New index</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.OnDataSourceReseted">
<summary>
Occurs when the data source is reset.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.OnDataSourceItemChanged(System.Int32)">
<summary>
Occurs when the data source item is changed.
</summary>
<param name="newIndex">New index</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.OnListChanged(System.Object,System.ComponentModel.ListChangedEventArgs)">
<summary>
Occurs when the list changes.
</summary>
<param name="sender">Source of the event</param>
<param name="e"><see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.OnPositionChanged(System.Object,System.EventArgs)">
<summary>
Occurs when the position changes.
</summary>
<param name="sender">Source of the event</param>
<param name="e"><see cref="T:System.EventArgs"/> instance containing the event data</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.SetDataConnection(System.Object,System.String)">
<summary>
Sets the data connection.
</summary>
<param name="dataSource">Data source</param>
<param name="dataMember">Data member</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.FillSpreadDataViewByDataSource">
<summary>
Fills the Spread data view by data source.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.FillSpreadDataViewByDataSource(System.Int32)">
<summary>
Fills the Spread data view with data from the data source.
</summary>
<param name="rowIndex">Index of the row</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.FillDataSourceBySpreadDataView">
<summary>
Fills the data source with data from Spread data view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.FillDataSourceBySpreadDataView(System.Int32)">
<summary>
Fills the data source with data from the Spread data view.
</summary>
<param name="rowIndex">Index of the row</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.AdjustSheetViewBeforeFillData">
<summary>
Adjusts the sheet view before fill data.
Adds more rows in the sheet if neccessary.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.CurrencyManager">
<summary>
Gets the currency manager.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.DataSource">
<summary>
Gets the data source.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.DataMember">
<summary>
Gets the data member.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.AutoGenerateRow">
<summary>
Gets or sets whether to automatically generate the row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Data.SpreadDataBindingAdapterConnection.IgnoreListChangedEvents">
<summary>
Ignores the list change events if the change comes from the FarPoint Spread component.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Data.DefaultSpreadDataViewDataFormatter">
<summary>
Represents the default behavior of data transfer between data model and Spread data view.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Data.ISpreadDataViewDataFormatter">
<summary>
Interface that supports the class which transfers data up and down between DataModel and SpreadDataView.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.ISpreadDataViewDataFormatter.GetCellValue(FarPoint.Win.Spread.Cell)">
<summary>
Gets the cell value from the data model.
</summary>
<param name="cell">Cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.ISpreadDataViewDataFormatter.SetCellValue(FarPoint.Win.Spread.Cell,System.Object)">
<summary>
Sets the new cell value to the data model.
</summary>
<param name="cell">Cell</param>
<param name="value">Value</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.DefaultSpreadDataViewDataFormatter.#ctor(FarPoint.Win.Spread.Data.SpreadDataColumn)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.Data.DefaultSpreadDataViewDataFormatter"/> class.
</summary>
<param name="ownerColumn">owner column</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.DefaultSpreadDataViewDataFormatter.GetCellValue(FarPoint.Win.Spread.Cell)">
<summary>
Gets the cell value from the data model.
Convert from cell value to the datatype of SpreadDataColumn.
If success return the converted value, otherwise return DBNull.
</summary>
<param name="cell">Cell</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.DefaultSpreadDataViewDataFormatter.SetCellValue(FarPoint.Win.Spread.Cell,System.Object)">
<summary>
Sets the new cell value to the data model.
</summary>
<param name="cell">cell</param>
<param name="value">value</param>
</member>
<member name="T:FarPoint.Win.Spread.Data.MapperInfo">
<summary>
Represents information of the mapper.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.MapperInfo.#ctor">
<summary>
Initializes a new instance of the <see cref="T:MapperInfo"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.MapperInfo.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:MapperInfo"/> class.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
</member>
<member name="M:FarPoint.Win.Spread.Data.MapperInfo.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>.
</summary>
<param name="obj"><see cref="T:System.Object"></see> to compare with the current <see cref="T:System.Object"></see></param>
<returns>
true if the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.MapperInfo.GetHashCode">
<summary>
Serves as a hash function for a particular type. <see cref="M:System.Object.GetHashCode"></see> is suitable for use in hashing algorithms and data structures like a hash table.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"></see>.
</returns>
</member>
<member name="P:FarPoint.Win.Spread.Data.MapperInfo.Row">
<summary>
Gets the row.
</summary>
<value>Row</value>
</member>
<member name="P:FarPoint.Win.Spread.Data.MapperInfo.Column">
<summary>
Gets the column.
</summary>
<value>Column</value>
</member>
<member name="P:FarPoint.Win.Spread.Data.MapperInfo.RowCount">
<summary>
Gets the number of rows.
</summary>
<value>Number of rows</value>
</member>
<member name="P:FarPoint.Win.Spread.Data.MapperInfo.ColumnCount">
<summary>
Gets the number of columns.
</summary>
<value>Number of columns</value>
</member>
<member name="T:FarPoint.Win.Spread.Data.MapperInfoConverter">
<summary>
Represents a converter for mapper information.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.MapperInfoConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns whether this converter can convert an object of the given type to the type of this converter, using the specified context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that provides a format context</param>
<param name="sourceType">A <see cref="T:System.Type"></see> that represents the type you want to convert from</param>
<returns>
true if this converter can perform the conversion; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.MapperInfoConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Converts the given object to the type of this converter, using the specified context and culture information.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that provides a format context</param>
<param name="culture"><see cref="T:System.Globalization.CultureInfo"></see> to use as the current culture</param>
<param name="value"><see cref="T:System.Object"></see> to convert</param>
<returns>
An <see cref="T:System.Object"></see> that represents the converted value.
</returns>
<exception cref="T:System.NotSupportedException">conversion cannot be performed. </exception>
</member>
<member name="M:FarPoint.Win.Spread.Data.MapperInfoConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns whether this converter can convert the object to the specified type, using the specified context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that provides a format context</param>
<param name="destinationType">A <see cref="T:System.Type"></see> that represents the type you want to convert to</param>
<returns>
true if this converter can perform the conversion; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.MapperInfoConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the given value object to the specified type, using the specified context and culture information.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that provides a format context</param>
<param name="culture">A <see cref="T:System.Globalization.CultureInfo"></see>. If null is passed, the current culture is assumed</param>
<param name="value"><see cref="T:System.Object"></see> to convert</param>
<param name="destinationType"><see cref="T:System.Type"></see> to convert the value parameter to</param>
<returns>
An <see cref="T:System.Object"></see> that represents the converted value.
</returns>
<exception cref="T:System.NotSupportedException">conversion cannot be performed. </exception>
<exception cref="T:System.ArgumentNullException">destinationType parameter is null. </exception>
</member>
<member name="T:FarPoint.Win.Spread.Data.SheetNameConverter">
<summary>
Represents a converter for the name of the sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Data.SheetNameConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Returns whether this object supports a standard set of values that can be picked from a list, using the specified context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that provides a format context</param>
<returns>
true if <see cref="M:System.ComponentModel.TypeConverter.GetStandardValues"></see> should be called to find a common set of values the object supports; otherwise, false.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.SheetNameConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Returns whether the collection of standard values returned from <see cref="M:System.ComponentModel.TypeConverter.GetStandardValues"></see> is an exclusive list of possible values, using the specified context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that provides a format context</param>
<returns>
true if the <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection"></see> returned from <see cref="M:System.ComponentModel.TypeConverter.GetStandardValues"></see> is an exhaustive list of possible values; false if other values are possible.
</returns>
</member>
<member name="M:FarPoint.Win.Spread.Data.SheetNameConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)">
<summary>
Returns a collection of standard values for the data type this type converter is designed for when provided with a format context.
</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"></see> that provides a format context that can be used to extract additional information about the environment from which this converter is invoked. This parameter or properties of this parameter can be null</param>
<returns>
A <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection"></see> that holds a standard set of valid values, or null if the data type does not support a standard set of values.
</returns>
</member>
<member name="T:FarPoint.Win.Spread.SpreadLayout">
<summary>
Stores the location and size of areas within the spread control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.#ctor(System.Int32,System.Int32)">
<summary>
Creates a SpreadLayout object for rowPaneCount by
columnPaneCount scrollable viewports.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.GetViewportX(System.Int32)">
<summary>
Gets the x coordinate of the given column of viewports.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.SetViewportX(System.Int32,System.Int32)">
<summary>
Sets the x coordinate of the given column of viewports.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.GetViewportY(System.Int32)">
<summary>
Gets the y coordinate of the given row of viewports.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.SetViewportY(System.Int32,System.Int32)">
<summary>
Sets the y coordinate of the given row of viewports.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.GetViewportWidth(System.Int32)">
<summary>
Gets the width of the given column of viewports.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.SetViewportWidth(System.Int32,System.Int32)">
<summary>
Sets the width of the given column of viewports.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.GetViewportHeight(System.Int32)">
<summary>
Gets the height of the given row of viewports.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.SetViewportHeight(System.Int32,System.Int32)">
<summary>
Sets the height of the given row of viewports.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.GetColumnSplitBarX(System.Int32)">
<summary>
Gets the x coordinate of the given column split bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.SetColumnSplitBarX(System.Int32,System.Int32)">
<summary>
Sets the x coordinate of the given column split bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.GetColumnSplitBarWidth(System.Int32)">
<summary>
Gets the width of the given column split bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.SetColumnSplitBarWidth(System.Int32,System.Int32)">
<summary>
Sets the width of the given column split bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.GetRowSplitBarY(System.Int32)">
<summary>
Gets the y coordinate of the given row split bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.SetRowSplitBarY(System.Int32,System.Int32)">
<summary>
Sets the y coordinate of the given row split bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.GetRowSplitBarHeight(System.Int32)">
<summary>
Gets the height of the given row split bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.SetRowSplitBarHeight(System.Int32,System.Int32)">
<summary>
Sets the height of the given row split bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.GetColumnSplitBoxX(System.Int32)">
<summary>
Gets the x coordinate of the given column split box.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.SetColumnSplitBoxX(System.Int32,System.Int32)">
<summary>
Sets the x coordinate of the given column split box.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.GetColumnSplitBoxWidth(System.Int32)">
<summary>
Gets the width of the given column split box.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.SetColumnSplitBoxWidth(System.Int32,System.Int32)">
<summary>
Sets the width of the given column split box.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.GetRowSplitBoxY(System.Int32)">
<summary>
Gets the y coordinate of the given row split box.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.SetRowSplitBoxY(System.Int32,System.Int32)">
<summary>
Sets the y coordinate of the given row split box.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.GetRowSplitBoxHeight(System.Int32)">
<summary>
Gets the height of the given row split box.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.SetRowSplitBoxHeight(System.Int32,System.Int32)">
<summary>
Sets the height of the given row split box.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.GetHorizontalScrollBarX(System.Int32)">
<summary>
Gets the x coordinate of the given horizontal scroll bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.SetHorizontalScrollBarX(System.Int32,System.Int32)">
<summary>
Sets the x coordinate of the given horizontal scroll bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.GetHorizontalScrollBarWidth(System.Int32)">
<summary>
Gets the width of the given horizontal scroll bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.SetHorizontalScrollBarWidth(System.Int32,System.Int32)">
<summary>
Sets the width of the given horizontal scroll bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.GetVerticalScrollBarY(System.Int32)">
<summary>
Gets the y coordinate of the given vertical scroll bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.SetVerticalScrollBarY(System.Int32,System.Int32)">
<summary>
Sets the y coordinate of the given vertical scroll bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.GetVerticalScrollBarHeight(System.Int32)">
<summary>
Gets the height of the given vertical scroll bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.SetVerticalScrollBarHeight(System.Int32,System.Int32)">
<summary>
Sets the height of the given vertical scroll bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.Intersects(System.Drawing.Rectangle)">
<summary>
Determines whether the layout's bounds intersects the specified rectangle.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.CornerFromPoint(System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.RowHeaderFromPoint(System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.ColumnHeaderFromPoint(System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.ViewportRowFromPoint(System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.ViewportColumnFromPoint(System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.ColumnSplitBarFromPoint(System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.RowSplitBarFromPoint(System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.ColumnSplitBoxFromPoint(System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.RowSplitBoxFromPoint(System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.TabStripFromPoint(System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.TabSplitBoxFromPoint(System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.TabStripIntersects(System.Drawing.Rectangle)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.RangeGroupCornerFromPoint(System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.RangeGroupFromPoint(System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.TitleBarFromPoint(System.Int32,System.Int32)">
<summary>
Check wheather this possition in Title bar area. Title bar include Title and Subtitle.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadLayout.SubTitleFromPoint(System.Int32,System.Int32)">
<summary>
Check wheather this possition in subtitle area
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.NONE">
<summary>
Used to indicate not found.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.ColumnPaneCount">
<summary>
Gets the number of columns of viewports.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.RowPaneCount">
<summary>
Gets the number of rows of viewports.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.X">
<summary>
Gets or sets the x coordinate of the entire layout.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.Y">
<summary>
Gets or sets the y coordinate of the entire layout.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.Width">
<summary>
Gets or sets the width of the entire layout.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.Height">
<summary>
Gets or sets the height of the entire layout.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.FooterX">
<summary>
Gets or sets the x coordinate of the column footers.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.FooterY">
<summary>
Gets or sets the y coordinate of the column footers.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.FooterWidth">
<summary>
Gets or sets the width of the column footers.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.FooterHeight">
<summary>
Gets or sets the height of the column footers.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.HeaderX">
<summary>
Gets or sets the x coordinate of the row headers.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.HeaderY">
<summary>
Gets or sets the y coordinate of the column headers.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.HeaderWidth">
<summary>
Gets or sets the width of the row headers.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.HeaderHeight">
<summary>
Gets or sets the height of the column headers.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.FrozenX">
<summary>
Gets or sets the x coordinate of the leading frozen viewports.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.FrozenY">
<summary>
Gets or sets the y coordinate of the leading frozen viewports.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.FrozenWidth">
<summary>
Gets or sets the width of the leading frozen viewports.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.FrozenHeight">
<summary>
Gets or sets the height of the leading frozen viewports.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.FrozenTrailingX">
<summary>
Gets or sets the x coordinate of the trailing frozen viewports.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.FrozenTrailingY">
<summary>
Gets or sets the y coordinate of the trailing frozen viewports.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.FrozenTrailingWidth">
<summary>
Gets or sets the width of the trailing frozen viewports.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.FrozenTrailingHeight">
<summary>
Gets or sets the height of the trailing frozen viewports.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.OrnamentX">
<summary>
Gets or sets the x coordinate of the row ornaments (scroll bars, split boxs).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.OrnamentY">
<summary>
Gets or sets the y coordinate of the column ornaments (scroll bars, split boxs).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.OrnamentWidth">
<summary>
Gets or sets the width of the row ornaments (scroll bars, split boxs).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.OrnamentHeight">
<summary>
Gets or sets the height of the column ornaments (scroll bars, split boxs).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.TitleBarHeight">
<summary>
Get and set height of Title bar (Title bar include Title and Subtitle).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.TitleBarY">
<summary>
Get or set Y coordinate of Title bar (Title bar include Title and Subtitle).
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.SubTitleY">
<summary>
Get or set Y coordinate of Subtitle in Title bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.ColumnGroupHeight">
<summary>
Gets or sets the height of the column group.
</summary>
<value>The height of the column group.</value>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.ColumnGroupY">
<summary>
Gets or sets the column group Y.
</summary>
<value>The column group Y.</value>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.RowGroupWidth">
<summary>
Gets or sets the height of the row group.
</summary>
<value>The height of the row group.</value>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.RowGroupX">
<summary>
Gets or sets the row group X.
</summary>
<value>The row group X.</value>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.GroupBarY">
<summary>
Gets or sets the y coordinate of the Group bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.GroupBarX">
<summary>
Gets or sets the x coordinate of the Group bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.TabStripX">
<summary>
Gets or sets the x coordinate of the tab strip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.TabStripY">
<summary>
Gets or sets the y coordinate of the tab strip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.TabStripWidth">
<summary>
Gets or sets the width of the tab strip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.TabStripHeight">
<summary>
Gets or sets the height of the tab strip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.TabSplitBoxX">
<summary>
Gets or sets the x coordinate of the tab split box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadLayout.TabSplitBoxWidth">
<summary>
Gets or sets the width of the tab split box.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SpreadSkinsForm">
<summary>
Represents a FarPoint Spread component skins form.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadSkinsForm.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkinsForm.#ctor">
<summary>
Creates a FarPoint Spread component skins form with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkinsForm.#ctor(FarPoint.Win.Spread.FpSpread)">
<summary>
Creates a FarPoint Spread skins form with the specified FarPoint Spread component.
</summary>
<param name="target">Target FarPoint Spread component</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkinsForm.#ctor(FarPoint.Win.Spread.SheetView)">
<summary>
Creates a FarPoint Spread skins form with the specified sheet.
</summary>
<param name="target">Target sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkinsForm.Finalize">
<summary>
The destructor method.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkinsForm.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkinsForm.OnKeyUp(System.Windows.Forms.KeyEventArgs)">
<summary>
Raises the KeyUp event.
</summary>
<param name="e">An <see cref="T:System.Windows.Forms.KeyEventArgs"/> contains event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkinsForm.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadSkinsForm.OnLoad(System.EventArgs)">
<summary>
Occurs when the skin is loaded.
</summary>
<param name="e">EventArgs object with event data</param>
</member>
<member name="P:FarPoint.Win.Spread.SpreadSkinsForm.HelpBtn">
<summary>
Internal use only. Gets the help button.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.BorderCollapse">
<summary>
Specifies how the borders of adjacent cells are displayed in the view.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.BorderCollapse.Collapse">
<summary>
Displays borders for adjacent cells as collapsed into a single border
</summary>
</member>
<member name="F:FarPoint.Win.Spread.BorderCollapse.Separate">
<summary>
Displays borders for adjacent cells as separate borders detached from each other
</summary>
</member>
<member name="T:FarPoint.Win.Spread.OperationMode">
<summary>
Specifies how the sheet responds to user interaction and what selections are allowed.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.OperationMode.Normal">
<summary>
Allows default spreadsheet operations
</summary>
</member>
<member name="F:FarPoint.Win.Spread.OperationMode.ReadOnly">
<summary>
Prohibits the user from changing anything on this spreadsheet
(and sheet has no active cell)
</summary>
</member>
<member name="F:FarPoint.Win.Spread.OperationMode.RowMode">
<summary>
Allows the user to select rows in the spreadsheet,
and edit individual cells in rows by double-clicking the cell
</summary>
</member>
<member name="F:FarPoint.Win.Spread.OperationMode.SingleSelect">
<summary>
Allows the user to select single rows in the spreadsheet
(as one would in a single-selection list box)
</summary>
</member>
<member name="F:FarPoint.Win.Spread.OperationMode.MultiSelect">
<summary>
Allows the user to select multiple contiguous rows in the spreadsheet
(as one would in a multiple-select list box)
</summary>
</member>
<member name="F:FarPoint.Win.Spread.OperationMode.ExtendedSelect">
<summary>
Allows the user to select multiple discontiguous rows in the spreadsheet
(as one would in an extended-select list box)
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SelectionBlockOptions">
<summary>
Specifies which part of the sheet can be selected by the user.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SelectionBlockOptions.None">
<summary>
[0] Does not allow selections
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SelectionBlockOptions.Cells">
<summary>
[1] Allows the user to select a range of cells
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SelectionBlockOptions.Rows">
<summary>
[2] Allows the user to select a row or rows of cells
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SelectionBlockOptions.Columns">
<summary>
[4] Allows the user to select a column or columns of cells
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SelectionBlockOptions.Sheet">
<summary>
[8] Allows the user to select the entire sheet of cells by clicking the sheet corner
</summary>
</member>
<member name="T:FarPoint.Win.Spread.TextTipPolicy">
<summary>
Specifies how the the text tip of a cell in the view is displayed, and also how the cell note is displayed.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TextTipPolicy.Off">
<summary>
Does not display it
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TextTipPolicy.Fixed">
<summary>
Aligns it to the top-left corner of the cell for which it appears at any time
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TextTipPolicy.Floating">
<summary>
Aligns it to the pointer location at any time
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TextTipPolicy.FixedFocusOnly">
<summary>
Aligns it to the top-left corner of the cell for which it appears
only when the control has the focus
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TextTipPolicy.FloatingFocusOnly">
<summary>
Aligns it to the pointer location only when the control has the focus
</summary>
</member>
<member name="T:FarPoint.Win.Spread.TabStripButton">
<summary>
Specifies the sheet tab buttons.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TabStripButton.None">
<summary>
Indicates the None button
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TabStripButton.Home">
<summary>
Indicates the Home button
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TabStripButton.Previous">
<summary>
Indicates the Previous button
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TabStripButton.Next">
<summary>
Indicates the Next button
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TabStripButton.End">
<summary>
Indicates the End button
</summary>
</member>
<member name="T:FarPoint.Win.Spread.FillDirection">
<summary>
Specifies the direction of the fill in the view.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FillDirection.Left">
<summary>
Fills from the right to the left
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FillDirection.Right">
<summary>
Fills from the left to the right
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FillDirection.Up">
<summary>
Fills from the bottom to the top
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FillDirection.Down">
<summary>
Fills from the top to the bottom
</summary>
</member>
<member name="T:FarPoint.Win.Spread.VerticalPosition">
<summary>
Specifies the vertical position of the object
for placement in the displayed portion of the sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.VerticalPosition.Top">
<summary>
Positions the cell or row at the top
of the displayed portion of the sheet
</summary>
</member>
<member name="F:FarPoint.Win.Spread.VerticalPosition.Center">
<summary>
Positions the cell or row in the center
of the displayed portion of the sheet
</summary>
</member>
<member name="F:FarPoint.Win.Spread.VerticalPosition.Bottom">
<summary>
Positions the cell or row at the bottom
of the displayed portion of the sheet
</summary>
</member>
<member name="F:FarPoint.Win.Spread.VerticalPosition.Nearest">
<summary>
Positions the cell or row at the nearest edge
of the displayed portion of the sheet
</summary>
</member>
<member name="T:FarPoint.Win.Spread.HorizontalPosition">
<summary>
Specifies the horizontal position of the object
for placement in the displayed portion of the sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HorizontalPosition.Left">
<summary>
Positions the cell or column at the leftmost position
of the displayed portion of the sheet
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HorizontalPosition.Center">
<summary>
Positions the cell or column in the center
of the displayed portion of the sheet
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HorizontalPosition.Right">
<summary>
Positions the cell or column at the rightmost position
of the displayed portion of the sheet
</summary>
</member>
<member name="F:FarPoint.Win.Spread.HorizontalPosition.Nearest">
<summary>
Positions the cell or column to the nearest edge
of the displayed portion of the sheet
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CursorType">
<summary>
Specifies the area in the view in which to display a different pointer.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CursorType.Normal">
<summary>
Displays a pointer in the general area within the control
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CursorType.RowResize">
<summary>
Displays a pointer in the row resize area
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CursorType.ColumnResize">
<summary>
Displays a pointer in the column resize area
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CursorType.LockedCell">
<summary>
Displays a pointer within a locked cell
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CursorType.ColumnHeader">
<summary>
Displays a pointer within a column header
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CursorType.ColumnFooter">
<summary>
Displays a pointer within a column footer
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CursorType.FooterCorner">
<summary>
Displays a pointer within a footer corner
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CursorType.RowHeader">
<summary>
Displays a pointer within a row header
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CursorType.DragDropArea">
<summary>
Displays a pointer on the edge of the selection to drag and drop
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CursorType.Corner">
<summary>
Displays a pointer within the sheet corner
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CursorType.TabStrip">
<summary>
Displays a pointer in the sheet tabs
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CursorType.DragFill">
<summary>
Displays a pointer on the edge of the area to drag and fill
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CursorType.RowColumnSplitBar">
<summary>
Displays a pointer over row and column split bars
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CursorType.RowSplitBar">
<summary>
Displays a pointer over the row split bar
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CursorType.ColumnSplitBar">
<summary>
Displays a pointer over the column split bar
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CursorType.RowSplitBox">
<summary>
Displays a pointer over the row split box
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CursorType.ColumnSplitBox">
<summary>
Displays a pointer over the column split box
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CursorType.TabStripSplitBox">
<summary>
Displays a pointer over the sheet tabs split box
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CursorType.RangeGroup">
<summary>
Displays a pointer over the Range Group.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CursorType.TitleBar">
<summary>
Displays a pointer over the Title and Subtitle.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CursorType.GrayArea">
<summary>
Displays a pointer over the gray area.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.InputMapMode">
<summary>
Specifies the condition for which an input map applies.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.InputMapMode.WhenFocused">
<summary>
Uses an input map when the control has the focus
</summary>
</member>
<member name="F:FarPoint.Win.Spread.InputMapMode.WhenAncestorOfFocused">
<summary>
Uses an input map when the control or a child of the control has the focus
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SortState">
<summary>
Specifies the state of sorting for the current column
so the column renderer knows which sorting image to draw.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SortState.None">
<summary>
Sorting is not enabled.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SortState.Unsorted">
<summary>
Sorting is available, but not currently in use.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SortState.Ascending">
<summary>
Sorted in ascending order.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SortState.Descending">
<summary>
Sorted in descending order.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SortState.UnsortedDisabled">
<summary>
Sorting is not enabled, and the control is disabled.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SortState.AscendingDisabled">
<summary>
Sorted in ascending order, and the control is disabled.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SortState.DescendingDisabled">
<summary>
Sorted in descending order, and the control is disabled.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.FilterState">
<summary>
Specifies the state of filtering for the current column
so the column renderer knows which filtering image to draw.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FilterState.None">
<summary>
Filtering is not available.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FilterState.FilterActive">
<summary>
Filtering is active.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FilterState.FilterInactive">
<summary>
Filtering is available, but not currently in use.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FilterState.FilterActiveDisabled">
<summary>
Filtering is active, and the control is disabled.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.FilterState.FilterInactiveDisabled">
<summary>
Filtering is available, but not currently in use, and the control is disabled.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.RowSelectorState">
<summary>
Specifies the state of the row header selector for the current selected row,
so the row renderer knows which row header selector image to draw.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.RowSelectorState.None">
<summary>
The row header selector is not enabled.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.RowSelectorState.Unused">
<summary>
The row header selector is enabled, but not currently in use for the row.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.RowSelectorState.Active">
<summary>
The row header selector is enabled, and currently in use for the row.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.RowSelectorState.Disabled">
<summary>
The row header selector is enabled, but the Spread control is disabled.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SpreadActions">
<summary>
Represents the actions available for input maps.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.None">
<summary>
Does not perform an action.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.CancelEditing">
<summary>
Turns off edit mode and removes the changes.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.StartEditing">
<summary>
Turns on edit mode.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.StartEditingFormula">
<summary>
Allows the user to start entering a formula.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.StopEditing">
<summary>
Turns off edit mode.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToNextRow">
<summary>
Moves the active cell down one row.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToPreviousRow">
<summary>
Moves the active cell up one row.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToNextColumn">
<summary>
Moves the active cell to the right one column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToPreviousColumn">
<summary>
Moves the active cell to the left one column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToNextColumnVisual">
<summary>
Moves the active cell to the right one column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToPreviousColumnVisual">
<summary>
Moves the active cell to the left one column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToNextRowWrap">
<summary>
Moves the active cell down one row.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToPreviousRowWrap">
<summary>
Moves the active cell up one row.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToNextColumnWrap">
<summary>
Moves the active cell to the right one column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToPreviousColumnWrap">
<summary>
Moves the active cell to the left one column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToNextRowFirstColumn">
<summary>
Moves the active cell to the first column of the next row.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToPreviousRowFirstColumn">
<summary>
Moves the active cell to the first column of the previous row.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToNextColumnFirstRow">
<summary>
Moves the active cell to the first row of the next column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToPreviousColumnFirstRow">
<summary>
Moves the active cell to the first row of the previous column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToNextPageOfRows">
<summary>
Moves the active cell down one page of rows.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToPreviousPageOfRows">
<summary>
Moves the active cell up one page of rows.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToNextPageOfColumns">
<summary>
Moves the active cell right one page of columns.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToPreviousPageOfColumns">
<summary>
Moves the active cell left one page of columns.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToFirstRow">
<summary>
Moves the active cell to the first row.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToLastRow">
<summary>
Moves the active cell to the last row.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToLastRowWithData">
<summary>
Moves the active cell to the last row that contains data.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToFirstColumn">
<summary>
Moves the active cell to the first column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToLastColumn">
<summary>
Moves the active cell to the last column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToLastColumnWithData">
<summary>
Moves the active cell to the last column that contains data.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToFirstCell">
<summary>
Moves the active cell to the first cell in the sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToLastCell">
<summary>
Moves the active cell to the last cell in the sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToLastCellWithData">
<summary>
Moves the active cell to the last cell that contains data.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToNextSheet">
<summary>
Moves the active cell to the next sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToPreviousSheet">
<summary>
Moves the active cell to the next sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToNextRow">
<summary>
Extends the selection down one row.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToPreviousRow">
<summary>
Extends the selection up one row.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToNextColumn">
<summary>
Extends the selection one column to the right.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToPreviousColumn">
<summary>
Extends the selection one column to the left.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToNextColumnVisual">
<summary>
Extends the selection one column to the right.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToPreviousColumnVisual">
<summary>
Extends the selection one column to the left.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToNextPageOfRows">
<summary>
Extends the selection to include one page of rows down.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToPreviousPageOfRows">
<summary>
Extends the selection to include one page of rows up.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToNextPageOfColumns">
<summary>
Extends the selection to include the columns one page to the right.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToPreviousPageOfColumns">
<summary>
Extends the selection to include the columns one page to the left.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToFirstRow">
<summary>
Extends the selection to the first row.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToLastRow">
<summary>
Extends the selection to the last row.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToLastRowWithData">
<summary>
Extends the selection to the last row that contains data.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToFirstColumn">
<summary>
Extends the selection to the first column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToLastColumn">
<summary>
Extends the selection to the last column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToLastColumnWithData">
<summary>
Extends the selection to the last column that contains data.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToFirstCell">
<summary>
Extends the selection to include the first cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToLastCell">
<summary>
Extends the selection to include the last cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToLastCellWithData">
<summary>
Extends the selection to include the last cell that contains data.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ScrollToNextRow">
<summary>
Scrolls down one row.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ScrollToPreviousRow">
<summary>
Scrolls up one row.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ScrollToNextColumn">
<summary>
Scrolls right one column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ScrollToPreviousColumn">
<summary>
Scrolls left one column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ScrollToNextColumnVisual">
<summary>
Scrolls right one column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ScrollToPreviousColumnVisual">
<summary>
Scrolls left one column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ScrollToNextPageOfRows">
<summary>
Scrolls down one page of rows.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ScrollToPreviousPageOfRows">
<summary>
Scrolls up one page of rows.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ScrollToNextPageOfColumns">
<summary>
Scrolls right one page of columns.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ScrollToPreviousPageOfColumns">
<summary>
Scrolls left one page of columns.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ScrollToFirstRow">
<summary>
Scrolls to display the first row.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ScrollToLastRow">
<summary>
Scrolls to display the last row.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ScrollToLastRowWithData">
<summary>
Scrolls to display the last row with data.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ScrollToFirstColumn">
<summary>
Scrolls to display the first column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ScrollToLastColumn">
<summary>
Scrolls to display the last column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ScrollToLastColumnWithData">
<summary>
Scrolls to display the last column with data.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ScrollToFirstCell">
<summary>
Scrolls to display the first cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ScrollToLastCell">
<summary>
Scrolls to display the last cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ScrollToLastCellWithData">
<summary>
Scrolls to display the last cell with data.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToPreviousItem">
<summary>
Moves up one item.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToNextItem">
<summary>
Moves down one item.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToNextPageOfItems">
<summary>
Moves down one page of items.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToPreviousPageOfItems">
<summary>
Moves up one page of items.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToFirstItem">
<summary>
Moves to the first item.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToLastItem">
<summary>
Moves to the last item.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveToLastItemWithData">
<summary>
Moves to the last item with data.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToPreviousItem">
<summary>
Extends the selection to include the previous item.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToNextItem">
<summary>
Extends the selection to include the next item.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToNextPageOfItems">
<summary>
Extends the selection to include the next page of items.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToPreviousPageOfItems">
<summary>
Extends the selection to include the previous page of items.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToFirstItem">
<summary>
Extends the selection to include the first item.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToLastItem">
<summary>
Extends the selection to include the last item.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ExtendToLastItemWithData">
<summary>
Extends the selection to include the last item with data.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.SelectPreviousItem">
<summary>
Selects the previous item.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.SelectNextItem">
<summary>
Selects the next item.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.SelectNextPageOfItems">
<summary>
Selects the next page of items.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.SelectPreviousPageOfItems">
<summary>
Selects the previous page of items.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.SelectFirstItem">
<summary>
Selects the first item.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.SelectLastItem">
<summary>
Selects the last item.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.SelectLastItemWithData">
<summary>
Selects the last item with data.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ToggleItem">
<summary>
Toggles the selection for the item.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.SelectRow">
<summary>
Selects the row containing the active cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.SelectColumn">
<summary>
Selects the column containing the active cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.SelectSheet">
<summary>
Selects the entire sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardCopy">
<summary>
Copies the selected items to the Clipboard.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardCopyAsString">
<summary>
Copies the selected items to the Clipboard as a string.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardCopyAsStringSkipHidden">
<summary>
Copies the selected items to the Clipboard as a string skipping hidden rows and columns.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardCopyFormatting">
<summary>
Copies the selected items' formatting only to the Clipboard.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardCopyFormulas">
<summary>
Copies the selected items' formulas only to the Clipboard.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardCopyValues">
<summary>
Copies the selected items' values only to the Clipboard.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardCopyActiveSheet">
<summary>
Copies the active sheet to the Clipboard.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardCutDataOnly">
<summary>
Cuts the data only of selected items to the Clipboard.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardCut">
<summary>
Cuts the selected items to the Clipboard.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardCutAsString">
<summary>
Cuts the selected items to the Clipboard as a string.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardCutAsStringSkipHidden">
<summary>
Cuts the selected items to the Clipboard as a string skipping hidden cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardCutFormatting">
<summary>
Cuts the selected items formatting to the Clipboard.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardCutFormulas">
<summary>
Cuts the selected items formulas to the Clipboard.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardCutValues">
<summary>
Cuts the selected items values to the Clipboard.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardCutActiveSheet">
<summary>
Cuts the active sheet to the Clipboard.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardPaste">
<summary>
Pastes the selected items from the Clipboard to the current sheet based on the setting of ClipboardPasteOptions.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardPasteAll">
<summary>
Pastes everything from the Clipboard (data and formatting) to the current sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardPasteValues">
<summary>
Pastes only the values from the Clipboard to the current sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardPasteFormatting">
<summary>
Pastes only the formatting from the Clipboard to the current sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardPasteFormulas">
<summary>
Pastes only the formulas from the Clipboard to the current sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardPasteAsLink">
<summary>
Pastes only the link references from the Clipboard to the current sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardPasteAsString">
<summary>
Pastes only the text from the Clipboard to the current cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardPasteSheet">
<summary>
Pastes a sheet from the clipboard.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardPasteAsStringSkipHidden">
<summary>
Pastes only the text from the Clipboard to the current cell, skipping hidden rows and columns.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ShowSubEditor">
<summary>
Shows the subeditor control of the current cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClearCell">
<summary>
Removes all of the contents of the active cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.DateTimeNow">
<summary>
Sets the cell's value to the date-time value of Now.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ComboShowList">
<summary>
Displays the list of the combo box of the current cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveShapeUp">
<summary>
Moves the active shape up.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveShapeDown">
<summary>
Moves the active shape down.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveShapeLeft">
<summary>
Moves the active shape left.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveShapeRight">
<summary>
Moves the active shape right.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ActivateNextShape">
<summary>
Activates the next shape in the draw order.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ActivatePreviousShape">
<summary>
Activates the previous shape in the draw order.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.IncreaseShapeWidth">
<summary>
Increases the width of the active shape.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.DecreaseShapeWidth">
<summary>
Decreases the width of the active shape.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.IncreaseShapeHeight">
<summary>
Increases the height of the active shape.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.DecreaseShapeHeight">
<summary>
Decreases the height of the active shape.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.RotateShapeClockwise">
<summary>
Rotates the active shape one degree clockwise.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.RotateShapeCounterClockwise">
<summary>
Rotates the active shape one degree counter-clockwise.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.DeleteShape">
<summary>
Deletes the active shape.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardCopyShape">
<summary>
Copies the active shape to the Clipboard.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardCutShape">
<summary>
Cuts the active shape to the Clipboard.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClipboardPasteShape">
<summary>
Pastes the shape from the Clipboard.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ClearSelectedCells">
<summary>
Removes all of the contents of the selected cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.DeactivateShape">
<summary>
Deactivates the currently selected shape.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.Undo">
<summary>
Performs an undo of the most recent edit or action.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.Redo">
<summary>
Performs a redo of the most recently undone edit or action.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveChildUp">
<summary>
Moves the active object up.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveChildDown">
<summary>
Moves the active object down.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveChildLeft">
<summary>
Moves the active object left.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.MoveChildRight">
<summary>
Moves the active object right.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ActivateNextChild">
<summary>
Activates the next object in the draw order.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.ActivatePreviousChild">
<summary>
Activates the previous object in the draw order.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.IncreaseChildWidth">
<summary>
Increases the width of the active object.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.DecreaseChildWidth">
<summary>
Decreases the width of the active object.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.IncreaseChildHeight">
<summary>
Increases the height of the active object.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.DecreaseChildHeight">
<summary>
Decreases the height of the active object.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.DeleteChild">
<summary>
Deletes the active object.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadActions.DeactivateChild">
<summary>
Deactivates the currently selected object.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SpreadView">
<summary>
Represents a view of the spreadsheet display.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.ExpandImage">
<summary>
Specifies the index, 0, for the image for the expand icon in a hiearchical display.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.ExpandImageDisabled">
<summary>
Specifies the index, 1, for the image for the disabled expand icon in a hiearchical display.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.CollapseImage">
<summary>
Specifies the index, 2, for the image for the collapse icon in a hiearchical display.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.CollapseImageDisabled">
<summary>
Specifies the index, 3, for the image for the disabled collapse icon in a hiearchical display.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.SortAscendingImage">
<summary>
Specifies the index, 4, for the image for the ascending sort indicator.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.SortAscendingImageDisabled">
<summary>
Specifies the index, 5, for the image for the disabled ascending sort indicator.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.SortDescendingImage">
<summary>
Specifies the index, 6, for the image for the descending sort indicator.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.SortDescendingImageDisabled">
<summary>
Specifies the index, 7, for the image for the disabled descending sort indicator.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.FilterInactive">
<summary>
Specifies the index, 8, for the image for the inactive filter indicator.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.FilterInactiveDisabled">
<summary>
Specifies the index, 9, for the image for the disabled inactive filter indicator.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.FilterActive">
<summary>
Specifies the index, 10, for the image for the active filter indicator.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.FilterActiveDisabled">
<summary>
Specifies the index, 11, for the image for the disabled active filter indicator.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.SortUnsortedImage">
<summary>
Specifies the index, 12, for the image for the unsorted sort indicator.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.SortUnsortedImageDisabled">
<summary>
Specifies the index, 13, for the image for the disabled unsorted sort indicator.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.RowSelectorImage">
<summary>
Specifies the index, 14, for the image for the row selector.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.RowSelectorImageDisabled">
<summary>
Specifies the index, 15, for the image for the disabled row selector.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.tabTheme">
<summary>
Internal use only.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.tabButtonTheme">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.#ctor">
<summary>
Creates a new view for the spreadsheet display.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.#ctor(FarPoint.Win.Spread.FpSpread)">
<summary>
Creates a new view for the spreadsheet display in the specified control.
</summary>
<param name="owner">FpSpread component that owns the view</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.Finalize">
<summary>
Internal use only. Creates a new view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a view of the spreadsheet display from serialization.
</summary>
<param name="info">SerializationInfo</param>
<param name="context">StreamingContext</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Saves the view to the SerializationInfo object.
</summary>
<param name="info">SerializationInfo object</param>
<param name="context">StreamingContext object</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateSharedInputMapWhenFocusedNormal">
<summary>
Creates an input map to be shared by all views.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateSharedInputMapWhenAncestorOfFocusedNormal">
<summary>
Creates an input map to be shared by all views.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateSharedInputMapWhenFocusedReadOnly">
<summary>
Creates an input map to be shared by all views.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateSharedInputMapWhenAncestorOfFocusedReadOnly">
<summary>
Creates an input map to be shared by all views.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateSharedInputMapWhenFocusedRowMode">
<summary>
Creates an input map to be shared by all views.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateSharedInputMapWhenAncestorOfFocusedRowMode">
<summary>
Creates an input map to be shared by all views.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateSharedInputMapWhenFocusedSingleSelect">
<summary>
Creates an input map to be shared by all views.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateSharedInputMapWhenAncestorOfFocusedSingleSelect">
<summary>
Creates an input map to be shared by all views.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateSharedInputMapWhenFocusedMultiSelect">
<summary>
Creates an input map to be shared by all views.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateSharedInputMapWhenAncestorOfFocusedMultiSelect">
<summary>
Creates an input map to be shared by all views.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateSharedInputMapWhenFocusedExtendedSelect">
<summary>
Creates an input map to be shared by all views.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateSharedInputMapWhenAncestorOfFocusedExtendedSelect">
<summary>
Creates an input map to be shared by all views.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateSharedInputMapWhenShapeHasFocus">
<summary>
Creates an input map to be shared by all views.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateSharedInputMapWhenChildHasFocus">
<summary>
Creates an input map to be shared by all views.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateSharedActionMap">
<summary>
Creates an action map to be shared by all views.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateInputMapWhenFocusedNormal">
<summary>
Creates an input map to be used by this view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateInputMapWhenAncestorOfFocusedNormal">
<summary>
Creates an input map to be used by this view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateInputMapWhenFocusedReadOnly">
<summary>
Creates an input map to be used by this view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateInputMapWhenAncestorOfFocusedReadOnly">
<summary>
Creates an input map to be used by this view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateInputMapWhenFocusedRowMode">
<summary>
Creates an input map to be used by this view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateInputMapWhenAncestorOfFocusedRowMode">
<summary>
Creates an input map to be used by this view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateInputMapWhenFocusedSingleSelect">
<summary>
Creates an input map to be used by this view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateInputMapWhenAncestorOfFocusedSingleSelect">
<summary>
Creates an input map to be used by this view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateInputMapWhenFocusedMultiSelect">
<summary>
Creates an input map to be used by this view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateInputMapWhenAncestorOfFocusedMultiSelect">
<summary>
Creates an input map to be used by this view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateInputMapWhenFocusedExtendedSelect">
<summary>
Creates an input map to be used by this view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateInputMapWhenAncestorOfFocusedExtendedSelect">
<summary>
Creates an input map to be used by this view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateInputMapWhenShapeHasFocus">
<summary>
Creates an input map to be used by this view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateInputMapWhenChildHasFocus">
<summary>
Creates an input map to be used by this view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateActionMap">
<summary>
Creates an action map to be used by this view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.Reset">
<summary>
Resets the active view to its default settings.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ShowPrecedents(System.Int32,System.Int32,System.Int32)">
<summary>
Internal use only. Shows the precedents.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ShowDependents(System.Int32,System.Int32,System.Int32)">
<summary>
Internal use only. Shows the dependents.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.HidePrecedents(System.Int32,System.Int32,System.Int32)">
<summary>
Internal use only. Hides the precedents.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.HideDependents(System.Int32,System.Int32,System.Int32)">
<summary>
Internal use only. Hides the dependents.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.HidePrecedents(System.Int32)">
<summary>
Internal use only. Hides the precedents.
</summary>
<param name="sheetIndex">Sheet index</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.HideDependents(System.Int32)">
<summary>
Internal use only. Hides all dependents.
</summary>
<param name="sheetIndex">Sheet index</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetBounds(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Sets the location and size of the view.
</summary>
<param name="x">X coordinate</param>
<param name="y">Y coordinate</param>
<param name="width">Width</param>
<param name="height">Height</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetSheetView">
<summary>
Gets the active sheet view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetInputMap(FarPoint.Win.Spread.InputMapMode)">
<summary>
Gets the input map defined for the specified focus mode for the view.
</summary>
<param name="inputMapMode">Focus mode (control or child of the control)</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetInputMap(FarPoint.Win.Spread.InputMapMode,FarPoint.Win.Spread.InputMap)">
<summary>
Sets the input map for the view for the specified focus mode.
</summary>
<param name="inputMapMode">Focus mode (control or child of the control)</param>
<param name="value"><see cref="T:FarPoint.Win.Spread.InputMap"/> object</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetInputMap(FarPoint.Win.Spread.InputMapMode,FarPoint.Win.Spread.OperationMode)">
<summary>
Gets the input map defined for the specified focus mode and operation mode for the view.
</summary>
<param name="inputMapMode">Focus mode (control or child of the control)</param>
<param name="operationMode">Operation mode</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetInputMap(FarPoint.Win.Spread.InputMapMode,FarPoint.Win.Spread.OperationMode,FarPoint.Win.Spread.InputMap)">
<summary>
Sets the input map for the view for the specified focus mode and operation mode.
</summary>
<param name="inputMapMode">Focus mode (control or child of the control)</param>
<param name="operationMode">Operation mode</param>
<param name="value"><see cref="T:FarPoint.Win.Spread.InputMap"/> object</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetInputMapWhenShapeHasFocus">
<summary>
Gets the input map for the view for when a shape has focus.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetInputMapWhenShapeHasFocus(FarPoint.Win.Spread.InputMap)">
<summary>
Sets the input map for the view for when a shape has focus.
</summary>
<param name="value"><see cref="T:FarPoint.Win.Spread.InputMap"/> object</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetInputMapWhenChildHasFocus">
<summary>
Gets the input map for the view for when a child object has focus.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetInputMapWhenChildHasFocus(FarPoint.Win.Spread.InputMap)">
<summary>
Sets the input map for the view for when a child object has focus.
</summary>
<param name="value"><see cref="T:FarPoint.Win.Spread.InputMap"/> object</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetActionMap">
<summary>
Gets the action map.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetActionMap(FarPoint.Win.Spread.ActionMap)">
<summary>
Sets the action map.
</summary>
<param name="value">New action map</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetCursor(FarPoint.Win.Spread.CursorType)">
<summary>
Gets the pointer displayed over a specific area in the view.
</summary>
<param name="index">Index of the pointer type (for which part of the control)</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetCursor(FarPoint.Win.Spread.CursorType,System.Windows.Forms.Cursor)">
<summary>
Sets the pointer displayed over a specific area at a specific time.
</summary>
<param name="index">Index of the pointer type (for which part of the control)</param>
<param name="cursor">Image (Cursor object) to paint the pointer</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetInsertSheetImage(System.Drawing.Image)">
<summary>
Sets the custom image displayed on the insert sheet tab.
</summary>
<param name="newSheetImage">Image displayed on the insert sheet tab</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StartTipTimer">
<summary>
Starts the tip timer.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.InstallListeners">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.UninstallListeners">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.columnHeaderStyleModel_Changed(System.Object,FarPoint.Win.Spread.Model.SheetStyleModelEventArgs)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.Invalidate">
<summary>
Invalidates the SpreadView and causes it to repaint.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.Invalidate(System.Drawing.Rectangle)">
<summary>
Invalidates the specified rectangle
</summary>
<param name="r"></param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.InvalidateCorner">
<summary>
Invalidates sheet corner.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.InvalidateFooterCorner">
<summary>
Invalidates column footer corner.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.InvalidateRowHeaderCells(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Invalidates row header cells.
</summary>
<param name="row">Starting row index</param>
<param name="column">Starting column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.InvalidateColumnHeaderCells(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.InvalidateColumnFooterCells(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.InvalidateCells(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.InvalidateCells(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.InvalidateCells(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Drawing.Size)">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateColumnHeaderRowLayoutModel">
<summary>
Creates a row layout model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateViewportRowLayoutModel(System.Int32)">
<summary>
Creates a row layout model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateRowHeaderColumnLayoutModel">
<summary>
Creates a column layout model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateViewportColumnLayoutModel(System.Int32)">
<summary>
Creates a column layout model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateRowHeaderCellLayoutModel(System.Int32)">
<summary>
Creates a cell layout model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateColumnHeaderCellLayoutModel(System.Int32)">
<summary>
Creates a cell layout model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateColumnFooterCellLayoutModel(System.Int32)">
<summary>
Creates a cell layout model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateViewportCellLayoutModel(System.Int32,System.Int32)">
<summary>
Creates a cell layout model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetMaximumCellOverflowWidth">
<summary>
Gets the maximum cell overflow width in pixels for cells in the view.
</summary>
Default value is 1200px.
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetMaximumCellOverflowWidth(System.Int32)">
<summary>
Sets the maximum cell overflow width in pixels for cells in the view.
</summary>
<param name="width">Width of cell overflow in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetRowMerge(System.Int32)">
<summary>
Gets whether or how cells in a row in this view that have the same content
are joined in a single cell across multiple columns.
</summary>
<param name="row">Row index</param>
<returns>MergePolicy enumeration setting for the specified row</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetRowMerge(System.Int32,FarPoint.Win.Spread.Model.MergePolicy)">
<summary>
Sets whether or how cells in a row in this view that have the same content
are joined in a single cell across multiple columns.
</summary>
<param name="row">Row index</param>
<param name="value">MergePolicy enumeration setting for the specified row</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnMerge(System.Int32)">
<summary>
Gets whether or how cells in a column in this view that have the same content
are joined in a single cell across multiple rows.
</summary>
<param name="column">Column index</param>
<returns>MergePolicy enumeration setting for the specified column</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetColumnMerge(System.Int32,FarPoint.Win.Spread.Model.MergePolicy)">
<summary>
Sets whether or how cells in a column in this view that have the same content
are joined in a single cell across multiple rows.
</summary>
<param name="column">Column index</param>
<param name="value">MergePolicy enumeration setting for the specified column</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnHeaderRowLayout(System.Int32)">
<summary>
Gets the row layout for the specified row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnFooterRowLayout(System.Int32)">
<summary>
Gets the row layout for the specified row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnHeaderRowLayoutFromY(System.Int32)">
<summary>
Gets the row layout that contains the specified point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnFooterRowLayoutFromY(System.Int32)">
<summary>
Gets the row layout that contains the specified point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnHeaderRowLayoutNearY(System.Int32)">
<summary>
Gets the row layout that contains or is near the specified point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportRowLayout(System.Int32,System.Int32)">
<summary>
Gets the row layout for the specified row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportRowLayoutFromY(System.Int32,System.Int32)">
<summary>
Gets the row layout that contains the specified point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportRowLayoutNearY(System.Int32,System.Int32,System.Boolean)">
<summary>
Gets the row layout that contains or is near the specified point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetRowHeaderColumnLayout(System.Int32)">
<summary>
Gets the column layout for the specified column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetRowHeaderColumnLayoutFromX(System.Int32)">
<summary>
Gets the column layout that contains the specified point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetRowHeaderColumnLayoutNearX(System.Int32)">
<summary>
Gets the column layout that contains or is near the specified point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportColumnLayout(System.Int32,System.Int32)">
<summary>
Gets the column layout for the specified column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportColumnLayoutFromX(System.Int32,System.Int32)">
<summary>
Gets the column layout that contains the specified point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportColumnLayoutNearX(System.Int32,System.Int32,System.Boolean)">
<summary>
Gets the column layout that contains or is near the specified point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetRowHeaderCellLayout(System.Int32,System.Int32,System.Int32)">
<summary>
Gets the cell layout for the specified cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetRowHeaderCellLayoutFromPoint(System.Int32,System.Int32,System.Int32)">
<summary>
Gets the cell layout that contains the specified point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnHeaderCellLayout(System.Int32,System.Int32,System.Int32)">
<summary>
Gets the cell layout for the specified cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnFooterCellLayout(System.Int32,System.Int32,System.Int32)">
<summary>
Gets the cell layout for the specified cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnHeaderCellLayoutFromPoint(System.Int32,System.Int32,System.Int32)">
<summary>
Gets the cell layout that contains the specified point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnFooterCellLayoutFromPoint(System.Int32,System.Int32,System.Int32)">
<summary>
Gets the cell layout that contains the specified point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportCellLayout(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets the cell layout for the specified cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportCellLayoutFromPoint(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets the cell layout that contains the specified point.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SynchronizeLeftColumn(System.Int32,System.Int32,System.Int32)">
<summary>
Synchronizes the left column when scrollbar is changed.
</summary>
<param name="columnPane">The column pane.</param>
<param name="maximumColumn">The maximum column.</param>
<param name="minimumColumn">The minimum column.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SynchronizeTopRow(System.Int32,System.Int32,System.Int32)">
<summary>
Synchronizes the top row when scrollbar is changed.
</summary>
<param name="rowPane">The row pane.</param>
<param name="maximumRow">The maximum row.</param>
<param name="minimumRow">The minimum row.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetTopRowMax(System.Int32)">
<summary>
Get the maximum allowed value for the top row for this row pane. This function is only for solving the bug
99914142, any other unintended uses will not be guaranteed.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetRowViewportIndexFromY(System.Int32)">
<summary>
Gets the index of the viewport row for the specified coordinate for the active sheet.
</summary>
<param name="y">Y coordinate</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnViewportIndexFromX(System.Int32)">
<summary>
Gets the index of the viewport column for the specified coordinate for the active sheet.
</summary>
<param name="x">X coordinate</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportX(System.Int32)">
<summary>
Gets the left coordinate of the specified viewport column for the active sheet.
</summary>
<param name="columnViewportIndex">Index of the viewport column</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportY(System.Int32)">
<summary>
Gets the top coordinate of the specified viewport row for the active sheet.
</summary>
<param name="rowViewportIndex">Index of the viewport row</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportWidth(System.Int32)">
<summary>
Gets the width of the specified viewport column for the active sheet.
</summary>
<param name="columnViewportIndex">Index of the viewport column</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportWidth(System.Int32,System.Int32)">
<summary>
Gets the width of the specified viewport column of the specified sheet.
</summary>
<param name="sheetIndex">Index of the sheet</param>
<param name="columnViewportIndex">Index of the viewport column</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is not valid; must be between zero and the number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportHeight(System.Int32)">
<summary>
Gets the height of the specified viewport row for the active sheet.
</summary>
<param name="rowViewportIndex">Index of the viewport row</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportHeight(System.Int32,System.Int32)">
<summary>
Gets the height of the specified viewport row of the specified sheet.
</summary>
<param name="sheetIndex">Index of the sheet</param>
<param name="rowViewportIndex">Index of the viewport row</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is not valid; must be between zero and the number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetRowViewportCount">
<summary>
Gets the number of viewport rows in the active sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetRowViewportCount(System.Int32)">
<summary>
Gets the number of viewport rows in the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is not valid; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnViewportCount">
<summary>
Gets the number of viewport columns in the active sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnViewportCount(System.Int32)">
<summary>
Gets the number of viewport columns in the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is not valid; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetActiveRowViewportIndex">
<summary>
Gets the index of the active viewport row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetActiveRowViewportIndex(System.Int32)">
<summary>
Gets the index of the active viewport row for the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is not valid; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetActiveColumnViewportIndex">
<summary>
Gets the index of the active viewport column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetActiveColumnViewportIndex(System.Int32)">
<summary>
Gets the index of the active viewport column for the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is not valid; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetActiveViewport(System.Int32,System.Int32)">
<summary>
Sets the active viewport.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
<param name="columnViewportIndex">Viewport column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetActiveViewport(System.Int32,System.Int32,System.Int32)">
<summary>
Sets the active viewport for the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="rowViewportIndex">Viewport row index</param>
<param name="columnViewportIndex">Viewport column index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is not valid; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportPreferredWidth(System.Int32)">
<summary>
Gets the maximum width for the viewport column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportPreferredWidth(System.Int32,System.Int32)">
<summary>
Gets the maximum width for the viewport column for the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="columnViewportIndex">Viewport column index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is not valid; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetViewportPreferredWidth(System.Int32,System.Int32)">
<summary>
Sets the maximum width for the viewport column.
</summary>
<param name="columnViewportIndex">Viewport column index</param>
<param name="value">Width in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetViewportPreferredWidth(System.Int32,System.Int32,System.Int32)">
<summary>
Sets the maximum width for the viewport column for the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="columnViewportIndex">Viewport column index</param>
<param name="value">Width in pixels</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is not valid; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportPreferredHeight(System.Int32)">
<summary>
Gets the maximum height for the viewport row.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportPreferredHeight(System.Int32,System.Int32)">
<summary>
Gets the maximum height for the viewport row for the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="rowViewportIndex">Viewport row index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is not valid; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetViewportPreferredHeight(System.Int32,System.Int32)">
<summary>
Sets the maximum height for the viewport row.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
<param name="value">Height in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetViewportPreferredHeight(System.Int32,System.Int32,System.Int32)">
<summary>
Sets the maximum height for the viewport row for the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="rowViewportIndex">Viewport row index</param>
<param name="value">Height in pixels</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is not valid; must be between 0 and total number of sheets
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified viewport row index is not valid; must be between 0 and total number of viewport rows
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportLeftColumn(System.Int32)">
<summary>
Gets the index of the leftmost column of the specified viewport column.
</summary>
<param name="columnViewportIndex">Viewport column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportLeftColumn(System.Int32,System.Int32)">
<summary>
Gets the index of the leftmost column of the specified viewport column.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="columnViewportIndex">Viewport column index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is not valid; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportRightColumn(System.Int32)">
<summary>
Gets the index of the rightmost column of the specified viewport column.
</summary>
<param name="columnViewportIndex">Viewport column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportRightColumn(System.Int32,System.Int32)">
<summary>
Gets the index of the rightmost column of the specified viewport column.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="columnViewportIndex">Viewport column index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is not valid; must be between 0 and total number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetViewportLeftColumn(System.Int32,System.Int32)">
<summary>
Sets the index of the leftmost column of the specified viewport column.
</summary>
<param name="columnViewportIndex">Viewport column index</param>
<param name="value">Index of the column to set as the leftmost of that viewport</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetViewportLeftColumn(System.Int32,System.Int32,System.Int32)">
<summary>
Sets the index of the leftmost column of the specified viewport column for the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="columnViewportIndex">Viewport column index</param>
<param name="value">Index of the column to set as the leftmost of that viewport</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is not valid; must be between zero and the number of sheets
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified viewport column index is not valid; must be between zero and the number of viewport columns
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified value is not valid; must be between zero and the number of columns in the sheet
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportTopRow(System.Int32)">
<summary>
Gets the index of the top row of the specified viewport row.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportTopRow(System.Int32,System.Int32)">
<summary>
Gets the index of the top row of the specified viewport row for the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="rowViewportIndex">Viewport row index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is not valid; must be between zero and the number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportBottomRow(System.Int32)">
<summary>
Gets the index of the bottom row of the specified viewport row.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportBottomRow(System.Int32,System.Int32)">
<summary>
Gets the index of the bottom row of the specified viewport row.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="rowViewportIndex">Viewport row index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is not valid; must be between zero and the number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetViewportTopRow(System.Int32,System.Int32)">
<summary>
Sets the index of the top row of the specified viewport row.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
<param name="value">Index of the row to set as the top of that viewport</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetViewportTopRow(System.Int32,System.Int32,System.Int32)">
<summary>
Sets the index of the topmost row of the specified viewport for the specified sheet.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="rowViewportIndex">Viewport row index</param>
<param name="value">Index of the column to set as the leftmost of that viewport</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is not valid; must be between zero and the number of sheets
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified viewport row index is not valid; must be between zero and the number of viewport rows
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified value is not valid; must be between zero and the number of rows in the sheet
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.AddViewport(System.Int32,System.Int32)">
<summary>
Adds a row or column of viewports.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
<param name="columnViewportIndex">Viewport column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.AddViewport(System.Int32,System.Int32,System.Int32)">
<summary>
Adds a row or column of viewports.
</summary>
<param name="sheetIndex">Index of sheet to which to add viewports</param>
<param name="rowViewportIndex">Viewport row index</param>
<param name="columnViewportIndex">Viewport column index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is not valid; must be between zero and the number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.RemoveAllViewports">
<summary>
Removes all viewport rows and viewport columns.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.RemoveAllViewports(System.Int32)">
<summary>
Removes all viewport rows and viewport columns of the specified sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.RemoveViewport(System.Int32,System.Int32)">
<summary>
Removes a row or column of viewports.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
<param name="columnViewportIndex">Viewport column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.RemoveViewport(System.Int32,System.Int32,System.Int32)">
<summary>
Removes a row or column of viewports.
</summary>
<param name="sheetIndex">Sheet index</param>
<param name="rowViewportIndex">Viewport row index</param>
<param name="columnViewportIndex">Viewport column index</param>
<exception cref="T:System.ArgumentOutOfRangeException">
Specified sheet index is not valid; must be between zero and the number of sheets
</exception>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.PaintSplitBar(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints a split bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.PaintSplitBarCrossover(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the area where two split bars cross over each other.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.PaintSplitBox(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints a split box.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.AdjustRectangeByLayoutModel(FarPoint.Win.Spread.RowLayoutModel,FarPoint.Win.Spread.ColumnLayoutModel,System.Drawing.Rectangle)">
<summary>
Adjusts the rectange by layout model.
</summary>
<param name="rowLayoutModel">The row layout model.</param>
<param name="colLayoutModel">The col layout model.</param>
<param name="rect">The rect.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.PrintGridLine(FarPoint.PDF.PdfGraphics,FarPoint.Win.Spread.GridLine,FarPoint.Win.Spread.GridLine,FarPoint.Win.Spread.RowLayoutModel,FarPoint.Win.Spread.ColumnLayoutModel,FarPoint.Win.Spread.CellLayoutModel,System.Drawing.RectangleF,System.Boolean)">
<summary>
Exports the grid line.
</summary>
<param name="g">The g.</param>
<param name="hGridLine">The h grid line.</param>
<param name="vGridLine">The v grid line.</param>
<param name="rowLayoutModel">The row layout model.</param>
<param name="colLayoutModel">The col layout model.</param>
<param name="cellLayoutModel">The cell layout model.</param>
<param name="rect">The rect.</param>
<param name="isRightToLeft"></param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.PaintGridLines(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.GridLine,FarPoint.Win.Spread.GridLine,System.Drawing.Color)">
<summary>
Paints grid lines around a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.PaintGridLines(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.GridLine,FarPoint.Win.Spread.GridLine,System.Drawing.Color,System.Boolean)">
<summary>
Paints grid lines around a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetBorderInsetLeft(FarPoint.Win.IBorder,System.Boolean)">
<summary>
Returns left inset.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetBorderInsetRight(FarPoint.Win.IBorder,System.Boolean)">
<summary>
Returns right inset.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetBorderInsetTop(FarPoint.Win.IBorder)">
<summary>
Returns top inset.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetBorderInsetBottom(FarPoint.Win.IBorder)">
<summary>
Returns bottom inset.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.PaintBorder(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.IBorder,System.Boolean)">
<summary>
Paints border around a cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.PaintGrayArea(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the empty area beyond the last row or column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreatePrintViewportRowLayoutModel(System.Drawing.Graphics,FarPoint.Win.Spread.SheetView,System.Int32)">
<summary>
Creates a row layout model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreatePrintRowHeaderColumnLayoutModel(FarPoint.Win.Spread.SheetView)">
<summary>
Creates a column layout model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreatePrintViewportColumnLayoutModel(System.Drawing.Graphics,FarPoint.Win.Spread.SheetView,System.Int32)">
<summary>
Creates a column layout model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreatePrintRowHeaderCellLayoutModel(System.Drawing.Graphics,FarPoint.Win.Spread.SheetView,System.Int32)">
<summary>
Creates a cell layout model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreatePrintColumnFooterCellLayoutModel(System.Drawing.Graphics,FarPoint.Win.Spread.SheetView,System.Int32)">
<summary>
Creates a cell layout model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreatePrintColumnHeaderCellLayoutModel(System.Drawing.Graphics,FarPoint.Win.Spread.SheetView,System.Int32)">
<summary>
Creates a cell layout model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreatePrintViewportCellLayoutModel(System.Drawing.Graphics,FarPoint.Win.Spread.SheetView,System.Int32,System.Int32)">
<summary>
Creates a cell layout model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetSingleTitleHeight(FarPoint.Win.Spread.SheetView,System.Boolean)">
<summary>
Get height of title or subtitle
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetTitleBarHeight(FarPoint.Win.Spread.SheetView)">
<summary>
Get the height of Title bar(include of title and subtitle) in normal display.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.PrintTitle(System.Drawing.Graphics,FarPoint.Win.Spread.SheetView,FarPoint.PDF.PdfGraphics)">
<summary>
Print title and subtitle
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.PrintSingleTitle(System.Drawing.Graphics,FarPoint.PDF.PdfGraphics,FarPoint.Win.Spread.SheetView,System.Drawing.RectangleF,System.Boolean)">
<summary>
Print title or subtitle
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.InvalidateSheetCornerCellLayout">
<summary>
Invalidates the sheet corner cell layout.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SheetCornerStyleModel_Changed(System.Object,FarPoint.Win.Spread.Model.SheetStyleModelEventArgs)">
<summary>
Handles the Changed event of the SheetCornerStyleModel control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:FarPoint.Win.Spread.Model.SheetStyleModelEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SheetCornerDataModel_Changed(System.Object,FarPoint.Win.Spread.Model.SheetDataModelEventArgs)">
<summary>
Handles the Changed event of the SheetCornerDataModel control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:FarPoint.Win.Spread.Model.SheetDataModelEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SheetCornerSpanModel_Changed(System.Object,FarPoint.Win.Spread.Model.SheetSpanModelEventArgs)">
<summary>
Handles the Changed event of the SheetCornerSpanModel.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:FarPoint.Win.Spread.Model.SheetSpanModelEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.PaintCorner(System.Drawing.Graphics)">
<summary>
Paints the corner.
</summary>
<param name="g">The g.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetSheetCornerCellLayoutModel">
<summary>
Gets the sheet corner cell layout model.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CreateSheetCornerCellLayoutModel">
<summary>
Creates the sheet corner cell layout model.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetSheetCornerColumnLayoutModel">
<summary>
Gets the sheet corner column layout model.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetSheetCornerRowLayoutModel">
<summary>
Retrieve the row layout model for the corner
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetSheetCornerCellLayoutFromPoint(System.Int32,System.Int32)">
<summary>
Gets the sheet corner cell layout from point.
</summary>
<param name="x">The x </param>
<param name="y">The y.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.InvalidateHeaderInSpanSelection">
<summary>
Invalidates the header in span selection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetCellRangesInSpanSelection">
<summary>
Gets the cell ranges in span selection.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetCellRangesInSpanSelection(FarPoint.Win.Spread.Model.SheetSpanModelEventArgs)">
<summary>
Gets the cell ranges in span selection.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.IsListSelection">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.PaintActiveCell(System.Drawing.Graphics,FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.RowLayoutModel,FarPoint.Win.Spread.ColumnLayoutModel,FarPoint.Win.Spread.CellLayoutModel,System.Boolean,System.Boolean,System.Drawing.Rectangle)">
<summary>
Paints the active cell.
</summary>
<param name="g">Graphics device interface</param>
<param name="sheetView">View</param>
<param name="rowLayoutModel">Row layout model</param>
<param name="columnLayoutModel">Column layout model</param>
<param name="cellLayoutModel">Cell layout model</param>
<param name="shouldPaintCellFocus">Whether to paint cell focus</param>
<param name="shouldPaintRowFocus">Whether to paint row focus</param>
<param name="viewportClip">Rectangle bounding the view clip</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.PaintFormulaTraceDependents(System.Drawing.Graphics,System.Int32,System.Int32)">
<summary>
Paints the formula trace precedents.
</summary>
<param name="g">The g.</param>
<param name="rowPane">The row pane.</param>
<param name="columnPane">The column pane.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.PaintFormulaHoverCellRange(System.Drawing.Graphics,System.Int32,System.Int32)">
<summary>
Paints the hover cell range.
</summary>
<param name="g">Graphics interface device</param>
<param name="rowPane">Row pane</param>
<param name="columnPane">Column pane</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.PaintFormulaChoosedCell(System.Drawing.Graphics,System.Int32,System.Int32)">
<summary>
Paints the formula for the chosen cell.
</summary>
<param name="g">Graphics interface device</param>
<param name="rowPane">Row pane</param>
<param name="columnPane">Column pane</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.PaintFormulaPicker(System.Drawing.Graphics,System.Int32,System.Int32)">
<summary>
Paints the formula picker.
</summary>
<param name="g">The g.</param>
<param name="rowPane">The row pane.</param>
<param name="columnPane">The column pane.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.InitializeFormulaFocusRenderer(FarPoint.Win.Spread.FormulaFocusIndicatorRenderer,System.Int32,System.Int32,FarPoint.Win.Spread.Model.CellRange,System.Boolean@,System.Boolean@,System.Boolean@,System.Boolean@)">
<summary>
Initializes the formula focus renderer.
</summary>
<param name="formulaFocusRenderer">The formula focus renderer.</param>
<param name="rowPane">The row pane.</param>
<param name="columnPane">The column pane.</param>
<param name="cellRange">The cell range.</param>
<param name="left">if set to <c>true</c> [left].</param>
<param name="right">if set to <c>true</c> [right].</param>
<param name="top">if set to <c>true</c> [top].</param>
<param name="bottom">if set to <c>true</c> [bottom].</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ShowChartIndicator(FarPoint.Win.Spread.Chart.SpreadChart)">
<summary>
Shows the chart indicator.
</summary>
<param name="chart">The chart.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.HideChartIndicator">
<summary>
Hides the chart indicator.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetChartIndicatorCellRange(FarPoint.Win.Spread.SpreadView.ChartDataIndicatorHoveringType)">
<summary>
Gets the chart indicator cell range.
</summary>
<param name="chartDataIndicatorType">Type of the chart data indicator.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StartChartIndicatorCellRangeResizing(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Starts the chart indicator cell range resizing.
</summary>
<param name="rowPane">The row pane.</param>
<param name="columnPane">The column pane.</param>
<param name="row">The row.</param>
<param name="column">The column.</param>
<param name="x">The x.</param>
<param name="y">The y.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ContinueChartIndicatorCellRangeResizing(System.Int32,System.Int32)">
<summary>
Continues the chart indicator cell range resizing.
</summary>
<param name="x">The x.</param>
<param name="y">The y.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StopChartIndicatorCellRangeResizing">
<summary>
Stops the chart indicator cell range resizing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StartChartIndicatorCellRangeMoving(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Starts the chart indicator cell range moving.
</summary>
<param name="rowPane">The row pane.</param>
<param name="columnPane">The column pane.</param>
<param name="row">The row.</param>
<param name="column">The column.</param>
<param name="x">The x.</param>
<param name="y">The y.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ContinueChartIndicatorCellRangeMoving(System.Int32,System.Int32)">
<summary>
Continues the chart indicator cell range moving.
</summary>
<param name="x">The x.</param>
<param name="y">The y.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StopChartIndicatorCellRangeMoving">
<summary>
Stops the chart indicator cell range moving.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.InvalidateChartIndicator(System.Boolean,System.Boolean,System.Boolean)">
<summary>
Invalidate a part or all cell ranges of chart indicator.
Remember that title and legend is a abstract definition. It can be used flexibility in Chart Indicator.
If you use this function, here are the structure of title, legend and data:
+---------------------------------+
| | title |
|------------------+--------------+
| legend | data |
+---------------------------------+
</summary>
<param name="invalidTitle"></param>
<param name="invalidLegend"></param>
<param name="invalidData"></param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetRowColumnFromXY(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32@,System.Int32@)">
<summary>
Gets the row column from XY.
</summary>
<param name="x">The x.</param>
<param name="y">The y.</param>
<param name="rowPane">The row pane.</param>
<param name="columnPane">The column pane.</param>
<param name="row">The row.</param>
<param name="column">The column.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.PaintChartDataIndicators(System.Drawing.Graphics,System.Int32,System.Int32,System.Boolean)">
<summary>
Paints the chart data indicators.
</summary>
<param name="g">The g.</param>
<param name="rowPane">The row pane.</param>
<param name="columnPane">The column pane.</param>
<param name="performNextPane"></param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetSpreadView(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32)">
<summary>
Gets the view at the specified sheet and viewport.
</summary>
<param name="sheetView">Sheet (SheetView object)</param>
<param name="rowViewportIndex">Viewport row index</param>
<param name="columnViewportIndex">Viewport column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.IsContainValidCellRange(FarPoint.Win.Spread.Model.ISheetSpanModel,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
Determine whether the Span model or Row header span model contains a cell range which has RowCount > 1
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetRowRangeGroupWidth">
<summary>
Gets the width of the Row RangeGroup.
</summary>
<returns>Width of the Row RangeGroup.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnRangeGroupHeight">
<summary>
Gets the height of the Column RangeGroup.
</summary>
<returns>Height of the Column RangeGroup.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.DoPaint(System.Drawing.Graphics)">
<summary>
Raises the Paint event.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetSheetTabRectangle(System.Int32)">
<summary>
Gets the rectangle of the tab associated with a sheet for the view.
</summary>
<param name="sheetIndex">Sheet index for which to retrieve a tab rectangle</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StartCellEditing(System.EventArgs,System.Boolean)">
<summary>
Starts cell eiting in the view.
</summary>
<param name="e">Event</param>
<param name="formula">Whether there is a formula</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CorrectFormulaExpresstion(System.String)">
<summary>
Corrects the formula expresstion for end parenthesis.
</summary>
<param name="formula">The formula.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.cellEditor_EditingStopped(System.Object,System.EventArgs)">
<summary>
Stops or cancels cell editing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.cellEditor_EditingCanceled(System.Object,System.EventArgs)">
<summary>
Stops or cancels cell editing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StopCellEditing">
<summary>
Stops cell editing in the view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CancelCellEditing">
<summary>
Cancels cell editing in the view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ShowActiveCell(FarPoint.Win.Spread.VerticalPosition,FarPoint.Win.Spread.HorizontalPosition)">
<summary>
Moves the currently selected cell in the specified viewport to the specified position.
</summary>
<param name="verticalPosition">New vertical position of cell</param>
<param name="horizontalPosition">New horizontal position of cell</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ShowCell(System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.VerticalPosition,FarPoint.Win.Spread.HorizontalPosition)">
<summary>
Moves the specified cell in the specified viewport to the specified position.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
<param name="columnViewportIndex">Viewport column index</param>
<param name="row">Row index in that viewport</param>
<param name="column">Column index in that viewport</param>
<param name="verticalPosition">New vertical position of cell</param>
<param name="horizontalPosition">New horizontal position of cell</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ShowRow(System.Int32,System.Int32,FarPoint.Win.Spread.VerticalPosition)">
<summary>
Moves a row in the specified viewport to the specified position.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
<param name="row">Row index in that viewport</param>
<param name="verticalPosition">New vertical position of row</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ShowColumn(System.Int32,System.Int32,FarPoint.Win.Spread.HorizontalPosition)">
<summary>
Moves a column in the specified viewport to the specified position.
</summary>
<param name="columnViewportIndex">Viewport column index</param>
<param name="column">Column index in that viewport</param>
<param name="horizontalPosition">New horizontal position of column</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToPreviousRow">
<summary>
Moves the active cell to the previous row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToNextRow">
<summary>
Moves the active cell to the next row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToPreviousColumn">
<summary>
Moves the active cell to the previous column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToNextColumn">
<summary>
Moves the active cell to the next column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToPreviousColumnVisual">
<summary>
Moves the active cell to the previous column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToNextColumnVisual">
<summary>
Moves the active cell to the next column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToPreviousRowWrap">
<summary>
Moves the active cell to the previous row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToNextRowWrap">
<summary>
Moves the active cell to the next row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToPreviousColumnWrap">
<summary>
Moves the active cell to the previous cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToNextColumnWrap">
<summary>
Moves the active cell to the next cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToPreviousRowFirstColumn">
<summary>
Moves the active cell to the first column of the previous row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToNextRowFirstColumn">
<summary>
Moves the active cell to the first column of the next row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToPreviousColumnFirstRow">
<summary>
Moves the active cell to the first row of the previous column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToNextColumnFirstRow">
<summary>
Moves the active cell to the first row of the next column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToPreviousPageOfRows">
<summary>
Moves the active cell to the previous page of rows.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToNextPageOfRows">
<summary>
Moves the active cell to the next page of rows.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToPreviousPageOfColumns">
<summary>
Moves the active cell to the previous page of columns.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToNextPageOfColumns">
<summary>
Moves the active cell to the next page of columns.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToFirstRow">
<summary>
Moves the active cell to the first row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToLastRow">
<summary>
Moves the active cell to the last row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToLastRowWithData">
<summary>
Moves the active cell to the last row with data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToFirstColumn">
<summary>
Moves the active cell to the first column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToLastColumn">
<summary>
Moves the active cell to the last column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToLastColumnWithData">
<summary>
Moves the active cell to the last column with data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToFirstCell">
<summary>
Moves the active cell to the first cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToLastCell">
<summary>
Moves the active cell to the last cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToLastCellWithData">
<summary>
Moves the active cell to the last cell with data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CanNavigateToSheet(System.Int32)">
<summary>
Determines if user can navigate to the specified sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToPreviousSheet">
<summary>
Moves the active cell to the previous sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToNextSheet">
<summary>
Moves the active cell to the next sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToPreviousRow">
<summary>
Extends the selection to the previous row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToNextRow">
<summary>
Extends the selection to the next row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToPreviousColumn">
<summary>
Extends the selection to the previous column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToNextColumn">
<summary>
Extends the selection to the next column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToPreviousColumnVisual">
<summary>
Extends the selection to the previous column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToNextColumnVisual">
<summary>
Extends the selection to the next column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToPreviousPageOfRows">
<summary>
Extends the selection to the previous page of rows.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToNextPageOfRows">
<summary>
Extends the selection to the next page of rows.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToPreviousPageOfColumns">
<summary>
Extends the selection to the previous page of columns.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToNextPageOfColumns">
<summary>
Extends the selection to the next page of columns.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToFirstRow">
<summary>
Extends the selection to the first row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToLastRow">
<summary>
Extends the selection to the last row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToLastRowWithData">
<summary>
Extends the selection to the last row with data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToFirstColumn">
<summary>
Extends the selection to the first column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToLastColumn">
<summary>
Extends the selection to the last column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToLastColumnWithData">
<summary>
Extends the selection to the last column with data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToFirstCell">
<summary>
Extends the selection to the first cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToLastCell">
<summary>
Extends the selection to the last cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToLastCellWithData">
<summary>
Extends the selection to the last cell with data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ScrollTo(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Scrolls the viewport to the specified cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ScrollToPreviousRow">
<summary>
Scrolls the viewport to the previous row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ScrollToNextRow">
<summary>
Scrolls the viewport to the next row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ScrollToPreviousColumn">
<summary>
Scrolls the viewport to the previous column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ScrollToNextColumn">
<summary>
Scrolls the viewport to the next column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ScrollToPreviousColumnVisual">
<summary>
Scrolls the viewport to the previous column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ScrollToNextColumnVisual">
<summary>
Scrolls the viewport to the next column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ScrollToPreviousPageOfRows">
<summary>
Scrolls the viewport to the previous page of rows.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ScrollToNextPageOfRows">
<summary>
Scrolls the viewport to the next page of rows.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ScrollToPreviousPageOfColumns">
<summary>
Scrolls the viewport to the previous page of columns.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ScrollToNextPageOfColumns">
<summary>
Scrolls the viewport to the next page of columns.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ScrollToFirstRow">
<summary>
Scrolls the viewport to the first row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ScrollToLastRow">
<summary>
Scrolls the viewport to the last row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ScrollToLastRowWithData">
<summary>
Scrolls the viewport to the last row with data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ScrollToFirstColumn">
<summary>
Scrolls the viewport to the first column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ScrollToLastColumn">
<summary>
Scrolls the viewport to the last column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ScrollToLastColumnWithData">
<summary>
Scrolls the viewport to the last column with data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ScrollToFirstCell">
<summary>
Scrolls the viewport to the first Cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ScrollToLastCell">
<summary>
Scrolls the viewport to the last Cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ScrollToLastCellWithData">
<summary>
Scrolls the viewport to the last cell with data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ListNavigate(System.Int32,System.Boolean,System.Boolean)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToPreviousItem">
<summary>
Moves active item to the previous item and leaves selection unchanged.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToNextItem">
<summary>
Moves active item to the next item and leaves selection unchanged.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToPreviousPageOfItems">
<summary>
Moves active item to the previous page of items and leaves selection unchanged.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToNextPageOfItems">
<summary>
Moves active item to the next page of items and leaves selection unchanged.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToFirstItem">
<summary>
Moves active item to the first item and leaves selection unchanged.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToLastItem">
<summary>
Moves active item to the last item and leaves selection unchanged.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveToLastItemWithData">
<summary>
Moves active item to the last item with data and leaves selection unchanged.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToPreviousItem">
<summary>
Extends the selection to the previous item.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToNextItem">
<summary>
Extends the selection to the next item.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToPreviousPageOfItems">
<summary>
Extends the selection to the previous page of items.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToNextPageOfItems">
<summary>
Extends the selection to the next page of items.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToFirstItem">
<summary>
Extends the selection to the first item.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToLastItem">
<summary>
Extends the selection to the last item.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExtendToLastItemWithData">
<summary>
Extends the selection to the last item with data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SelectPreviousItem">
<summary>
Selects the previous item.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SelectNextItem">
<summary>
Selects the next item.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SelectPreviousPageOfItems">
<summary>
Selects the previous page of items.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SelectNextPageOfItems">
<summary>
Selects the next page of items.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SelectFirstItem">
<summary>
Selects the first item.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SelectLastItem">
<summary>
Selects the last item.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SelectLastItemWithData">
<summary>
Selects the last item with data.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ToggleItem">
<summary>
Toggles the current item.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SelectRow">
<summary>
Selects the current row.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SelectColumn">
<summary>
Select the current column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SelectSheet">
<summary>
Select the entire sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ClearCell">
<summary>
Removes all of the contents of the cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ClearSelectedCells">
<summary>
Removes all of the contents of the cell.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.DateTimeNow">
<summary>
Sets the value of this cell to the DateTime.Now value if it is a DateTimeCellType.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ComboShowList">
<summary>
Shows the combo box cell's list control.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ShowSubEditor">
<summary>
Shows the cells sub editor control
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveShapeUp">
<summary>
Moves the active shape up.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveShapeDown">
<summary>
Moves the active shape down.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveShapeLeft">
<summary>
Moves the active shape left.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveShapeRight">
<summary>
Moves the active shape right.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ActivateNextShape">
<summary>
Activates the next shape in the draw order.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ActivatePreviousShape">
<summary>
Activates the previous shape in the draw order.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.DeactivateShape">
<summary>
Deactivates the currently selected shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.IncreaseShapeWidth">
<summary>
Increases the width of the active shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.DecreaseShapeWidth">
<summary>
Decreases the width of the active shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.IncreaseShapeHeight">
<summary>
Increases the height of the active shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.DecreaseShapeHeight">
<summary>
Decreases the height of the active shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.RotateShapeClockwise">
<summary>
Rotates the active shape one degree clockwise.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.RotateShapeCounterClockwise">
<summary>
Rotates the active shape one degree counter-clockwise.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.DeleteShape">
<summary>
Deletes the active shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveChildUp">
<summary>
Moves the active child object up.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveChildDown">
<summary>
Moves the active child object down.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveChildLeft">
<summary>
Moves the active child object left.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.MoveChildRight">
<summary>
Moves the active child object right.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ActivateNextChild">
<summary>
Activates the next child object in order.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ActivatePreviousChild">
<summary>
Activates the previous child object in order.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.DeactivateChild">
<summary>
Deactivates the currently selected child object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.IncreaseChildWidth">
<summary>
Increases the width of the active child object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.DecreaseChildWidth">
<summary>
Decreases the width of the active child object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.IncreaseChildHeight">
<summary>
Increases the height of the active child object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.DecreaseChildHeight">
<summary>
Decreases the height of the active child object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.DeleteChild">
<summary>
Deletes the active child object.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.IsMouseMode">
<summary>
Determines if a mouse operation (ex. selecting or resizing or dragging) is occuring.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessKeyDown(System.Windows.Forms.KeyEventArgs)">
<summary>
Processes KeyDown events.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessKeyPress(System.Windows.Forms.KeyPressEventArgs)">
<summary>
Processes KeyPress events.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessKeyUp(System.Windows.Forms.KeyEventArgs)">
<summary>
Processes KeyUp events.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.IsInputChar(System.Char)">
<summary>
Gets whether the specified character is a defined input character.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.IsInputKey(System.Windows.Forms.Keys)">
<summary>
Gets whether the specified key is a defined input key.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessDialogChar(System.Char)">
<summary>
Specifies whether to process input characters from dialogs.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessDialogKey(System.Windows.Forms.Keys)">
<summary>
Specifies whether to process input keys from dialogs.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StartRowResizing(System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StartColumnResizing(System.Int32,System.Int32)">
<summary>
Starts resizing a column.
</summary>
<param name="columnPane">Viewport column index</param>
<param name="column">Column index</param>
<remarks>
For columnPane:
-2 indicates header viewport,
-1 indicates frozen viewport,
>= 0 indicates scrollable viewport
</remarks>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ContinueColumnResizing(System.Int32)">
<summary>
Continues resizing the column to the specified x-coordinate.
</summary>
<param name="x">X coordinate</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CancelColumnResizing">
<summary>
Cancels column resizing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.CancelRowResizing">
<summary>
Cancels row resizing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StopColumnResizing">
<summary>
Stops resizing the column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.AutoSizeColumn(System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StartColumnSelecting(System.Int32,System.Int32)">
<summary>
Starts selecting columns.
</summary>
<param name="columnPane">Viewport column index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ContinueColumnSelecting(System.Int32,System.Int32)">
<summary>
Continues selecting columns to the point at the specified coordinates.
</summary>
<param name="x">X coordinate</param>
<param name="y">Y coordinate</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StopColumnSelecting">
<summary>
Stops selecting the column.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StartCellSelecting(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Starts selecting cells.
</summary>
<param name="rowPane">Viewport row index</param>
<param name="columnPane">Viewport column index</param>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ContinueCellSelecting(System.Int32,System.Int32)">
<summary>
Continues selecting cells to the point of the specified coordinates.
</summary>
<param name="x">X coordinate</param>
<param name="y">Y coordinate</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StopCellSelecting">
<summary>
Stops selecting cells.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StartDragDropping(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Starts dragging and dropping.
</summary>
<param name="rowPane">Viewport row index</param>
<param name="columnPane">Viewport column index</param>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ContinueDragDropping(System.Int32,System.Int32)">
<summary>
Continues dragging and dropping to the point of the specified coordinates.
</summary>
<param name="x">X coordinate</param>
<param name="y">Y coordinate</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StopDragDropping">
<summary>
Stops dragging and dropping.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StartFormulaCellChoosing(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Starts the formula cell choosing.
</summary>
<param name="rowPane">The row pane.</param>
<param name="columnPane">The column pane.</param>
<param name="row">The row.</param>
<param name="column">The column.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ContinueFormulaCellChoosing(System.Int32,System.Int32)">
<summary>
Continues the formula cell choosing.
</summary>
<param name="x">The x.</param>
<param name="y">The y.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StopFormulaCellChoosing">
<summary>
Stops the formula cell choosing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.InvalidateFormulaParams">
<summary>
Invalidates the formula choosing cell range.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StartFormulaCellRangeMoving(System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.ParamItem)">
<summary>
Starts the formula cell range moving.
</summary>
<param name="rowPane">Row pane</param>
<param name="columnPane">Column pane</param>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="paramItem">Parameter item</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StopFormulaCellRangeMoving">
<summary>
Stops the formula cell range moving.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ContinueFormulaCellRangeMoving(System.Int32,System.Int32)">
<summary>
Continues the formula cell range moving.
</summary>
<param name="x">The x.</param>
<param name="y">The y.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StartFormulaCellRangeResizing(System.Int32,System.Int32,FarPoint.Win.Spread.ParamItem)">
<summary>
Starts the formula cell range resizing.
</summary>
<param name="rowPane">Row pane</param>
<param name="columnPane">Column pane</param>
<param name="paramItem">Parameter item</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StopFormulaCellRangeResizing">
<summary>
Stops the formula cell range resizing.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ContinueFormulaCellRangeResizing(System.Int32,System.Int32)">
<summary>
Continues the formula cell range resizing.
</summary>
<param name="x">The x.</param>
<param name="y">The y.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StartDragFilling(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Starts dragging and filling.
</summary>
<param name="rowPane">Viewport row index</param>
<param name="columnPane">Viewport column index</param>
<param name="row">Row index</param>
<param name="column">Column index</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ContinueDragFilling(System.Int32,System.Int32)">
<summary>
Continues dragging and filling to the point of the specified coordinates.
</summary>
<param name="x">X coordinate</param>
<param name="y">Y coordinate</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StopDragFilling">
<summary>
Stops dragging and filling.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StartPaintTimer">
<summary>
Starts the timer for painting animation.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StopPaintTimer">
<summary>
Stops the scroll timer.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StartScrollTimer">
<summary>
Starts the scroll timer.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.StopScrollTimer">
<summary>
Stops the scroll timer.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessMouseDownOverCorner(System.Windows.Forms.MouseEventArgs)">
<summary>
Processes MouseDown events that occur when the pointer is over the sheet corner.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessMouseDownOverFooterCorner(System.Windows.Forms.MouseEventArgs)">
<summary>
Processes MouseDown events that occur when the pointer is over the sheet footer corner.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessMouseDownOverRowHeader(System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Processes MouseDown events that occur when the pointer is over the row header.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ToHorizontalAlignment(FarPoint.Win.Spread.CellHorizontalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellHorizontalAlignment setting
to the corresponding FarPoint.Win.HorizontalAlignment setting.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellHorizontalAlignment value</param>
<returns>Corresponding FarPoint.Win.HorizontalAlignment value</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ToVerticalAlignment(FarPoint.Win.Spread.CellVerticalAlignment)">
<summary>
Converts a FarPoint.Win.Spread.CellVerticalAlignment setting
to the corresponding FarPoint.Win.VerticalAlignment setting.
</summary>
<param name="alignment">FarPoint.Win.Spread.CellVerticalAlignment value</param>
<returns>Corresponding FarPoint.Win.VerticalAlignment value</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ExpandRow(System.Int32,System.Boolean)">
<summary>
Expands or collapses the specified parent row, which shows or hides the child view
in a hierarchical display.
</summary>
<param name="row">Index of parent row to expand or collapse</param>
<param name="expand">True to expand and show the child sheet; false to collapse and hide the child sheet</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetRootWorkbook">
<summary>
Gets the top view (<see cref="T:FarPoint.Win.Spread.SpreadView"/> object).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetChildWorkbooks">
<summary>
Gets all child views (<see cref="T:FarPoint.Win.Spread.SpreadView"/> objects) that have been created.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetActiveWorkbook">
<summary>
Gets the active view (<see cref="T:FarPoint.Win.Spread.SpreadView"/> object).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetActiveWorkbook(FarPoint.Win.Spread.SpreadView)">
<summary>
Sets the active SpreadView to the specified object.
If the workbook passed in is null, sets this object to be the active SpreadView.
</summary>
<param name="workbook">SpreadView object workbook</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessMouseDownOverColumnHeader(System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Processes MouseDown events that occur when the pointer is over the column header.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessMouseDownOverColumnFooter(System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Processes MouseDown events that occur when the pointer is over the column header.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.InvalidateFormulaCellRanges(FarPoint.Win.Spread.ParamItem[])">
<summary>
Invalidates the formula cell ranges.
</summary>
<param name="paramItems">The param items.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.InvalidateFormulaCellRanges(FarPoint.Win.Spread.ParamItem)">
<summary>
Invalidates the formula cell ranges.
</summary>
<param name="paramItem">The param item.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.OnFormulaChanged(System.Object,System.EventArgs)">
<summary>
Called when [formula changed].
</summary>
<param name="sender">The sender.</param>
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.InvalidateFormulaCellRange(FarPoint.Win.Spread.Model.CellRange)">
<summary>
Invalidates the formula choosing cell range.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.InvalidateFormulaCellRange(FarPoint.Win.Spread.Model.CellRange,System.Boolean)">
<summary>
Invalidates the formula choosing cell range.
</summary>
<param name="cellRange">The cell range.</param>
<param name="isDataCellRange">if set to <c>true</c>, the cell range need to be converted to view cell range.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.IsMouseInDragDropLocation(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.IsMouseInDragFillLocation(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.IsMouseInReservedLocation(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessMouseDownOverViewport(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Processes MouseDown events that occur when the pointer is over a viewport.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessDoubleClick(System.Drawing.Point)">
<summary>
Processes DoubleClick events.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessDoubleClickOverTabStrip(System.Drawing.Point)">
<summary>
Processes DoubleClick events that occur when the pointer is over the sheet name tabs.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessMouseDownOverTabStrip(System.Windows.Forms.MouseEventArgs)">
<summary>
Processes MouseDown events that occur when the pointer is over the sheet name tabs.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.HitTest(System.Int32,System.Int32)">
<summary>
Returns information about the given location
</summary>
<param name="x"></param>
<param name="y"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Processes MouseDown events.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessMouseMoveOverCorner(System.Windows.Forms.MouseEventArgs)">
<summary>
Processes MouseMove events that occur when the pointer is over the sheet corner.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessMouseMoveOverRowHeader(System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Processes MouseMove events that occur when the pointer is over the row header.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessMouseMoveOverColumnHeader(System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Processes MouseMove events that occur when the pointer is over the column header.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessMouseMoveOverColumnFooter(System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Processes MouseMove events that occur when the pointer is over the column footer.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessMouseMoveOverViewport(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Processes MouseDown events that occur when the pointer is over a viewport.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessMouseMoveOverTabStrip(System.Windows.Forms.MouseEventArgs)">
<summary>
Processes MouseMove events that occur when the pointer is over the sheet name tabs.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
Processes MouseMove events.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnSelection(System.Int32)">
<summary>
Get Column Selection from SelectionModel
</summary>
<param name="moveColumnIndex">moveColumnIndex</param>
<returns>CellRange which includes moveColumnIndex</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetRowSelection(System.Int32)">
<summary>
Get Row Selection from SelectionModel
</summary>
<param name="moveRowIndex"></param>
<returns>CellRange which includes moveRowIndex</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
Processes MouseUp events.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.ProcessMouseWheel(System.Windows.Forms.MouseEventArgs)">
<summary>
Processes MouseWheel events.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetCellFromPixel(System.Int32,System.Int32)">
<summary>
Gets the row and column indexes of the cell at the specified pointer location.
</summary>
<param name="x">X-coordinate (in pixels) of the pointer location</param>
<param name="y">Y-coordinate (in pixels) of the pointer location</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetCellFromPixel(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets the row and column indexes of the cell at the specified pointer location in the view.
</summary>
<param name="rowViewportIndex">Row index in the viewport</param>
<param name="columnViewportIndex">Column index in the viewport</param>
<param name="x">X-coordinate (in pixels) of the pointer location</param>
<param name="y">Y-coordinate (in pixels) of the pointer location</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnHeaderCellFromPixel(System.Int32,System.Int32)">
<summary>
Gets the row and column indexes of the column header cell at the specified pointer location.
</summary>
<param name="x">X-coordinate (in pixels) of the pointer location</param>
<param name="y">Y-coordinate (in pixels) of the pointer location</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnHeaderCellFromPixel(System.Int32,System.Int32,System.Int32)">
<summary>
Gets the row and column indexes of the column header cell at the specified pointer location.
</summary>
<param name="columnViewportIndex">Column index in the viewport</param>
<param name="x">X-coordinate (in pixels) of the pointer location</param>
<param name="y">Y-coordinate (in pixels) of the pointer location</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetRowHeaderCellFromPixel(System.Int32,System.Int32)">
<summary>
Gets the row and column indexes of the row header cell at the specified pointer location.
</summary>
<param name="x">X-coordinate (in pixels) of the pointer location</param>
<param name="y">Y-coordinate (in pixels) of the pointer location</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetRowHeaderCellFromPixel(System.Int32,System.Int32,System.Int32)">
<summary>
Gets the row and column indexes of the row header cell at the specified pointer location.
</summary>
<param name="rowViewportIndex">Row index in the viewport</param>
<param name="x">X-coordinate (in pixels) of the pointer location</param>
<param name="y">Y-coordinate (in pixels) of the pointer location</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetCellRectangle(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Gets the rectangle of the cell.
</summary>
<param name="rowViewportIndex">Index of the row of the viewport</param>
<param name="columnViewportIndex">Index of the column of the viewport</param>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetCellRectangle(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Int32,System.Int32)">
<summary>
Gets the rectangle of the cell.
</summary>
<param name="rowViewportIndex">Index of the row of the viewport</param>
<param name="columnViewportIndex">Index of the column of the viewport</param>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<param name="isIndicator">if set to <c>true</c>, span cell won't be performed.</param>
<param name="limitColumnExpand"></param>
<param name="limitRowExpand"></param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetFormulaPickedCellRectangle(System.Int32,System.Int32,FarPoint.Win.Spread.Model.CellRange)">
<summary>
Gets the drawing cell rectangle.
</summary>
<param name="rowViewportIndex">Index of the row viewport.</param>
<param name="columnViewportIndex">Index of the column viewport.</param>
<param name="cellRange">The cell range.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetFormulaPickedCellRectangle(System.Int32,System.Int32,FarPoint.Win.Spread.Model.CellRange,System.Boolean,System.Int32@,System.Int32@)">
<summary>
Gets the drawing cell rectangle.
</summary>
<param name="rowViewportIndex">Index of the row viewport.</param>
<param name="columnViewportIndex">Index of the column viewport.</param>
<param name="cellRange">The cell range.</param>
<param name="absolute">Get real point (accepts negative value)</param>
<param name="offsetX">Offset in the X direction</param>
<param name="offsetY">Offset in the Y direction</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetRowHeaderRectangle(System.Int32)">
<summary>
Gets the rectangle of the row header.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
<returns>Rectangle of the row header.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnHeaderRectangle(System.Int32)">
<summary>
Gets the rectangle of the column header.
</summary>
<param name="columnViewportIndex">Viewport column index</param>
<returns>Rectangle of the column header.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetViewportRectangle(System.Int32,System.Int32)">
<summary>
Gets the rectangle of the viewport.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
<param name="columnViewportIndex"></param>
<returns>Rectangle of the viewport.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetRowSplitBarRectangle(System.Int32)">
<summary>
Gets the rectangle of the row split bar.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
<returns>Rectangle of the row split bar.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnSplitBarRectangle(System.Int32)">
<summary>
Gets the rectangle of the column split bar.
</summary>
<param name="columnViewportIndex">Viewport column index</param>
<returns>Rectangle of the column split bar.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetRowSplitBoxRectangle(System.Int32)">
<summary>
Gets the rectangle of the row split box.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
<returns>Rectangle of the row split box.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnSplitBoxRectangle(System.Int32)">
<summary>
Gets the rectangle of the column split box.
</summary>
<param name="columnViewportIndex">Viewport column index</param>
<returns>Rectangle of the column split box.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetHorizontalScrollBarRectangle(System.Int32)">
<summary>
Gets the rectangle of the horizontal scroll bar.
</summary>
<param name="columnViewportIndex">Viewport column index</param>
<returns>Rectangle of the horizontal scroll bar.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetVerticalScrollBarRectangle(System.Int32)">
<summary>
Gets the rectangle of the vertical scroll bar.
</summary>
<param name="rowViewportIndex">Viewport row index</param>
<returns>Rectangle of the vertical scroll bar.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetTabStripRectangle">
<summary>
Gets the rectangle of the tab strip.
</summary>
<returns>Rectangle of the tab strip.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetTabSplitBoxRectangle">
<summary>
Gets the rectangle of the split box on the tab strip.
</summary>
<returns>Rectangle of the split box on the tab strip.</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetMergeCell(System.Int32,System.Int32)">
<summary>
Returns the merged cell range for the specified cell.
</summary>
<param name="row">The row index of the cell</param>
<param name="column">The column index of the cell</param>
<returns>A CellRange object</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetFloatCell(System.Int32,System.Int32)">
<summary>
Returns the floating cell range for the specified cell.
</summary>
<param name="row">The row index of the cell</param>
<param name="column">The column index of the cell</param>
<returns>A CellRange object</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetFloatCells">
<summary>
Returns all floating cell ranges for the view.
</summary>
<returns>An ArrayList of CellRange objects</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetMergeCells">
<summary>
Returns all merged cell ranges for the view.
</summary>
<returns>An ArrayList of CellRange objects</returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnHeaderCellRectangle(System.Int32,System.Int32,System.Int32)">
<summary>
Gets the rectangle of the cell in the column header.
</summary>
<param name="columnViewportIndex">Index of the column of the viewport</param>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetColumnFooterCellRectangle(System.Int32,System.Int32,System.Int32)">
<summary>
Gets the rectangle of the cell in the column footer.
</summary>
<param name="columnViewportIndex">Index of the column of the viewport</param>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetRowHeaderCellRectangle(System.Int32,System.Int32,System.Int32)">
<summary>
Gets the rectangle of the cell in the row header.
</summary>
<param name="rowViewportIndex">Index of the row of the viewport</param>
<param name="row">Row index of the cell</param>
<param name="column">Column index of the cell</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.SetImage(System.Int32,System.Drawing.Image)">
<summary>
Sets the specified graphic for a specified part of the user interface.
</summary>
<param name="id">Unique identifier of the part of the user interface</param>
<param name="url">Image object containing the graphic image</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GetImage(System.Int32)">
<summary>
Gets the graphic image used in the specified part of the user interface.
</summary>
<param name="id">Unique identifier that specifies which part of the interface in which the image is used</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.Dispose">
<summary>
Internal use only. Frees system resources consumed by the SpreadView.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.Dispose(System.Boolean)">
<summary>
Internal use only. Frees system resources consumed by the SpreadView.
</summary>
<param name="disposing">Whether disposing</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.OnInkNotationExit(System.Object,System.EventArgs)">
<summary>
Occurs when exiting ink notation.
</summary>
<param name="o">Source object</param>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.OnInkNotationSave(System.Object,System.EventArgs)">
<summary>
Occurs when saving from ink notation.
</summary>
<param name="o">Source object</param>
<param name="e">Event data</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GoalSeek(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Double)">
<summary>
Attempt to find value for one cell that will produce desired formula result
in another cell.
</summary>
<param name="variableSheet">Sheet index of cell that contains value to adjust</param>
<param name="variableRow">Row index of cell that contains to adjust</param>
<param name="variableColumn">Column index of cell that contains value to adjust</param>
<param name="formulaSheet">Sheet index of cell that contains formula</param>
<param name="formulaRow">Row index of cell that contains formula</param>
<param name="formulaColumn">Column index of cell that contains formula</param>
<param name="desiredResult">Formula result you wish to achieve</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.InvalidateRowHeaderSpanCell(System.Int32)">
<summary>
Invalidates the current row header span cell area.
</summary>
<param name="row">row indext</param>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.AllowColumnMove">
<summary>
Gets or sets whether to allow the user to move columns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.AllowRowMove">
<summary>
Gets or sets whether to allow the user to move rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.AllowRowMoveDataAllowAddNew">
<summary>
Gets or sets a value that indicates whether to allow moving the add new row or asterisk row.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.AllowColumnMoveMultiple">
<summary>
Gets or sets whether to allow the user to move multiple columns.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.AllowRowMoveMultiple">
<summary>
Gets or sets whether to allow the user to move multiple rows.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.Bounds">
<summary>
Gets the size and location of the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.Sheets">
<summary>
Gets the sheets in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.Owner">
<summary>
Gets the FarPoint Spread component that owns this view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.ActiveSheetIndex">
<summary>
Gets or sets the active sheet in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.HorizontalScrollBarPolicy">
<summary>
Gets or sets when to display the horizontal scroll bars in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.VerticalScrollBarPolicy">
<summary>
Gets or sets when to display the vertical scroll bars in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.ScrollBarTrackPolicy">
<summary>
Gets or sets how the control scrolls the sheet when the user moves the scroll box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.ScrollTipPolicy">
<summary>
Gets or sets whether scroll tips appear when the user moves the scroll box.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.ScrollBarMaxAlign">
<summary>
Gets or sets the scroll bar alignment with the last row and column
of the spreadsheet in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.ScrollBarShowMax">
<summary>
Gets or sets whether the user can use the scroll box to scroll through
all the columns and rows in the view, or just a limited number of them.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.Skin">
<summary>
Gets or sets the skin for the spread.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.HorizontalScrollBar">
<summary>
Gets horizontal scroll bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.VerticalScrollBar">
<summary>
Gets vertical scroll bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.TabStripPlacement">
<summary>
Gets or sets the location of the tab strip in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.TabStripPolicy">
<summary>
Gets or sets the display policy for the tab strip in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.TabStripRatio">
<summary>
Gets or sets the width of the tab strip in the view expressed as
a percentage of the overall horizontal width of the control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.ColumnSplitBoxPolicy">
<summary>
Gets or sets when to display the column split box in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.ColumnSplitBoxAlignment">
<summary>
Gets or sets the alignment of the column split box relative
to the horizontal scroll bar in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.RowSplitBoxPolicy">
<summary>
Gets or sets when to display the row split box in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.RowSplitBoxAlignment">
<summary>
Gets or set the alignment of the row split box relative
to the vertical scroll bar in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.SuspendAnimations">
<summary>
Gets or sets whether animations, such as an animated focus renderer, in the view
are suspended.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.AllowCellOverflow">
<summary>
Gets or sets whether data can overflow into adjacent empty cells
in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.AllowEditOverflow">
<summary>
Gets or sets whether data can overflow into adjacent empty cells
while edit mode is on in a cell in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.AllowDragDrop">
<summary>
Gets or sets whether to allow the user to drag and drop a range
of cells in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.AllowDragFill">
<summary>
Gets or sets whether to allow the user to drag and fill cells with
the contents of a cell or cells in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.AllowUserFormulas">
<summary>
Gets or sets whether to allow the user to enter formulas in a cell in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.AutoClipboard">
<summary>
Gets or sets whether to allow shortcut keys for Clipboard actions in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.BorderCollapse">
<summary>
Gets or sets whether adjacent cell borders are collapsed
into a single line in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.VisualStyles">
<summary>
Gets or sets whether to use visual styles when rendering objects in the control.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.ButtonDrawMode">
<summary>
Gets or sets whether to display buttons in button and combo box cells in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.CellNoteIndicatorVisible">
<summary>
Gets or sets whether the cell note indicator appears in cells in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.TabStripInsertTab">
<summary>
Gets or sets whether the special insert tab is present on the tab strip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.TabStripInsertTabImage">
<summary>
Gets or sets the tabstrip insert-tab image.
</summary>
<value>The tabstrip insert-tab image.</value>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.TextTipPolicy">
<summary>
Gets or sets whether to display text tips and the location of the tips in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.TextTipDelay">
<summary>
Gets or sets the time (in milliseconds) the control waits before
displaying the text tip for the cell or header under the pointer in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.TextTipAppearance">
<summary>
Gets or sets the appearance of text tips in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.ClipboardOptions">
<summary>
Gets or sets whether headers are included with data in Clipboard actions in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.ClipboardPasteToFill">
<summary>
Gets or sets whether a single cell copied to the Clipboard fills the range
when pasted from the Clipboard to the component.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.EditModePermanent">
<summary>
Gets or sets whether edit mode remains on for any cell in the view when that cell becomes active.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.EditMode">
<summary>
Gets or sets whether the active cell in the view is in edit mode.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.EditModeReplace">
<summary>
Gets or sets whether the existing text in a cell in the view is selected
when the cell enters edit mode.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.MoveActiveOnFocus">
<summary>
Gets or sets whether the location of the active cell in the view moves
when the user moves the focus to the view using the mouse.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.OperationMode">
<summary>
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.RetainSelectionBlock">
<summary>
Gets or sets whether the selected range of cells in the view
remains highlighted when the view loses the focus.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.SelectionBlockOptions">
<summary>
Gets or sets which types of selections the user can make in the view.
</summary>
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
Specified value is not a valid selection option
</exception>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.LeftTab">
<summary>
Gets or sets the leftmost sheet tab in the tab strip in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.IsFormulaHolding">
<summary>
Gets a value indicating whether this instance is formula holding.
</summary>
<value>
<c>true</c> if this instance is formula holding; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.IsFormulaAttached">
<summary>
Gets a value indicating whether this instance is formula attached.
</summary>
<value>
<c>true</c> if this instance is formula attached; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.ModelessFormShowing">
<summary>
This variable indicates that there is a modeless form is using.
User can not do anything in SpreadView.
However, a new enhanced feature is activated in this mode: User can select a cell-range and after selected cellrange,
raise internal event: EnhancedCellRangeSelected
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.GroupBarInfo">
<summary>
Gets the grouping bar info of the active sheet.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.GroupBarText">
<summary>
Gets or sets the group bar text.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.ZoomFactor">
<summary>
Gets or sets the scaling factor of the display of the active sheet in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.EditingControl">
<summary>
Gets the contol editing the active cell, or null if the control is not in Edit mode.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.FormulaCellChoosed">
<summary>
Gets or sets a value indicating whether [formula cell choosed].
</summary>
<value><c>true</c> if [formula cell choosed]; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.FormulaCellChoosing">
<summary>
Gets or sets a value indicating whether [formula cell choosing].
</summary>
<value><c>true</c> if [formula cell choosed]; otherwise, <c>false</c>.</value>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.IsFormulaChanging">
<summary>
Gets a value indicating whether this instance is formula changing.
</summary>
<value>
<c>true</c> if this instance is formula changing; otherwise, <c>false</c>.
</value>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.Parent">
<summary>
Gets the parent (<see cref="T:FarPoint.Win.Spread.SpreadView"/> object) of the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.SelectionRenderer">
<summary>
Gets or sets a renderer for drawing selections in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.InterfaceRenderer">
<summary>
Gets or sets the interface renderer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.CellNoteIndicatorRenderer">
<summary>
Gets or sets the cell note indicator renderer.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.FocusRenderer">
<summary>
Gets or sets a renderer for drawing the focus rectangle in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.HorizontalScrollBarHeight">
<summary>
Gets or sets the height of horizontal scroll bars in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.HorizontalScrollBarSmallChange">
<summary>
Gets or sets the small increment for the horizontal scrollbar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.VerticalScrollBarSmallChange">
<summary>
Gets or sets the small increment for the vertical scrollbar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.VerticalScrollBarWidth">
<summary>
Gets or sets the width of vertical scroll bars in the view.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.AllowUserZoom">
<summary>
Gets or sets whether to allow the user to scale the view
using the Ctrl key and the mouse wheel.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.AllowUndo">
<summary>
Gets or sets whether to allow the user to undo edit operations.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.UndoManager">
<summary>
Gets or sets the undo manager for the SpreadView.
</summary>
<remarks>Child SpreadView objects use the top-level parent's UndoManager. You can set this property to null to recreate the UndoManager and clear the undo/redo state.</remarks>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.AllowSheetMove">
<summary>
Gets or sets whether sheets can be moved by drag-dropping the sheet tab.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SpreadView.AllowEditorReservedLocations">
<summary>
Gets or sets whether cell editor reserved mouse locations are allowed.
</summary>
<remarks>
Setting this property to true will prevent cell editors from showing custom cursors for reserved locations inside the cell,
and prevent cell editors from entering edit mode on a single click in a reserved location (the user will always have to double click
to enter edit mode in a cell).
</remarks>
</member>
<member name="T:FarPoint.Win.Spread.SpreadView.GridLinePainter">
<summary>
The GridLinePainter Class
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GridLinePainter.AddTopGridLine(System.Drawing.PointF,System.Drawing.PointF,System.Single,System.Single)">
<summary>
Adds the top grid line.
</summary>
<param name="sp">The sp.</param>
<param name="ep">The ep.</param>
<param name="width">The width.</param>
<param name="height">The height.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GridLinePainter.AddBottomGridLine(System.Drawing.PointF,System.Drawing.PointF,System.Single,System.Single)">
<summary>
Adds the bottom grid line.
</summary>
<param name="sp">The sp.</param>
<param name="ep">The ep.</param>
<param name="width">The width.</param>
<param name="height">The height.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GridLinePainter.AddLeftGridLine(System.Drawing.PointF,System.Drawing.PointF,System.Single,System.Single)">
<summary>
Adds the left grid line.
</summary>
<param name="sp">The sp.</param>
<param name="ep">The ep.</param>
<param name="width">The width.</param>
<param name="height">The height.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GridLinePainter.AddRightGridLine(System.Drawing.PointF,System.Drawing.PointF,System.Single,System.Single)">
<summary>
Adds the right grid line.
</summary>
<param name="sp">The sp.</param>
<param name="ep">The ep.</param>
<param name="width">The width.</param>
<param name="height">The height.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GridLinePainter.SplitGridLineByRectangle(System.Drawing.RectangleF)">
<summary>
Splits the grid line by rectangle.
</summary>
<param name="rect">The rect.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GridLinePainter.SplitHorizontalLines(System.Collections.ArrayList,System.Drawing.RectangleF)">
<summary>
Splits the horizontal lines.
</summary>
<param name="lines">The lines.</param>
<param name="rect">The rect.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GridLinePainter.SplitVerticalLines(System.Collections.ArrayList,System.Drawing.RectangleF)">
<summary>
Splits the vertical lines.
</summary>
<param name="lines">The lines.</param>
<param name="rect">The rect.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GridLinePainter.Paint(FarPoint.PDF.PdfGraphics,FarPoint.Win.Spread.GridLine,FarPoint.Win.Spread.GridLine,System.Drawing.Color)">
<summary>
Paints the grid line.
</summary>
<param name="g">The g.</param>
<param name="hGridLine">The h grid line.</param>
<param name="vGridLine">The v grid line.</param>
<param name="color">The color.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GridLinePainter.GetFirstColor(FarPoint.Win.Spread.GridLine)">
<summary>
Gets the color of the first.
</summary>
<param name="gridLine">The grid line.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GridLinePainter.GetSecondColor(FarPoint.Win.Spread.GridLine)">
<summary>
Gets the color of the second.
</summary>
<param name="gridLine">The grid line.</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GridLinePainter.PaintHorizontalLine(FarPoint.PDF.PdfGraphics,System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)">
<summary>
Paints the horizontal line.
</summary>
<param name="g">The g.</param>
<param name="p">The p.</param>
<param name="x">The x.</param>
<param name="y">The y.</param>
<param name="width">The width.</param>
<param name="height">The height.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GridLinePainter.PaintVerticalLine(FarPoint.PDF.PdfGraphics,System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)">
<summary>
Paints the vertical line.
</summary>
<param name="g">The g.</param>
<param name="p">The p.</param>
<param name="x">The x.</param>
<param name="y">The y.</param>
<param name="width">The width.</param>
<param name="height">The height.</param>
</member>
<member name="T:FarPoint.Win.Spread.SpreadView.GridLinePainter.Line">
<summary>
The Line Class
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GridLinePainter.Line.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Line"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadView.GridLinePainter.Line.#ctor(System.Drawing.PointF,System.Drawing.PointF,System.Single,System.Single)">
<summary>
Initializes a new instance of the <see cref="T:Line"/> class.
</summary>
<param name="sp">The sp.</param>
<param name="ep">The ep.</param>
<param name="width">The width.</param>
<param name="height">The height.</param>
</member>
<member name="T:FarPoint.Win.Spread.SpreadView.ChartDataIndicatorHoveringType">
<summary>
Represents what kind of cell range user's hovering
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.ChartDataIndicatorHoveringType.None">
<summary>
Nothing
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.ChartDataIndicatorHoveringType.Legend">
<summary>
The SeriesName cell range
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.ChartDataIndicatorHoveringType.Title">
<summary>
The Category cell range
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SpreadView.ChartDataIndicatorHoveringType.Data">
<summary>
The Data cell range
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SpreadHScrollBar">
<summary>
Represents the horizontal scroll bar for the view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadHScrollBar.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.SpreadHScrollBar"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadHScrollBar.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new FarPoint horizontal scroll bar for the view from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadHScrollBar.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Gets the object data.
</summary>
<param name="info">Serialization information.</param>
<param name="context">Streaming context.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadHScrollBar.#ctor(FarPoint.Win.Spread.FpScrollBarButtonCollection)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.SpreadHScrollBar"/> class.
</summary>
<param name="buttons">a collection of buttons of the FarPoint horizontal scroll bar</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadHScrollBar.WndProc(System.Windows.Forms.Message@)">
<summary>
Internal use only.
</summary>
<param name="m">Message</param>
</member>
<member name="T:FarPoint.Win.Spread.SpreadVScrollBar">
<summary>
Represents the vertical scroll bar for the view.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadVScrollBar.#ctor">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.SpreadVScrollBar"/> class.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SpreadVScrollBar.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new FarPoint vertical scroll bar for the view from serialization.
</summary>
<param name="info">Serialization information</param>
<param name="context">Streaming context</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadVScrollBar.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Gets the object data.
</summary>
<param name="info">Serialization information.</param>
<param name="context">Streaming context.</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadVScrollBar.#ctor(FarPoint.Win.Spread.FpScrollBarButtonCollection)">
<summary>
Initializes a new instance of the <see cref="T:FarPoint.Win.Spread.SpreadVScrollBar"/> class.
</summary>
<param name="buttons">a collection of buttons of the FarPoint horizontal scroll bar</param>
</member>
<member name="M:FarPoint.Win.Spread.SpreadVScrollBar.WndProc(System.Windows.Forms.Message@)">
<summary>
Internal use only.
</summary>
<param name="m">Message</param>
</member>
<member name="T:FarPoint.Win.Spread.SpreadViewportInfo">
<summary>
Represents the information about a viewport.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.ISelectionRenderer">
<summary>
Interface that supports painting the selection.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.ISelectionRenderer.PaintSelection(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the selection.
</summary>
<param name="g">Graphics object used to paint the rectangle</param>
<param name="x">x-coordinate of the upper-left corner of the rectangle to paint</param>
<param name="y">y-coordinate of the upper-left corner of the rectangle to paint</param>
<param name="width">Width of rectangle to paint</param>
<param name="height">Height of rectangle to paint</param>
</member>
<member name="T:FarPoint.Win.Spread.DefaultSelectionRenderer">
<summary>
Represents the default selection renderer.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultSelectionRenderer.PaintSelection(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the selection.
</summary>
<param name="g">Graphics object used to paint the rectangle</param>
<param name="x">x-coordinate of the upper-left corner of the rectangle to paint</param>
<param name="y">y-coordinate of the upper-left corner of the rectangle to paint</param>
<param name="width">Width of rectangle to paint</param>
<param name="height">Height of rectangle to paint</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultSelectionRenderer.ToString">
<summary>
Returns the name of the renderer.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.DefaultSelectionRenderer.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.DefaultSelectionRenderer.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
</member>
<member name="T:FarPoint.Win.Spread.GradientSelectionRenderer">
<summary>
Represents a renderer for displaying a gradient for a selection in the spreadsheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GradientSelectionRenderer.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Drawing2D.LinearGradientMode,System.Int32)">
<summary>
Creates a new gradient selection renderer.
</summary>
<param name="color1">Initial color in the gradient</param>
<param name="color2">Second color at the other end of the gradient</param>
<param name="mode">Gradient mode</param>
<param name="opacity">Amount of opacity (opposite of transparency)</param>
</member>
<member name="M:FarPoint.Win.Spread.GradientSelectionRenderer.PaintSelection(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the selection.
</summary>
<param name="g">Graphics object used to paint the rectangle</param>
<param name="x">X-coordinate of the upper-left corner of the rectangle to paint</param>
<param name="y">Y-coordinate of the upper-left corner of the rectangle to paint</param>
<param name="width">Width of rectangle to paint</param>
<param name="height">Height of rectangle to paint</param>
</member>
<member name="M:FarPoint.Win.Spread.GradientSelectionRenderer.FarPoint#Win#ISerializeSupport#Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the object to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
</member>
<member name="M:FarPoint.Win.Spread.GradientSelectionRenderer.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the object from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
</member>
<member name="M:FarPoint.Win.Spread.GradientSelectionRenderer.#ctor">
<summary>
Represents a renderer for selections with gradients.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GradientSelectionRenderer.ToString">
<summary>
Returns the name of the renderer as a string.
</summary>
<returns></returns>
</member>
<member name="P:FarPoint.Win.Spread.GradientSelectionRenderer.Opacity">
<summary>
Gets or sets the opacity.
</summary>
<value>Opacity amount</value>
</member>
<member name="P:FarPoint.Win.Spread.GradientSelectionRenderer.LinearGradientMode">
<summary>
Gets or sets the gradient mode.
</summary>
<value>Gradient mode</value>
</member>
<member name="P:FarPoint.Win.Spread.GradientSelectionRenderer.Color1">
<summary>
Gets or sets the first color of a two-color gradient.
</summary>
<value>First color</value>
</member>
<member name="P:FarPoint.Win.Spread.GradientSelectionRenderer.Color2">
<summary>
Gets or sets the second color of a two-color gradient.
</summary>
<value>Second color</value>
</member>
<member name="T:FarPoint.Win.Spread.CellHorizontalAlignment">
<summary>
Specifies the horizontal alignment of the cell contents.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellHorizontalAlignment.General">
<summary>
Aligns the cell contents according to the cell's interpretation of the contents
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellHorizontalAlignment.Left">
<summary>
Aligns the cell contents to the left
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellHorizontalAlignment.Center">
<summary>
Centers the contents in the cell horizontally
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellHorizontalAlignment.Right">
<summary>
Aligns the cell contents to the right
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellHorizontalAlignment.Justify">
<summary>
Indicates the text is inserted some whitespaces to make the text fill the special area.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellHorizontalAlignment.Distributed">
<summary>
Indicates the text is inserted some whitespaces to make the text fill the special area.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.CellVerticalAlignment">
<summary>
Specifies the vertical alignment of the cell contents.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellVerticalAlignment.General">
<summary>
Aligns the cell contents according to the cell's interpretation of the contents
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellVerticalAlignment.Top">
<summary>
Aligns the cell contents to the top
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellVerticalAlignment.Center">
<summary>
Centers the contents in the cell vertically
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellVerticalAlignment.Bottom">
<summary>
Aligns the cell contents to the bottom
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellVerticalAlignment.Justify">
<summary>
Indicates the text is inserted some whitespaces to make the text fill the special area.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.CellVerticalAlignment.Distributed">
<summary>
Indicates the text is inserted some whitespaces to make the text fill the special area.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.NoteStyle">
<summary>
Specifies how the cell notes are displayed.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NoteStyle.Hidden">
<summary>
Does not display the cell note or the cell note indicator
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NoteStyle.PopupNote">
<summary>
Displays the cell note as a floating object only when the mouse is over the cell note indicator
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NoteStyle.StickyNote">
<summary>
Displays the cell note always as a movable box
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NoteStyle.PopupStickyNote">
<summary>
Displays the cell sticky note as a floating object only when the mouse is over the cell note indicator
</summary>
</member>
<member name="T:FarPoint.Win.Spread.NoteIndicatorPosition">
<summary>
Specifies the position of the cell note indicator.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NoteIndicatorPosition.TopLeft">
<summary>
Displays the note indicator on the top and left of a cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NoteIndicatorPosition.TopRight">
<summary>
Displays the note indicator on the top and right of a cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NoteIndicatorPosition.BottomLeft">
<summary>
Displays the note indicator on the bottom and left of a cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.NoteIndicatorPosition.BottomRight">
<summary>
Displays the note indicator on the bottom and right of a cell.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SheetStyleProperty">
<summary>
Represents a style property in the <see cref="T:FarPoint.Win.Spread.StyleInfo"/> object.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetStyleProperty.BackColor">
<summary>
Represents the background color of the sheet style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetStyleProperty.ForeColor">
<summary>
Represents the text color of the sheet style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetStyleProperty.HorizontalAlignment">
<summary>
Represents the horizontal alignment of the sheet style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetStyleProperty.VerticalAlignment">
<summary>
Represents the vertical alignment of the sheet style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetStyleProperty.Font">
<summary>
Represents the font of the sheet style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetStyleProperty.Border">
<summary>
Represents the border setting of the sheet style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetStyleProperty.CellType">
<summary>
Represents the cell type of the sheet style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetStyleProperty.Editor">
<summary>
Represents the editor of the sheet style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetStyleProperty.Renderer">
<summary>
Represents the renderer of the sheet style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetStyleProperty.Formatter">
<summary>
Represents the formatter of the sheet style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetStyleProperty.Locked">
<summary>
Represents the lock setting of the sheet style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetStyleProperty.NoteStyle">
<summary>
Represents the note style setting of the sheet style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetStyleProperty.CanFocus">
<summary>
Represents the can focus setting of the sheet style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetStyleProperty.TabStop">
<summary>
Represents the tab stop setting of the sheet style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetStyleProperty.NoteIndicatorColor">
<summary>
Represents the cell note indicator color setting of the sheet style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetStyleProperty.NoteIndicatorSize">
<summary>
Represents the cell note indicator size of the sheet style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetStyleProperty.NoteIndicatorPosition">
<summary>
Represents the cell note indicator position of the sheet style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetStyleProperty.VisualStyles">
<summary>
Represents the visual style setting of the sheet style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetStyleProperty.TextIndent">
<summary>
Represents the text indent of the sheet style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetStyleProperty.CellPadding">
<summary>
Represents the cell padding of the sheet style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.SheetStyleProperty.Parent">
<summary>
Represents the parent of the sheet style.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetStyleProperty.#ctor(System.String)">
<summary>
Creates a new SheetStyleProperty object for the specified property name.
</summary>
<param name="text">Name of the style property</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetStyleProperty.ToString">
<summary>
Returns the name of the property.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.TabStripButtonPolicy">
<summary>
Specifies the display policy for the tab strip buttons.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TabStripButtonPolicy.Always">
<summary>
Always display the tab strip buttons
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TabStripButtonPolicy.Never">
<summary>
Do not ever display the tab strip buttons
</summary>
</member>
<member name="F:FarPoint.Win.Spread.TabStripButtonPolicy.AsNeeded">
<summary>
Display the tab strip buttons only when needed
</summary>
</member>
<member name="T:FarPoint.Win.Spread.SheetTab">
<summary>
Represents an individual sheet name tab.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetTab.#ctor">
<summary>
Creates a new sheet name tab.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.SheetTab.#ctor(System.Windows.Forms.Control)">
<summary>
Creates a new sheet name tab for the specified control.
</summary>
<param name="owner">Control that owns the new sheet tab (SheetTab object)</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetTab.#ctor(System.Windows.Forms.Control,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font)">
<summary>
Creates a new sheet name tab for the specified control
with the specified appearance settings.
</summary>
<param name="owner">Control that owns the new sheet tab (SheetTab object)</param>
<param name="backColor">Background color of the sheet tab</param>
<param name="foreColor">Text color of the sheet tab</param>
<param name="font">Text font of the sheet tab</param>
</member>
<member name="M:FarPoint.Win.Spread.SheetTab.#ctor(System.Windows.Forms.Control,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,System.Int32)">
<summary>
Creates a new sheet name tab for the specified control
with the specified appearance and size settings.
</summary>
<param name="owner">Control that owns the new sheet tab (SheetTab object)</param>
<param name="backColor">Background color of the sheet tab</param>
<param name="foreColor">Text color of the sheet tab</param>
<param name="font">Text font of the sheet tab</param>
<param name="size">Integer width of the tab in pixels</param>
</member>
<member name="P:FarPoint.Win.Spread.SheetTab.BackColor">
<summary>
Gets or sets the background color for the sheet name tab.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetTab.ForeColor">
<summary>
Gets or sets the foreground color (text color) for the sheet name tab.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetTab.Font">
<summary>
Gets or sets the font for the sheet name in the sheet name tab.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.SheetTab.Size">
<summary>
Gets or sets the size for the sheet name tab.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.TabStrip">
<summary>
Represents the set of sheet tabs.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.TabStrip.#ctor">
<summary>
Creates a new tab strip for a set of sheet tabs.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.TabStrip.#ctor(FarPoint.Win.Spread.FpSpread)">
<summary>
Creates a new tab strip for a set of sheet tabs for the specified FpSpread component.
</summary>
<param name="owner">FpSpread component that owns the tab strip</param>
</member>
<member name="M:FarPoint.Win.Spread.TabStrip.GetCompositeSize(System.Int32)">
<summary>
Gets the size of the sheet tabs.
</summary>
<param name="sheetTabIndex">Index of the sheet tab (Sheet tabs are zero based)</param>
</member>
<member name="M:FarPoint.Win.Spread.TabStrip.GetActiveSize(System.Int32)">
<summary>
Gets the size of the active sheet tab.
</summary>
<param name="activeTabIndex">Index of the active sheet tab (Sheet tabs are zero based)</param>
</member>
<member name="M:FarPoint.Win.Spread.TabStrip.GetCompositeBackColor(System.Int32)">
<summary>
Gets the background color of the sheet tabs.
</summary>
<param name="sheetTabIndex">Zero-based index of the sheet tab</param>
</member>
<member name="M:FarPoint.Win.Spread.TabStrip.GetCompositeForeColor(System.Int32)">
<summary>
Gets the text color of the sheet tabs.
</summary>
<param name="sheetTabIndex">Zero-based index of the sheet tab</param>
</member>
<member name="M:FarPoint.Win.Spread.TabStrip.GetActiveBackColor(System.Int32)">
<summary>
Gets the background color of the active sheet tab.
</summary>
<param name="activeTabIndex">Zero-based index of the active sheet tab</param>
</member>
<member name="M:FarPoint.Win.Spread.TabStrip.GetActiveForeColor(System.Int32)">
<summary>
Gets the text color of the active sheet tab.
</summary>
<param name="activeTabIndex">Zero-based index of the active sheet tab</param>
</member>
<member name="M:FarPoint.Win.Spread.TabStrip.GetCompositeFont(System.Int32)">
<summary>
Gets the font settings of the sheet tabs.
</summary>
<param name="sheetTabIndex">Zero-based index of the sheet tab</param>
</member>
<member name="M:FarPoint.Win.Spread.TabStrip.GetActiveFont(System.Int32)">
<summary>
Gets the font setting of the active sheet tab.
</summary>
<param name="activeTabIndex">Zero-based index of the active sheet tab</param>
</member>
<member name="P:FarPoint.Win.Spread.TabStrip.Owner">
<summary>
Gets or sets the FpSpread component that owns the tab strip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TabStrip.Count">
<summary>
Gets the number of sheet tabs displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TabStrip.Item(System.Int32)">
<summary>
Gets the specified sheet tab.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TabStrip.BackColor">
<summary>
Gets or sets the background color of the tab strip.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TabStrip.Editable">
<summary>
Gets or sets whether users can edit the sheet tab text by double-clicking it.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TabStrip.ActiveSheetTab">
<summary>
Gets the active sheet tab.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TabStrip.DefaultSheetTab">
<summary>
Gets the default sheet tab.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TabStrip.ButtonPolicy">
<summary>
Gets or sets whether the sheet tab buttons are displayed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.TitleInfoEventHandler">
<summary>
Occurs when the user makes a change to property of title info
that affects to the sheet.
</summary>
<param name="sender">Sender</param>
<param name="e">Property Changed Event Arguments</param>
</member>
<member name="T:FarPoint.Win.Spread.TitleInfo">
<summary>
Represents information about the title bar in the FarPoint Spread component.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.TitleInfo.#ctor">
<summary>
Creates information about the title bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.TitleInfo.FireChanged(System.String)">
<summary>
Raises the property Changed event.
</summary>
<param name="propertyName"> Property name</param>
</member>
<member name="M:FarPoint.Win.Spread.TitleInfo.Serialize(System.Xml.XmlTextWriter)">
<summary>
Saves the title bar information to XML.
</summary>
<param name="w">XmlTextWriter object used to save the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.TitleInfo.Deserialize(System.Xml.XmlNodeReader)">
<summary>
Loads the title bar information from XML.
</summary>
<param name="r">XmlNodeReader from which to read the object</param>
<returns>true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.TitleInfo.Reset(System.Boolean)">
<summary>
Resets the title bar information.
</summary>
<param name="invalidateLayout">Whether refresh layout or not</param>
</member>
<member name="M:FarPoint.Win.Spread.TitleInfo.Reset">
<summary>
Resets the title bar information.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.TitleInfo.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Serializes the object to the SerializationInfo.
</summary>
<param name="info">Serialization Info</param>
<param name="context">Streaming Context</param>
</member>
<member name="M:FarPoint.Win.Spread.TitleInfo.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates a new default sheet style model from deserialization.
</summary>
<param name="si">Serialization Info</param>
<param name="ctx">Streaming Context</param>
</member>
<member name="P:FarPoint.Win.Spread.TitleInfo.StyleInfo">
<summary>
Gets or sets the style of the title bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TitleInfo.BackColor">
<summary>
Gets or sets the back color of the title bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TitleInfo.ForeColor">
<summary>
Gets or sets the text color of the title bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TitleInfo.HorizontalAlign">
<summary>
Gets or sets the horizontal alignment of the title bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TitleInfo.VerticalAlign">
<summary>
Gets or sets the vertical alignment of the title bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TitleInfo.Font">
<summary>
Gets or sets the font settings of the title bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TitleInfo.CellType">
<summary>
Gets or sets the type of cell for the title bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TitleInfo.Visible">
<summary>
Gets or sets whether the titleinfo is displayed.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TitleInfo.Border">
<summary>
Gets or sets the border of the title bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TitleInfo.Height">
<summary>
Gets or sets the height of title bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TitleInfo.Text">
<summary>
Gets or sets the text of title bar.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.TitleInfo.Value">
<summary>
Gets or sets the value for title.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.Tracker">
<summary>
Class provides visual feedback when mouse is used to resize
or split viewports.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Tracker.#ctor(System.Windows.Forms.Control,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a tracker.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Tracker.ReverseRectangle">
<summary>
Reverses the rectangle occupied by the tracker.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Tracker.Start">
<summary>
Starts the tracking process.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Tracker.MoveX(System.Int32)">
<summary>
Moves the tracker to a new horizontal position.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Tracker.MoveY(System.Int32)">
<summary>
Moves the tracker to a new vertical position.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.Tracker.Stop">
<summary>
Stops the tracking process.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Tracker.X">
<summary>
Gets the x coordinate of the tracker.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Tracker.Y">
<summary>
Gets the y coordinate of the tracker.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Tracker.Width">
<summary>
Gets the width of the tracker.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Tracker.Height">
<summary>
Gets the height of the tracker.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Tracker.MinimumX">
<summary>
Gets the minimum x coordinate allowed for the tracker.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Tracker.MinimumY">
<summary>
Gets the minimum y coordiante allowed for the tracker.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Tracker.MaximumX">
<summary>
Gets the maximum x coordinate allowed for the tracker.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Tracker.MaximumY">
<summary>
Gets the maximum y coordinate allowed for the tracker
</summary>
</member>
<member name="P:FarPoint.Win.Spread.Tracker.Moved">
<summary>
Indicates whether or not the tracker has ever been moved since its creation.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoActionBase">
<summary>
Represents the undo actions for Conditional Formatting Base
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoActionBase.sheetView">
<summary>
Specifies the view of the Clear Conditional Formatting
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoActionBase.cellRanges">
<summary>
Specifies the cell range of the Clear Conditional Formatting
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoActionBase.columnConditionalFormat">
<summary>
Specifies the Column Conditional Format of the Clear Conditional Formatting
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoActionBase.rowConditionalFormat">
<summary>
Specifies the Row Conditional Format of the Clear Conditional Formatting
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoActionBase.cellConditionalFormat">
<summary>
Specifies the Cell Conditional Format of the Clear Conditional Formatting
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoActionBase.sheetConditionalFormat">
<summary>
Specifies the SheetConditional Format of the Clear Conditional Formatting
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoActionBase.#ctor">
<summary>
Create a new ConditionalFormatUndoActionBase action
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoActionBase.#ctor(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.Model.CellRange[])">
<summary>
Create a new ConditionalFormatUndoActionBase action
</summary>
<param name="sheetView">sheetview object</param>
<param name="cellRanges">cellRange object</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoActionBase.SaveUndoState">
<summary>
Saves undo state information.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoActionBase.PerformUndoAction(System.Object)">
<summary>
Performs the undo action.
</summary>
<param name="sender">object</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoActionBase.Undo(System.Object)">
<summary>
Performs the undo action.
</summary>
<param name="sender">object</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoActionBase.GetCorrectConditionString(System.String)">
<summary>
Get the Correct Condition format String
</summary>
<param name="value">Condition format string</param>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoActionBase.SaveConditionalFormat">
<summary>
Save the conditional format infomation.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoActionBase.ClearConditionalFormat">
<summary>
Clear the conditionalformat information
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoActionBase.RestoreConditionalFormat">
<summary>
Restore the conditionalformat infomation.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoAction">
<summary>
Represents the undo actions for Conditional Formatting
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoAction.nameStyle">
<summary>
Specifies the nameStyle
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoAction.comparisonOperator">
<summary>
Specifies the comparisonOperator
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoAction.firstExpression">
<summary>
Specifies the firstExpression
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoAction.lastExpression">
<summary>
Specifies the lastExpression
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoAction.firstCondition">
<summary>
Specifies the firstCondition
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoAction.lastCondition">
<summary>
Specifies the lastCondition
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoAction.#ctor">
<summary>
Creates a new undo action for a Conditional Formatting
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoAction.#ctor(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.Model.CellRange[],FarPoint.Win.Spread.NamedStyle,FarPoint.Win.Spread.ComparisonOperator,FarPoint.CalcEngine.Expression,FarPoint.CalcEngine.Expression,System.String,System.String)">
<summary>
Creates a new undo action for a Conditional Formatting of the specified range in the specified sheet.
</summary>
<param name="sheetView">sheetview object</param>
<param name="cellRanges">cellrange object</param>
<param name="nameStyle">namestyle object</param>
<param name="comparisonOperator">comparisonOperator object</param>
<param name="firstExpression">firstExpression object</param>
<param name="lastExpression">lastExpression object</param>
<param name="firstCondition">firstCondition object</param>
<param name="lastCondition">lastCondition object</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoAction.PerformUndoAction(System.Object)">
<summary>
Peforms the Conditional Formatting action.
</summary>
<param name="sender">Object on which the action occurred</param>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>If sender is a SpreadView object, it will be used to get the undo state (active sheet, selection, etc.)
and raise events during the operation. If its AutoClipboard property is false, then this action will fail.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoAction.SetConditionalFormat(System.Int32,System.Int32,FarPoint.Win.Spread.ConditionalFormat)">
<summary>
Sets conditional format(s) for the cell at the specified row and column.
</summary>
<param name="view"></param>
<param name="row">Row index of cell</param>
<param name="column">Column index of cell</param>
<param name="conditionalFormats">Conditional format(s)</param>
<returns>Does the conditional formate set.</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoAction.Undo(System.Object)">
<summary>
Peforms the undo Conditional Formatting action.
</summary>
<param name="sender">Object on which the action occurred</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ConditionalFormatUndoAction.ToString">
<summary>
Returns a string representing this object.
</summary>
<returns>String</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.ClearConditionalFormatUndoAction">
<summary>
Represents the undo actions for Clear Conditional Formatting
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClearConditionalFormatUndoAction.#ctor">
<summary>
Creates a new undo action for Clear Conditional Formatting
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClearConditionalFormatUndoAction.#ctor(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.Model.CellRange[])">
<summary>
Creates a new undo action for a Clear Conditional Formatting of the specified range in the specified sheet.
</summary>
<param name="sheetView"></param>
<param name="cellRanges"></param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClearConditionalFormatUndoAction.#ctor(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.Model.CellRange)">
<summary>
Create a new ClearConditionalFormatUndoAction.
</summary>
<param name="sheetView"></param>
<param name="cellRange"></param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClearConditionalFormatUndoAction.PerformUndoAction(System.Object)">
<summary>
Peforms the Clear Conditional Formatting action.
</summary>
<param name="sender">Object on which the action occurred</param>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>If sender is a SpreadView object, it will be used to get the undo state (active sheet, selection, etc.)
and raise events during the operation. If its AutoClipboard property is false, then this action will fail.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClearConditionalFormatUndoAction.Undo(System.Object)">
<summary>
Peforms the undo Clear Conditional Formatting action.
</summary>
<param name="sender">Object on which the action occurred</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClearConditionalFormatUndoAction.ToString">
<summary>
Returns a string representing this object.
</summary>
<returns>String</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.CellEditUndoAction">
<summary>
Represents the undo actions for editing a cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellEditUndoAction.sheetView">
<summary>
Specifies the sheet containing the cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellEditUndoAction.row">
<summary>
Specifies the index of the column containing the cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellEditUndoAction.column">
<summary>
Specifies the index of the column containing the cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellEditUndoAction.oldValue">
<summary>
Specifies the original value in the cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellEditUndoAction.oldIsFormula">
<summary>
Specifies whether the old value is a formula.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellEditUndoAction.newValue">
<summary>
Specifies the new value in the cell.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellEditUndoAction.newIsFormula">
<summary>
Specifies whether the new value is a formula.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.CellEditUndoAction.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Object,System.Boolean)">
<summary>
Creates a new cell edit undo action.
</summary>
<param name="sheetView">Sheet</param>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="newValue">Object with new value</param>
<param name="isFormula">Whether the cell content is a formula</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.CellEditUndoAction.SaveUndoState">
<summary>
Saves the undo state of this cell editing action.
</summary>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>Undo state for this object is saved on construction.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.CellEditUndoAction.PerformUndoAction(System.Object)">
<summary>
Performs the cell editing action.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.CellEditUndoAction.Undo(System.Object)">
<summary>
Undoes the cell editing action.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.CellEditUndoAction.ToString">
<summary>
Returns a string representing this object.
</summary>
<returns>string</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.FormulaEditorUndoAction">
<summary>
Represents the undo actions for entering a formula in the forumla editor
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.FormulaEditorUndoAction.sheetView">
<summary>
Specifies the sheet containing the cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.FormulaEditorUndoAction.cellRange">
<summary>
Specifies the cell range.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.FormulaEditorUndoAction.formula">
<summary>
Specifies the formula being set.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.FormulaEditorUndoAction.actions">
<summary>
Specifies the array of cell edit actions handling the formula changes.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.FormulaEditorUndoAction.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32,System.String)">
<summary>
Creates a new instance of FormulaEditorUndoAction
</summary>
<param name="sheetView">SheetView</param>
<param name="row">int</param>
<param name="column">int</param>
<param name="rowCount">int</param>
<param name="columnCount">int</param>
<param name="formula">string</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.FormulaEditorUndoAction.SaveUndoState">
<summary>
Saves undo state information.
</summary>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.FormulaEditorUndoAction.Undo(System.Object)">
<summary>
Undoes the formulas.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.FormulaEditorUndoAction.PerformUndoAction(System.Object)">
<summary>
Sets the formulas.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction">
<summary>
Represents the undo actions for drag-dropping a range of cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction.sheetView">
<summary>
Specifies the sheet containing column resizing.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction.row">
<summary>
Specifies the starting row index of the range to drag and drop.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction.column">
<summary>
Specifies the starting column index of the range to drag and drop.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction.rowCount">
<summary>
Specifies the number of rows to drag and drop.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction.columnCount">
<summary>
Specifies the number of columns to drag and drop.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction.targetRow">
<summary>
Specifies the destination row index for the drag and drop.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction.targetColumn">
<summary>
Specifies the destination column index for the drag and drop.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction.copy">
<summary>
Specifies whether to copy the range (true to copy; false to move).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction.cellInfo">
<summary>
Specifies the previous contents of the target range (before the drag and drop).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction.columnInfo">
<summary>
Specifies the column-level contents of the target range (before the drag and drop).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction.rowInfo">
<summary>
Specifies the row-level contents of the target range (before the drag and drop).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction.cellInfoSource">
<summary>
Specifies the previous contents of the source range (before the drag and drop), if copy is false.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction.columnInfoSource">
<summary>
Specifies the column-level contents of source range (before the drag and drop), if copy is false.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction.rowInfoSource">
<summary>
Specifies the row-level contents of source range (before the drag and drop), if copy is false.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction.rangeGroupInfosSource">
<summary>
The source <see cref="T:FarPoint.Win.Spread.RangeGroupInfo"/> objects in drag drop range.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction.rangeGroupInfosTarget">
<summary>
The target <see cref="T:FarPoint.Win.Spread.RangeGroupInfo"/> objects in drag drop range.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
Creates a new undo action for a cell the drag and drop operation.
</summary>
<param name="sheetView">SheetView</param>
<param name="row">Row index of start of range to drag and drop</param>
<param name="column">Column index of start of range to drag and drop</param>
<param name="rowCount">Number of rows in range to drag and drop</param>
<param name="columnCount">Number of columns in range to drag and drop</param>
<param name="targetRow">Target row index</param>
<param name="targetColumn">Target column index</param>
<param name="copy">True to copy, false to move</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction.SaveUndoState">
<summary>
This implemenation does nothing, since undo state is passed to the constructor.
</summary>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction.Undo(System.Object)">
<summary>
Undoes the cell drag-drop.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction.PerformUndoAction(System.Object)">
<summary>
Performs the cell drag-drop.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.CellDragDropUndoAction.ToString">
<summary>
Returns a string representing this object.
</summary>
<returns>string</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.CellDragFillUndoAction">
<summary>
Represents the undo actions for drag-filling a range of cells.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragFillUndoAction.sheetView">
<summary>
Specifies the sheet containing column resizing.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragFillUndoAction.row">
<summary>
Specifies the starting row index of the range to drag and fill.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragFillUndoAction.column">
<summary>
Specifies the starting column index of the range to drag and fill.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragFillUndoAction.rowCount">
<summary>
Specifies the number of rows in the range to drag and fill.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragFillUndoAction.columnCount">
<summary>
Specifies the number of columns in the range to drag and fill.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragFillUndoAction.fillCount">
<summary>
Specifies the number of rows or columns to fill.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragFillUndoAction.fillDirection">
<summary>
Specifies the direction of the fill operation.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragFillUndoAction.dataOnly">
<summary>
Specifies whether to fill data only.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragFillUndoAction.cellInfo">
<summary>
Specifies the previous contents of the target range (before the drag and fill).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragFillUndoAction.columnInfo">
<summary>
Specifies the previous column-level settings of the target range (before drag and fill).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.CellDragFillUndoAction.rowInfo">
<summary>
Specifies the previous row-level settings of the target range (before drag and fill).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.CellDragFillUndoAction.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.FillDirection,System.Boolean)">
<summary>
Creates a new undo action for a cell drag and fill operation.
</summary>
<param name="sheetView">SheetView</param>
<param name="row">Row index of start of range to drag and fill</param>
<param name="column">Column index of start of range to drag and fill</param>
<param name="rowCount">Number of rows in range to drag and fill</param>
<param name="columnCount">Number of columns in range to drag and fill</param>
<param name="fillCount">Number of rows or columns to fill</param>
<param name="fillDirection">Direction for fill</param>
<param name="dataOnly">True to fill data only</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.CellDragFillUndoAction.GetTargetCellRange">
<summary>
Calculates the target CellRange for the drag-fill operation based on the source range and fill direction.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.CellDragFillUndoAction.SaveUndoState">
<summary>
Saves undo state information before drag-fill.
</summary>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.CellDragFillUndoAction.Undo(System.Object)">
<summary>
Undoes the cell drag-fill.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.CellDragFillUndoAction.PerformUndoAction(System.Object)">
<summary>
Performs the cell drag-fill operation.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.CellDragFillUndoAction.ToString">
<summary>
Returns a string representing this object.
</summary>
<returns>string</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.ColumnResizeUndoAction">
<summary>
Represents the undo actions for resizing a column on a sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ColumnResizeUndoAction.sheetView">
<summary>
Specifies the sheet containing column resizing.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ColumnResizeUndoAction.columns">
<summary>
Specifies the column width change extents
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ColumnResizeUndoAction.size">
<summary>
Specifies the size.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ColumnResizeUndoAction.rowHeader">
<summary>
Specifies whether the row header is involved.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ColumnResizeUndoAction.oldsizes">
<summary>
Specifies the old sizes.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ColumnResizeUndoAction.#ctor(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.ColumnWidthChangeExtents[],System.Int32,System.Boolean)">
<summary>
Creates a new undo action for column resizing.
</summary>
<param name="sheetView">Sheet</param>
<param name="columns">ColumnWidthChangeExtents[]</param>
<param name="size">Size</param>
<param name="rowHeader">Whether the column being resized is in the row header area</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ColumnResizeUndoAction.SaveUndoState">
<summary>
Saves undo information.
</summary>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ColumnResizeUndoAction.PerformUndoAction(System.Object)">
<summary>
Performs the column resizing action.
</summary>
<param name="sender">Object on which the action occurred</param>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ColumnResizeUndoAction.Undo(System.Object)">
<summary>
Undoes the column resizing action.
</summary>
<param name="sender">Object on which the action occurred</param>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ColumnResizeUndoAction.ToString">
<summary>
Returns a string representing this object.
</summary>
<returns>string</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.RowResizeUndoAction">
<summary>
Represents the undo actions for resizing a column on a sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.RowResizeUndoAction.sheetView">
<summary>
Specifies the sheet containing the row resizing.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.RowResizeUndoAction.rows">
<summary>
Specifies the row height change extents.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.RowResizeUndoAction.size">
<summary>
Specifies the size.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.RowResizeUndoAction.columnHeader">
<summary>
Specifies whether the column header is involved.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.RowResizeUndoAction.columnFooter">
<summary>
Specifies whether the column footer is involved.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.RowResizeUndoAction.oldsizes">
<summary>
Specifies the old sizes.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RowResizeUndoAction.#ctor(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.RowHeightChangeExtents[],System.Int32,System.Boolean)">
<summary>
Creates a new undo action for row resizing.
</summary>
<param name="sheetView">Sheet</param>
<param name="rows">Array of row height change extents</param>
<param name="size">Size</param>
<param name="columnHeader">Whether the row being resized is in the column header area</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RowResizeUndoAction.#ctor(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.RowHeightChangeExtents[],System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new undo action for row resizing.
</summary>
<param name="sheetView">Sheet</param>
<param name="rows">Array of row height change extents</param>
<param name="size">Size</param>
<param name="columnHeader">Whether the row being resized is in the column header area</param>
<param name="columnFooter">Whether the row being resized is in the column footer area</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RowResizeUndoAction.SaveUndoState">
<summary>
Saves undo information.
</summary>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RowResizeUndoAction.PerformUndoAction(System.Object)">
<summary>
Performs the row resizing action.
</summary>
<param name="sender">Object on which the action occurred</param>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RowResizeUndoAction.Undo(System.Object)">
<summary>
Undoes the row resizing action.
</summary>
<param name="sender">Object on which the action occurred</param>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RowResizeUndoAction.ToString">
<summary>
Returns a string representing this object.
</summary>
<returns>string</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.ColumnMoveUndoAction">
<summary>
Represents the undo actions for moving a column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ColumnMoveUndoAction.sheetView">
<summary>
Specifies the sheet containing the column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ColumnMoveUndoAction.column">
<summary>
Specifies the source column index.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ColumnMoveUndoAction.count">
<summary>
Specifies the number of columns to move.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ColumnMoveUndoAction.actualMovedColumnCount">
<summary>
Specifies the actual number of column which is moved successfully
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ColumnMoveUndoAction.movedToColumn">
<summary>
Specifies the destination column index.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ColumnMoveUndoAction.moveContent">
<summary>
Specifies whether to move the content.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ColumnMoveUndoAction.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Boolean)">
<summary>
Creates a new ColumnMoveUndoAction
</summary>
<param name="sheetView">Sheet</param>
<param name="column">Sheet source column index</param>
<param name="movedToColumn">Sheet destination column index</param>
<param name="moveContent">Whether to move content in models (or else reorder columns)</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ColumnMoveUndoAction.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
Creates a new ColumnMoveUndoAction
</summary>
<param name="sheetView">Sheet</param>
<param name="column">Sheet source column index</param>
<param name="movedToColumn">Sheet destination column index</param>
<param name="movedColumnCount">Count of columns to move</param>
<param name="moveContent">Whether to move content in models (or else reorder columns)</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ColumnMoveUndoAction.SaveUndoState">
<summary>
Saves undo state information.
</summary>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>This implementation does nothing, since undo state is specified in the constructor.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ColumnMoveUndoAction.PerformUndoAction(System.Object)">
<summary>
Performs the column moving action.
</summary>
<param name="sender">Object on which the action occurred</param>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ColumnMoveUndoAction.Undo(System.Object)">
<summary>
Undoes the column moving action.
</summary>
<param name="sender">Object on which the action occurred</param>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ColumnMoveUndoAction.ToString">
<summary>
Returns a string representing this object.
</summary>
<returns>string</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.RowMoveUndoAction">
<summary>
Represents the undo actions for moving a row.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.RowMoveUndoAction.sheetView">
<summary>
Specifies the sheet containing the row.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.RowMoveUndoAction.row">
<summary>
Specifies the source row index.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.RowMoveUndoAction.count">
<summary>
Specifies the number of rows to move.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.RowMoveUndoAction.actualMovedRowCount">
<summary>
Specifies the actual number of column which is moved successfully
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.RowMoveUndoAction.movedToRow">
<summary>
Specifies the destination row index.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.RowMoveUndoAction.moveContent">
<summary>
Specifies whether to move the content.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RowMoveUndoAction.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Boolean)">
<summary>
Creates a new undo action for row moving.
</summary>
<param name="sheetView">Sheet</param>
<param name="row">Row index</param>
<param name="movedToRow">Destination row index</param>
<param name="moveContent">true to move content in SheetView.Models, false to reorder rows</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RowMoveUndoAction.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
Creates a new undo action for row moving.
</summary>
<param name="sheetView">Sheet</param>
<param name="row">Row index</param>
<param name="movedToRow">Destination row index</param>
<param name="movedRowCount">Count of rows to move</param>
<param name="moveContent">true to move content in SheetView.Models, false to reorder rows</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RowMoveUndoAction.SaveUndoState">
<summary>
Saves undo state information.
</summary>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>This implementation does nothing, since undo state is specified in the constructor.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RowMoveUndoAction.PerformUndoAction(System.Object)">
<summary>
Performs the rows moving action.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RowMoveUndoAction.Undo(System.Object)">
<summary>
Performs the undo row moving action.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>If sender is a SpreadView object, it will be used to fire events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RowMoveUndoAction.ToString">
<summary>
Returns a string representing this object.
</summary>
<returns>string</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.RangeGroupStateChangeUndoAction">
<summary>
Represents the undo actions for a collapse or expand action for range groups.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.RangeGroupStateChangeUndoAction.sheetView">
<summary>
Specifies the view of the Clipboard operation.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.RangeGroupStateChangeUndoAction.isRowGroup">
<summary>
Specifies whether the action applies to an outline (range group) of rows (or columns).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.RangeGroupStateChangeUndoAction.collapsedIndexList">
<summary>
Specifies the collection of collapsed indexes inside an outline (range group).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.RangeGroupStateChangeUndoAction.group">
<summary>
Specifies the outline (range group) to expand or collapse.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RangeGroupStateChangeUndoAction.#ctor">
<summary>
Creates a new undo action for the state of an outline (range group).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RangeGroupStateChangeUndoAction.#ctor(FarPoint.Win.Spread.SheetView,FarPoint.Win.Spread.RangeGroupInfo,System.Boolean)">
<summary>
Creates a new undo action for the state of a specified outline (range group).
</summary>
<param name="sheetView">Sheet containing the outline (range group)</param>
<param name="group">Whether the action is for an outline (range group)</param>
<param name="isRowGroup">Whether the action is an outline (range group) of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RangeGroupStateChangeUndoAction.SaveUndoState">
<summary>
Saves the undo state of this range group.
</summary>
<remarks>This implementation does nothing; undo state is saved by grouping or ungrouping after ungrouping or grouping.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RangeGroupStateChangeUndoAction.PerformUndoAction(System.Object)">
<summary>
Peforms the Clipboard cut action.
</summary>
<param name="sender">Object on which the action occurred</param>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>If the sender is a SpreadView object, it is used to get the undo state (active sheet, selection, etc.)
and raise the events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RangeGroupStateChangeUndoAction.Undo(System.Object)">
<summary>
Peforms the undo Clipboard cut action.
</summary>
<param name="sender">Object on which the action occurred</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.RangeGroupButtonClickUndoAction">
<summary>
Represents the undo actions for group button click action.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.RangeGroupButtonClickUndoAction.sheetView">
<summary>
Specifies the view of the Clipboard operation.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.RangeGroupButtonClickUndoAction.isRowGroup">
<summary>
Specifies whether the action applies to an outline (range group) of rows.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.RangeGroupButtonClickUndoAction.activeLevel">
<summary>
Specifies the level on which the action occurs.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.RangeGroupButtonClickUndoAction.collapsedIndexList">
<summary>
Specifies the collection of collapsed indexes inside groups.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RangeGroupButtonClickUndoAction.#ctor">
<summary>
Creates a new undo action for a range group.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RangeGroupButtonClickUndoAction.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Boolean)">
<summary>
Creates a new undo action for an outline (range group) for a specified sheet.
</summary>
<param name="sheetView">Sheet</param>
<param name="activeLevel">Level</param>
<param name="isRowGroup">Whether the outline (range group) is of rows</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RangeGroupButtonClickUndoAction.SaveUndoState">
<summary>
Saves the undo state of an outline (range group) button click action.
</summary>
<remarks>This implementation does nothing; undo state is saved by grouping or ungrouping after ungrouping
or grouping.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RangeGroupButtonClickUndoAction.PerformUndoAction(System.Object)">
<summary>
Peforms the Clipboard cut action.
</summary>
<param name="sender">Object on which the action occurred</param>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>If sender is a SpreadView object, it will be used to get the undo state (active sheet, selection, etc.)
and raise the events during the operation.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.RangeGroupButtonClickUndoAction.Undo(System.Object)">
<summary>
Peforms the undo Clipboard cut action.
</summary>
<param name="sender">Object on which the action occurred</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction">
<summary>
Represents the undo actions for a Clipboard cut.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.sheetView">
<summary>
Specifies the view of the Clipboard operation.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.cellRange">
<summary>
Specifies the cell range of the Clipboard operation.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.cellInfo">
<summary>
Specifies the cell Clipboard information.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.columnInfo">
<summary>
Specifies the column Clipboard information.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.rowInfo">
<summary>
Specifies the row Clipboard information.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.shapeInfo">
<summary>
Specifies the shape Clipboard information.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.shapeName">
<summary>
Name of shape being cut.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.sheetCornerStyle">
<summary>
Specifies the sheet corner style included if the entire sheet is cut
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.rowRangeGroupInfo">
<summary>
Specifies the outline (range group) information.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.columnRangeGroupInfo">
<summary>
Specifies the outline (range group) information.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.chartInfo">
<summary>
Specifies the chart information.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.copyOptions">
<summary>
Specifies the ClipboardCopyOptions for the cut action.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.text">
<summary>
Specifies the text if copyOptions is AsString or AsStringSkipHidden
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.#ctor">
<summary>
Creates a new undo action for a Clipboard cut.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.#ctor(FarPoint.Win.Spread.ClipboardCopyOptions)">
<summary>
Creates a new undo action for a Clipboard cut using the specified copy options.
</summary>
<param name="copyOptions">ClipboardCopyOptions</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.ClipboardCopyOptions)">
<summary>
Creates a new undo action for a Clipboard cut of the specified range in the specified sheet.
</summary>
<param name="sheetView">SheetView</param>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="copyOptions">ClipboardCopyOptions</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a new undo action for a Clipboard cut of the specified range in the specified sheet.
</summary>
<param name="sheetView">SheetView</param>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.SetSheetView(FarPoint.Win.Spread.SheetView)">
<summary>
LanceDo - 2009/07/20 - Sets the sheet view.
Actually, this.sheetView should not be null all the time.
However, I use originalSheetView to make everything work as much as possible.
</summary>
<param name="sheetView">The sheet view.</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.SaveUndoState">
<summary>
Saves the undo state of this Clipboard cut action.
</summary>
<remarks>This implementation does nothing; the undo state is saved by getting the Clipboard objects after the cut.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.PerformUndoAction(System.Object)">
<summary>
Peforms the Clipboard cut action.
</summary>
<param name="sender">Object on which the action occurred</param>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>If sender is a SpreadView object, it will be used to get the undo state (active sheet, selection, etc.)
and raise events during the operation. If its AutoClipboard property is false, then this action will fail.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.Undo(System.Object)">
<summary>
Peforms the undo Clipboard cut action.
</summary>
<param name="sender">Object on which the action occurred</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardCutUndoAction.ToString">
<summary>
Returns a string representing this object.
</summary>
<returns>String</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.ClipboardCutDataOnlyUndoAction">
<summary>
Represents the undo actions for a Clipboard cut operation that involves data only.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardCutDataOnlyUndoAction.sheetView">
<summary>
Specifies the sheet containing the cell range.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardCutDataOnlyUndoAction.cellRange">
<summary>
Specifies the cell range of the Clipboard operation.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardCutDataOnlyUndoAction.text">
<summary>
Specifies the text.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardCutDataOnlyUndoAction.#ctor">
<summary>
Creates a new undo action for a Clipboard cut operation that involves data only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardCutDataOnlyUndoAction.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a new undo action for a Clipboard cut of the specified range in the specified sheet that involves data only.
</summary>
<param name="sheetView">SheetView</param>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardCutDataOnlyUndoAction.SaveUndoState">
<summary>
Saves the undo state of this Clipboard operation action.
</summary>
<remarks>This implementation does nothing; the undo state is saved by getting the Clipboard objects after the cut.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardCutDataOnlyUndoAction.PerformUndoAction(System.Object)">
<summary>
Performs the Clipboard operation action.
</summary>
<param name="sender">Object on which the action occurred</param>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>If sender is a SpreadView object, it will be used to get the undo state (active sheet, selection, etc.)
and raise events during the operation. If its AutoClipboard property is false, then this action will fail.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardCutDataOnlyUndoAction.Undo(System.Object)">
<summary>
Performs the undo Clipboard operation action.
</summary>
<param name="sender">Object on which the action occurred</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardCutDataOnlyUndoAction.ToString">
<summary>
Returns a string representing this object.
</summary>
<returns>string</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction">
<summary>
Represents the undo actions for a Clipboard paste operation.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.sheetView">
<summary>
Specifies the sheet containing the cell range.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.cellRange">
<summary>
Specifies the cell range of the Clipboard operation.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.pasteOption">
<summary>
Specifies the Clipboard paste options.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.cellInfo">
<summary>
Specifies the previous contents of the range (before the paste).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.columnInfo">
<summary>
Specifies the column level contents of range (before paste).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.rowInfo">
<summary>
Specifies the row level contents of range (before paste).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.sheetCornerStyle">
<summary>
Specifies the sheet corner style of range (before paste).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.clipCellInfo">
<summary>
Specifies the cell information to be pasted (retrieved from the Clipboard).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.clipColumnInfo">
<summary>
Specifies the column information to be pasted (retrieved from the Clipboard).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.clipRowInfo">
<summary>
Specifies the row information to be pasted (retrieved from the Clipboard).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.clipSheetCornerStyle">
<summary>
Specifies the sheet corner style to be pasted (retrieved from the Clipboard).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.undoStateSaved">
<summary>
Specifies whether undo state information has been saved.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.rowRangeGroupInfo">
<summary>
Specifies the outline (range group) information for rows.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.columnRangeGroupInfo">
<summary>
Specifies the outline (range group) information for columns.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.clipRangeGroupInfos">
<summary>
Specifies the outline (range group) information for the Clipboard.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.pasteToFill">
<summary>
Specifies whether the paste operation was performed with ClipboardPasteToFill
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.previewRowInfo">
<summary>
Specifies preview row information for the Clipboard.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.clipText">
<summary>
Specifies the text pasted (retrieved from the Clipboard).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.text">
<summary>
Specifies the previous text contents of the range (before the paste).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.shape">
<summary>
Specifies the shape object pasted (retrieved from the Clipboard).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.#ctor">
<summary>
Creates a new undo action for a Clipboard paste operation.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.#ctor(FarPoint.Win.Spread.ClipboardPasteOptions)">
<summary>
Creates a new undo action for a Clipboard paste operation using the specified paste option.
</summary>
<param name="pasteOption">ClipboardPasteOptions</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.#ctor(FarPoint.Win.Spread.SheetView,FarPoint.Win.ElementWindowless)">
<summary>
Creates a new undo action for a Clipboard paste of the specified shape to the specified sheet.
</summary>
<param name="sheetView">Sheet</param>
<param name="shape">Shape</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.ClipboardPasteOptions)">
<summary>
Creates a new undo action for a Clipboard paste to the specified range in the specified sheet using the specified SheetView, cell range, and paste option.
</summary>
<param name="sheetView">SheetView</param>
<param name="row">Row index</param>
<param name="column">Column index</param>
<param name="rowCount">Number of rows</param>
<param name="columnCount">Number of columns</param>
<param name="pasteOption">ClipboardPasteOptions</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.SaveUndoState">
<summary>
Saves the undo state of this Clipboard operation action.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.PerformUndoAction(System.Object)">
<summary>
Performs the Clipboard paste action.
</summary>
<param name="sender">Object on which the action occurred</param>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>If sender is a SpreadView object, it will be used to get the undo state (active sheet, selection, etc.) and fire events during the operation. If its AutoClipboard property is false, then this action will fail.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.Undo(System.Object)">
<summary>
Undoes the paste from the Clipboard.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardPasteUndoAction.ToString">
<summary>
Returns a string representing this object.
</summary>
<returns>string</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.GroupColumnUndoAction">
<summary>
Represents the undo actions for drag-drop of a column to the grouping bar.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.GroupColumnUndoAction.sheetView">
<summary>
Specifies the sheet containing the column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.GroupColumnUndoAction.column">
<summary>
Specifies the index of column dropped on the grouping bar.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.GroupColumnUndoAction.prevDataModel">
<summary>
Specifies the previous data model.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.GroupColumnUndoAction.prevSortInfo">
<summary>
Specifies the previous sort information.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.GroupColumnUndoAction.append">
<summary>
Specifies whether to append this column to the existing grouping or to create a new grouping.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.GroupColumnUndoAction.dragFromGroupBar">
<summary>
Specifies whether the user drags a box from the group bar.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.GroupColumnUndoAction.targetColumn">
<summary>
Specifies the target column location, if dragFromGroupBar is true.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.GroupColumnUndoAction.columnIndexes">
<summary>
Specifies the states of moving columns before ungroup the data model.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.GroupColumnUndoAction.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Boolean)">
<summary>
Creates a new undo action for drag-drop of a column to the grouping bar.
</summary>
<param name="sheetView">SheetView</param>
<param name="column">int</param>
<param name="append">Whether to append</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.GroupColumnUndoAction.#ctor(FarPoint.Win.Spread.SheetView,System.Int32,System.Boolean,System.Boolean,System.Int32)">
<summary>
Creates a new undo action for drag-drop of a column to the grouping bar.
</summary>
<param name="sheetView">Sheet index</param>
<param name="column">Column index</param>
<param name="append">Whether to append</param>
<param name="dragFromGroupBar">Whether to drag from the grouping bar</param>
<param name="targetColumn">Target column index</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.GroupColumnUndoAction.SaveUndoState">
<summary>
Saves undo state
</summary>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.GroupColumnUndoAction.Undo(System.Object)">
<summary>
Undoes the grouping
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.GroupColumnUndoAction.PerformUndoAction(System.Object)">
<summary>
Adds the column to the grouping bar.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.GroupColumnUndoAction.ToString">
<summary>
Returns a string representing this object.
</summary>
<returns>string</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.GroupClickUndoAction">
<summary>
Represents the undo actions for clicking a column in the grouping bar
to reverse sorting for that column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.GroupClickUndoAction.sheetView">
<summary>
Specifies the sheet containing the column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.GroupClickUndoAction.column">
<summary>
Specifies the index of column clicked in the grouping bar.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.GroupClickUndoAction.#ctor(FarPoint.Win.Spread.SheetView,System.Int32)">
<summary>
Creates a new GroupClickUndoAction.
</summary>
<param name="sheetView">SheetView</param>
<param name="column">Index of column clicked</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.GroupClickUndoAction.SaveUndoState">
<summary>
Saves undo state.
</summary>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>This implementation does nothing, since undo state is specified in the constructor.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.GroupClickUndoAction.Undo(System.Object)">
<summary>
Reverses the sort in the clicked group.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.GroupClickUndoAction.PerformUndoAction(System.Object)">
<summary>
Reverses the sort in the clicked group.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.GroupClickUndoAction.ClickGroup(FarPoint.Win.Spread.SpreadView)">
<summary>
Helper function that reverses the sort in the clicked group (called by PerformUndoAction and Undo).
</summary>
<param name="spreadView">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.GroupClickUndoAction.ToString">
<summary>
Returns a string representing this object.
</summary>
<returns>string</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.SheetTabDragDropUndoAction">
<summary>
Represents the undo action for drag-dropping a sheet tab to reorder the sheets in the control.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.SheetTabDragDropUndoAction.from">
<summary>
Specifies the index of the sheet that is drag and dropped.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.SheetTabDragDropUndoAction.to">
<summary>
Specifies the new index of the sheet that is drag and dropped.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.SheetTabDragDropUndoAction.#ctor(System.Int32,System.Int32)">
<summary>
Undoes the sheet tab drag-drop.
</summary>
<param name="from">From sheet tab index</param>
<param name="to">To sheet tab index</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.SheetTabDragDropUndoAction.SaveUndoState">
<summary>
Saves undo state.
</summary>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>This implementation does nothing since undo state is specified in the contstructor.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.SheetTabDragDropUndoAction.Undo(System.Object)">
<summary>
Moves the sheet back to its original index.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.SheetTabDragDropUndoAction.PerformUndoAction(System.Object)">
<summary>
Moves the sheet to the new index.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.SheetTabDragDropUndoAction.ToString">
<summary>
Returns a string representing this object.
</summary>
<returns>string</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.ZoomUndoAction">
<summary>
Represents the undo action for zooming a sheet
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ZoomUndoAction.sheetView">
<summary>
Specifies the sheet containing the column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ZoomUndoAction.zoomFactor">
<summary>
Specifies the scaling factor (zoom) to set.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ZoomUndoAction.prevZoomFactor">
<summary>
Previous value of the scaling factor (zoom).
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ZoomUndoAction.#ctor(FarPoint.Win.Spread.SheetView,System.Single)">
<summary>
Creates a new ZoomUndoAction.
</summary>
<param name="sheetView">Sheet</param>
<param name="zoomFactor">Scaling (zoom) factor</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ZoomUndoAction.SaveUndoState">
<summary>
Saves undo state.
</summary>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ZoomUndoAction.Undo(System.Object)">
<summary>
Undoes the zoom.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ZoomUndoAction.PerformUndoAction(System.Object)">
<summary>
Zooms the sheet.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ZoomUndoAction.ToString">
<summary>
Returns a string representing this object.
</summary>
<returns>string</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.DeleteChildObjectUndoAction">
<summary>
Represents the undo action for deleting a shape or child control.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.DeleteChildObjectUndoAction.sheetView">
<summary>
Specifies the sheet containing the shape being deleted.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.DeleteChildObjectUndoAction.child">
<summary>
Specifies the child to be deleted.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.DeleteChildObjectUndoAction.bounds">
<summary>
Bounds of child
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.DeleteChildObjectUndoAction.spreadView">
<summary>
Specifies the view containing the sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.DeleteChildObjectUndoAction.index">
<summary>
Specifies the index of the child in its container before delete.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.DeleteChildObjectUndoAction.#ctor">
<summary>
Creates a new undo action for deleting a shape.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.DeleteChildObjectUndoAction.#ctor(FarPoint.Win.Spread.SheetView,System.Object)">
<summary>
Creates a new undo action for deleting the specified shape in the specified SheetView.
</summary>
<param name="sheetView">SheetView</param>
<param name="child">object</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.DeleteChildObjectUndoAction.SaveUndoState">
<summary>
Saves the child object and its index (if it's a shape) before deletion.
</summary>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.DeleteChildObjectUndoAction.Undo(System.Object)">
<summary>
Undoes delete of child object.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.DeleteChildObjectUndoAction.PerformUndoAction(System.Object)">
<summary>
Deletes the child.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.DeleteChildObjectUndoAction.ToString">
<summary>
Returns a string representing this object.
</summary>
<returns>string</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction">
<summary>
Represents the undo action for changing a shape.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.sheetView">
<summary>
Specifies the sheet containing the shape being changed.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.shape">
<summary>
Specifies the shape to be changed.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.spreadView">
<summary>
Specifies the view containing the sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.index">
<summary>
Specifies the index of the shape in the shape container before change.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.xmlBefore">
<summary>
Specifies the XML serialized state of shape before change.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.xmlAfter">
<summary>
Specifies the XML serialized state of shape after change.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.dx">
<summary>
Specifies the horizontal change in position.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.dy">
<summary>
Specifies the vertical change in position.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.dw">
<summary>
Specifies the width change.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.dh">
<summary>
Specifies the height change.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.dr">
<summary>
Specifies the rotation angle change.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.ctl">
<summary>
Specifies the child control.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.oldBounds">
<summary>
Specifies the old bounds for the child control.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.newBounds">
<summary>
Specifies the new bounds for the child control
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.#ctor(FarPoint.Win.Spread.SheetView,FarPoint.Win.ElementWindowless)">
<summary>
Creates a new undo action for moving or sizing a child control.
</summary>
<param name="sheetView"></param>
<param name="shape"></param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.#ctor(FarPoint.Win.Spread.SheetView,FarPoint.Win.ElementWindowless,System.Boolean)">
<summary>
Creates a new undo action for changing the specified shape or cell note in the specified SheetView.
</summary>
<param name="sheetView">SheetView</param>
<param name="shape">ElementWindowless</param>
<param name="attachUIChangeCompleteHandler">True to attach a handler to the UIChangeComplete event to the shape (when shape is PSShape only)</param>
<remarks>This object saved undo state on construction, rather than during PerformUndoAction, since the shape object implements the user interface to make changes to itself. The SpreadView will call PerformUndoAction when the shape's UIChangeComplete event fires and edit mode is off (if the shape is a cell note).</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Single)">
<summary>
Creates a new undo action for moving a shape or cell note in the specified direction, changing its width and height, and rotation angle (for shapes only).
</summary>
<param name="dx">Horizontal change</param>
<param name="dy">Vertical change</param>
<param name="dw">Width change</param>
<param name="dh">Height change</param>
<param name="dr">Rotation angle change</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.#ctor(System.Windows.Forms.Control,System.Drawing.Rectangle,System.Drawing.Rectangle)">
<summary>
Creates a new undo action for moving or sizing a child control.
</summary>
<param name="ctl">Control</param>
<param name="oldBounds">Rectangle</param>
<param name="newBounds">Rectangle</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.SaveUndoState">
<summary>
Saves undo state before change.
</summary>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>This object saves undo state on construction, rather than during PerformUndoAction, since the shape object implements the user interface to make the changes to itself. The SpreadView will call PerformUndoAction when the shape's UIChangeComplete event fires and edit mode is off (if the shape is a cell note).</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.Undo(System.Object)">
<summary>
Undoes the shape change action.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.PerformUndoAction(System.Object)">
<summary>
Performs the shape change action.
</summary>
<param name="sender">object</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.ToString">
<summary>
Returns a string representing this object.
</summary>
<returns>string</returns>
</member>
<member name="E:FarPoint.Win.Spread.UndoRedo.ChildChangeUndoAction.UIChangeComplete">
<summary>
Occurs when the shape object raises its UIChangeComplete event.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.AutoSortColumnUndoAction">
<summary>
Represents the undo actions for an automatic sorting of rows in a sheet based on values in a column.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.AutoSortColumnUndoAction.sheetView">
<summary>
Specifies the sheet on which the sorting is done.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.AutoSortColumnUndoAction.column">
<summary>
Specifies the index of the column being automatically sorted.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.AutoSortColumnUndoAction.viewRowIndexes">
<summary>
Specifies the row index mapping before sort.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.AutoSortColumnUndoAction.prevColumn">
<summary>
Specifies the previous column that was automatically sorted (-1 if none).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.AutoSortColumnUndoAction.prevAscending">
<summary>
Specifies whether the previous column was sorted in ascending order.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.AutoSortColumnUndoAction.#ctor(FarPoint.Win.Spread.SheetView,System.Int32)">
<summary>
Creates a new undo action for automatic sorting of rows.
</summary>
<param name="sheetView">Sheet</param>
<param name="column">Index of column being autosorted</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.AutoSortColumnUndoAction.SaveUndoState">
<summary>
Saves the undo state of this automatic sorting action.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.AutoSortColumnUndoAction.PerformUndoAction(System.Object)">
<summary>
Performs the automatic sorting action.
</summary>
<param name="sender">Object on which the action occurred</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.AutoSortColumnUndoAction.Undo(System.Object)">
<summary>
Performs the undo automatic sorting action.
</summary>
<param name="sender">Object on which the action occurred</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.AutoSortColumnUndoAction.ToString">
<summary>
Returns a string representing this object.
</summary>
<returns>string</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.SheetRenameUndoAction">
<summary>
Represents the undo actions for renaming a sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.SheetRenameUndoAction.sheetView">
<summary>
Specifies the sheet being renamed.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.SheetRenameUndoAction.newName">
<summary>
Specifies the new name for the sheet.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.SheetRenameUndoAction.oldName">
<summary>
Specifies the old name of the sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.SheetRenameUndoAction.#ctor(FarPoint.Win.Spread.SheetView,System.String)">
<summary>
Creates a new SheetRenameUndoAction.
</summary>
<param name="sheetView">SheetView</param>
<param name="newName">string</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.SheetRenameUndoAction.SaveUndoState">
<summary>
Saves the undo state.
</summary>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.SheetRenameUndoAction.Undo(System.Object)">
<summary>
Undoes the sheet rename action.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.SheetRenameUndoAction.PerformUndoAction(System.Object)">
<summary>
Perform the sheet rename action.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.SheetRenameUndoAction.ToString">
<summary>
Returns a string representing this object.
</summary>
<returns>string</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.AddChildUndoAction">
<summary>
Represents the undo actions for adding a child object.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.AddChildUndoAction.sheetView">
<summary>
Specifies the sheet on which the sorting is done.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.AddChildUndoAction.child">
<summary>
Specifies the child being added.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.AddChildUndoAction.#ctor(FarPoint.Win.Spread.SheetView,System.Object)">
<summary>
Creates a new AddChildUndoAction.
</summary>
<param name="sheetView">SheetView</param>
<param name="child">object</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.AddChildUndoAction.SaveUndoState">
<summary>
Saves undo state.
</summary>
<returns>Boolean: true if successful; false otherwise</returns>
<remarks>This implementation does nothing, since undo state is specified in the constructor.</remarks>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.AddChildUndoAction.Undo(System.Object)">
<summary>
Undoes the add child action.
</summary>
<param name="sender">object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.AddChildUndoAction.PerformUndoAction(System.Object)">
<summary>
Performs the add child action
</summary>
<param name="sender">Object</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.AddChildUndoAction.ToString">
<summary>
Returns a string representing this object.
</summary>
<returns>string</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.UndoRedoEventArgs">
<summary>
Represents the event data for the undo and redo events handled by the undo manager.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoRedoEventArgs.#ctor(FarPoint.Win.Spread.UndoRedo.UndoAction)">
<summary>
Creates a new set of event data for an undo action.
</summary>
<param name="action">Undo action</param>
</member>
<member name="P:FarPoint.Win.Spread.UndoRedo.UndoRedoEventArgs.Action">
<summary>
Gets the undo action which has just completed.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.UndoRedoEventHandler">
<summary>
Represents a defined method that handles the undo and redo events from the undo manager.
</summary>
<param name="sender">UndoManager</param>
<param name="e">Undo or redo event data</param>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.UndoManager">
<summary>
Represents the manager of the undo actions for the FarPoint Spread component.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.UndoManager.spreadView">
<summary>
Specifies the view passed to the constructor.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.UndoManager.maxLength">
<summary>
Specifies the maximum number of UndoAction objects to keep on the undo or redo stacks.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.UndoManager.mundoList">
<summary>
Specifies the undo stack (last element is on top).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.UndoManager.mredoList">
<summary>
Specifies the redo stack (last element is on top).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.UndoManager.actionPending">
<summary>
Specifies whether an action is in progress (to prevent recursion).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.UndoManager.actionCancelled">
<summary>
Specifies whether the pending action has been cancelled.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.UndoManager.actionIsUndo">
<summary>
Specifies whether actionInProcess is being undone
</summary>
</member>
<member name="F:FarPoint.Win.Spread.UndoRedo.UndoManager.actionIsRedo">
<summary>
Specifies whether actionInProcess is being redone
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoManager.#ctor(FarPoint.Win.Spread.SpreadView,System.Int32)">
<summary>
Creates a new undo action manager.
</summary>
<param name="spreadView">View</param>
<param name="maxLength">Maximum number of actions to remember for undo or redo, or -1 for no limit</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoManager.PushUndo(FarPoint.Win.Spread.UndoRedo.UndoAction,System.Boolean)">
<summary>
Pushes the specified action onto the undo stack.
</summary>
<param name="action">Undo action</param>
<param name="clearRedo">True to clear the redo stack (action is being performed), false otherwise (action is being undone)</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoManager.PopUndo">
<summary>
Pops the top action from the undo stack.
</summary>
<returns>UndoAction</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoManager.PushRedo(FarPoint.Win.Spread.UndoRedo.UndoAction)">
<summary>
Pushes the specified action onto the redo stack.
</summary>
<param name="action">UndoAction</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoManager.PopRedo">
<summary>
Pops the top action from the redo stack.
</summary>
<returns>UndoAction</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoManager.PerformUndoAction(FarPoint.Win.Spread.UndoRedo.UndoAction)">
<summary>
Performs the specified action (it can then be undone with Undo).
</summary>
<param name="action">UndoAction</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoManager.Undo">
<summary>
Undoes the last action done with PerformUndoAction and adds it to the redo list.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoManager.Undo(System.Int32)">
<summary>
Undoes the specified number of actions and adds them to the redo list.
</summary>
<param name="count">Number of actions to undo, or -1 to undo all actions</param>
<returns>Boolean: true if successful; false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoManager.Undo(FarPoint.Win.Spread.UndoRedo.UndoAction)">
<summary>
Undoes all actions in the undo stack up to and including the specified action and adds it to the redo list.
</summary>
<param name="action">UndoAction to undo</param>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoManager.Redo">
<summary>
Redoes the last action undone with Undo and adds it to the undo list.
</summary>
<returns>True if successful</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoManager.Redo(System.Int32)">
<summary>
Redoes the specified number of actions and adds them to the undo list.
</summary>
<param name="count">Number of actions to redo, or -1 to redo all pending actions</param>
<returns>True if successful</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoManager.Redo(FarPoint.Win.Spread.UndoRedo.UndoAction)">
<summary>
Redoes all actions in the redo stack up to and including the specified action and adds it to the undo list.
</summary>
<returns>True if successful</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoManager.GetActionPending">
<summary>
Gets the current UndoAction pending completion.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.UndoManager.CancelAction">
<summary>
Cancels the current action in progress.
</summary>
<remarks>This method is intended to be used in event handlers when an UndoAction
raises an event that permits cancelling of the action. You can call this method
and then use PerformUndoAction to do another UndoAction instead, but you must be
sure to cancel the default processing in the event handler to prevent the original
UndoAction that raised the event from doing its processing too.</remarks>
</member>
<member name="P:FarPoint.Win.Spread.UndoRedo.UndoManager.CanUndo">
<summary>
Gets whether Undo can undo an action.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.UndoRedo.UndoManager.CanRedo">
<summary>
Gets whether Redo can redo an action.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.UndoRedo.UndoManager.UndoList">
<summary>
Gets the list of UndoAction objects.
</summary>
</member>
<member name="P:FarPoint.Win.Spread.UndoRedo.UndoManager.RedoList">
<summary>
Gets the list of UndoAction objects.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.UndoRedo.UndoManager.ActionComplete">
<summary>
Occurs when the undo or redo action is complete.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.UndoRedo.UndoManager.UndoComplete">
<summary>
Occurs when the undo action is complete.
</summary>
</member>
<member name="E:FarPoint.Win.Spread.UndoRedo.UndoManager.RedoComplete">
<summary>
Occurs when the redo action is complete.
</summary>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.ClipboardCutActiveSheetUndoAction">
<summary>
Represents the action for clipboard cut of the active sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardCutActiveSheetUndoAction.#ctor">
<summary>
Creates a new ClipboardCutActiveSheetUndoAction
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardCutActiveSheetUndoAction.PerformUndoAction(System.Object)">
<summary>
Performs the action.
</summary>
<param name="sender">object</param>
<returns>true if successful, false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardCutActiveSheetUndoAction.SaveUndoState">
<summary>
Saves the undo state before performing the action.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardCutActiveSheetUndoAction.Undo(System.Object)">
<summary>
Undoes the action.
</summary>
<param name="sender">object</param>
<returns>true if successful, false otherwise</returns>
</member>
<member name="T:FarPoint.Win.Spread.UndoRedo.ClipboardPasteSheetUndoAction">
<summary>
Represents the action for clipboard paste of a sheet.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardPasteSheetUndoAction.#ctor">
<summary>
Creates a new ClipboardPasteSheetUndoAction
</summary>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardPasteSheetUndoAction.PerformUndoAction(System.Object)">
<summary>
Performs the action.
</summary>
<param name="sender">object</param>
<returns>true if successful, false otherwise</returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardPasteSheetUndoAction.SaveUndoState">
<summary>
Saves the undo state before performing the action.
</summary>
<returns></returns>
</member>
<member name="M:FarPoint.Win.Spread.UndoRedo.ClipboardPasteSheetUndoAction.Undo(System.Object)">
<summary>
Undoes the action.
</summary>
<param name="sender">object</param>
<returns>true if successful, false otherwise</returns>
</member>
<member name="T:FarPoint.Win.Spread.XmlTypeConverter">
<summary>
Type converter for objects which implement ISerializeSupport which converts objects to and from their xml representations.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.XmlTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Returns whether the specified type can be converted to a border object.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="sourceType">Type</param>
<returns>True if sourceType is String, false otherwise.</returns>
</member>
<member name="T:FarPoint.Win.Spread.IEnhancedInterfaceRenderer">
<summary>
Interface that defines the enhanced methods and properties required by objects used as
painters of tab sheets.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IEnhancedInterfaceRenderer.PaintSpecialSheetTab(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,FarPoint.Win.Spread.TabStripPlacement,System.Boolean,System.Boolean,System.Drawing.Font,System.Drawing.Font,System.Drawing.Image)">
<summary>
Paints the special insert sheet tab.
</summary>
<param name="g">Graphics device interface for painting the sheet tab</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="mouseOver">Whether mouse is over the sheet tab</param>
<param name="placementbStrip">Location of the tab strip</param>
<param name="isLeftToRight">Whether the sheet is oriented left-to-right</param>
<param name="enabled">Whether the sheet is enabled</param>
<param name="font">Font for sheet tab when not selected</param>
<param name="activeFont">Font for sheet tab when selected</param>
<param name="newSheetImage">Image for insert sheet tab</param>
</member>
<member name="T:FarPoint.Win.Spread.IInterfaceRenderer">
<summary>
Interface that defines the methods and properties required by objects used as
painters of tab sheets.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.IInterfaceRenderer.PaintGrayArea(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the gray area.
</summary>
<param name="g">Graphics device interface for painting the gray area</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.IInterfaceRenderer.PaintSplitBox(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the split box.
</summary>
<param name="g">Graphics device interface for painting the split box</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.IInterfaceRenderer.PaintSplitBar(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the split bar.
</summary>
<param name="g">Graphics device interface for painting the split bar</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.IInterfaceRenderer.PaintSplitBarCrossover(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the crossing between the split bars.
</summary>
<param name="g">Graphics device interface for painting the split bars</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.IInterfaceRenderer.PaintScrollBox(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the scroll box.
</summary>
<param name="g">Graphics device interface for painting the scroll box</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.IInterfaceRenderer.PaintTabStripBackground(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.TabStripPlacement)">
<summary>
Paints the tab strip background.
</summary>
<param name="g">Graphics device interface for painting the tab strip background</param>
<param name="x">Near X-coordinate</param>
<param name="y">Top Y-coordinate</param>
<param name="width"></param>
<param name="height"></param>
<param name="placement"></param>
</member>
<member name="M:FarPoint.Win.Spread.IInterfaceRenderer.PaintRangeGroupArea(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the outline (range group) area.
</summary>
<param name="g">Graphics device interface for painting the area</param>
<param name="x">Near X-coordinate</param>
<param name="y">Top Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.IInterfaceRenderer.PaintRangeGroupLevelBox(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Paints the outline (range group) level indicator box.
</summary>
<param name="g">Graphics device interface for painting the box</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="groupLevel">Level of the outline (range group)</param>
<param name="rowGroup">Whether this is an outline (range group) of rows</param>
<param name="isLeftToRight">Whether set to right-to-left</param>
</member>
<member name="M:FarPoint.Win.Spread.IInterfaceRenderer.PaintRangeGroupButton(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.GroupState,System.Boolean,System.Boolean)">
<summary>
Paints the outline (range group) button.
</summary>
<param name="g">Graphics device interface for painting the button</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="groupState">State of the outline (range group)</param>
<param name="rowGroup">Whether this is an outline (range group) of rows</param>
<param name="isLeftToRight">Whether set to right-to-left</param>
</member>
<member name="M:FarPoint.Win.Spread.IInterfaceRenderer.PaintRangeGroupLine(System.Drawing.Graphics,System.Drawing.Point,System.Drawing.Point)">
<summary>
Paints the outline (range group) line.
</summary>
<param name="g">Graphics device interface for painting the line</param>
<param name="startPoint">Start point of the line</param>
<param name="endPoint">End point of the line</param>
</member>
<member name="M:FarPoint.Win.Spread.IInterfaceRenderer.PaintRangeGroupPoint(System.Drawing.Graphics,System.Drawing.Point)">
<summary>
Paints the outline (range group) point.
</summary>
<param name="g">Graphics device interface for painting the point</param>
<param name="point">Point to paint</param>
</member>
<member name="M:FarPoint.Win.Spread.IInterfaceRenderer.PaintSheetTab(System.Drawing.Graphics,System.Int32,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,FarPoint.Win.Spread.TabStripPlacement,System.Boolean,System.Boolean,System.Drawing.Font,System.Drawing.Font)">
<summary>
Paints the sheet tab.
</summary>
<param name="g">Graphics device interface for painting the tab strip</param>
<param name="sheet">Sheet index of sheet tab to render</param>
<param name="text">Sheet name</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="mouseOver">Whether the mouse is over the sheet tab</param>
<param name="focused">Whether the sheet tab has focus</param>
<param name="placement">Location of the tab strip</param>
<param name="isLeftToRight">Whether the sheet is oriented left-to-right</param>
<param name="enabled">Whether the sheet is enabled</param>
<param name="font">Font for sheet tab when not selected</param>
<param name="activeFont">Font for sheet tab when selected</param>
</member>
<member name="M:FarPoint.Win.Spread.IInterfaceRenderer.PaintSpecialSheetTab(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,FarPoint.Win.Spread.TabStripPlacement,System.Boolean,System.Boolean,System.Drawing.Font,System.Drawing.Font)">
<summary>
Paints the special insert sheet tab.
</summary>
<param name="g">Graphics device interface for painting the sheet tab</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="mouseOver">Whether mouse is over the sheet tab</param>
<param name="placementbStrip">Location of the tab strip</param>
<param name="isLeftToRight">Whether the sheet is oriented left-to-right</param>
<param name="enabled">Whether the sheet is enabled</param>
<param name="font">Font for sheet tab when not selected</param>
<param name="activeFont">Font for sheet tab when selected</param>
</member>
<member name="M:FarPoint.Win.Spread.IInterfaceRenderer.PaintSheetTabPartial(System.Drawing.Graphics,System.Int32,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,FarPoint.Win.Spread.TabStripPlacement,System.Boolean,System.Boolean,System.Drawing.Font,System.Drawing.Font)">
<summary>
Paints a sheet tab which is partially displayed.
</summary>
<param name="g">Graphics device interface for painting the sheet tab</param>
<param name="sheet">Sheet index of sheet tab to render</param>
<param name="text">Sheet name</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="mouseOver">Whether the mouse is over the sheet tab</param>
<param name="focused">Whether the sheet tab has focus</param>
<param name="placement">Location of the tab strip</param>
<param name="isLeftToRight">Whether the sheet is oriented left-to-right</param>
<param name="enabled">Whether the sheet is enabled</param>
<param name="font">Font for sheet tab when not selected</param>
<param name="activeFont">Font for sheet tab when selected</param>
</member>
<member name="M:FarPoint.Win.Spread.IInterfaceRenderer.PaintButton(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.TabStripButton,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Paints a tab strip button.
</summary>
<param name="g">Graphics device interface for the tab strip</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="button">Button to render</param>
<param name="mouseOver">Whether the mouse is over the sheet tab</param>
<param name="pressed">Whether the sheet tab is pressed</param>
<param name="isLeftToRight">Whether the orientation is left to right</param>
<param name="enabled">Whether the sheet tab is enabled</param>
</member>
<member name="T:FarPoint.Win.Spread.GradientInterfaceRenderer">
<summary>
Represents the painter of gradients in the interface.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GradientInterfaceRenderer.#ctor">
<summary>
Creates a new interface gradient renderer.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GradientInterfaceRenderer.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,System.Drawing.Font)">
<summary>
Creates a new interface gradient renderer with the specified parameters.
</summary>
<param name="topColor">Top color of the gradient</param>
<param name="bottomColor">Bottom color of the gradient</param>
<param name="mouseTopColor">Top color of the gradient for mouse-overs</param>
<param name="mouseBottomColor">Bottom color of the gradient for mouse-overs</param>
<param name="activeTopColor">Top color of the gradient when in focus</param>
<param name="activeBottomColor">Bottom color of the gradient when in focus</param>
<param name="disabledTopColor">Top color of the gradient when disabled</param>
<param name="disabledBottomColor">Bottom color of the gradient when disabled</param>
<param name="foreColor">Text color</param>
<param name="backgroundColor">Background color</param>
<param name="borderColor">Border color</param>
<param name="pressedTopColor">Top color of the gradient when pressed</param>
<param name="pressedBottomColor">Bottom color of the gradient when pressed</param>
<param name="font">Text font</param>
<param name="activeFont">Text font when in focus</param>
</member>
<member name="M:FarPoint.Win.Spread.GradientInterfaceRenderer.Finalize">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GradientInterfaceRenderer.Dispose(System.Boolean)">
<summary>
Cleans up any resources being used.
</summary>
<param name="disposing">
Whether the object is disposed through the IDisposable interface (true)
or finalized by the garbage collector (false)
</param>
</member>
<member name="M:FarPoint.Win.Spread.GradientInterfaceRenderer.Dispose">
<summary>
Cleans up any resources being used.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.GradientInterfaceRenderer.PaintScrollBox(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the scroll bar intersection.
</summary>
<param name="g">Graphics device interface for painting the scroll bar</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.GradientInterfaceRenderer.PaintTabStripBackground(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.TabStripPlacement)">
<summary>
Paints the background of the tab strip.
</summary>
<param name="g">Graphics device interface for painting the tab strip background</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="placement"></param>
</member>
<member name="M:FarPoint.Win.Spread.GradientInterfaceRenderer.PaintSheetTab(System.Drawing.Graphics,System.Int32,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,FarPoint.Win.Spread.TabStripPlacement,System.Boolean,System.Boolean,System.Drawing.Font,System.Drawing.Font)">
<summary>
Paints the sheet tab.
</summary>
<param name="g">Graphics device interface for painting the tab strip</param>
<param name="sheet">Sheet index of sheet tab being rendered</param>
<param name="text">Sheet tab text</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="mouseOver">Whether the mouse is over the sheet tab</param>
<param name="focused">Whether the sheet tab has focus</param>
<param name="placement">Placement</param>
<param name="isLeftToRight">Whether the orientation is left to right</param>
<param name="enabled">Whether the sheet tab is enabled</param>
<param name="font">Font for sheet tab when not selected</param>
<param name="activeFont">Font for sheet tab when selected</param>
</member>
<member name="M:FarPoint.Win.Spread.GradientInterfaceRenderer.PaintSpecialSheetTab(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,FarPoint.Win.Spread.TabStripPlacement,System.Boolean,System.Boolean,System.Drawing.Font,System.Drawing.Font)">
<summary>
Paints the special insert sheet tab.
</summary>
<param name="g">Graphics device interface for painting the tab strip</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="mouseOver">Whether the mouse is over the sheet tab</param>
<param name="placement">Placement</param>
<param name="isLeftToRight">Whether the orientation is left to right</param>
<param name="enabled">Whether the sheet tab is enabled</param>
<param name="font">Font for sheet tab when not selected</param>
<param name="activeFont">Font for sheet tab when selected</param>
</member>
<member name="M:FarPoint.Win.Spread.GradientInterfaceRenderer.PaintSheetTabPartial(System.Drawing.Graphics,System.Int32,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,FarPoint.Win.Spread.TabStripPlacement,System.Boolean,System.Boolean,System.Drawing.Font,System.Drawing.Font)">
<summary>
Paints a sheet tab which is partially displayed.
</summary>
<param name="g">Graphics device interface for painting the sheet tab</param>
<param name="sheet">Sheet index of sheet tab being rendered</param>
<param name="text">Sheet tab text</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="mouseOver">Whether the mouse is over the sheet tab</param>
<param name="focused">Whether the sheet tab has focus</param>
<param name="placement">Placement</param>
<param name="isLeftToRight">Whether the orientation is left to right</param>
<param name="enabled">Whether the sheet tab is enabled</param>
<param name="font">Font for sheet tab when not selected</param>
<param name="activeFont">Font for sheet tab when selected</param>
</member>
<member name="M:FarPoint.Win.Spread.GradientInterfaceRenderer.PaintButton(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.TabStripButton,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Paints a tab strip button.
</summary>
<param name="g">Graphics device interface for painting the tab strip</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="button">Button to render</param>
<param name="mouseOver">Whether the mouse is over the button</param>
<param name="pressed">Whether the button is pressed</param>
<param name="isLeftToRight">Whether the orientation is left to right</param>
<param name="enabled">Whether the sheet tab is enabled</param>
</member>
<member name="M:FarPoint.Win.Spread.GradientInterfaceRenderer.PaintGrayArea(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the gray area.
</summary>
<param name="g">Graphics device interface for painting the gray area</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.GradientInterfaceRenderer.PaintSplitBox(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the split box.
</summary>
<param name="g">Graphics device interface for painting the split box</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.GradientInterfaceRenderer.PaintSplitBar(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the split bar.
</summary>
<param name="g">Graphics device interface for painting the split bar</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.GradientInterfaceRenderer.PaintSplitBarCrossover(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the crossing area between split bars.
</summary>
<param name="g">Graphics device interface for painting the split bars</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.GradientInterfaceRenderer.PaintRangeGroupArea(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the outline (range group) area.
</summary>
<param name="g">Graphics device interface for painting the area</param>
<param name="x">Near X-coordinate</param>
<param name="y">Top Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.GradientInterfaceRenderer.PaintRangeGroupLevelBox(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Paints the outline (range group) level indicator box.
</summary>
<param name="g">Graphics device interface for painting the box</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="groupLevel">Level of the outline (range group)</param>
<param name="rowGroup">Whether this outline (range group) is of rows</param>
<param name="isLeftToRight">Whether it is set to right-to-left</param>
</member>
<member name="M:FarPoint.Win.Spread.GradientInterfaceRenderer.PaintRangeGroupButton(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.GroupState,System.Boolean,System.Boolean)">
<summary>
Paints the outline (range group) button.
</summary>
<param name="g">Graphics device interface for painting the button</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="groupState">State of the outline (range group)</param>
<param name="rowGroup">Whether this outline (range group) is of rows</param>
<param name="isLeftToRight">Whether it is set to right-to-left</param>
</member>
<member name="M:FarPoint.Win.Spread.GradientInterfaceRenderer.PaintRangeGroupLine(System.Drawing.Graphics,System.Drawing.Point,System.Drawing.Point)">
<summary>
Paints the outline (range group) line.
</summary>
<param name="g">Graphics device interface for painting the line</param>
<param name="startPoint">Starting point of the line</param>
<param name="endPoint">Ending point of the line</param>
</member>
<member name="M:FarPoint.Win.Spread.GradientInterfaceRenderer.PaintRangeGroupPoint(System.Drawing.Graphics,System.Drawing.Point)">
<summary>
Paints the outline (range group) point.
</summary>
<param name="g">Graphics device interface for painting the point</param>
<param name="point">Point</param>
</member>
<member name="T:FarPoint.Win.Spread.EnhancedInterfaceRenderer">
<summary>
Represents the painter of the visual elements with Excel2007 style.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedInterfaceRenderer.#ctor">
<summary>
Creates a new enhanced interface renderer with default values.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedInterfaceRenderer.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,FarPoint.Win.Spread.EnhancedInterfaceRenderer.SheetTabShape,System.Drawing.Color,System.Windows.Forms.FlatStyle,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,FarPoint.Win.Spread.EnhancedInterfaceRenderer.ButtonStyles,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color)">
<summary>
Creates a new enhanced interface rendered with the specified parameters.
</summary>
<param name="arrowColorEnabled">Color of the arrow when enabled</param>
<param name="arrowColorDisabled">Color of the arrow when disabled</param>
<param name="foreColor">Color of the text</param>
<param name="grayAreaColor">Color of the gray area</param>
<param name="rangeGroupBackgroundColor">Color of the background of the outline (range group)</param>
<param name="rangeGroupButtonBorderColor">Color of the button and border of the outline (range group)</param>
<param name="rangeGroupLineColor">Color of the line of the outline (range group)</param>
<param name="scrollBoxBackgroundColor">Color of the background of the scroll box</param>
<param name="sheetTabBorderColor">Color of the border of the sheet tab</param>
<param name="sheetTabLowerActiveColor">Color of the lower part of the sheet tab when selected</param>
<param name="sheetTabLowerNormalColor">Color of the lower part of the sheet tab when not selected</param>
<param name="sheetTabUpperActiveColor">Color of the upper part of the sheet tab when selected</param>
<param name="sheetTabUpperNormalColor">Color of the upper part of the sheet tab when not selected</param>
<param name="splitBarBackgroundColor">Color of the background of the splitter bar</param>
<param name="splitBarDarkColor">Color of the dark part of the splitter bar</param>
<param name="splitBarLightColor">Color of the light part of the splitter bar</param>
<param name="splitBoxBackgroundColor">Color of the background of the splitter box</param>
<param name="splitBoxBorderColor">Color of the border of the splitter box</param>
<param name="tabShape">Sheet tab shape</param>
<param name="tabStripBackgroundColor">Color of the background of the tab strip</param>
<param name="tabStripButtonFlatStyle">Style of the tab strip button when flat</param>
<param name="tabStripButtonLowerActiveColor">Color of the lower part of the tab strip button when selected</param>
<param name="tabStripButtonLowerNormalColor">Color of the lower part of the tab strip button when not selected</param>
<param name="tabStripButtonLowerPressedColor">Color of the lower part of the tab strip button when pressed</param>
<param name="tabStripButtonStyle">Style of the tab strip button</param>
<param name="tabStripButtonUpperActiveColor">Color of the upper part of the tab strip button when selected</param>
<param name="tabStripButtonUpperNormalColor">Color of the upper part of the tab strip button when not selected</param>
<param name="tabStripButtonUpperPressedColor">Color of the upper part of the tab strip button when pressed</param>
<param name="tabStripButtonBorderColor">Color of the border of the tab strip button</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedInterfaceRenderer.PaintScrollBox(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the scroll box.
</summary>
<param name="g">Graphics device interface for painting the scroll box</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedInterfaceRenderer.PaintTabStripBackground(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.TabStripPlacement)">
<summary>
Paints the background of the tab strip.
</summary>
<param name="g">Graphics device interface for painting the tab strip</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="placement">Location of the tab strip</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedInterfaceRenderer.PaintSheetTab(System.Drawing.Graphics,System.Int32,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,FarPoint.Win.Spread.TabStripPlacement,System.Boolean,System.Boolean,System.Drawing.Font,System.Drawing.Font)">
<summary>
Paints the sheet tab.
</summary>
<param name="g">Graphics device interface for painting the tab strip</param>
<param name="sheet">Sheet index of sheet tab to render</param>
<param name="text">Sheet tab text</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="mouseOver">Whether the mouse is over the sheet tab</param>
<param name="focused">Whether the sheet tab has focus</param>
<param name="placement">Placement</param>
<param name="isLeftToRight">Whether the orientation is left to right</param>
<param name="enabled">Whether the sheet tab is enabled</param>
<param name="font">Font for sheet tab when not selected</param>
<param name="activeFont">Font for sheet tab when selected</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedInterfaceRenderer.PaintSpecialSheetTab(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,FarPoint.Win.Spread.TabStripPlacement,System.Boolean,System.Boolean,System.Drawing.Font,System.Drawing.Font)">
<summary>
Paints the special insert sheet tab.
</summary>
<param name="g">Graphics device interface for painting the tab strip</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="mouseOver">Whether the mouse is over the sheet tab</param>
<param name="placement">Placement</param>
<param name="isLeftToRight">Whether the orientation is left to right</param>
<param name="enabled">Whether the sheet tab is enabled</param>
<param name="font">Font for sheet tab when not selected</param>
<param name="activeFont">Font for sheet tab when selected</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedInterfaceRenderer.PaintSpecialSheetTab(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,FarPoint.Win.Spread.TabStripPlacement,System.Boolean,System.Boolean,System.Drawing.Font,System.Drawing.Font,System.Drawing.Image)">
<summary>
Paints the special insert sheet tab.
</summary>
<param name="g">Graphics device interface for painting the tab strip</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="mouseOver">Whether the mouse is over the sheet tab</param>
<param name="placement">Placement</param>
<param name="isLeftToRight">Whether the orientation is left to right</param>
<param name="enabled">Whether the sheet tab is enabled</param>
<param name="font">Font for sheet tab when not selected</param>
<param name="activeFont">Font for sheet tab when selected</param>
<param name="newSheetImage">Custom image for insert sheet tab</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedInterfaceRenderer.PaintSheetTabPartial(System.Drawing.Graphics,System.Int32,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,FarPoint.Win.Spread.TabStripPlacement,System.Boolean,System.Boolean,System.Drawing.Font,System.Drawing.Font)">
<summary>
Paints a sheet tab which is partially displayed.
</summary>
<param name="g">Graphics device interface for painting the tab strip</param>
<param name="sheet">Sheet index of the tab strip to render</param>
<param name="text">Sheet tab text</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="mouseOver">Whether the mouse is over the sheet tab</param>
<param name="focused">Whether the sheet tab has focus</param>
<param name="placement">Placement</param>
<param name="isLeftToRight">Whether the orientation is left to right</param>
<param name="enabled">Whether the sheet tab is enabled</param>
<param name="font">Font for sheet tab when not selected</param>
<param name="activeFont">Font for sheet tab when selected</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedInterfaceRenderer.PaintButton(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.TabStripButton,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Paints a tab strip button.
</summary>
<param name="g">Graphics device interface for painting the tab strip</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="button">Button to render</param>
<param name="mouseOver">Whether the mouse is over the button</param>
<param name="pressed">Whether the button is pressed</param>
<param name="isLeftToRight">Whether the orientation is left to right</param>
<param name="enabled">Whether the button is enabled</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedInterfaceRenderer.PaintGrayArea(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the gray area.
</summary>
<param name="g">Graphics device interface for painting the gray area</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedInterfaceRenderer.PaintSplitBox(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the split box.
</summary>
<param name="g">Graphics device interface for painting the split box</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width of the split box</param>
<param name="height">Height of the split box</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedInterfaceRenderer.PaintSplitBar(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the split bar which splits view port.
</summary>
<param name="g">Graphics device interface for painting the split bar</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width of the split bar</param>
<param name="height">Height of the split bar</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedInterfaceRenderer.PaintSplitBarCrossover(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints the crossing area between the split bars.
</summary>
<param name="g">Graphics device interface for painting the split bars</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width of the crossing area</param>
<param name="height">Height of the crossing area</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedInterfaceRenderer.PaintRangeGroupArea(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Paints excel group area.
</summary>
<param name="g">Graphics device interface for painting the area</param>
<param name="x">left-coordinate</param>
<param name="y">top-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedInterfaceRenderer.PaintRangeGroupLevelBox(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Paints the outline (range group) level indicator box.
</summary>
<param name="g">Graphics device interface for painting the box</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="groupLevel">Level of the outline (range group)</param>
<param name="rowGroup">Whether this outline (range group) is of rows</param>
<param name="isLeftToRight">Whether it is set to right-to-left</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedInterfaceRenderer.PaintRangeGroupButton(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,FarPoint.Win.Spread.GroupState,System.Boolean,System.Boolean)">
<summary>
Paints the outline (range group) button.
</summary>
<param name="g">Graphics device interface for painting the button</param>
<param name="x">X-coordinate</param>
<param name="y">Y-coordinate</param>
<param name="width">Width, in pixels</param>
<param name="height">Height, in pixels</param>
<param name="groupState">State of the outline (range group)</param>
<param name="rowGroup">Whether this outline (range group) is of rows</param>
<param name="isLeftToRight">Whether it is set to right-to-left</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedInterfaceRenderer.PaintRangeGroupLine(System.Drawing.Graphics,System.Drawing.Point,System.Drawing.Point)">
<summary>
Paints the outline (range group) line.
</summary>
<param name="g">Graphics device interface for painting the line</param>
<param name="startPoint">Starting point of the line</param>
<param name="endPoint">Ending point of the line</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedInterfaceRenderer.PaintRangeGroupPoint(System.Drawing.Graphics,System.Drawing.Point)">
<summary>
Paints the outline (range group) point.
</summary>
<param name="g">Graphics device interface for painting the point</param>
<param name="point">Point to draw</param>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedInterfaceRenderer.ToString">
<summary>
Returns the name of the renderer as a string.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedInterfaceRenderer.Clone">
<summary>
Clones this instance.
</summary>
</member>
<member name="M:FarPoint.Win.Spread.EnhancedInterfaceRenderer.FarPoint#Win#ISerializeSupport#Deserialize(System.Xml.XmlNodeReader)">
<summary>
Deserializes.
</summary>
<param name="r"></param>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.ScrollBoxBackgroundColor">
<summary>
Gets or sets the color of the scroll box background.
</summary>
<value>The color of the scroll box background.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.TabStripBackgroundColor">
<summary>
Gets or sets the color of the tab strip background.
</summary>
<value>The color of the tab strip background.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.SheetTabUpperNormalColor">
<summary>
Gets or sets the color of the sheet tab upper normal.
</summary>
<value>The color of the sheet tab upper normal.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.SheetTabLowerNormalColor">
<summary>
Gets or sets the color of the sheet tab lower normal.
</summary>
<value>The color of the sheet tab lower normal.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.SheetTabUpperActiveColor">
<summary>
Gets or sets the color of the sheet tab upper active.
</summary>
<value>The color of the sheet tab upper active.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.SheetTabLowerActiveColor">
<summary>
Gets or sets the color of the sheet tab lower active.
</summary>
<value>The color of the sheet tab lower active.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.SheetTabBorderColor">
<summary>
Gets or sets the color of the sheet tab border.
</summary>
<value>The color of the sheet tab border.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.TabStripButtonUpperNormalColor">
<summary>
Gets or sets the color of the tab strip button upper normal.
</summary>
<value>The color of the tab strip button upper normal.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.TabStripButtonLowerNormalColor">
<summary>
Gets or sets the color of the tab strip button lower normal.
</summary>
<value>The color of the tab strip button lower normal.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.TabStripButtonUpperActiveColor">
<summary>
Gets or sets the color of the tab strip button upper active.
</summary>
<value>The color of the tab strip button upper active.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.TabStripButtonBorderColor">
<summary>
Gets or sets the color of the tab strip button border.
</summary>
<value>The color of the tab strip button border.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.TabStripButtonLowerActiveColor">
<summary>
Gets or sets the color of the tab strip button lower active.
</summary>
<value>The color of the tab strip button lower active.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.TabStripButtonUpperPressedColor">
<summary>
Gets or sets the color of the tab strip button upper pressed.
</summary>
<value>The color of the tab strip button upper pressed.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.TabStripButtonLowerPressedColor">
<summary>
Gets or sets the color of the tab strip button lower pressed.
</summary>
<value>The color of the tab strip button lower pressed.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.SplitBoxBackgroundColor">
<summary>
Gets or sets the color of the split box background.
</summary>
<value>The color of the split box background.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.SplitBoxBorderColor">
<summary>
Gets or sets the color of the split box border.
</summary>
<value>The color of the split box border.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.SplitBarBackgroundColor">
<summary>
Gets or sets the color of the split bar background.
</summary>
<value>The color of the split bar background.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.SplitBarDarkColor">
<summary>
Gets or sets the color of the split bar dark.
</summary>
<value>The color of the split bar dark.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.SplitBarLightColor">
<summary>
Gets or sets the color of the split bar light.
</summary>
<value>The color of the split bar light.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.ForeColor">
<summary>
Gets or sets the color of the text.
</summary>
<value>The color of the fore.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.GrayAreaColor">
<summary>
Gets or sets the color of the gray area.
</summary>
<value>The color of the gray area.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.RangeGroupBackgroundColor">
<summary>
Gets or sets the color of the outline (range group) background.
</summary>
<value>Color of the outline (range group) background</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.RangeGroupLineColor">
<summary>
Gets or sets the color of the outline (range group) line.
</summary>
<value>Color of the outline (range group) line</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.RangeGroupButtonBorderColor">
<summary>
Gets or sets the color of the outline (range group) button border.
</summary>
<value>Color of the outline (range group) button border.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.ArrowColorEnabled">
<summary>
Gets or sets the arrow color when the button is enabled.
</summary>
<value>The arrow color enabled.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.ArrowColorDisabled">
<summary>
Gets or sets the arrow color when the button is disabled.
</summary>
<value>The arrow color disabled.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.TabShape">
<summary>
Gets or sets the tab shape.
</summary>
<value>The tab shape.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.TabStripButtonStyle">
<summary>
Gets or sets the tab strip button style.
</summary>
<value>The tab strip button style.</value>
</member>
<member name="P:FarPoint.Win.Spread.EnhancedInterfaceRenderer.TabStripButtonFlatStyle">
<summary>
Gets or sets the tab strip button flat style.
</summary>
<value>The tab strip button flat style.</value>
</member>
<member name="T:FarPoint.Win.Spread.EnhancedInterfaceRenderer.SheetTabShape">
<summary>
Specifies the shape of sheet tabs.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.EnhancedInterfaceRenderer.SheetTabShape.Rectangle">
<summary>
Displays the sheet tab as a rectangle with squared corners.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.EnhancedInterfaceRenderer.SheetTabShape.RoundedRectangle">
<summary>
Displays the sheet tab as a rectangle with rounded corners.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.EnhancedInterfaceRenderer.SheetTabShape.Trapezoid">
<summary>
Displays the sheet tab as a trapezoid (in N. America or trapezium in other parts).
</summary>
</member>
<member name="F:FarPoint.Win.Spread.EnhancedInterfaceRenderer.SheetTabShape.IsoscelesTrapezoid">
<summary>
Displays the sheet tab as an icosceles trapezoid (in N. America or trapezium in other parts).
</summary>
</member>
<member name="T:FarPoint.Win.Spread.EnhancedInterfaceRenderer.ButtonStyles">
<summary>
Specifies the button style.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.EnhancedInterfaceRenderer.ButtonStyles.Flat">
<summary>
Displays the button as flat.
</summary>
</member>
<member name="F:FarPoint.Win.Spread.EnhancedInterfaceRenderer.ButtonStyles.Enhanced">
<summary>
Displays the button as enhanced.
</summary>
</member>
</members>
</doc>