Spire.XLS
change by Daniel in 2019/05/15 将写DLbl的部分抽取出来
B模型的serLabels会存储DefaultDataPoint的DataLabels
是否为默认的DataPoint
@param listCellValue
@param rowIdx
current row index
@param colIdx
the last column index + 1
@param RKTypes
@return
Digit shaping option: Replace European digits (U+0030...U+0039) by Arabic-Indic digits.
Digit shaping option: Replace Arabic-Indic digits by European digits (U+0030...U+0039).
Digit shaping option:
Replace European digits (U+0030...U+0039) by Arabic-Indic digits
if the most recent strongly directional character
is an Arabic letter (its Bidi direction value is RIGHT_TO_LEFT_ARABIC).
The initial state at the start of the text is assumed to be not an Arabic,
letter, so European digits at the start of the text will not change.
Compare to DIGITS_ALEN2AN_INIT_AL.
Digit shaping option:
Replace European digits (U+0030...U+0039) by Arabic-Indic digits
if the most recent strongly directional character
is an Arabic letter (its Bidi direction value is RIGHT_TO_LEFT_ARABIC).
The initial state at the start of the text is assumed to be an Arabic,
letter, so European digits at the start of the text will change.
Compare to DIGITS_ALEN2AN_INT_LR.
Not a valid option value.
Bit mask for digit shaping options.
Digit type option: Use Arabic-Indic digits (U+0660...U+0669).
Digit type option: Use Eastern (Extended) Arabic-Indic digits (U+06f0...U+06f9).
Bit mask for digit type options.
Does all the line bidirectional processing with PdfChunk assembly.
@author Paulo Soares
Left-to-right
Left-to-Right Embedding
Left-to-Right Override
Right-to-Left
Right-to-Left Arabic
Right-to-Left Embedding
Right-to-Left Override
Pop Directional Format
European Number
European Number Separator
European Number Terminator
Arabic Number
Common Number Separator
Non-Spacing Mark
Boundary Neutral
Paragraph Separator
Segment Separator
Whitespace
Other Neutrals
Minimum bidi type value.
Maximum bidi type value.
Initialize using an array of direction types. Types range from TYPE_MIN to TYPE_MAX inclusive
and represent the direction codes of the characters in the text.
@param types the types array
Initialize using an array of direction types and an externally supplied paragraph embedding level.
The embedding level may be -1, 0, or 1. -1 means to apply the default algorithm (rules P2 and P3),
0 is for LTR paragraphs, and 1 is for RTL paragraphs.
@param types the types array
@param paragraphEmbeddingLevel the externally supplied paragraph embedding level.
The algorithm.
Does not include line-based processing (Rules L1, L2).
These are applied later in the line-based phase of the algorithm.
1) determining the paragraph level.
Rules P2, P3.
At the end of this function, the member variable paragraphEmbeddingLevel is set to either 0 or 1.
Process embedding format codes.
Calls processEmbeddings to generate an embedding array from the explicit format codes. The
embedding overrides in the array are then applied to the result types, and the result levels are
initialized.
@see #processEmbeddings
Rules X9.
Remove explicit codes so that they may be ignored during the remainder
of the main portion of the algorithm. The length of the resulting text
is returned.
@return the length of the data excluding explicit codes and BN.
Reinsert levels information for explicit codes.
This is for ease of relating the level information
to the original input data. Note that the levels
assigned to these codes are arbitrary, they're
chosen so as to avoid breaking level runs.
@param textLength the length of the data after compression
@return the length of the data (original length of
types array supplied to constructor)
2) determining explicit levels
Rules X1 - X8
The interaction of these rules makes handling them a bit complex.
This examines resultTypes but does not modify it. It returns embedding and
override information in the result array. The low 7 bits are the level, the high
bit is set if the level is an override, and clear if it is an embedding.
3) resolving weak types
Rules W1-W7.
Note that some weak types (EN, AN) remain after this processing is complete.
6) resolving neutral types
Rules N1-N2.
7) resolving implicit embedding levels
Rules I1, I2.
Return multiline reordering array for a given level array.
Reordering does not occur across a line break.
Return reordering array for a given level array. This reorders a single line.
The reordering is a visual to logical map. For example,
the leftmost char is string.CharAt(order[0]).
Rule L2.
Return the base level of the paragraph.
Return true if the type is considered a whitespace type for the line break rules.
Return the strong type (L or R) corresponding to the level.
Return the limit of the run starting at index that includes only resultTypes in validSet.
This checks the value at index, and will return index if that value is not in validSet.
Return the start of the run including index that includes only resultTypes in validSet.
This assumes the value at index is valid, and does not check it.
Set resultTypes from start up to (but not including) limit to newType.
Set resultLevels from start up to (but not including) limit to newLevel.
Throw exception if type array is invalid.
Throw exception if paragraph embedding level is invalid. Special allowance for -1 so that
default processing can still be performed when using this API.
Throw exception if line breaks array is invalid.
Adds the document properties.
The doc properties.
Printer Command Language (PCL) format.
Gets or sets the Pdf document's Conformance-level.
Represents the security settings of the PDF document.
* Returns the inverse of the standard normal cumulative distribution.
* The distribution has a mean of zero and a standard deviation of one.
*
* @param probability a probability corresponding to the normal distribution.
* @return the inverse of the standard normal cumulative distribution.
Returns the inverse of the normal cumulative distribution for the specified mean and standard deviation.
@param probability a probability corresponding to the normal distribution.
@param mean the arithmetic mean of the distribution.
@param standard_dev the standard deviation of the distribution.
@return the inverse of the normal cumulative distribution for the specified mean and standard deviation.
You must ensure fA>0.0 and fX>0.0
valid results only if fX less than or equal to fA+1.0
uses power series
You must ensure fA>0.0 and fX>0.0)
You must ensure fA>0.0 and fX>0.0)
抽象函数:计算积分函数值,必须在派生类中覆盖该函数
@param x - 函数变量
@return double型,对应的函数值
基本构造函数
变步长梯形求积法
调用时,须覆盖计算函数f(x)值的虚函数double Func(double x)
@param a - 积分下限
@param b - 积分上限,要求b>a
@param eps - 积分精度要求
@return double 型,积分值
变步长辛卜生求积法
调用时,须覆盖计算函数f(x)值的虚函数double Func(double x)
@param a - 积分下限
@param b - 积分上限,要求b>a
@param eps - 积分精度要求
@return double 型,积分值
自适应梯形求积法
调用时,须覆盖计算函数f(x)值的虚函数double Func(double x)
@param a - 积分下限
@param b - 积分上限,要求b>a
@param d - 对积分区间进行分割的最小步长,当子区间的宽度
小于d时,即使没有满足精度要求,也不再往下进行分割
@param eps - 积分精度要求
@return double 型,积分值
内部函数
龙贝格求积法
调用时,须覆盖计算函数f(x)值的虚函数double Func(double x)
@param a - 积分下限
@param b - 积分上限,要求b>a
@param eps - 积分精度要求
@return double 型,积分值
计算一维积分的连分式法
调用时,须覆盖计算函数f(x)值的虚函数double Func(double x)
@param a - 积分下限
@param b - 积分上限,要求b>a
@param eps - 积分精度要求
@return double 型,积分值
高振荡函数求积法
调用时,须覆盖计算函数f(x)值的虚函数double Func(double x)
@param a - 积分下限
@param b - 积分上限,要求b>a
@param m - 被积函数中振荡函数的角频率
@param n - 给定积分区间两端点上的导数最高阶数+1
@param fa - 一维数组,长度为n,存放f(x)在积分区间端点x=a处的各阶导数值
@param fb - 一维数组,长度为n,存放f(x)在积分区间端点x=b处的各阶导数值
@param s - 一维数组,长度为2,其中s(1)返回f(x)cos(mx)在积分区间的积分值,
s(2) 返回f(x)sin(mx)在积分区间的积分值
@return double 型,积分值
勒让德-高斯求积法
调用时,须覆盖计算函数f(x)值的虚函数double Func(double x)
@param a - 积分下限
@param b - 积分上限,要求b>a
@param eps - 积分精度要求
@return double 型,积分值
拉盖尔-高斯求积法
调用时,须覆盖计算函数f(x)值的虚函数double Func(double x)
@return double 型,积分值
埃尔米特-高斯求积法
调用时,须覆盖计算函数f(x)值的虚函数double Func(double x)
@return double 型,积分值
虚函数:计算方程左端函数值,必须在引申类中覆盖该类函数
@param x - 变量
@return 函数值
虚函数:计算方程左端函数值,必须在引申类中覆盖该类函数
@param x - 变量值数组
@return 函数值
虚函数:计算方程左端函数值,必须在引申类中覆盖该类函数
@param x - 变量
@param y - 函数值数组
虚函数:计算方程左端函数值,必须在引申类中覆盖该类函数
@param x - 二元函数的变量
@param y - 二元函数的变量
@return 函数值
虚函数:计算方程左端函数值,必须在引申类中覆盖该类函数
@param x - 二元函数的变量值数组
@param y - 二元函数的变量值数组
@return 函数值
虚函数:计算方程左端函数值,必须在引申类中覆盖该类函数
@param x - 已知变量值数组
@param p - 已知函数值数组
基本构造函数
求非线性方程实根的对分法
调用时,须覆盖计算方程左端函数f(x)值的虚函数
double Func(double x)
@param nNumRoots - 在[xStart, xEnd]内实根个数的预估值
@param x - 一维数组,长度为m。返回在区间[xStart, xEnd]内搜索到的实根,
实根个数由函数值返回
@param xStart - 求根区间的左端点
@param xEnd - 求根区间的右端点
@param dblStep - 搜索求根时采用的步长
@param eps - 精度控制参数
@return int 型,求得的实根的数目
求非线性方程一个实根的牛顿法
调用时,须覆盖计算方程左端函数f(x)及其一阶导数f'(x)值的虚函数:
void Func(double x, double[] y)
y(0) 返回f(x)的值
y(1) 返回f'(x)的值
@param x - 传入迭代初值(猜测解),返回在区间求得的一个实根
@param nMaxIt - 递归次数
@param eps - 精度控制参数
@return bool 型,求解是否成功
求单调函数方程一个实根的Fisher Wang迭代法
求非线性方程一个实根的埃特金迭代法
调用时,须覆盖计算方程左端函数f(x)值的虚函数
double Func(double x)
@param x - 传入迭代初值(猜测解),返回在区间求得的一个实根
@param nMaxIt - 递归次数
@param eps - 精度控制参数
@return bool 型,求解是否成功
求非线性方程一个实根的连分式解法
调用时,须覆盖计算方程左端函数f(x)值的虚函数
double Func(double x)
@param x - 传入迭代初值(猜测解),返回在区间求得的一个实根
@param eps - 精度控制参数
@return bool 型,求解是否成功
* 求非线性方程实根, 先使用二分法获得 根的大概范围 误差在1之内,
而后使用割线法获得最后的根。
*
* 调用时,须覆盖计算方程左端函数f(x)值的虚函数
* double Func(double x)
*
* @param nNumRoots - 在[xStart, xEnd]内实根个数的预估值
* @param x - 一维数组,长度为m。返回在区间[xStart, xEnd]内搜索到的实根,
* 实根个数由函数值返回
* @param xStart - 求根区间的左端点
* @param xEnd - 求根区间的右端点
* @param dblStep - 搜索求根时采用的步长
* @param eps - 精度控制参数
* @return int 型,求得的实根的数目
Bug_761 add by Daniel in 2019/05/15 增加一个属性与A模型对应
Represents TenThousands display Unit
Represents HundredThousands display Unit
Represents TenMillions display Unit
Represents HundredMillions display Unit
Represents Custom display Unit
Represents the color palette of this worksheet.
Represents the font script format.
Represents excel version 2007 xlsb
Represents excel version 2010 xlsb
OpenOffice Spreadsheet documents
Represents excel version 97-2003.
Represents excel version 2007
Represents excel version 2013.
Represents excel version 2016.
Converts binary formula to string.
Parameters are same with {@link FormulaTokenVisitor#resetFormula(byte[], int, int)}.
@param buffer binary formula data
@param startPos
@param endPos
@return String formula string starts with '='.
@throws UnsupportedEncodingException
Checks whether given string needs to be quoted for ODS file.
@param str string to be checked.
@return true if there are special characters in given string and the string needs to be quoted.
Parse criteria from given node.
@param criteria node which represents the criteria.
@param relInfo FormulaRelInfo
@return null if the criteria will be always false.
Get the double values of given param list.
@param arrParam
@param relInfo
@param int offset the offset in param list from which to convert values.
@return If there is error param in given param list, returns this error param; If the param's value is invalid, returns #VALUE; Otherwise returns null.
Get the double values of given param list.
@param params
@param relInfo
@param int offset the offset in param list from which to convert values.
@return If there is error param in given param list, returns this error param; If the param's value is invalid, returns #VALUE; Otherwise returns null.
Get the double values of given param list.
@param arrParam
@param relInfo
@param int offset the offset in param list from which to convert values.
@return If there is error param in given param list, returns this error param; If the param's value is invalid, returns #VALUE; Otherwise returns null.
Get the datetime values of given param list.
@param arrParam
@param relInfo
@param int offset the offset in param list from which to convert values.
@return If there is error param in given param list, returns this error param; If the param's value is invalid, returns #VALUE; Otherwise returns null.
Converts this node itself to String.
Does not convert its children.
@param sb buffer to append content.
Sets parameter nodes for this function.
@param arrParams parameters. Every element is a parameter of this function.
Resets formula data for this iterator.
@param formula the buffer that holds formula data.
@param startPos start offset of formula data(inclusive), data at startPos should be tokenID(endPos is non-negative) or formula size(endPos is -1).
@param endPos end offset of formula data(exclusive). -1 means data at startPos is formula's size.
Reads the CellRange from current token.
If a valid CellRange has been read, the pointer will be moved to the next token.
@param relInfo the relevant information of this formula. Such as Workbook/Worksheet, base position, owner such as Cell, Validation, ..., etc.
@return CellRange if current token is a valid CellRange. Returns null if current token is not for CellRange or is AreaErr.
Reads the data from current additional part.
After read the pointer for additional data will be moved to the part of next token.
@return the additional data.
Reads the String value from current token.
If String value is in token's data, after read the pointer will be moved to the next token.
If String value is in token's additional data, after read the additional data pointer will be moved to the next sub-token.
@return String if current token is for String. Returns null if current token is not for String.
Gets the position of current token in the formula.
@return the position of current token in the formula.
Gets the position of current additional data in the formula.
@return the position of current additional data in the formula.
Checks whether there is a token can be processed.
@return false if this iterator has reached the end of formula.
Moves cursor from current token to the next token in formula.
@return whether current token can be recognized.
Reads Name object from current token.
If current token is for Name, after read the pointer will be moved to the next token.
@param wb Workbook the formula is in.
@return Name if current token is for Name. Returns null if current token is not for Name or Name is of external workbook.
Checks whether current token is CellAddress, inclues RefErr.
@return true if current token is CellAddress.
Checks whether current token is CellRange, includes AreaErr.
@return true if current token is CellRange.
Checks whether current token is Name, inclues NameX.
@return true if current token is Name.
Gets number of the column data.
@return
None.
Lowercase alphabetical characters with a period.
Uppercase alphabetical characters with a period.
Arabic numerals with closing parenthesis.
Arabic numerals with a period.
Lowercase Roman numerals with both parentheses.
Lowercase Roman numerals with closing parenthesis.
Lowercase Roman numerals with period.
Uppercase Roman numerals with period.
Lowercase alphabetical characters with both parentheses.
Lowercase alphabetical characters with closing parenthesis.
Uppercase alphabetical characters with both parentheses.
Uppercase alphabetical characters with closing parenthesis.
Arabic numerals with both parentheses.
Arabic numerals.
Uppercase Roman numerals with both parentheses.
Uppercase Roman numerals with closing parenthesis.
Simplified Chinese without a period.
Simplified Chinese with a period.
Double-byte circled number for values up to 10.
Text colored number with same color circle drawn around it.
Shadow color number with circular background of normal text color.
Traditional Chinese without a period.
Traditional Chinese with a period.
Arabic language alphabetical characters with a dash.
Arabic Abjad alphabets with a dash.
Hebrew language alphabetical characters with a dash.
Japanese/Korean numbers without a period.
Japanese/Korean numbers with a period.
Double-byte Arabic numbering scheme (no punctuation).
Double-byte Arabic numbering scheme with double-byte period.
Thai Alpha period.
Thai Alpha Paren right.
Thai Alpha Paren both.
Thai Num period.
Thai Num Paren right.
Thai Num Paren both.
Hindi Alpha period.
Hindi Num period.
Kanji Simple Chinese DBPeriod.
Hindi Num Paren right.
Hindi Alpha1 period.
Sysmbol bullets.
Numbered bullets.
Picture bullets.
py add
Processes one chunk in png file.
Default behavior is move to next chunk directly.
When calling this method, the pointer in png stream is just at the begin of data block of current chunk.
After this call, the pointer in png stream must be at the end of this chunk(after the crc block).
@return whether continue to process following chunks. If false be returned, visitor will stop to read and process following chunks.
Gets the start position of current chunk in the png data.
@return the start position of current chunk in the png data(data size, chunk code, chunk data, crc).
Gets current chunk code.
@return current chunk code.
Gets current chunk's data size.
@return current chunk's data size(crc is not included).
Builds year/month/day pattern in corresponding locale's default order.
@param patternY pattern of year field, such as "yyyy" or "yy"
@param suffixY suffix following year field
@param patternM pattern of month field, such as "MM"
@param suffixM suffix following month field
@param patternD pattern of day field, such as "dd"
@param suffixD suffix following day field.
@param buffer buffer for appending resultant built pattern, can be null.
@return if buffer is not null, then append the resultant pattern into and return it. Otherwise create new one and append resultant pattern into and return the new one.
Indicates whether collection contains specified property.
Property id.
True if collection contains specified property.
Gets/Sets title document property.
Gets/Sets subject document property.
Gets/Sets author document property.
Gets/Sets keywords document property.
Gets/Sets comments document property.
Gets/Sets template document property.
Gets/Sets LastAuthor document property.
Gets/Sets revision number document property.
Gets/Sets EditTime document property.
Gets/Sets LastPrinted document property.
Gets/Sets CreationDate document property.
Gets/Sets LastSaveDate document property.
Gets/Sets PageCount document property.
Gets/Sets WordCount document property.
Gets/Sets CharCount document property.
Gets/Sets ApplicationName document property.
Gets/Sets Security document property.
Gets/Sets Category document proerty.
Gets/Sets Target format document property.
Gets/Sets ByteCount document property.
Gets/Sets LineCount document property.
Gets/Sets ParagrahpCount document property.
Gets/Sets SlideCount document property.
Gets/Sets NoteCount document property.
Gets/Sets HiddenCount document property.
Gets/Sets MmclipCount document property.
Gets/Sets SacleCrop document property.
Gets/Sets Manager document property.
Gets/Sets Company document property.
Indicate whether the custom links are hampered.
Returns hyperlinks for this ranges collection.
Gets and sets the html string which contains data and some formattings in this cell.
Activages a single cell, scroll to it and activates the respective sheet
To select a range of cells, use the Select method.
True to scroll to the cell
Autofits all rows.
Autofits all columns.
Sets around border for current range.
Represents border line.
Represents border color as ExcelColors.
Sets inside border for current range.
Sets inside border for current range.
Represents border line.
Represents border color as ExcelColors.
Clears conditional formats.
Clears collection
Add a preset shape to prstgeomshape collection;
shape's first row number in worksheet
shape's first column number in worksheet
shape's width
shape's height
shape's type
Remove a shape in collection;
the shape to remove
Returns single item from the collection.
Gets single item from the collection.
Adds Option button default Dimension
returns option button shape
Adds the Shape with default size
Top row for the new shape.
Left column for the new shape
Adds new RadioButton to the collection.
Top row for the new shape.
Left column for the new shape.
Height in pixels of the new shape.
Width in pixels of the new shape.
Newly created TextBox object.
Adds comment to the specified range.
Row of the cell to add comment to.
Column of the cell to add comment to.
Newly created comment shape.
Adds new add-in function.
File name.
Function name.
Index of the new function.
Adds new add-in function.
Function to add.
Index of the added function.
Removes add-in function with specified index.
Item index to remove.
Returns or sets the primary excel color of the object.
Returns or sets the primary color of the object.
Returns or sets the line style for the border.
Vertical position of the prompt box.
Vertical position of the prompt box.
Indicates whehter prompt box is visible..
Indicates whehter prompt box has fixed position..
Gets manual breaks count. Read-only.
Creates copy of the collection.
Parent for new collection.
A clone of the current collection.
Creates a new object that is a copy of the current instance.
Parent object for a copy of this instance.
A new object that is a copy of this instance.
Creates hyperlink styles.
Gets hyperlinks for the specified range.
range object.
Check collection contains style with specified name.
Style name
Removes style from the colleciton.
Style to remove.
Gets manual breaks count. Read-only.
Returns code of the biff storage. Read-only.
Indicates whether data array is required by this record.
Creates a collection and sets its Application and Parent properties.
Application object for the collection.
Parent object for the collection.
Indicates whether all created range objects should be cached.
Toggles worksheet search algorithm when searching worksheet by name.
Removes specified worksheet from the collection.
Name of the sheet to remove.
Removes specified worksheet from the collection.
Index of the sheet to remove.
Removes specified worksheet from the collection.
Index of the sheet to remove.
Adds copy of worksheet.
Worksheet to copy.
Copy of worksheet that was added.
Add a copy of the specified worksheet to the worksheet collection.
Index of the workbook that should be copied
Represents copy options flags.
Returns copied sheet.
Creates copy of the collection.
Parent object for the new collection.
A copy of the collection.
Enlarges internal storage if necessary.
Required size.
Gets addres of filtered range in R1C1 style. Read only.
Get auto filter item..
Finds parent worksheet.
Add new cell value condition to the collection.
The Comparison operator for conditional formatting in Excel.
The first value
The second value .If the operatorTypy is Equal or NotEqual or Greater or Less or GreaterOrEqual or LessOrEqual,
then this parameter must use string.Empty or null
Add new cell value condition to the collection.
The Comparison operator for conditional formatting in Excel.
The first value
The second value.If the operatorTypy is Equal or NotEqual or Greater or Less or GreaterOrEqual or LessOrEqual,
then this parameter must use ***double.NaN***.Don't use null
Add new begin with condition to the collection.
begin with text
Add new contain condition to the collection.
contain text
Add new end with condition to the collection.
end with text
Add new not contain condition to the collection.
not contain text
Add new contain blanks condition to the collection.
Add new contain errors condition to the collection.
Add new duplicate values condition to the collection.
Add new not contain blanks condition to the collection.
Add new not contain errors condition to the collection.
Add new unique values condition to the collection.
Add new time period condition to the collection.
type of the time period
Add new above or below the average condition to the collection.
type of the average
Add new TopN or BottomN condition to the collection.
type of the Top or Bottom
rank of the Top or Bottom
Gets or sets bottom border color.
Gets or sets top border color.
Gets or sets left border color.
Gets or sets right border color.
Gets or sets horizontal border color.
Gets or sets vertical border color.
Gets or sets diagonal border color.
Gets or sets line style of the left border.
Gets or sets line style of the right border.
Gets or sets line style of the top border.
Gets or sets line style of the bottom border.
Gets or sets line style of the diagonal border.
Gets or sets line style of the diagonal border.
Gets or sets line style of the Horizontal border.
Gets or sets line style of the Vertical border.
Indicates whether DiagonalUp line is visible.
Indicates whether diagonal down line is visible.
Gets or Sets fill pattern type.
Gets extended format index.
Gets or Sets index of fill background excel color.
Gets or Sets fill background color.
Gets or Sets fill foreground excel color.
Gets or Sets fill foreground color.
Gets or Sets format index.
Returns or sets the horizontal alignment for the specified object.
True if the style includes the AddIndent, HorizontalAlignment,
VerticalAlignment, WrapText, and Orientation properties.
True if the style includes the Color, KnownColor, LineStyle, and Weight border properties
True if the style includes the Background, Bold, Color, KnownColor, FontStyle, Italic, Name, OutlineFont, Shadow, Size, Strikethrough, Subscript, Superscript, and Underline font properties.
True if the style includes the NumberFormat property.
True if the style includes the Color, KnownColor,
InvertIfNegative, Pattern, PatternColor, and PatternKnownColor
interior properties.
True if the style includes the FormulaHidden and Locked protection
properties.
Returns or sets the indent level for the style.
True if the formula will be hidden when the worksheet is protected.
True if the object is locked; False if the object can be modified when the sheet is protected.
Represents justify text alignment
Returns or sets the format code for the object.
Returns or sets the format code for the object as a string in the
language of the user.
Returns object that describes number format. Read-only.
Returns or sets the reading order for the specified object.
The text orientation. Can be an integer value from 1 to 180 degrees
True if text automatically shrinks to fit in the available column width.
Returns or sets the vertical alignment of the specified object.
True if Microsoft Excel wraps the text in the object.
If true then first symbol in cell is apostrophe.
Returns or sets the excel color of the interior.
Returns or sets the color of the interior pattern.
Gets or sets the cell shading excel color.
Gets or sets the cell shading color.
Gets chart type after type change.
Returns True if chart can have bubble data labels. Read-only.
Returns True if chart can have series lines. Read-only.
Returns True if chart can have percentage data labels. Read-only.
Title of the category axis.
Returns start type of chart type. Read-only.
Title of the chart.
Returns default line pattern for the chart. Read-only.
Gets font which used for displaying axis text .
Indicates whether chart has a category axis. Read-only.
Returns True if chart is 100%. Read-only.
Returns True if chart is 3D. Read-only.
Returns True if chart is a bar chart. Read-only.
Returns True if chart is a bubble chart. Read-only.
Returns True if chart is a conical shape. Read-only.
Returns True if chart is a cylinder shape. Read-only.
Returns True if chart is a doughnut chart. Read-only.
Returns True if chart is exploded. Read-only.
Returns True if chart has floor. Read-only.
Returns True if chart is line. Read-only.
Returns True if chart is a pie chart. Read-only.
Returns True if chart is a pyramid shape. Read-only.
Returns True if chart is a radar chart. Read-only.
Returns True if chart is a scatter chart. Read-only.
Returns True if chart has smoothed lines. Read-only.
Returns True if this is a stock chart. Read-only.
Returns True if chart should have a different color for each series value. Read-only.
Returns True if chart is a stock chart with volume. Read-only.
Returns True if chart has walls. Read-only.
Returns True if chart is a clustered chart. Read-only.
Gets value indicating whether chart is embeded into worksheet.
Returns True if chart has perspective. Read-only.
Gets a value indicating whether this instance is pivot 3D chart .
Returns True if chart has series lines. Read-only.
Returns True if chart needs special data labels serialization.
Read-only.
Returns True if chart is stacked. Read-only.
Indicates whehter chart has a value axis. Read-only.
Returns True if chart needs data format to be saved. Read-only.
Returns True if chart needs drop bars to be saved. Read-only.
Returns True if chart needs marker format to be saved. Read-only.
Returns True if chart has no plot area. Read-only.
Style index for Excel 2007 chart.
Indicates whether this chart supports walls and floor. Read-only.
Gets or sets zoomToFit value.
Title of the secondary category axis.
Title of the secondary value axis.
Title of the series axis.
Title of the value axis.
Indicates whether chart has chart area.
Indicates wheather the chart has title
Gets value indicating whether floor object was created.
Gets value indicating whether floor object was created.
Indicates whether contains pivot table.
Clones current instance.
Parent object.
Returns clone of current object.
Type of the axis.
True if this is primary axis.
Title of the axis.
Returns text area for the axis title. Read-only.
Return frame format of Axis. Read-only.
Indicates wheather the axis has title
True if the axis has minor gridlines. Only axes in the primary axis group can have gridlines.
True if the axis has major gridlines. Only axes in the primary axis group can have gridlines.
Gets or sets format index.
Gets or sets number format string.
Represents tick label position.
Axis is show Multi-level category lables.
Indicates is axis is visible.
Represents alignment for the tick label.
True if plots data points from last to first.
Gets axis id.
Represents the Shadow.Read-only
Color of line.
Line pattern.
Weight of line.
Indicates if custom line color.
Line excel color.
Value of category axis crosses.
Represents the point on the axis another axis crosses it.
Value axis crosses at the far right category.
Represents the point on the axis another axis crosses it.
Frequency of labels.
Represents the number of categories or series between tick-mark labels.
Frequency of tick marks.
Represents the number of categories or series between tick marks.
True if the value axis crosses the category axis between categories
Categories in reverse order.
Entered directly category labels for the chart.
Represents axis category type.
Represents distance between the labels and axis line.
The value can be from 0 through 1000.
Represents base unit for the specified category axis.
True if use automatic base units for the specified category axis.
Automatic major selected.
Automatic minor selected.
Automatic category crossing point selected.
Automatic maximum selected.
Automatic minimum selected.
Value of major increment.
Value of minor increment.
Represens the major unit scale value for the category axis
when the CategoryType property is set to TimeScale.
Represens the minor unit scale value for the category axis
when the CategoryType property is set to TimeScale.
True if the font is bold. Read / write Boolean.
Returns or sets the primary color of the object.
Gets or sets color.
True if the font style is italic. Read / write Boolean.
Returns or sets the size of the font. Read / write Variant.
True if the font is struck through with a horizontal line.
Read / write Boolean
True if the font is formatted as subscript.
False by default. Read / write Boolean.
True if the font is formatted as superscript. False by default.
Read/write Boolean
Returns or sets the type of underline applied to the font.
Returns or sets the font name. Read / write string.
Returns or sets font vertical alignment.
Indicates whether color has automatic color. Read-only.
Gets or sets text.
Text rotation angle. between -90 and 90.
Display mode of the background.
True if background is set to automatic.
Gets or sets a value indicating whether this instance has formula.
Indicates whether border formatting object was created. Read-only.
True if the font is bold. Read / write Boolean.
Returns or sets the primary color of the object.
Gets or sets color.
True if the font style is italic. Read / write Boolean.
Returns or sets the size of the font. Read / write Variant.
True if the font is struck through with a horizontal line.
Read / write Boolean
True if the font is formatted as subscript.
False by default. Read / write Boolean.
True if the font is formatted as superscript. False by default.
Read/write Boolean
Returns or sets the type of underline applied to the font.
Returns or sets the font name. Read / write string.
Returns or sets font vertical alignment.
Indicates whether color has automatic color. Read-only.
Gets or sets text.
Text rotation angle. between -90 and 90.
Display mode of the background.
True if background is set to automatic.
Set Range for value. above Excel 2013
false value Specifies that the Width shall be interpreted
as the Right of the chart element..
false value Specifies that the Height shall be interpreted
as the Bottom of the chart element..
true value Specifies that the X shall be interpreted
as the Left of the chart element..
true value Specifies that the Y shall be interpreted
as the Top of the chart element..
X-position of upper-left corner. 1/4000 of chart plot.
IsXMode Shall set to True
Y-position of upper-left corner. 1/4000 of chart plot.
IsYMode Shall set to True
Text of area.
Y-size. 1/4000 of chart plot. IsHMode Shall set to True
X-size. 1/4000 of chart plot. IsWMode Shall set to True
Gets or sets index of the point in the points collection.
Indicates whether data table has horizontal border.
Indicates whether data table has vertical border.
Indicate whether data table has borders.
Indicates whehter series keys in the data table.
Display mode of the background.
True if the font is bold. Read / write Boolean.
Returns or sets the primary color of the object.
Gets or sets color.
True if the font style is italic. Read / write Boolean.
Returns or sets the size of the font. Read / write Variant.
True if the font is struck through with a horizontal line.
Read / write Boolean
True if the font is formatted as subscript.
False by default. Read / write Boolean.
True if the font is formatted as superscript. False by default.
Read/write Boolean
Returns or sets the type of underline applied to the font.
Returns or sets the font name. Read / write string.
Returns or sets font vertical alignment.
Indicates whether color has automatic color. Read-only.
Gets or sets foreground color.
Gets or sets background color.
Gets or sets background color.
Gets pattern.
Gets if use automatic format.
Gets or sets visiblity.
Returns or sets the depth of a 3-D chart as a percentage of the chart width
(between 20 and 2000 percent).
Drawing order (0 = bottom of the z-order).
Gets or sets the elevation of the 3-D chart view, in degrees (0 to +90 degrees).
True if Microsoft Excel scales a 3-D chart so that it's closer in size to the equivalent 2-D chart..
Returns or sets the distance between the data series in a 3-D chart, as a percentage of the marker width.( 0 - 500 )
True if this line has a shadow.
True if this pie has a shadow.
True if this radar series has a shadow.
True if bubble series has a shadow.
Returns or sets the height of a 3-D chart as a percentage of the chart width
If true - serie 3D; otherwise serie 2D. Read-only.
True if this surface chart has shading.
This area has a shadow.
If true - format contains series line. Read-only.
Indicates whether elevation has default value.
Indicates whether rotation has default value.
If true - format contains drop bar record. Read-only.
If true - format has marker; otherwise false. Read-only.
If true - format has smothed line; otherwise false. Read-only.
Returns or sets the perspective for the 3-D chart view.( 0 - 100 )
True if the chart axes are at right angles, independent of chart rotation or elevation.
Returns or sets the rotation of the 3-D chart view
(the rotation of the plot area around the z-axis, in degrees).(0 to 360 degrees).
Gets or sets if border corners is round.
Gets chart border. Read only.
Indicates whether interior object was created. Read-only.
Indicates whether border formatting object was created. Read-only.
Represents XlsFill gradient format. Read only.
Gets chart border. Read-only.
Calculates size automatically.
Calculates position automatically.
X-position of upper-left corner. 1/4000 of chart plot.
IsXMode Shall set to True
Y-position of upper-left corner. 1/4000 of chart plot.
IsYMode Shall set to True
X-size. 1/4000 of chart plot. IsWMode Shall set to True
Y-size. 1/4000 of chart plot. IsHMode Shall set to True
false value Specifies that the Width shall be interpreted
as the Right of the chart element..
false value Specifies that the Height shall be interpreted
as the Bottom of the chart element..
true value Specifies that the X shall be interpreted
as the Left of the chart element..
true value Specifies that the Y shall be interpreted
as the Top of the chart element..
Gets or sets axis line type.
Gets line border.
Indicates whether line formatting object was created.
Gets line border.
Foreground color (RGB).
Background color (RGB).
Foreground color.
Background color.
Area pattern.
Foreground excel color.
Background excel color.
Indicates whether use default format.
Foreground and background are swapped when the data value is negative.
Automatic positioning .
X-position of upper-left corner. 1/4000 of chart plot.
IsXMode Shall set to True
Y-position of upper-left corner. 1/4000 of chart plot.
IsYMode Shall set to True
Legend position type.
Indicates whether if vertical legend.
Show legend without overlapping. Default is True.
false value Specifies that the Width shall be interpreted
as the Right of the chart element..
false value Specifies that the Height shall be interpreted
as the Bottom of the chart element..
true value Specifies that the X shall be interpreted
as the Left of the chart element..
true value Specifies that the Y shall be interpreted
as the Top of the chart element..
X-size. 1/4000 of chart plot. IsWMode Shall set to True
Y-size. 1/4000 of chart plot. IsHMode Shall set to True
X positioning is automatic.
Y positioning is automatic.
True if chart contains data table.
True if the font is bold. Read / write Boolean.
Returns or sets the primary color of the object.
Gets or sets color.
True if the font style is italic. Read / write Boolean.
Returns or sets the size of the font. Read / write Variant.
True if the font is struck through with a horizontal line.
Read / write Boolean
True if the font is formatted as subscript.
False by default. Read / write Boolean.
True if the font is formatted as superscript. False by default.
Read/write Boolean
Returns or sets the type of underline applied to the font.
Returns or sets the font name. Read / write string.
Returns or sets font vertical alignment.
Indicates whether color has automatic color. Read-only.
Gets or sets text.
Text rotation angle. between -90 and 90.
Display mode of the background.
True if background is set to automatic.
Returns FontImpl for current font. Read-only.
Represents index in collection.
Legend-entry index.
Indicates whether the legend entry has been formatted.
Display mode of the background.
Number of the series.
Gets parent serie collection. Read - only.
Returns number of points in the series. Read-only.
Returns serie start type. Read-only.
Represents Y error bars. Read only.
Indicates if serie contains Y error bars.
Represents X error bars. Read only.
Indicates if serie contains X error bars.
Represents serie trend lines collection. Read only.
Indicates wheter to invert its colors if the value is negative.
Represents index of the series.
Gets common serie format.
Returns common serie format.
Gets object that holds marker background color.
Gets object that holds marker foreground color.
True = "background = none".
True = "foreground = none".
If true - format has smothed line; otherwise false. Read-only.
Gets serie type. Read only.
Indicats whether chart supports transparency.
Represents foreground color.
Represents foreground color.
Gets or sets the transparency of the line marker.
The transparency.
Represents foreground color object.
Represents background excel color.
Represents background color.
Represents background color.
Represents pattern.
Indicates, if automatic format is used.
Represents visiblity.
Indicates whether dataformat has PieExplosion.
Indicates whether chart has border.
Indicates whethers chart has border line.
Indicates whether border object is supported. Read-only.
Indicate if data format is formatted.
Indicates whether interior object is supported. Read-only.
If true - format has marker; otherwise false. Read-only.
Marker border weight(unit pt).
Represents the number of categories or series between tick-mark labels.
Represents the number of categories or series between tick-mark labels.
Represents the number of categories or series between tick marks.
Display categories in reverse order.
True if the font is bold. Read / write Boolean.
Returns or sets the primary color of the object.
Gets or sets color.
True if the font style is italic. Read / write Boolean.
Returns or sets the size of the font. Read / write Variant.
True if the font is struck through with a horizontal line.
Read / write Boolean
True if the font is formatted as subscript.
False by default. Read / write Boolean.
True if the font is formatted as superscript. False by default.
Read/write Boolean
Returns or sets the type of underline applied to the font.
Returns or sets the font name. Read / write string.
Returns or sets font vertical alignment.
Indicates whether color has automatic color. Read-only.
Gets or sets text.
Text rotation angle. between -90 and 90.
Display mode of the background.
True if background is set to automatic.
Returns FontImpl for current font. Read-only.
Return trendline formula. Read only.
Represents the logarithmic base.
Minimum value on axis.
Value of minor increment.
Value of category axis crosses.
Represents the point on the axis another axis crosses it.
Automatic major selected.
Automatic minor selected.
Automatic category crossing point selected.
Logarithmic scale.
Values in reverse order.
Represents custom unit to display.
Returns or sets the unit label for the specified axis.
True if the label is displayed on the specified axis.
Represents foreground color.
Represents foreground color.
Represents foreground color.
Represents background color.
Represents background color.
Represents background color.
Represents pattern.
Represents if use automatic format.
Represents visible.
Returns true if this collection is primary and contain series that need
secondary axis.
Removes all elements from the collection.
DataRange for the chart series.
Checks serie range for min serie count of custom chart type.
@param serieValue Represents range, that contain serie values.
@param type Represents chart type.
Indicates whether this chart supports walls and floor. Read-only.
Indicates wheather the chart has title
Indicates whether chart has chart area.
Gets value indicating whether floor object was created.
Gets value indicating whether floor object was created.
Indicates whether contains pivot table.
Represents the title of the specified chart.
Title of the category axis.
Title of the value axis.
Title of the secondary value axis.
Title of the series axis.
Indicates whether chart is displayed right to left.
Returns chart format collection in primary axis.
Returns chart format collection in secondary axis.
Creates a clone of the current shape.
New parent for the shape object.
Hashtable with new worksheet names.
Dictionary with new font indexes.
A copy of the current shape.
Gets and sets the html string which contains data and some formattings in this shape.
Specifies all possible settings for how drawing object shall be resized when the rows and columns between its start and ending anchor are resized or inserted
Represents line format properties. Read only.
line color
BeginArrowHeadStyle
Height of object.
Width of object.
Type of shape , Read Only.
Gets and sets the html string which contains data and some formattings in this shape.
Returns or sets the descriptive (alternative) text string for a Shape object when the object is saved to a Web page. Read/write String
Represents fill properties.
Returns or sets if the shape flips Horizontal.false is default;
Returns or sets if the shape flips Vertical.false is default;
This shape is group shape.
Returns or sets the descriptive (alternative) text title string for a Shape object when the object is saved to a Web page. Read/write String
Specifies all possible settings for how drawing object shall be resized when the rows and columns between its start and ending anchor are resized or inserted(ComboBoxShape and CheckBoxShape and RadioButtonShape set MoveAndResize type value is invalid)
Bottom row.
Bottom row offset.
Left column.
Left column offset. 1024 means whole column offset
Right column.
Right column offset.
Top row.
Top row offset.256 means whole row offset
Returns or sets the rotation of the shape, in degrees.
Removes object.
Scales the shape.
Width scale in percent.
Height scale in percent.
Creates a clone of the current shape.
New parent for the shape object.
A copy of the current shape.
Creates a clone of the current shape.
New parent for the shape object.
Hashtable with new worksheet names.
Dictionary with new font indexes.
A copy of the current shape.
Indicates whether join is round.
Represent the report filter of PivotTable
Indicated whether multiple select the filter field . use only for PivotReportFilter(string fieldName, bool isNew)
Represent the filter items string collection,the possible value must be from field values . use only for PivotReportFilter(string fieldName, bool isNew)
Represent the fld attribute of pagefield. use only for PivotReportFilter(string fieldName, bool isNew)
Represent the index of the pagefield's item attribute. use only for PivotReportFilter(string fieldName, bool isNew)
Represent the page field string
Creat an instance of reportfilter
The field name of this reportfilter
it is true if this reportfilter does not exist in the pivottable
Creat an instance of reportfilter
The field name of this reportfilter
pivottable
Creat an instance of reportfilter
The field name of this reportfilter
Indicated whether multiple select the filter field
Represent the filter field string collection.When IsMultipleSelect is false,Only the first value of string array will be used.
The possible value must be from field values
Represent the page field string of pivottable
Represents the name of filter field
Represent the fld attribute of pagefield or the index of pivotfield.
Represent the index of the pagefield's item attribute.
Indicates whether the PivotTable has an autoformat applied.
Checkbox "autofit column width on update"which in pivot table Options :Layout Format for Excel 2007
Specifies a boolean value that indicates whether the cache is scheduled for version
upgrade.
Specifies whether the cache's data source supports subqueries
Specifies a boolean value that indicates whether the pivot records are saved with the
cache.
Specifies a boolean value that indicates whether the application will apply optimizations
to the cache to reduce memory usage
Specifies a boolean value that indicates whether the user can refresh the cache.
Specifies a boolean value that indicates whether the application should query and
retrieve records asynchronously from the cache.
Specifies the version of the application that created the cache. This attribute is
application-dependent.
Specifies the earliest version of the application that is required to refresh the cache.
Specifies the version of the application that last refreshed the cache. This attribute
depends on whether the application exposes mechanisms via the user interface whereby
the end-user can refresh the cache.
Specifies a boolean value that indicates whether the cache needs to be refreshed.
Specifies a boolean value that indicates whether the application will refresh the cache
Contains the name of the pivot cache NamedRange
Indicates whether the pivot cache has named range
Indicates the field is formula field
Specifies the caption of the cache field
Represents the cache field is Field group
Specifies the custom text that is displayed for the subtotals caption.
Get or set whether show
Autoshow is enabled.
User can remove field from fiew.
Specifies a boolean value that indicates whether manual filter is in inclusive mode.
Specifies a boolean value that indicates whether new items that appear after a refresh
should be hidden by default.
True if a blank row is inserted after the specified row field in a PivotTable report.
True if a page break is inserted after each field.
Specifies the number of items showed per page in the PivotTable.
Specifies a boolean value that indicates whether the field can have multiple items
selected in the page field.
Show all items for this field.
Specifies a boolean value that indicates whether the items in this field should be shown
in Outline form.
True if the flag for the specified PivotTable field or PivotTable item is set to "drilled" (expanded, or visible).
Specifies a boolean value that indicates whether to show the property as a member
caption.
Specifies a boolean value that indicates whether to show the member property value in a
tooltip on the appropriate PivotTable cells.
Specifies the type of sort that is applied to this field.
Specifies the unique name of the member property to be used as a caption for the field
and field items.
Specifies a boolean value that indicates whether the application will display fields
compactly in the sheet on which this PivotTable resides
Specifies the formula for the calculated field
Indicates whether this field is formula field
True if the field repeat item labels.
Preserves the sorting elements of the field
Represents the index of item and itemoptions key pairs
Indicates whether the specific PivotItem is hidden detail.
Must call after pivottable CalculateData function.
the index of the pivotItem in the pivotField.
whether the specific PivotItem is hidden detail
Sets whether the specific PivotItem in a pivot field is hidden detail.
Must call after pivottable CalculateData function.
the index of the pivotItem in the pivotField.
whether the specific PivotItem is hidden
Sets whether the PivotItems in a pivot field is hidden detail.That is collapse/expand this field.
Must call after pivottable CalculateData function.
the value of the pivotItem in the pivotField.
whether the specific PivotItem is hidden
Sets whether the PivotItems in a pivot field is hidden detail.That is collapse/expand this field.
Must call after pivottable CalculateData function.
whether DetailItems is hidden
Indicates whether the specific PivotItem is hidden.
Must call after pivottable CalculateData function.
the index of the pivotItem in the pivotField.
whether the specific PivotItem is hidden
Sets whether the specific PivotItem in a data field is hidden.
Must call after pivottable CalculateData function.
the index of the pivotItem in the pivotField.
whether the specific PivotItem is hidden
Sets whether the specific PivotItem in a data field is hidden.
Must call after pivottable CalculateData function.
the value of the pivotItem in the pivotField.
whether the specific PivotItem is hidden
Sort row fildes or col fields by data field.
Indicated whether diplay all subtotal at top of group
Specifies the first column of the PivotTable data, relative to the top left cell in the ref
value
Specifies the first column of the PivotTable data, relative to the top left cell in the ref
value
Specifies the first row of the PivotTable header, relative to the top left cell in the ref
value.
Specifies a boolean value that indicates whether to show column headers for the table.
Specifies a boolean value that indicates whether to show column stripe formatting for
the table.
Specifies a boolean value that indicates whether to show the last column.
Specifies a boolean value that indicates whether to show row headers for the table.
Specifies a boolean value that indicates whether to show row stripe formatting for the
table.
Represents the pivot table to add the Calculated
Data field in rows
Gets or sets report filter collection
Indicated whether diplay all subtotal at top of group,
Change will cover every field's setting
Represent the custom Style for this PivotTable
Name of encryption info stream.
Creates new list object and adds it to the collection.
Name of the new list object.
Destination range.
Newly created object.
Indicates whether show header row.
Gets or sets name of the column.
Gets column index.
Gets or sets function used for totals calculation.
Gets or sets label of the totals row.
Gets or sets calculated formula value.
Contains black color.
Contains white color.
Contains empty color.
Contains red color.
Contains blue color.
Contains dark gray color.
Contains yellow color.
Contains cyan color.
Contains magenta color.
Contains gray color.
Chart foreground color.
Chart background color.
Chart neutral color.
Converts Int32 value into Color.
Value to convert.
Converted value.
Size of the Double value in bytes.
True if the font is bold.
Returns or sets the primary excel color of the object.
Returns or sets the primary color of the font.
True if the font style is italic. Read / write Boolean.
True if the font is an outline font. Read / write Boolean.
True if the font is a shadow font or if the object has
a shadow. Read / write Boolean.
Returns or sets the size of the font. Read / write integer.
True if the font is struck through with a horizontal line.
Read / write Boolean
True if the font is formatted as subscript.
False by default. Read / write Boolean.
True if the font is formatted as superscript. False by default.
Read/write Boolean
Returns or sets the type of underline applied to the font.
Returns or sets the font name. Read / write string.
Returns index of the font. Read-only.
Returns internal font.
Indicates whether font is read-only.
Returns workbook.
Gets or sets the Image Location type.
GlobalAbsolute or Relative to Table
If false,indicates exporting the image as a single file;
If true, embedding the image into the html code using Data URI scheme.
The default value is false.
Note: Internet Explorer 8 limits data URIs to a maximum length of 32KB.
The value of the HTML export image style sheet.
where is the style defined; default : head
Returns parent object. Read-only.
Indicates whether to perform case sensitive sort.
Indicates whether the cell range has title.
Represents the column to be sorted on.
Represents the sort by in the range.
Represents the sort order.
Represents the color to sort. Throws exception when SortOn type is Values.
Initialize the sort field.
Represents the sort column collection.
Adds the item in the collection.
Column Index to sort the data.
Compare value type.
To order the sorted data.
Added sort column.
Adds the item in the collection.
Column Index to sort the data.
To order the sorted data.
Added sort column.
Remvoes the Sort item in the collection.
Field index to remove.
Gets or sets book index.
Name index.
Name of add-in function.
Creates a new object that is a copy of the current instance.
Parent object for a copy of this instance.
A new object that is a copy of this instance.
Returns or sets a ExcelColors value that represents the color of the border
Returns or sets the primary color of the object, as shown in the table in the remarks section. Use the RGB function to create a color value.
Read/write Color.
Returns or sets the line style for the border. Read/write LineStyleType.
Indicates whether shows diagonal line.
Gets the row index.
Type of the page break.
Gets the start column index of this horizontal page break
Gets the end column index of this horizontal page break.
Returns page break extent.
Returns color object.
True if the font is an outline font. Read/write Boolean.
True if the font is a shadow font or if the object has
a shadow. Read/write Boolean.
Creates a new object that is a copy of the current instance.
Parent object for a copy of this instance.
A new object that is a copy of this instance.
Returns or sets the text to be displayed for the specified hyperlink.
The default value is the address of the hyperlink.
Gets/sets an optional string of Unicode characters
that specifies the complete file path.
When the property Type is not HyperLinkType.File,
this property is invalid.
Creates a new object that is a copy of the current instance.
Parent object for a copy of this instance.
A new object that is a copy of this instance.
Returns the calculated value of a formula.
Gets cell range. Read-only.
Collection of conditional formats.
Gets and sets the html string which contains data and some formattings in this cell.
Indicates is current range has external formula. Read-only.
Represents ignore error options. If not single cell returs concatenateed flags.
Indicates whether all values in the range are preserved as strings.
Reference to Parent object. Read-only.
Dispose object and free resources.
Method which can be overriden by users to take any specific actions when
object is disposed.
Class used as message sender on Property value change. Class provides old and
new values which allow user to create advanced logic.
New property value.Read-only.
Old property value. Read-only.
Name of the property. Read-only.
If more than one property must be changed on one send message,
attach it to the ValueChangeEventArgs to create a one way directed list of property changes.
Main constructor.
Old property value.
New property value.
Unique Identifier of object whose value changed.
Main constructor.
Old property value.
New property value.
Unique Identifier of object whose value changed.
Next property which must be changed.
Gets / sets relation id to the printer settings part.
Gets or sets default row height.
Gets or sets horizontal resolution in dpi.
Represents full header string. Read only.
Gets footer full string. Read only.
Represents first page header string. Read only.
Gets first page footer string. Read only.
Gets Odd page header string. Read only.
Gets Odd page footer string. Read only.
Gets Even page header string. Read only.
Gets OddEven page footer string. Read only.
Indicates whether align header footer margins with page margins.default is 1
Indicates whether different odd and even page headers and footers.default is 0
Indicates whether scale header and footer with document scaling.default is 1
Indicates whether different first page header and footer.default is 0
Gets or sets vertical resolution in dpi.
Gets or set width of picture for center part of the footer.
Gets or set height of picture for center part of the footer.
Gets or set width of picture for center part of the header.
Gets or set height of picture for center part of the header.
Gets or set height of picture for left part of the footer.
Gets or set width of picture for left part of the header.
Gets or set height of picture for left part of the header.
Gets or set width of picture for right part of the footer.
Gets or set height of picture for right part of the footer.
Gets or set width of picture for right part of the header.
Gets or set height of picture for right part of the header.
Returns page width in points. Read-only.
Returns page width in points. Read-only.
Returns or sets the bool value of the specified range.
Gets/sets name of the style for the current range.
Returns the number of the first column in the first area in the specified range.
Column group level.
-1 - column group is not same.
0 - Not group
1 - 7 - group level.
Returns or sets the width of all columns in the specified range.
Returns the number of objects in the collection.
Get dataValidation of the sheet. Read Only
Gets/sets DateTime value of the range.
Returns a Range object that represents the entire row (or
rows) that contains the specified range. Read-only.
Returns the calculated value of a formula.
Gets or sets error value of this range.
Returns or sets the object's formula in A1-style notation and in
the language of the macro.
Returns or sets the array formula of a range.
Returns or sets the formula for the object, using R1C1-style notation in the language of the macro
Gets or sets bool value of the formula.
Gets or sets error value of the formula.
Gets or sets double value of the formula.
Returns or sets the formula for the object, using R1C1-style notation in the language of the macro
Gets or sets string value of the range.
Gets formula value.
Indicates whether range contains bool value.
Gets number of columns.
Gets number of rows.
Indicates whether specified range object has data validation.
If Range is not single cell, then returns true only if all cells have data validation. Read-only.
Determines if all cells in the range contain datetime.
Indicates whether range contains error value.
Check if the formula in the range has external links. Read-only.
True if all cells in the range contain formulas;
Determines if all cells in the range contain array-entered formula.
Determines if all cells in the range contain formula bool value..
Indicates if current range has formula value formatted as DateTime. Read-only.
Determines if all cells in the range contain error value.
Indicates whether current range has formula number value.
Indicates whether this range is part of merged range.
Determines if any one cell in the range contain number.
Indicates whether the range is blank.
Determines if all cells in the range contain rich text string.
Determines if all cells in the range contain string.
Determines if all cells in the range contain differs from default style.
Returns or sets the horizontal alignment for the specified object.
Returns hyperlinks for this range.
Represents ignore error options. If not single cell returs concatenateed flags.
Returns or sets the indent level for the cell or range. value should be 0 between 15.
Determines if all cells in the range contain number.
Indicates whether the range is blank.
Determines if the formula will be hidden when the worksheet is protected.
Indicates whether this range is grouped by column.
Indicates whether this range is grouped by row.
Indicates whether range has been initialized.
Indicates whether all values in the range are preserved as strings.
Determines if Microsoft Excel wraps the text in the object.
Gets or sets last column of the range.
Gets or sets last row of the range.
Gets cell displayed text.
Indicates whether each cell of the range has some conditional formatting.
Returns or sets the format code for the object.
Returns cell text for number format.
Gets or sets number value of the range.
Returns the range reference in the language of the macro.
Read-only String.
Returns the range reference for the specified range in the language of the user.
Return global address without worksheet name.
Returns the range reference in the language of the macro.
Returns the range reference using R1C1 notation.
Returns the range reference using R1C1 notation.
Gets and sets the html string which contains data and some formattings in this cell.
Returns the number of the first row of the first area in the range.
Row group level.
-1 - column group is not same.
0 - Not group
1 - 7 - group level.
Returns the height of all the rows in the range specified, measured in points.
Gets / sets text of range.
Gets or sets timespan value of cell.
Returns or sets the value of the specified range.
Returns or sets the cell value.
It's not use for current and datetime types.
Returns or sets the vertical alignment of the specified object.
Returns a worksheet object that represents the worksheet
containing the specified range.
Gets new range location.
Worksheet names.
New worksheet name.
New name.
Clears conditional formats.
Gets rectangle information of current range.
Rectangles information
Returns number of rectangles..
Number of rectangles.
Returns name of the parent worksheet.
Gets number of cells.
Gets address global in the format required by Excel 2007.
Adds a comment to the range.
Created comment or exists one.
Changes the width of the columns in the range in the range to achieve the best fit.
Changes the width of the height of the rows in the range to achieve the best fit.
Sets around border for current range.
Sets around border for current range.
Represents border line.
Sets around border for current range.
Represents border line.
Represents border color.
Sets around border for current range.
Represents border line.
Represents border color as ExcelColors.
Sets inside border for current range.
Sets inside border for current range.
Represents border line.
Sets inside border for current range.
Represents border line.
Represents border color.
Sets inside border for current range.
Represents border line.
Represents border color as ExcelColors.
Sets none border for current range.
Clears the entire object.
Clear the contents of the Range.
Groups columns.
Indicates whether group should be collapsed.
Groups row.
Indicates whether group should be collapsed.
Ungroups column.
Ungroups row.
Freezes panes at the current range in the worksheet. current range should be single cell range.
Measures size of the string.
String to measure.
Size of the string.
Creates a merged cell from the specified Range object.
Creates a merged cell from the specified Range object.
Indicates whether to clear unnecessary cells.
Partially clear range.
Separates a merged area into individual cells.
Reparses formula.
Replaces cells' values with new data.
Value to search for.
The replacement value.
Indicates whether to insert values vertically or horizontally.
Replaces cells' values with new data.
Value to search for.
The replacement value.
Replaces cells' values with new data.
Value to search for.
DataColumn to replace.
Indicates whether to insert values vertically or horizontally.
Replaces cells' values with new data.
Value to search for.
The replacement value.
Indicates whether to insert values vertically or horizontally.
Replaces cells' values with new data.
Value to search for.
The replacement value.
Indicates whether to insert values vertically or horizontally.
Replaces cells' values with new data.
Value to search for.
The replacement value.
Replaces cells' values with new data.
Value to search for.
The replacement value.
Replaces cells' values with new data.
Value to search for.
DataColumn to replace.
Indicates whether to insert values vertically or horizontally.
Converts cell name to row and column index.
Name of the cell.
Row index.
Column index.
Update region of range
first Row
first Column
last Row
last Column
Convert number that stored as text to number
Gets or sets the old value.
The old value.
Gets or sets the new value.
The new value.
Gets or sets the range.
The range.
Title of the input box.
Message of the input box.
Title of the error box.
Message of the error box.
Represents a vertical page break.
Type of the page break.
Gets the column index of the vertical page break.
Gets the start row index of the vertical page break.
Gets the end row index of the vertical page break.
Closes the object and saves changes into specified file.
File name in which workbook will be saved if SaveChanges is true.
Represents a collection of Table style definitions for PivotTable styles.
Represents the Collection of protected ranges.
Represents the Collection of protected ranges.
True if page breaks (both automatic and manual) on the specified
worksheet are displayed.
Name range used by macros to access to workbook items.
Returns collection with all conditional formats in the worksheet. Read-only.
Gets or sets default height of all the rows in the worksheet,
in points. Double.
Return default row height in pixel.
Gets or sets the view mode of the sheet.
Returns or sets the default width of all the columns in the worksheet. Read/write Double.
Zoom factor of document.
Value of zoom should be between 10 and 400.
Gets or sets the zoom scale of normal view of the sheet.
Gets or sets the zoom scale of page break preview of the sheet.
Gets or sets the zoom scale of page layout view of the sheet.
Indicates whether IsHidden property is set.
Gets or sets excel file version.
Gets or sets the standard (default) height option flag, which defines that
standard (default) row height and book default font height do not match. Bool.
TopLeftCell of this worksheet,different of TopLeftCell property
Gets top left cell of the worksheet.
Indicates whether all created range objects should be cached. Default value is true.
Gets or sets index of the active pane.
Updates last column index.
Column index.
Updates first row index.
Row index.
Updates last row index.
Row index.
Shows a column.
Column index.
stream.
One-based index of the first row to convert.
One-based index of the first column to convert.
One-based index of the last row to convert.
One-based index of the last column to convert.
True if gridlines are visible;
False otherwise.
Indicates whether worksheet has merged cells.
Indicats whether there is OLE object.
true if this instance is OLE object; otherwise, false.
Indicates whether zero values to be displayed
Indicates whether worksheet is empty. Read-only.
Indicates whether freezed panes are applied.
Indicates if all values in the workbook are preserved as strings.
AddAllowEditRange : add a range of cells that allow editing
title
range
password
AddAllowEditRange : add a range of cells that allow editing
title
range
Returns all list objects in the worksheet.
True if row and column headers are visible.
False otherwise.
Indicates whether current sheet is protected.
Returns charts collection. Read-only.
Returns quoted name of the worksheet.
Imports an array of datetimes into worksheet.
Datetime array.
The row number of the first cell to import in.
The column number of the first cell to import in.
Specifies to import data vertically or horizontally.
Imports an array of doubles into a worksheet.
Double array
The row number of the first cell to import in.
The column number of the first cell to import in.
Specifies to import data vertically or horizontally.
Imports an array of objects into a worksheet.
Object array.
The row number of the first cell to import in.
The column number of the first cell to import in.
Specifies to import data vertically or horizontally.
Imports an array of integer into a worksheet.
Integer array.
The row number of the first cell to import in.
The column number of the first cell to import in.
Specifies to import data vertically or horizontally.
Imports an array of objects into a worksheet.
Object array.
The row number of the first cell to import in.
The column number of the first cell to import in.
Imports an array of strings into a worksheet.
String array.
The row number of the first cell to import in.
The column number of the first cell to import in.
Specifies to import data vertically or horizontally.
Imports an array of objects into a worksheet.
Array to import.
The row number of the first cell to import in
The column number of the first cell to import in.
TRUE if array should be imported vertically; FALSE - horizontally.
Number of imported elements.
Imports an arraylist of data into a worksheet.
Data arraylist.
The row number of the first cell to import in.
The column number of the first cell to import in.
Specifies to import data vertically or horizontally.
Imports data column.
Data column to import.
Indicates whether to import field names.
Index of the first row.
Index of the first column
Imports array of data columns.
Data columns to import.
Indicates whether to import field names.
Index to the first row.
Index to the first column.
Imports data from a DataTable into worksheet
DataTable
Indicates whether to import field names.
The row number of the first cell to import in.
The column number of the first cell to import in.
Imports data from a DataTable into worksheet.
DataTable
Indicates whether to import field names.
The row number of the first cell to import in.
The column number of the first cell to import in.
Indicates if preserve types when insert data into worksheet
Imports data from a DataTable into worksheet.
DataTable
Indicates whether to import field names.
The row number of the first cell to import in.
The column number of the first cell to import in.
Maximum number of rows to import
Maximum number of columns to import
Imports data from a DataTable into worksheet.
Datatable
Indicates whether to import field names.
The row number of the first cell to import in.
The column number of the first cell to import in.
Maximum number of rows to import
Maximum number of columns to import
Indicates if preserve types when insert data into worksheet
Imports data from a DataTable into worksheet
DataTable
Indicates whether to import field names.
The row number of the first cell to import in.
The column number of the first cell to import in.
Maximum number of rows to import
Maximum number of columns to import
Array of columns to import.
Indicates if preserve types when insert data into worksheet.true is default
Imports data from a DataView into worksheet.
Data view object
Indicates whether to import field names.
The row number of the first cell to import in.
The column number of the first cell to import in.
Imports data from a DataView into worksheet.
Dataview object.
Indicates whether to import field names.
The row number of the first cell to import in.
The column number of the first cell to import in.
Indicates if preserve types when insert data into worksheet.
Imports data from a DataView into worksheet.
Dataview object.
Indicates whether to import field names.
The row number of the first cell to import in.
The column number of the first cell to import in.
Maximum number of rows to import.
Maximum number of columns to import.
Imports data from a DataView into worksheet.
Dataview object.
Indicates whether to import field names.
The row number of the first cell to import in.
The column number of the first cell to import in.
Maximum number of rows to import.
Maximum number of columns to import.
Indicates if preserve types when insert data into worksheet.
Indicates whether column is visible.
Column index.
true - visible, otherwise false.
Indicates is formula in cell is formula to external workbook.
Represents row index.
Represents column index.
If contain extern formula returns true; otherwise false.
Indicates whether row is visible.
Row index.
true - visible, otherwise false.
Autofits the column width.
Column index.
Autofits column.
Column index.
One-based index of the first row to be used for autofit operation.
One-based index of the last row to be used for autofit operation.
Autofits the column width.
Row index
Indicates whether cell has been initialized.
Row index.
Column index.
Clears data the worksheet.
Clears contents of a range.
Gets cell type from current column.
Indicates row.
Indicates column.
Indicates is need to indified formula sub type.
Returns cell type.
Returns string value corresponding to the cell.
Cell index to get value from.
String contained by the cell.
Returns TextWithFormat object corresponding to the specified cell.
Cell index.
Object corresponding to the specified cell.
Indicates whether cell contains array-entered formula.
cell index.
Indicates is has array formula.
Represents row index.
Represents column index.
Indicates is contain array formula record.
Insert a cell range into worksheet
the cell range first row index
the cell range first column index
the number of rows
the number of columns
Insert options.
Move the cell on the right to right or Move the cell below down
return the range that insert into worksheet
Deletes a column.
Column index to remove..
Removes specified column.
One-based column index to remove.
Number of columns to remove.
Delete a row.
Row index to remove
Removes specified row.
One-based row index to remove
Number of rows to delete.
Inserts a new column into the worksheet.
Column index
Inserts specified number column into the worksheet.
Column index
Number of columns to insert.
Inserts a new row into the worksheet.
Index at which new row should be inserted
Inserts multiple rows into the worksheet.
Index at which new row should be inserted
Number of rows to be inserted.
Gets bool value from cell.
Represents row index.
Represents column index.
Returns found bool value. If cannot found returns false.
Gets the width of the specified column
Column index
Width of column
Gets the width of the specified column, in units of pixel.
Column index.
Width of column
Gets error value from cell.
Row index.
Column index.
Returns error value or null.
Gets formula error value from cell.
Row index.
Column index.
Returns error value or null.
Returns formula number value corresponding to the cell.
One-based row index of the cell to get value from.
One-based column index of the cell to get value from.
Number contained by the cell.
Returns formula string value corresponding to the cell.
One-based row index of the cell to get value from.
One-based column index of the cell to get value from.
String contained by the cell.
Gets formula bool value from cell.
Represents row index.
Represents column index.
Returns found bool value. If cannot found returns false.
Returns number value corresponding to the cell.
One-based row index of the cell to get value from.
One-based column index of the cell to get value from.
Number contained by the cell.
Gets the height of a specified row.
Row index.
Height of row
Hides a column.
Column index.
Gets the height of a specified row in unit of pixel.
Row index.
Height of row
Returns string value corresponding to the cell.
One-based row index of the cell to get value from.
One-based column index of the cell to get value from.
String contained by the cell.
delete a range in worksheet
the range to be deleted
Choose to move the right range to left or move the below range to above
Moves worksheet into new position.
Destination index.
Removes worksheet from parernt worksheets collection.
Removes panes from a worksheet.
Replaces cells' values with new data.
String value to replace.
Data table with new data.
Indicates whether to import field names.
Replaces cells' values with new data.
String value to replace.
Data table with new data.
Indicates whether to import field names.
Replaces cells' values with new data.
String value to replace.
New value for the range with specified string.
Replaces cells' values with new data.
String value to replace.
New value for the range with specified string.
Replaces cells' values with new data.
String value to replace.
Array of new values.
Indicates whether array should be inserted vertically.
Replaces cells' values with new data.
String value to replace.
Array of new values.
Indicates whether array should be inserted vertically.
Replaces cells' values with new data.
String value to replace.
New value for the range with specified string.
Replaces cells' values with new data.
String value to replace.
Array of new values.
Indicates whether array should be inserted vertically.
Save worksheet to image.
file Name
Save worksheet to image.
file Name
file name
file format
One-based index of the first row to convert.
One-based index of the first column to convert.
One-based index of the last row to convert.
One-based index of the last column to convert.
Save worksheet into image.
Output stream. It is ignored if null.
One-based index of the first row to convert.
One-based index of the first column to convert.
One-based index of the last row to convert.
One-based index of the last column to convert.
Type of the image to create.
Created image.
Converts range into image.
Output stream. It is ignored if null.
One-based index of the first row to convert.
One-based index of the first column to convert.
One-based index of the last row to convert.
One-based index of the last column to convert.
Metafile EmfType.
Created image.
Save to HTML stream.
Stream object
Save to HTML file.
File name
Save worksheet to file.
File name.
Seperator.
Save worksheet to file.
File name.
Seperator.
retain hidden data
Save worksheet to file..
File name.
Seperator.
Encoding to use.
Save worksheet to stream.
Stream object.
Seperator.
Save worksheet to stream.
Stream object.
Seperator.
retain hidden data
Save worksheet to stream.
Stream to save.
Current seperator.
Encoding to use.
Save worksheet to pdf.
File name.
Save worksheet to pdf.
File name.
Save worksheet to pdf Stream.
Stream.
Convert CellRange to Svg stream
stream.
One-based index of the first row to convert.
One-based index of the first column to convert.
One-based index of the last row to convert.
One-based index of the last column to convert.
Sets blank in specified cell.
One-based row index of the cell to set value.
One-based column index of the cell to set value.
Sets value in the specified cell.
One-based row index of the cell to set value.
One-based column index of the cell to set value.
Value to set.
Sets column width in pixels.
One-based column index.
Width in pixels to set.
Set solumn width
Column index.
Width to set.
Sets the width of the specified columns.
Column index
count
Value
Sets error in the specified cell.
One-based row index of the cell to set value.
One-based column index of the cell to set value.
Error to set.
Sets formula in the specified cell.
One-based row index of the cell to set value.
One-based column index of the cell to set value.
Formula to set.
Sets formula in the specified cell.
One-based row index of the cell to set value.
One-based column index of the cell to set value.
Formula to set.
Indicates is formula in R1C1 notation.
Sets formula bool value.
One based row index.
One based column index.
Represents formula bool value for set.
Sets formula error value.
One based row index.
One based column index.
Represents formula error value for set.
Sets formula number value.
One based row index.
One based column index.
Represents formula number value for set.
Sets formula string value.
One based row index.
One based column index.
Represents formula string value for set.
Sets value in the specified cell.
One-based row index of the cell to set value.
One-based column index of the cell to set value.
Value to set.
Set Row height from Start Row index
Row index
count
Value
Sets the height of the specified row.
Row index.
Height.
Sets the height of the specified row.
Row index.
Height.
Sets text in the specified cell.
One-based row index of the cell to set value.
One-based column index of the cell to set value.
Text to set.
Sets value in the specified cell.
Row index.
Column index.
Value to set.
Sets value in the specified cell.
Row index
Column index.
Value to set.
Groups columns.
The first column index to be grouped.
The last column index to be grouped.
Indicates whether group should be collapsed.
Groups rows.
The first row index to be grouped.
The last row index to be grouped.
Indicates whether group should be collapsed.
Ungroups columns.
The first column index to be grouped.
The last column index to be grouped.
Ungroups rows.
The first row index to be grouped.
The last row index to be grouped.
Represents allow edit range
Represents protected range name.
Represents protected range range.
Represents protected range password.
Represents protected range name.
Represents protected range range.
Represents protected range password.
Returns or sets the name of the object. Read / write String.
Name used by macros to access workbook items.
Zoom factor of document.
Value of zoom should be between 10 and 400.
Controls end user visibility of worksheet.
Grid line color.
Indicates whether worksheet has vml shapes. Read-only.
Header / footer shapes collection.
Indicates whether gridline color has default value.
Gets / sets index of the first row of the worksheet.
Gets or sets index of the first column of the worksheet.
Gets or sets one-based index of the last row of the worksheet.
Gets or sets index of the last column of the worksheet.
Returns the index number of the object within the collection of objects.
Gets/sets left visible column of the worksheet.
Returns SheetId for this sheet. Read-only.
Indicates whether worksheet is displayed right to left.
Returns inner textboxes collection. Read-only.
Indicates whether tab of this sheet is selected. Read-only.
Indicates is current sheet is protected.
True if objects are protected. Read only.
True if the scenarios of the current sheet are protected. Read only.
Tab color.
Tab excel color.
Gets/sets top visible row of the worksheet.
Returns inner lines collection. Read-only.
Returns inner rects collection. Read-only.
Returns inner ovals collection. Read-only.
Returns inner buttons collection. Read-only.
Returns inner gourpboxes collection. Read-only.
Returns inner labels collection. Read-only.
Returns inner listboxes collection. Read-only.
Returns inner scollbars collection. Read-only.
Returns inner spinners collection. Read-only.
Returns inner textboxes collection. Read-only.
Returns inner pictures collection. Read-only.
Indicates whether worksheet contains some unknown vml shapes.
Makes the current sheet the active sheet. Equivalent to clicking the
sheet's tab in MS Excel.
Protects worksheet with password.
Protection password.
Password should be less than 15 symbols.
Protects worksheet with password.protect the sheet except select lock/unlock cells.
Protection password.
Password should be less than 15 symbols.
Unprotects this wokrsheet.
Unprotects this worksheet using specified password.
Password to unprotect.
Gets and sets the filter operator type.
Gets and sets the criteria.
Indicates whether the two criterias have an "and" relationship.
Gets the custom filter in the specific index.
The index.
Gets and sets the dynamic filter type.
Gets and sets the dynamic filter value.
Gets and sets the dynamic filter max value.
Indicates whether the AutoFilter button for this column is visible.
number of items display in Top10Items mode.
Highest-valued 10 items displayed
True if the second condition is a simple equality.
True if the first condition is a simple equality.
Highest-valued 10 items displayed (percentage specified in condition)
Logical AND of FirstCondtion and SecondCondition.
Second condition of autofilter.
First condition used.
Second condition used
Remove a date in the filter.
Excel color of the left line.
Left border line style.
Color of the right line.
Color of the right line.
Right border line style.
Excel color of the top line.
Top border line style.
Excel color of the bottom line.
Color of the bottom line.
Bottom border line style.
First formula.
Second formula.
The text value in a "text contains" conditional formatting rule.
Valid only for FormatType = containsText, notContainsText, beginsWith and endsWith.
The default value is null.
Type of the comparison operator.
Indicates whether font is bold.
Indicates whether font is italic.
Font excel color.
Underline type.
Indicates whether font is striked through.
Indicates whether font is superscript.
Indicates whether font is subscript.
Pattern foreground excel color.
Pattern foreground color.
Pattern background excel color.
Pattern background color.
XlsFill pattern type.
Indicates whether contains font formatting.
Indicates whether contains border formatting.
Indicates whether contains pattern formatting.
Indicates whether format color present.
Indicates whether presents pattern color.
Indicates whether pattern style was modified.
Indicates whether background color present.
Indicates whether left border style and color are modified.
Indicates right border style and color modified.
Indicates whether top border style and color are modified.
Indicates whether bottom border style and color are modified.
Get the conditional formatting's "ColorScale" instance.
The default instance is a "green-red" 2ColorScale .
Valid only for type = ColorScale.
ColorScale instance
Creates a new object that is a copy of the current instance.
Parent object for a copy of this instance.
A new object that is a copy of this instance.
Conditional format color. Read-only.
Conditional format background color. Read-only.
Conditional format top border color. Read-only.
Conditional format bottom border color. Read-only.
Conditional format left border color. Read-only.
Conditional format right border color. Read-only.
Conditional format font color. Read-only.
Returns an IconCriteria collection which represents the set of criteria for
an icon set conditional formatting rule.
Returns or sets an IconSets collection which specifies the icon set used
in the conditional format.
Returns or sets a Boolean value indicating if the thresholds for an icon
set conditional format are determined using percentiles.
Returns or sets a Boolean value indicating if the order of icons is
reversed for an icon set.
Returns or sets a Boolean value indicating if only the icon is displayed
for an icon set conditional format.
Read all page breaks
Image mimes cache for embedding image.
Indicates whehter prompt box has fixed position..
Indicates whehter prompt box is visible..
Vertical position of the prompt box.
Vertical position of the prompt box.
Represents a DigitalSignature in Excel.
Certificate object that was used to sign.
Signature Comments.
Sign Time.
Indicates whether this digital signature is valid.
Represents a Collection of DigitalSignature in Excel.
create a signature and add to DigitalSignatureCollection.
Certificate object that was used to sign
Signature Comments
Sign Time
Indicates whether the PivotTable has an autoformat applied.
Checkbox "autofit column width on update"which in pivot table Options :Layout Format for Excel 2007
Adds new ole object to the collection.
File name.
File image.
Link type.
Returns single item from the collection.
Item's index to get.
Single item from the collection.
Adds new item to the collection.
One-based row index of the top-left corner of the new item.
One-based column index of the top-left corner of the new item.
Height in pixels of the new item.
Width in pixels of the new item.
Newly added item.
Adds new text line to the collection.
startPoint
endPoint
lineShapeType
Newly created line.
Add new oval shape in the collection.
0-1000
0-1000
0-1000
0-1000
Returns single item from the collection.
Item's index to get.
Single item from the collection.
Adds new item to the collection.
One-based row index of the top-left corner of the new item.
One-based column index of the top-left corner of the new item.
Height in pixels of the new item.
Width in pixels of the new item.
Newly added item.
line color
Begin Arrow Head Style
Begin Arrow head Length
Begin Arrow head Width
End Arrow Head Style
End Arrow head Length
End Arrow head Width
DashStyle
Style
Weight
Represents Y error bars. Read only.
Indicates if serie contains Y error bars.
Represents X error bars. Read only.
Indicates if serie contains X error bars.
Represents serie trend lines collection. Read only.
Area's text.Some items(such as legend,axis...) maybe invalid
Return trendline formula. Read only.
Represents foreground excel color.
line color
Begin Arrow Head Style
Begin Arrow head Length
Begin Arrow head Width
End Arrow Head Style
End Arrow head Length
End Arrow head Width
DashStyle
Style
Transparency
value 0---1
Weight
MiddleOffsetPercent
Set middle point value ,
when middle point localed at back of start point value is less than 0
when middle point localed at start point value is 0
when middle point localed at end point value is 1
when middle point localed at back of end point value is greater than 0
Gets or sets the location.
The location.
Gets or sets the size.
The size.
Gets or sets the picture.
The picture.
Gets or sets picture shape object that defines look and position of the OleObject inside parent worksheet.
Gets or sets a value indicating whether [display as icon].
true if [display as icon]; otherwise, false.
Gets or sets the type of the object.
Gets or sets the native data.
Warning : It's not recommend use set method,because this property decision by width and height
Gets and sets the html string which contains data and some formattings in this shape.
Specifies all possible settings for how drawing object shall be resized when the rows and columns between its start and ending anchor are resized or inserted(ComboBoxShape and CheckBoxShape and RadioButtonShape set MoveAndResize type value is invalid)
Creates new list object and adds it to the collection.
Name of the new list object.
Destination range.
Newly created object.
Supports cloning, which creates a new instance of a class
with the same value as an existing instance.
Creates a new object that is a copy of the current instance.
Parent object for a copy of this instance.
A new object that is a copy of this instance.
Gets or sets name of the column.
Gets column index.
Gets or sets function used for totals calculation.
Gets or sets label of the totals row.
Gets or sets calculated formula value.
Returns the calculated value of a formula using the most current inputs.
Gets and sets the html string which contains data and some formattings in this cell.
Saves changes to the specified stream.
Stream that will receive workbook data.
Gets chart format.
Represents chart border. Read only.
Represents chart interior. Read only
Category labels for the chart.
Gets font used for axis text displaying.
Returns text area for the axis title. Read-only.
Returns a ChartGridLine object that represents the major gridlines for the specified axis. Only axes in the primary axis group can have gridlines
Returns a ChartGridLine object that represents the minor gridlines for the specified axis. Only axes in the primary axis group can have gridlines.
Gets data format. Read-only.
Gets or sets text area.
Gets data format. Read-only.
Gets data labels object for the data point. Read-only.
Returns dataformat or null; Read-only.
Gets first drop bar.
Represents series line properties. ( For pie of pie or pie of bar chart types only. ) Read only.
Returns object that represents second drop bar.
Gets line border. Read only.
Return text area of legend.
Represents legend entries collection. Read only.
Returns text area. Read-only.
Represents frame interior. Read only
Returns data points collection for the chart series. Read-only.
Category labels for the series.
Bubble sizes for the series.
Values range for the series.
Returns serie format.
Returns data format. Read-only.
Returns object, that represents aera properties. Read only.
Returns object, that represents line properties. Read only.
Returns font used for axis text displaying. Read-only.
Returns major gridLines. Read-only.
Returns minor gridLines. Read-only.
Returns text area for the axis title. Read-only.
Returns textarea's color object. Read-only.
Delimeter.
Indicates whether buble size is in data labels.
Indicates whether category name is in data labels.
Indicates whether legend key is in data labels.
Indicates whether percentage is in data labels.
Indicates whether series name is in data labels.
Indicates whether value is in data labels.
Represents data labels position.
Gets or sets number format for the text area.
Indicates whether contain dataLabels .
Indicates whether to show category label and value as percentage.
Indicates if current text assign to trend object.
Gets index to the number format. Read-only.
Returns FontImpl for current font. Read-only.
Returns font used for axis text displaying. Read-only.
Returns major gridLines. Read-only.
Returns minor gridLines. Read-only.
Returns text area for the axis title. Read-only.
Returns default data point. Read-only.
Gets default data format .
Gets chart point.
Returns a single Name object from a Names collection.
Returns a single Name object from a Names collection.
Adds a range to the collection.
Range to add.
Adds a comment to the range.
Added comment.
Adds a range to the collection.
Range to add.
Copies the range to the specified range.
Destination range
Destination range
Copies the range to the specified range.
Destination range.
Indicates whether to update reference cells.
Copies the range to the specified range.
Destination range.
Indicates whether to update reference cells.
Indicates whether to copy styles.
Destination range
Finds the cell with the input double.
Double value to search for
Indicates whether to find formula value
Found ranges
Finds the cell with the input string.
String value to search for
Indicates whether include formula
Indicates whether include formula value
Found ranges
Finds the cell with the input datetime.
DateTime value to search for
Found ranges
Finds the cell with input timespan
time span value to search for
Found ranges
Finds the cell with the input bool.
Bool value to search for
Found ranges
Finds the cell with the input bool.
Bool value to search for
Found range
Finds the cell with the input double.
Double value to search for
Indicates whether includes formula value to search for
Found range
Finds the cell with the input string.
String value to search for
Indicates whether includes formula to search for
Indicates whether includes formula value to search for
Found range
Finds the cell with the input datetime.
Datetime value to search for
Found range
Finds the cell with the input time span.
Time span value to search for.
Found range.
Get intersection range with the specified range.
Range which to intersect.
Range intersection.
Moves the cells to the specified Range.
Destnation Range.
Moves the cells to the specified Range.
Destination Range.
Indicates whether to update reference range.
Removes range from the collection.
Range to remove.
Returns a Range object that represents the entire row (or rows) that contains the specified range.
Returns a Range object that represents the entire column (or
columns) that contains the specified range.
Returns a Range object that represents the cells in the specified range.
Returns the number of the first row of the first area in the range.
Returns a Range object that represents the columns in the specified range
Returns a Comment object that represents the comment associated with the cell in the upper-left corner of the range.
Returns a Range object that represents the cell at the end of the
region that contains the source range.
Returns a Borders collection that represents the borders of a style or a range of cells (including a range defined as part of a conditional format).
Returns a Range object that represents the merged range containing the specified cell.
Returns a RichTextString object that represents the rich text style.
Returns a Style object that represents the style of the specified range
Gets a chart object by item index.
Get a chart object by name.
Adds a new chart.
Created chart object.
Add a new chart with name.
chart name.
Created chart object.
Adds chart to the collection.
Chart to add.
Added chart object.
Removes chart object from the collection.
Name of the chart to remove.
Adds comment to the specified range.
Range that adds comment.
Created comment object..
Adds comment to the specified row and column.
Row index..
Column index.
Created comment object.
Removes comment object from the collection.
Comment to remove.
Gets a comment object.
Gets a comment object.
Adds picture to the collection.
Picture to add.
Picture name.
Added picture.
Adds picture to the collection.
Picture to add.
Picture name.
Image format.
Added picture.
Adds picture from the specified file.
File name.
Added picture.
Adds picture from the specified file.
File name.
Image format.
Added picture.
Adds image to the collection.
Top row of a new picture.
Left column.
Image.
Added picture.
Adds image to the collection.
Top row of a new picture.
Left column.
Image to add.
Image format.
Added picture.
Adds image to the collection.
Top row of a new picture.
Left column.
Stream object.
Added picture.
Adds image to the collection.
Top row of a new picture.
Left column.
Stream with the picture.
Image format.
Added picture.
Adds image to the collection.
Top row of a new picture.
Left column.
File name.
Added picture.
Adds image to the collection.
Top row of a new picture.
Left column.
File name.
Image format.
Added picture.
Adds image to the collection.
Top row of a new picture.
Left column.
Bottom row.
Right column.
Image object.
Added picture.
Adds image to the collection.
Top row of a new picture.
Left column.
Bottom row.
Right column.
Image to add.
Image format.
Added picture.
Adds image to the collection.
Top row of a new picture.
Left column.
Bottom row.
Right column.
Stream.
Added picture.
Adds image to the collection.
Top row of a new picture.
Left column.
Bottom row.
Right column.
Stream with the picture.
Image format.
Added picture.
Adds image to the collection.
Top row of a new picture.
Left column.
Bottom row.
Right column.
File name.
Added picture.
Adds image to the collection.
Top row of a new picture.
Left column.
Bottom row.
Right column.
File name.
Image format.
Added picture.
Adds image to the collection.
Top row of a new picture.
Left column.
Image.
Width scale in percents.
Height scale in percents.
Added picture.
Adds image to the collection.
Top row of a new picture.
Left column.
Image.
Width scale in percents.
Height scale in percents.
Image format.
Added picture.
Adds image to the collection.
Top row of a new picture.
Left column.
Stream with the picture.
Width scale in percents.
Height scale in percents.
Added picture.
Adds image to the collection.
Top row of a new picture.
Left column.
Stream with the picture.
Width scale in percents.
Height scale in percents.
Image format.
Added picture.
Adds image to the collection.
Top row of a new picture.
Left column.
File name.
Width scale in percents.
Height scale in percents.
Added picture.
Adds image to the collection.
Top row of a new picture.
Left column.
Name of the shape.
Width scale in percents.
Height scale in percents.
Image format to use for picture storing.
Added picture.
Get Add-In function.
Item index.
Returns or sets the primary excel color of the object.
Returns or sets the primary color of the object.
Gets border item.
Returns or sets the line style for the border.
Gets or sets line style of borders.
Gets count of borders.
Gets page break object item.
Adds a horizontal page break.
range which new page break inserted.
HPageBreak added.
Returns page break at the specified row.
Row index.
Page break object.
Returns page break at the specified range.
Range object.
Page break object.
Gets hyperlinks for the specified range.
range object.
Gets a object from collection
Adds a horizontal page break.
Range which a page break need inserted.
Remove page break with specified range.
range object.
Returns page break at the specified Column index.
Column index.
Returns page break at the specified range.
range object.
Adds a new worksheet.
Worksheet name.
Added worksheet.
Adds copy of worksheet.
Sheet index.
Added worksheet.
Adds copy of worksheet.
Worksheet to copy.
Added worksheet.
Adding worksheets collection to workbook.
Source worksheets collection.
Create a new worksheet.
Worksheet name
Creates a new worksheet.
Finds the cell with the input double.
Double value to search for
Indicates whether to find formula value
Found ranges
Finds the cell with the input string.
String value to search for
Indicates whether include formula
Indicates whether include formula value
Found ranges
Finds the cell with the input datetime.
DateTime value to search for
Found ranges
Finds the cell with input timespan
time span value to search for
Found ranges
Finds the cell with the input bool.
Bool value to search for
Found ranges
Finds the cell with the input bool.
Bool value to search for
Found range
Finds the cell with the input double.
Double value to search for
Indicates whether includes formula value to search for
Found range
Finds the cell with the input string.
String value to search for
Indicates whether includes formula to search for
Indicates whether includes formula value to search for
Found range
Finds the cell with the input datetime.
Datetime value to search for
Found range
Finds the cell with the input time span.
Time span value to search for.
Found range.
Remove worksheet from collection.
Worksheet object.
Returns a single object from a collection. Read-only.
Returns a single object from a collection. Read-only.
gets a object from a collection.
gets a object from a collection.
Adds a new style.
Style name
Adds a style.
Style to added.
Style which is in collection.
Style object.
Returns parent worksheet. Read-only.
Get auto filter item..
Range to be filtered.
Filter the data.
Adds a filter for a filter column.
The column field on which you want to base the filter . for exapmle: sheet.AutoFilters[0]
The specified criteria (a string; for example, "hello").
It only can be null or be one of the cells' value in this column.
Adds a date filter for a filter column.
The column field on which you want to base the filter . for exapmle: sheet.AutoFilters[0]
The year.
The month.
The day.
The hour.
The minute.
The second.
If DateTimeGroupingType is Year, only the param year effects.
If DateTiemGroupingType is Month, only the param year and month effect.
and so on.
Removes a date filter.
The column field on which you want to base the filter . for exapmle: sheet.AutoFilters[0]
The year.
The month.
The day.
The hour.
The minute.
The second.
If DateTimeGroupingType is Year, only the param year effects.
If DateTiemGroupingType is Month, only the param year and month effect.
Removes a filter for a filter column.
The column field on which you want to base the filter . for exapmle: sheet.AutoFilters[0]
The specified criteria (a string; for example, "hello").
It only can be null or be one of the cells' value in this column.
Filters a list with specified criteria.
The column field on which you want to base the filter . for exapmle: sheet.AutoFilters[0]
The specified criteria (a string; for example, "hello").
will remove all other filter setting on this field as Ms Excel 97-2003.
Adds a dynamic filter.
The column field on which you want to base the filter. for exapmle: sheet.AutoFilters[0]
Dynamic filter type.
Adds a font color filter.
The column field on which you want to base the filter. for exapmle: sheet.AutoFilters[0]
Font Color.
Adds a fill color filter.
The column field on which you want to base the filter. for exapmle: sheet.AutoFilters[0]
The background pattern type.
The foreground color.
The background color.
Adds a fill color filter.
The column field index on which you want to base the filter (from the left of the list; the leftmost field is field 0).
Fill Color.
Match all blank cell in the list.
The column field on which you want to base the filter . for exapmle: sheet.AutoFilters[0]
Match all blank cell in the list.
The column field on which you want to base the filter . for exapmle: sheet.AutoFilters[0]
Filters a list with a custom criteria.
The column field on which you want to base the filter . for exapmle: sheet.AutoFilters[0]
The filter operator type
The custom criteria
Filters a list with custom criterias.
The column field on which you want to base the filter. for exapmle: sheet.AutoFilters[0]
The first filter operator type
The first custom criteria
The second filter operator type
The second custom criteria
Delete the column filter by column name
column name
Delete the column filter by column index(filters column index not sheet column index)
column index
Filter the top 10 item in the list
The column field index on which you want to base the filter (from the left of the list; the leftmost field is field 0).
Indicates whether filter from top or bottom
Indicates whether the items is percent or count
The item count
Filter the top 10 item in the list
The column field on which you want to base the filter. for exapmle: sheet.AutoFilters[0]
Indicates whether filter from top or bottom
Indicates whether the items is percent or count
The item count
Match all not blank cell in the list.
The column field index on which you want to base the filter (from the left of the list; the leftmost field is field 0).
Match all not blank cell in the list.
The column field on which you want to base the filter . for exapmle: sheet.AutoFilters[0]
Convert Setting
Print each page using this EventHandler
Gets or sets the horizontal resolution, in dots per inch (DPI). Default value is 96.
Gets or sets the vertical resolution, in dots per inch (DPI). Default value is 96.
Gets or sets a value determining the quality.
One sheet context render to only one page.
Gets or sets the Pdf document's Conformance-level.
Represents the security settings of the PDF document.
Indicate the chart render image type.
Enables or disables clipping the image to the region
Returns an object that represents either a single series (a Series object) or a collection of all the series (a SeriesCollection collection) in the chart or chart group.
Gets title text area. Read-only.
Returns a ChartArea object that represents the complete chart area for the chart
DataRange for the chart series.
Returns a DataTable object that represents the chart data table.
Returns a Floor object that represents the floor of the 3-D chart.
Represents chart legend.
Page setup for the chart.
Returns a PlotArea object that represents the plot area of a chart.
Returns primary category axis.
Returns primary value axis.
Returns primary series axis. Read-only.
Returns secondary category axis.
Returns secondary value axis. Read-only.
Workbook contains the chart.
Represents chart walls.
Worksheet which contains the chart.
Gets or sets the radio of soft edge.
Returns an object that represents either a single series (a Series object) or a collection of all the series (a SeriesCollection collection) in the chart or chart group.
Gets title text area. Read-only.
Returns an object that represents the complete chart area for the chart.
DataRange for the chart series.
Returns a DataTable object that represents the chart data table.
Returns a Floor object that represents the floor of the 3-D chart
Represents chart legend.
Page setup for the chart.
Returns a PlotArea object that represents the plot area of a chart.
Returns primary category axis.
Returns primary value axis.
Returns primary series axis.
Returns secondary category axis.
Returns secondary value axis.
Workbook which contains the chart.
Represents chart walls.
Represents comments collection for the worksheet. Read-only.
Convert chart to Svg stream
stream.
Contains a condition and the formatting for cells.
Indicates whether pattern color .
Used to get or set interior settings.
Returns gradient object for this extended format.
A sparkline represents a tiny chart or graphic in a worksheet cell that provides a visual representation of data.
Represents the SparklineCollection.
Adds Sparkline instance.
Adds the sparkline.
Adds the sparkline.
Adds the sparkline.
Refresh data range of the sparkline.
Clears the sparkline.
The sparkline range.
Indicates whether to show the sparkline horizontal axis. The horizontal axis appears if the sparkline has data that crosses the zero axis.
Indicates whether to show data in hidden rows and columns.
Indicates whether to highlight the first point of data in the sparkline group.
Indicates whether to highlight the last point of data in the sparkline group.
Indicates whether to highlight the lowest points of data in the sparkline group.
Indicates whether to highlight the highest points of data in the sparkline group.
Indicates whether to highlight the negative values on the sparkline group with a different color or marker.
Indicates whether to highlight each point in each line sparkline in the sparkline group.
Gets and sets the custom maximum value for the vertical axis.
Represents the vertical axis maximum value type.
Gets and sets the custom minimum value for the vertical axis.
Represents the vertical axis minimum value type.
Indicates the sparkline type of the sparkline group.
Indicates wheter represents the horizontal axis type as Dateaxis.
Represents the range that contains the date values for the sparkline data.
Gets and sets the color of the horizontal axis in the sparkline group.
Gets and sets the color of the first point of data in the sparkline group.
Gets and sets the color of the highest points of data in the sparkline group.
Gets and sets the color of the last point of data in the sparkline group.
Gets and sets the line weight in each line sparkline in the sparkline group, in the unit of points.
Gets and sets the color of the lowest points of data in the sparkline group.
Gets and sets the color of points in each line sparkline in the sparkline group.
Gets and sets the color of the negative values on the sparkline group.
Gets and sets the color of the sparklines in the sparkline group.
The SparklineGroupCollection represents the collection of SparklineGroup objects.
Clears the sparkline group.
Adds the SparklineGroup instance.
Adds the SparklineGroup instance.
WorkbookDesignerused for template markers to the workbook and worksheet.
Add datatable to template markers(Match column name automatically).
Parameter Name
Datatable object
Add dataview to template markers(Match column name automatically).
Parameter Name
Datatable object
Adds parameter to template markers.
Parameter Name
Parameter Value
Removes parameter from template marker.
Checks parameter is exist.
Apply templates markers
Prefix of Marker
Whether detect the dataTypes when apply marker
The color scale condition in the conditional format
Indicates the type, value, and the color
of threshold criteria used in the color scale conditional format.
Get or set the max value object's corresponding color.
Get or set the mid value object's corresponding color.
Get or set the min value object's corresponding color.
Get or set this ColorScale's max value object.
Get or set this ColorScale's mid value object.
Get or set this ColorScale's min value object.
Sets number of objects in the collection.
Contains a condition and the formatting for cells.
Represents a data bar conditional formating rule.
The shortest bar is evaluated for a data bar conditional format.
The longest bar is evaluated for a data bar conditional format.
Gets or sets the color of the bar in a data bar condition format.
Gets or sets a value that specifies the length of the longest data bar as a percentage of cell width.
Gets or sets a value that specifies the length of the shortest data bar as a percentage of cell width.
Gets or sets a Boolean value that specifies if the value in the cell is displayed.
Gets the color of the axis for cells with conditional formatting as data bars.
Gets or sets the position of the axis of the data bars specified by a conditional formatting rule.
Gets an object that specifies the border of a data bar.
Gets or sets the direction the databar is displayed.
Gets the NegativeBarFormat object associated with a data bar conditional formatting rule.
Comment rich text.
Gets or sets the author of the comment.
Indicates whether the comment is visible.
Gets and sets the html string which contains data and some formattings in this shape.
Row of the commented range.
Column of the commented range.
Comment text
Indicates whether the size of the specified object is changed automatically
to fit text within its boundaries. Read/write Boolean.
Specifies all possible settings for how drawing object shall be resized when the rows and columns between its start and ending anchor are resized or inserted.
Height of comment.
Position of left
Name of object.
Top of object.
Width of object.
Shape type of object.
Alternative text.
Returns or sets the rotation of the shape, in degrees.
Removes comment.
Scales all comments.
Width scale in percents.
Height scale in percents.
Converts cell name to row and column index.
Name of the cell.
Row index.
Column index.
Converts column name into index.
Name to convert.
Converted value.
Conditional formatting icon set condition.
Gets an IconCriteria collection
Get or sets icon set type
Gets or sets a Boolean value indicates whether thresholds for an icon
set conditional format are determined using percentiles.
Gets or sets a Boolean value indicates whether the order of icons is
reversed for an icon set.
Gets or sets a Boolean value indcates whether only the icon is displayed
for an icon set conditional format.
Returns or sets a ExcelColors value that represents the color of the border
Returns or sets the primary color of the object, as shown in the table in the remarks section. Use the RGB function to create a color value.
Read/write Color.
Returns or sets the primary color of the object.
Read/write ExcelColors.
Returns or sets the line style for the border. Read/write LineStyleType.
Indicates whether shows diagonal line.
Copies styles from source border.
source border.
Copies styles from source border.
source border.
Active single cell in the worksheet
Adds a comment to the range.
Comment to add
Adds a comment to the range.
Created comment or exists one.
Clones current IXLSRange.
Parent object.
new names.
Parent workbook.
Cloned instance.
Moves the cells to the specified Range.
Destnation Range.
Moves the cells to the specified Range.
Destination Range.
Indicates whether to update reference range.
Copies the range to the specified range.
Destination range
Destination range
Copies the range to the specified range.
Destination range.
Indicates whether to update reference cells.
Copies the range to the specified range.
Destination range.
Indicates whether to update reference cells.
Indicates whether to copy styles.
Destination range
Copies the range to the specified range.
Destination range.
Copy options.
Finds the cell with the input double.
Double value to search for
Indicates whether to find formula value
Found ranges
Finds the cell with the input string.
String value to search for
Indicates whether include formula
Indicates whether include formula value
Found ranges
Finds the cell with the input datetime.
DateTime value to search for
Found ranges
Finds the cell with input timespan
time span value to search for
Found ranges
Finds the cell with the input bool.
Bool value to search for
Found ranges
Finds the cell with the input bool.
Bool value to search for
Found range
Finds the cell with the input double.
Double value to search for
Indicates whether includes formula value to search for
Found range
Finds the cell with the input string.
String value to search for
Indicates whether includes formula to search for
Indicates whether includes formula value to search for
Found range
Finds the cell with the input datetime.
Datetime value to search for
Found range
Finds the cell with the input time span.
Time span value to search for.
Found range.
Get intersection range with the specified range.
Range which to intersect.
Range intersection.
Creates a merged cell from the specified Range object.
The Range to merge with.
Merged ranges.
Sets data validation for the range.
Data validation to set.
Returns a Borders collection that represents the borders of a style or a range of cells (including a range defined as part of a conditional format).
Returns a Style object that represents the style of the specified range
Returns a Range object that represents the cells in the specified range.
Returns a Range object that represents the cells in the specified range.
Returns a Range object that represents the columns in the specified range
Returns the number of the first row of the first area in the range.
Gets cell range. Row and column indexes are one-based.
Gets cell range. Row and column indexes are one-based.
Gets cell range.
Gets cell range
Returns a Comment object that represents the comment associated with the cell in the upper-left corner of the range.
Returns a worksheet object that represents the worksheet
containing the specified range.
Returns a RichTextString object that represents the rich text style.
Returns a Range object that represents the entire column (or
columns) that contains the specified range.
Returns a Range object that represents the cell at the end of the
region that contains the source range.
Returns a Range object that represents the merged range containing the specified cell.
Returns a Range object that represents the entire row (or rows) that contains the specified range.
Returns a Borders collection that represents the borders of a style.
Returns a Font object that represents the font of the specified object.
Returns interior object for extended format.
Represents justify text alignment
Returns or sets the format code for the object as a string in the
language of the user.
True if the style is a built-in style.
Gets or Sets fill pattern type.
True if the formula will be hidden when the worksheet is protected.
Returns or sets the horizontal alignment for the specified object.
True if the style includes the AddIndent, HorizontalAlignment,
VerticalAlignment, WrapText, and Orientation properties.
True if the style includes the Color, KnownColor, LineStyle, and Weight border properties
True if the style includes the Background, Bold, Color, KnownColor, FontStyle, Italic, Name, OutlineFont, Shadow, Size, Strikethrough, Subscript, Superscript, and Underline font properties.
True if the style includes the NumberFormat property.
True if the style includes the Color, KnownColor,
InvertIfNegative, Pattern, PatternColor, and PatternKnownColor
interior properties.
True if the style includes the FormulaHidden and Locked protection
properties.
Returns or sets the indent level for the style.
True if the object is locked; False if the object can be modified when the sheet is protected.
Returns or sets the name of the object. Read-only String.
Returns or sets the format code for the object.
Gets or Sets format index.
The text orientation. Can be an integer value from 1 to 180 degrees
True if text automatically shrinks to fit in the available column width.
Returns or sets the vertical alignment of the specified object.
True if Microsoft Excel wraps the text in the object.
Returns or sets the reading order for the specified object.
If true then first symbol in cell is apostrophe.
Returns or sets the excel color of the interior.
Returns or sets the color of the interior pattern.
Gets or sets the cell shading excel color.
Gets or sets the cell shading color.
Returns a Borders collection that represents the borders of a style.
Returns a Font object that represents the font of the specified object.
Returns workbook contains the style..
Represents possible excel versions.
Represents excel version 2007 xlsb
Represents excel version 2010 xlsb
OpenOffice Spreadsheet documents
Represents excel version 97-2003.
Represents excel version 2007
Represents excel version 2013.
Represents excel version 2016.
Represents possible excel versions.
Represents excel version 2007 xlsb
Represents excel version 2010 xlsb
OpenOffice Spreadsheet documents
CSV file.
Xml file
PDF file
Bitmap file
XPS file
SVG file
Represents excel version 97-2003.
Represents excel version 2007.
Represents excel version 2010.
Represents excel version 2013.
Represents excel version 2016.
PostScript file
Predefined colors in excel.
Represents the Black color.
Represents the White color.
Represents the Red color.
Represents the LightGreen color.
Represents the Blue color.
Represents the Yellow color.
Represents the Magenta color.
Represents the Cyan color.
No color.
Represents the Aqua color.
Represents the BlackCustom color.
Represents the BlueCustom color.
Represents the BlueGray color.
Represents the BrightGreen color.
Represents the Brown color.
Represents the DarkBlue color.
Represents the DarkGreen color.
Represents the DarkRed color.
Represents the DarkTeal color.
Represents the DarkYellow color.
Represents the Gold color.
Represents the Green color.
Represents the Gray25Percent color.
Represents the Gray40Percent color.
Represents the Gray50Percent color.
Represents the Gray80Percent color.
Represents the Indigo color.
Represents the Lavender color.
Represents the LightBlue color.
Represents the LightGreen1 color.
Represents the LightOrange color.
Represents the LightTurquoise color.
Represents the LightYellow color.
Represents the Lime color.
Represents the OliveGreen color.
Represents the Orange color.
Represents the PaleBlue color.
Represents the Pink color.
Represents the Plum color.
Represents the Red2 color.
Represents the Rose color.
Represents the SeaGreen color.
Represents the SkyBlue color.
Represents the Tan color.
Represents the Teal color.
Represents the Turquoise color.
Represents the Violet color.
Represents the WhiteCustom color.
Represents the YellowCustom color.
Represents the Color0 color.
Represents the Color1 color.
Represents the Color2 color.
Represents the Color3 color.
Represents the Color4 color.
Represents the Color5 color.
Represents the Color6 color.
Represents the Color7 color.
Represents the Color8 color.
Represents the Color9 color.
Represents the Color10 color.
Represents the Color11 color.
Represents the Color12 color.
Represents the Color13 color.
Represents the Color14 color.
Represents the Color15 color.
Represents the Color16 color.
Represents the Color17 color.
Represents the Color18 color.
Represents the Color19 color.
Represents the Color20 color.
Represents the Color21 color.
Represents the Color22 color.
Represents the Color23 color.
Represents the Color24 color.
Represents the Color25 color.
Represents the Color26 color.
Represents the Color27 color.
Represents the Color28 color.
Represents the Color29 color.
Represents the Color30 color.
Represents the Color31 color.
Represents the Color32 color.
Represents the Color33 color.
Represents the Color34 color.
Represents the Color35 color.
Represents the Color36 color.
Represents the Color37 color.
Represents the Color38 color.
Represents the Color39 color.
Represents the Color40 color.
Represents the Color41 color.
Represents the Color42 color.
Represents the Color43 color.
Represents the Color44 color.
Represents the Color45 color.
Represents the Color46 color.
Represents the Color47 color.
Represents the Color48 color.
Represents the Color49 color.
Represents the Color50 color.
Represents the Color51 color.
Represents the Color52 color.
Represents the Color53 color.
Represents the Color54 color.
Represents the Color55 color.
Represents the Color56 color.
Represents the CSV HttpContent type.
Possible image types for image conversion.
Bitmap image.
Metafile image.
Page break types in Excel.
Represents the Automatic type.
Represents the Manual type.
Represents the None type.
Represents sheet protection flags enums.
Not allows the user to do any thing on a protected worksheet.
True to protect shapes.
True to protect scenarios.
True allows the user to format any cell on a protected worksheet.
True allows the user to format any column on a protected worksheet.
True allows the user to format any row on a protected.
True allows the user to insert columns on the protected worksheet.
True allows the user to insert rows on the protected worksheet.
True allows the user to insert hyperlinks on the worksheet.
True allows the user to delete columns on the protected worksheet,
where every cell in the column to be deleted is unlocked.
True allows the user to delete rows on the protected worksheet,
where every cell in the row to be deleted is unlocked.
True allows the user to select locked cells on the protected worksheet.
True allows the user to sort on the protected worksheet.
True allows the user to set filters on the protected worksheet.
Users can change filter criteria but can not enable or disable an auto filter.
True allows the user to use pivot table reports on the protected worksheet.
True allows the user to select locked cells on the protected worksheet.
Represents all flags
Allows the user to do any thing on a protected worksheet.
Hyper link type.
No hyperlink.
Represents the Url hyperlink type.
Represents the File hyperlink type.
Represents the Unc hyperlink type.
Represents the Workbook hyperlink type.
Cell format types.
Represents unknown format type.
Represents general number format.
Represents text number format.
Represents number number format.
Represents datetime number format.
Represents Formula.
Flags for expand/collapse settings.
Default options.
Indicates whether subgroups must be included into operation.
Indicates whether we have to expand parent group when expanding child (to make it visible).
Clears the formats of the cell.
Clears the contents of the cell.
Clears the comments of the cell.
Clears the comments, content and formats of the cell.
Clears all the Conditional Format
Specifies existing built-in styles for Excel 2007.
Indicates Normal style.
Indicates Comma style.
Indicates Currency style.
Indicates Percent style.
Indicates Comma[0] style.
Indicates Currency[0] style.
Indicates Currency style.
Indicates Followed Hyperlink style.
Indicates Note style.
Indicates Warning Text style.
Indicates Title style.
Indicates Heading 1 style.
Indicates Heading 2 style.
Indicates Heading 3 style.
Indicates Heading 4 style.
Indicates Input style.
Indicates Output style.
Indicates Calculation style.
Indicates Check Cell style.
Indicates Linked Cell style.
Indicates Total style.
Indicates Good style.
Indicates Bad style.
Indicates Neutral style.
Indicates Accent1 style.
Indicates 20% - Accent1 style.
Indicates 40% - Accent1 style.
Indicates 60% - Accent1 style.
Indicates Accent2 style.
Indicates 20% - Accent2 style.
Indicates 40% - Accent2 style.
Indicates 60% - Accent2 style.
Indicates Accent3 style.
Indicates 20% - Accent3 style.
Indicates 40% - Accent3 style.
Indicates 60% - Accent3 style.
Indicates Accent4 style.
Indicates 20% - Accent4 style.
Indicates 40% - Accent4 style.
Indicates 60% - Accent4 style.
Indicates Accent5 style.
Indicates 20% - Accent5 style.
Indicates 40% - Accent5 style.
Indicates 60% - Accent5 style.
Indicates Accent6 style.
Indicates 20% - Accent6 style.
Indicates 40% - Accent6 style.
Indicates 60% - Accent6 style.
Indicates Explanatory Text style.
Defines the possible settings for vertical alignment of a run of text.
This is used to get superscript or subscript text without altering the
font size properties of the rest of the text run.
Returns the text in this run to the baseline, default,
alignment, and returns it to the original font size.
Specifies that this text should be superscript. Raises the text in this
run above the baseline and changes it to a smaller size, if a smaller
size is available.
Specifies that this text should be subscript. Lowers the text in this
run below the baseline and changes it to a smaller size, if a smaller
size is available.
Represents shape shading variants.
Represents first shading variants.
Represents second shading variants.
Represnets third shading variants.
Represents fourth shading variants.
No bevel
Represents Angle
Represents Art Deco
Represents Circle
Represents Convex
Represents Cool Slant
Represents Cross
Represents Divot
Represents Hard Edge
Represents Relaxed Inset
Represents Riblet
Represents Slope
Represents Soft round
Indicates the Material property values fro the chart
Represents No Material Effect
Represents Matte Material
Represents WarmMatte Material
Represents Plastic Material
Represents Metal Material
Represents Dark Edge Material
Represents Soft Edge Material
Represents Flat Material
Represents Wire Frame Material
Represents Powder Material
Represents Translucent Powder Material
Represents Clear Material
Indicates the Outer Shadow values
Represents No shadow
Represents Outer shadow at Right
Represents Outer shadow at DiagonalBottomRight
Represents Outer shadow at Bottom
Represents Outer shadow at DiagonalTopLeft
Represents Outer shadow at Center
Represents Outer shadow at Top
Represents Outer shadow at Left
Represents Outer shadow at DiagonalTopRight
Represents Outer shadow at DiagonalBottomLeft
Indicates the Inner Shadow Values
Represents No shadow.
Represents Inner Shadow at Diagonal Bottom Left
Represents Inner Shadow at Top
Represents Inner Shadow at Right
Represents Inner Shadow at Left
Represents Inner Shadow at TopRight
Represents Inner Shadow at Diagonal Bottom Right
Represents Inner Shadow at Center
Represents Inner Shadow at Bottom
Represents Inner Shadow at Diagonal Top left
Indicates the Perspective shadow Values
Represents the No Shadow
Represents Perspective Shadow at Diagonal Upper Right
Represents Perspective Shadow at Diagonal Lower Right
Represents Perspective Shadow at Diagonal Upper Left
Represents Perspective Shadow at Diagonal Lower Left
Represents Perspective Shadow at Below
Represents shape XlsFill type.
Solid color.
Represents pattern type.
Represents texture type.
Represents picture type.
Represents unsupport gradient.
Represents gradient type.
Represents noFill type.
Image formats.
Original picture format.
PNG picture format.
JPG picture format.
Line
PloyLine
CurveLine
defines the types of OLE object
Type is not defined
Adobe Acrobat Document.
Bitmap Image.
Media Clip
Equation
Graph Chart
Excel 97-2003 Worksheet.
Excel Binary Worksheet.
Excel chart.
Excel Macro-Enabled Worksheet.
Excel Worksheet.
PowerPoint 97-2003 Presentation.
PowerPoint 97-2003 Slide.
PowerPoint Macro-Enabled Presentation.
PowerPoint Macro-Enabled Slide.
PowerPoint Presentation.
PowerPoint Slide.
Word 97-2003 Document.
Word Document.
Word Macro-Enabled Document.
Visio Deawing
MIDI Sequence
OpenDocument Presentation
OpenDocument Spreadsheet
OpenDocument Text
OpenOffice.org 1.1 Spreadsheet
OpenOffice.org 1.1 Text
Package
Video Clip
Wave Sound
WordPad Document
OpenOffice spreadsheet
OpenOffice Text
Represents possible combo box type values..
Regular sheet dropdown control.
PivotTable page field dropdown.
AutoFilter dropdown.
AutoComplete dropdown.
Data validation list dropdown.
PivotTable row or column field dropdown.
Dropdown for the Total Row of a table.
Indicates that inserted row/column has the same format as the row above or column left.
Indicates that inserted row/column has the same format as the row below or column right.
Indicates that inserted row/column has default format.
Defines action that must be taken when meeting unknown variable during template markers processing.
Throws exception if no variable is defined.
Skips processing variable and leaves it in the document.
Replaces variable with empty string.
Defines value type and numberformat in the
template marker variable.
Detects the DataType of the marker variable.
Detects both the NumberFormat and DataType of the marker variable.
Represents the None Action.
SummaryInformation property type.
Title document property.
Subject document property.
Author document property.
Keywords document property.
Comments document property.
Template document property.
LastAuthor document property.
Revnumber document property.
EditTime document property.
LastPrinted document property.
CreationDate document property.
LastSaveDate document property.
PageCount document property.
WordCount document property.
CharCount document property.
Thumbnail document property.
ApplicationName document property.
Ssecurity document property.
Category document property.
Target format type.
ByteCount.
LineCount.
ParCount.
SlideCount.
NoteCount.
HiddenCount.
MmclipCount.
ScaleCrop property.
HeadingPair.
DocParts.
Manager.
Company.
LinksDirty.
Page break extent types in Excel.
Represents full page break option.
Represents partial page break option.
Data type for filters.
Represents the filter data type.
Represents the FloatingPoint filter data type.
Represents the String filter data type.
Represents the Boolean filter data type.
Represents the ErrorCode filter data type.
Represents the MatchAllBlanks filter data type.
Represents the MatchAllNonBlanks filter data type.
Filter conditions.
Represents the Less filter condition type.
Represents the Equal filter condition type.
Represents the LessOrEqual filter condition type.
Represents the Greater filter condition type.
Represents the NotEqual filter condition type.
Represents the GreaterOrEqual filter condition type.
Represents auto format values.
Represents Simple auto format.
Represents Classic1 auto format.
Represents Classic2 auto format.
Represents Classic3 auto format.
Represents Accounting1 auto format.
Represents Accounting2 auto format.
Represents Accounting3 auto format.
Represents Accounting4 auto format.
Represents Colorful1 auto format.
Represents Colorful2 auto format.
Represents Colorful3 auto format.
Represents List1 auto format.
Represents List2 auto format.
Represents List3 auto format.
Represents Effect3D1 auto format.
Represents Effect3D2 auto format.
Represents None auto format.
Represents auto format options.
Represents number auto format option.
Represents border auto format option.
Represents font auto format option.
Represents patterns auto format option.
Represents alignment auto format option.
Represents width\height auto format option.
Represents none auto format option.
Represents all auto format option.
Enum that defines different types of the formula calculations.
Represents the MANUAL calculation type.
Represents the AUTOMATIC calculation type.
Represents the AUTOMATIC EXCEPT TABLES calculation type.
Defines the view setting of the sheet.
Normal view
Preview
Page Layout View
Specifies border and diagonal line types in Excel.
Border running from the upper left-hand corner to the lower right of each cell in the range.
Border running from the lower left-hand corner to the upper right of each cell in the range.
Border at the bottom of the range.
Border at the left-hand edge of the range.
Border at the right-hand edge of the range.
Border at the top of the range.
Border at the horizontal edge of the range in the table.
Border at the vertical edge of the range in the table.
Border line styles.
Represents no border line style.
Represents the thin border line style.
Represents the medium border line style.
Represents the dashed border line style.
Represents the dotted border line style.
Represents the thick border line style.
Represents the double border line style.
Represents the hair border line style.
Represents the medium_dashed medium_dashed line style.
Represents the DashDot border line style.
Represents the MediumDashDot border line style.
Represents the DashDotDot border line style.
Represents the MediumDashDotDot border line style.
Represents the SlantedDashDot border line style.
Possible error style values:
Specifies that the alert should be displayed with the stop style.
Specifies that the alert should be displayed with the warning style.
Specifies that the alert should be displayed with the information style.
The Comparison operator for conditional formatting.
Represents between option for comparison in conditional formatting.
Represents not between option for comparison in conditional formatting.
Represents equal to option for comparison in conditional formatting.
Represents not equal to option for comparison in conditional formatting.
Represents greater than option for comparison in conditional formatting.
Represents less than option for comparison in conditional formatting.
Represents greater than or equal to option for comparison in conditional formatting.
Represents less than or equal to option for comparison in conditional formatting.
Cell data types:
Represents the Any data type.
Represents the Integer data type.
Represents the Decimal data type.
Represents the User data type.
Represents the Date data type.
Represents the Time data type.
Represents the TextLength data type.
Represents the Formula data type.
Visibility of worksheet type.
Worksheet is visible.
Worksheet is hidden.
Cleared with a Visual Basic macro.
Horizontal alignment type.
Represents the general horizontal alignment setting.
Represents left horizontal alignment setting.
Represents center horizontal alignment setting.
Represents center horizontal alignment setting.
Represents XlsFill horizontal alignment setting.
Represents justify horizontal alignment setting.
Represents center across selection horizontal alignment setting.
Represents distributed horizontal alignment setting.
Vertical alignment type.
Represents top vertical alignment.
Represents center vertical alignment.
Represents bottom vertical alignment.
Represents justify vertical alignment.
Represents distributed vertical alignment.
Represents flags of excel ignore error indicator.
Represents None flag of excel ignore error indicator.
Represents EvaluateToError flag of excel ignore error indicator.
Represents EmptyCellReferences flag of excel ignore error indicator.
Represents NumberAsText flag of excel ignore error indicator.
Represents OmittedCells flag of excel ignore error indicator.
Represents InconsistentFormula flag of excel ignore error indicator.
Represents TextDate flag of excel ignore error indicator.
Represents UnlockedFormulaCells flag of excel ignore error indicator.
Represents All flag of excel ignore error indicator.
Reading order types.
Represents the Context reading order type.
Represents the LeftToRight reading order type.
Represents the RightToLeft reading order type.
Represents excel shape shading style.
Represents horizontal style.
Represents vertical style.
Represents diagonl up style.
Represents diagonl down style.
Represents from corner style.
Represents from center style.
Page order for sheet in Excel.
Represents Down, then over.
Represents Over, then down.
Page orientation types in Excel.
Represents landscape setting.
Represents potrait setting.
Print comments types.
Represents As displayed on sheet setting.
Represents (None) setting.
Represents at end of sheet setting.
Print error values.
Represents the blank option.
Represents the dash option.
Represents the displayed option.
Represents the NA option.
the Third value.
the second value.
the first value.
TopBottom type.
Average type.
Above the average for all values in the range.
Above or equal the average for all values in the range.
below the average for all values in the range.
below or equal the average for all values in the range.
StdDev above 1 than the average for all values in the range.
StdDev above 2 than the average for all values in the range.
StdDev above 3 than the average for all values in the range.
StdDev below 1 than the average for all values in the range.
StdDev below 2 than the average for all values in the range.
StdDev below 3 than the average for all values in the range.
Conditional formatting type.
Represents the Cell Value Is option for conditional formatting.
Represents the Formula Is option for conditional formatting.
Represents the DataBar option for conditional formatting.
Represents the IconSet option for conditional formatting.
Represents the ColorScale option for conditional formatting.
Represents the BeginsWith option for conditional formatting.
Represents the ContainsText option for conditional formatting.
Represents the EndsWith option for conditional formatting.
Represents the NotContainsText option for conditional formatting.
Represents the TopBottom option for conditional formatting.
Represents the Average option for conditional formatting.
Represents the ContainsBlanks option for conditional formatting.
Represents the ContainsErrors option for conditional formatting.
Represents the DuplicateValues option for conditional formatting.
Represents the NotContainsBlanks option for conditional formatting.
Represents the NotContainsErrors option for conditional formatting.
Represents the TimePeriod option for conditional formatting.
Represents the UniqueValues option for conditional formatting.
The Comparison operator for conditional formatting in Excel.
Represents no option for comparison in conditional formatting.
Represents between option for comparison in conditional formatting.
Represents not between option for comparison in conditional formatting.
Represents equal to option for comparison in conditional formatting.
Represents not equal to option for comparison in conditional formatting.
Represents greater than option for comparison in conditional formatting.
Represents less than option for comparison in conditional formatting.
Represents greater than or equal to option for comparison in conditional formatting.
Represents less than or equal to option for comparison in conditional formatting.
Represents The ResizeBehave mode.
Don't move or resize with underlying rows/columns.
Move with cells but do not resize.
Move and resize with anchor cells.
Text Rotation types.
Represents the LeftToRight text rotation.
Represents the TopToBottom text rotation.
Represents the CounterClockwise text rotation.
Represents the Clockwise text rotation.
Specifies check state of the check box.
Indicates that checkbox is unchecked.
Indicates that checkbox is checked.
Mixed state.
Represents shape line style.
Represents single line style.
Represents thin thin line style.
Represents thin thick line style.
Represents thick thin line style.
Represents thick between thin line style.
Represents shape dash line style.
Represents solid style.
Represents Dotted style.
Represents DottedRound style.
Represents Dashed style.
Represents MediumDashed style.
Represents DashDot style.
Represents MediumDashDot style.
Represents DashDotDot style.
Represents shape arrow style type.
Represetns no arrow.
Represetns standart arrow.
Represetns Stealth arrow.
Represetns Diamond arrow.
Represetns Oval arrow.
Represetns Open arrow.
Represents arrow head length.
Represents short arrow head length.
Represents short arrow head length.
Represents short arrow head length.
Represents arrow head width.
Represents short arrow head width.
Represents short arrow head width.
Represents short arrow head width.
Represents gradient texture.
Represents Newsprint texture type.
Represents Recycled Paper texture type.
Represents Parchment texture type.
Represents Stationery texture type.
Represents Green Marble texture type.
Represents White Marble texture type.
Represents Brown Marble texture type.
Represents Granite texture type.
Represents Blue Tissue Paper texture type.
Represents Pink Tissue Paper texture type.
Represents Purple Mesh texture type.
Represents Bouquet texture type.
Represents Papyrus texture type.
Represents Canvas texture type.
Represents Denim texture type.
Represents Woven Mat texture type.
Represents Water Droplets texture type.
Represents Paper Bag texture type.
Represents Fish Fossil texture type.
Represents Sand texture type.
Represents Cork texture type.
Represents Walnut texture type.
Represents Oak texture type.
Represents Medium Wood texture type.
Represents user defined texture type.
Represents preset gradient type.
Represents early sunset preset gradient type.
Represents late sunset preset gradient type.
Represents nightfall preset gradient type.
Represents daybreak preset gradient type.
Represents horizon preset gradient type.
Represents desert preset gradient type.
Represents ccean preset gradient type.
Represents calm water preset gradient type.
Represents fire preset gradient type.
Represents fog preset gradient type.
Represents moss preset gradient type.
Represents peacock preset gradient type.
Represents wheat preset gradient type.
Represents parchment preset gradient type.
Represents mahogany preset gradient type.
Represents rainbow preset gradient type.
Represents rainbowII preset gradient type.
Represents gold preset gradient type.
Represents goldII preset gradient type.
Represents brass preset gradient type.
Represents chrome preset gradient type.
Represents chromeII preset gradient type.
Represents silver preset gradient type.
Represents sapphire preset gradient type.
Represents the sort orientation.
Sorts from top to Bottom.
Sorts from Left to Right.
Represents the sort by in the range.
Sort based on values in the cell.
Sort based on the cell back color.
Sort based on the font color.
Represents the algorithm to sort.
Represents the Quick sort rule.
Represents the Heap sort rule.
Represents the Insertion sort rule.
Represents the sort order.
Represent the ascending sort.
Represent the descending sort.
Represents the position value in the sort list
Represents the position of value in the sort list.
Chart types.
Represents the column clustered chart type.
Represents the stacked column chart type.
Represents the 100% stacked column chart type.
Represents the 3D clustered column chart type.
Represents the 3D stacked column chart type.
Represents the 3D 100% stacked column chart type.
Represents the 3D column chart type.
Represents the clustered bar chart type.
Represents the stacked bar chart type.
Represents the 100% stacked bar chart type.
Represents the 3D clustered bar chart type.
Represents the 3D stacked bar chart type.
Represents the 100% 3D stacked bar chart type.
Represents the Line chart type.
Represents the stacked line chart type.
Represents the 100% stacked line chart type.
Represents the markers line chart type.
Represents the stacked markers line chart type.
Represents the 100% stacked markers line chart type.
Represents the 3D line chart type.
Represents the pie chart type.
Represents the 3D pie chart type.
Represents the pie of pie chart type.
Represents the exploded pie chart type.
Represents the 3D exploded pie chart type.
Represents the bar pie chart type.
Represents the markers scatter chart type.
Represents the ScatterSmoothedLineMarkers chart type.
Represents the ScatterSmoothedLine chart type.
Represents the ScatterLineMarkers chart type.
Represents the ScatterLine chart type.
Represents the Area chart type.
Represents the AreaStacked chart type.
Represents the Area100PercentStacked chart type.
Represents the Area3D chart type.
Represents the Area3DStacked chart type.
Represents the Area3D100PercentStacked chart type.
Represents the Doughnut chart type.
Represents the DoughnutExploded chart type.
Represents the Radar chart type.
Represents the RadarMarkers chart type.
Represents the RadarFilled chart type.
Represents the Surface3D chart type.
Represents the Surface3DNoColor chart type.
Represents the SurfaceContour chart type.
Represents the SurfaceContourNoColor chart type.
Represents the Bubble chart type.
Represents the Bubble3D chart type.
Represents the StockHighLowClose chart type.
Represents the StockOpenHighLowClose chart type.
Represents the StockVolumeHighLowClose chart type.
Represents the StockVolumeOpenHighLowClose chart type.
Represents the CylinderClustered chart type.
Represents the CylinderStacked chart type.
Represents the Cylinder100PercentStacked chart type.
Represents the CylinderBarClustered chart type.
Represents the CylinderBarStacked chart type.
Represents the CylinderBar100PercentStacked chart type.
Represents the Cylinder3DClustered chart type.
Represents the ConeClustered chart type.
Represents the ConeStacked chart type.
Represents the Cone100PercentStacked chart type.
Represents the ConeBarClustered chart type.
Represents the ConeBarStacked chart type.
Represents the ConeBar100PercentStacked chart type.
Represents the Cone3DClustered chart type.
Represents the PyramidClustered chart type.
Represents the PyramidStacked chart type.
Represents the Pyramid100PercentStacked chart type.
Represents the PyramidBarClustered chart type.
Represents the PyramidBarStacked chart type.
Represents the PyramidBar100PercentStacked chart type.
Represents the Pyramid3DClustered chart type.
Represents the CombinationChart chart types.
Chart plot empty type.
No plot.
Represents the Zero empty plot.
Represents the Interpolated empty plot.
Excel rectangle style.
Represents the Regular rectangle style.
Represents the Shadowed rectangle style.
Chart line patterns.
Represents the Solid line pattern setting for Chart.
Represents the Dash line pattern setting for Chart.
Represents the Dot line pattern setting for Chart.
Represents the Dash-dot line pattern setting for Chart.
Represents the Dash-dot-dot line pattern setting for Chart.
Represents the no line pattern setting for Chart.
Represents the Dark Gray line pattern setting for Chart.
Represents the Medium Gray line pattern setting for Chart.
Represents the Light Gray line pattern setting for Chart.
Chart line weight values type.
Represents the Hairline weight for Chart line.
Represents the Narrow weight for Chart line.
Represents the Medimun weight for Chart line.
Represents the Wide weight for Chart line.
Primary axis types for Charts..
Represents the Category (X) Axis.
Represents the Value (Y) Axis.
Represents the Serie Axis.
Chart background mode.
Represents the Transparent option.
Represents the Opaque option.
Represents enum of chart tick mark values.
Represents tick mark none.
Represents tick mark inside.
Represents tick mark outside.
Represents tick mark cross.
Represents enum of chart tick label position values.
Represents none label position.
Represents low label position.
Represents high label position.
Represents nex to axis label position.
Represents axis text direction.
Represents context text direction.
Represents Left-To-Right text direction.
Represents Right-To-Left text direction.
Represents category type.
Represents Category category type.
Represents time category type.
Represents automatic category type.
Represents chart base unit.
Represents Day base unit.
Represents Month base unit.
Represents Year base unit.
Legend placement for charts.
Represents the bottom option.
Represents the Corner option.
Represents the Top option.
Represents the Right option.
Represents the Left option.
Represents the Not Docked option.
Represents Data label placement.
Represents default position.
Represents the Outside data label placement option.
Represents the Inside data label placement option.
Represents the Center data label placement option.
Represents the OutsideBase data label placement option.
Represents the Above data label placement option.
Represents the Below data label placement option.
Represents the Left data label placement option.
Represents the Right data label placement option.
Represents the BestFit data label placement option.
Represents the Moved data label placement option.
Base format options.
Represents Rectangle base format.
Represents Circle base format.
Top format type.
Represents Straight top format.
Represents Sharp top format.
Represents Trunc top format.
Chart marker types.
Represents the None option for the marker type.
Represents the square style in the custom marker option for Chart lines.
Represents the diamond style in the custom marker option for Chart lines.
Represents the Triangle style in the custom marker option for Chart lines.
Represents the X style in the custom marker option for Chart lines.
Represents the Star style in the custom marker option for Chart lines.
Represents the Dow Jones style in the custom marker option for Chart lines.
Represents the Standard Deviation style in the custom marker option for Chart lines.
Represents the Circle style in the custom marker option for Chart lines.
Represents the Plus style in the custom marker option for Chart lines.
Represents the Auto style in the custom marker option for Chart lines.
Represents the Picture style in the custom marker option for Chart lines.
Bubble size.
Area buble size.
Width buble size.
Split type.
Represents the Position split type.
Represents the Value split type.
Represents the Percent split type.
Represents the Custom split type.
Represents error bar include values.
Represents both error bar include.
Represents plus error bar include.
Represents minus error bar include.
Error-bar type.
Represents the Percentage error-bar source type.
Represents the FixedValue error-bar source type.
Represents the StandardDeviation error-bar source type.
Represents the Custom error-bar source type.
Represents the StandardError error-bar source type.
Represents trend line values.
Represents Exponential trend line type.
Represents Linear trend line type.
Represents Logarithmic trend line type.
Represents Moving average trend line type.
Represents Polynomial trend line type.
Represents Power trend line type.
Axis line indentifier type.
The axis line itself.
Major grid line along the axis.
Minor grid line along the axis.
Walls or floor -- walls if parent axis is type 0 or 2;
floor if parent axis is type 1.
Legend spacing for charts.
Represents the Close .
Represents the Medium.
Represents the Open.
Represents excel chart uint to display.
Represents None display Unit
Represents Hundreds display Unit
Represents Thousands display Unit
Represents TenThousands display Unit
Represents HundredThousands display Unit
Represents Millions display Unit
Represents TenMillions display Unit
Represents HundredMillions display Unit
Represents ThousandMillions display Unit
Represents MillionMillions display Unit
Represents Custom display Unit
MS Chart Font Type
No Font Tag
Default Property tag
Rich text tag
Chart pile type.
Represents the Normal pie type.
Represents the Pie pie type.
Represents the Bar pie type.
Drop line style type.
Represents the Drop line style.
Represents the HiLow drop line style.
Represents the Series drop line style.
shape border join type
Rounded edge
Beveled edge
Metter join
Defined types of Sparkline chart types.
Sparkline type is WinLoss.
Sparkline type is Column.
Sparkline type is Line.
Page order type
Represents the DownThenOver pages order.
Represents the OverThenDown pages order.
Data source type.
Represents the Worksheet data source type.
Represents the ExternalData data source type.
Represents the Consolidation data source type.
Represents the ScenarioPivotTable data source type.
Sheet types.
Charts.
Dialogs.
Excel 4.0 International Marcos sheet.
Excel 4.0 Marcos sheet.
Worksheets.
Font underline types.
Represents no underline.
Represents single underline.
Represents double underline.
Represents SingleAccounting underline.
Represents DoubleAccounting underline.
Patterns style.
No pattern.
Represents the Solid pattern.
Represents the Percent50 pattern.
Represents the Percent70 pattern.
Represents the Percent25 pattern.
Represents the DarkHorizontal pattern.
Represents the DarkVertical pattern.
Represents the DarkDownwardDiagonal pattern.
Represents the DarkUpwardDiagonal pattern.
Represents the ForwardDiagonal pattern.
Represents the Percent75 pattern.
Represents the Horizontal pattern.
Represents the Vertical pattern.
Represents the LightDownwardDiagonal pattern.
Represents the LightUpwardDiagonal pattern.
Represents the Angle pattern.
Represents the Percent60 pattern.
Represents the Percent10 pattern.
Represents the Percent05 pattern.
Represents the Percent50Gray pattern.
Represents the Percent75Gray pattern.
Represents the Percent25Gray pattern.
Represents the HorizontalStripe pattern.
Represents the VerticalStripe pattern.
Represents the ReverseDiagonalStripe pattern.
Represents the DiagonalStripe pattern.
Represents the DiagonalCrosshatch pattern.
Represents the ThickDiagonalCrosshatch pattern.
Represents the ThinHorizontalStripe pattern.
Represents the ThinVerticalStripe pattern.
Represents the ThinReverseDeagonalStripe pattern.
Represents the ThinDiagonalStripe pattern.
Represents the ThinHorizontalCrosshatch pattern.
Represents the ThinDiagonalCrosshatch pattern.
Represents the Percent125Gray pattern.
Represents the Percent625Gray pattern.
Represent gradient pattern.
Paper size type.
Represents paper size of 10 inches X 14 inches
Represents paper size of 11 inches X 17 inches
Represents A3 (297 mm x 420 mm) paper size.
Represents A4 (210 mm x 297 mm) paper size.
Represents A4 Small (210 mm x 297 mm) paper size.
Represents A5 (148 mm x 210 mm) paper size.
Represents B4 (250 mm x 353 mm) paper size.
Represents B5 (176 mm x 250 mm) paper size.
Represents C paper size.
Represents D paper size.
Represents Envelope# 10 paper size(4-1/8 X 9-1/2 inches).
Represents Envelope# 11 paper size( (4-1/2 X 10-3/8 inches).
Represents Envelope# 12 paper size(4-3/4 X 11 inches).
Represents Envelope# 14 paper size(5 X 11-1/2 inches).
Represents Envelope# 9 paper size(3-7/8 X 8-7/8 inches).
Represents B4 Envelope paper size (250 mm x 353 mm).
Represents B5 Envelope paper size (176 mm x 250 mm).
Represents B6 Envelope paper size (176 mm x 125 mm).
Represents C3 Envelope paper size (324 mm x 458 mm).
Represents C4 Envelope paper size (229 mm x 324 mm).
Represents C5 Envelope paper size (162 mm x 229 mm).
Represents C6 Envelope paper size (114 mm x 162 mm).
Represents C65 Envelope paper size (114 mm x 229 mm).
Represents DL Envelope paper size (110 mm x 220 mm).
Represents Italy Envelope paper size (110 mm x 230 mm).
Represents Monarch Envelope paper size (3-7/8 X 7-1/2 inches).
Represents Personal Envelope paper size (3-5/8 X 6-1/2 inches).
Represents E paper size.
Represents Executive paper size (7-1/2 X 10-1/2 inches).
Represents German Fanfold paper size (8-1/2 X 13 inches).
Represents German Standard Fanfold paper size (8-1/2 X 12 inches).
Represents U.S. Standard Fanfold paper size (14-7/8 X 11 inches).
Represents Folio paper size (8-1/2 X 13 inches).
Represents Ledger paper size (17 X 11 inches).
Represents Legal paper size (8-1/2 X 14 inches).
Represents Letter paper size (8-1/2 X 11 inches).
Represents Letter Small paper size.
Represents Note paper size.
Represents Quarto paper size(215 mm x 275 mm).
Represents Statement paper size(5-1/2 X 8-1/2 inches).
Represents Tabloid paper size(11 X 17 inches).
Represents User paper size.
Represents ISO B4 paper size(250 mm by 353 mm).
Represents Japanese double postcard(200 mm by 148 mm).
Represents Standard paper(9 in. by 11 in.).
Represents Standard paper(10 in. by 11 in.).
Represents Standard paper(15 in. by 11 in.).
Represents Invite envelope (220 mm by 220 mm).
Represents Letter extra paper (9.275 in. by 12 in.).
Represents Legal extra paper (9.275 in. by 15 in.).
Represents Tabloid extra paper (11.69 in. by 18 in.).
Represents A4 extra paper (236 mm by 322 mm).
Represents Letter transverse paper (8.275 in. by 11 in.).
Represents A4 transverse paper (210 mm by 297 mm).
Represents Letter extra transverse paper (9.275 in. by 12 in.).
Represents SuperA/SuperA/A4 paper (227 mm by 356 mm).
Represents SuperB/SuperB/A3 paper (305 mm by 487 mm).
Represents Letter plus paper (8.5 in. by 12.69 in.).
Represents A4 plus paper (210 mm by 330 mm).
Represents A5 transverse paper (148 mm by 210 mm).
Represents JIS B5 transverse paper (182 mm by 257 mm).
Represents A3 extra paper (322 mm by 445 mm).
Represents A5 extra paper (174 mm by 235 mm).
Represents ISO B5 extra paper (201 mm by 276 mm).
Represents A2 paper (420 mm by 594 mm).
Represents A3 transverse paper (297 mm by 420 mm).
Represents A3 extra transverse paper (322 mm by 445 mm).
Excel shapes.
Represents the Unknown shape type.
Represents the Chart shape type.
Represents the Comment shape type.
Represents the Group shape type.
Represents the EmbeddedOLEObject shape type.
Represents the FormControl shape type.
Represents the Picture shape type.
Represents the TextBox shape type.
Represents the Oval shape type.
Comment horizontally align.
Represents the Left comment align.
Represents the Center comment align.
Represents the Right comment align.
Represents the Justified comment align.
Represents the Justified comment align.
Represents the Destributed comment align.
Comment vertically align
Represents the Top comment align.
Represents the Center comment align.
Represents the Bottom comment align.
Represents the Justified comment align.
Represents the Destributed comment align.
Represents gradient color type.
Represents one color gradient style.
Represents two color gradinent style.
Represents preset gradient style.
Represents excel gradient pattern.
Represents 5% gradient pattern
Represents 10% gradient pattern
Represents 20% gradient pattern
Represents 25% gradient pattern
Represents 30% gradient pattern
Represents 40% gradient pattern
Represents 50% gradient pattern
Represents 60% gradient pattern
Represents 70% gradient pattern
Represents 75% gradient pattern
Represents 80% gradient pattern
Represents 90% gradient pattern
Represents Dark Downward Diagonal gradient pattern
Represents Dark Horizontal gradient pattern
Represents Dark Upward Diagonal gradient pattern
Represents Dark Vertical gradient pattern
Represents Dashed Downward Diagonal gradient pattern
Represents Dashed Horizontal gradient pattern
Represents Dashed Upward Diagonal gradient pattern
Represents Dashed Vertical gradient pattern
Represents Diagonal Brick gradient pattern
Represents Divot gradient pattern
Represents Dotted Diamond gradient pattern
Represents Dotted Grid gradient pattern
Represents Horizontal Brick gradient pattern
Represents Large Checker Board gradient pattern
Represents Large Confetti gradient pattern
Represents Large Grid gradient pattern
Represents Light Downward Diagonal gradient pattern
Represents Light Horizontal gradient pattern
Represents Light Upward Diagonal gradient pattern
Represents Light Vertical gradient pattern
Represents Mixed gradient pattern
Represents Narrow Horizontal gradient pattern
Represents Narrow Vertical gradient pattern
Represents Outlined Diamond gradient pattern
Represents Plaid gradient pattern
Represents Shingle gradient pattern
Represents Small Checker Board gradient pattern
Represents Small Confetti gradient pattern
Represents Small Grid gradient pattern
Represents Solid Diamond gradient pattern
Represents Sphere gradient pattern
Represents Trellis gradient pattern
Represents Wave gradient pattern
Represents Weave gradient pattern
Represents Wide Downward Diagonal gradient pattern
Represents Wide Upward Diagonal gradient pattern
Represents Zig Zag gradient pattern
True if the font style is italic. Read / write Boolean.
Returns or sets the primary excel color of the object.
Returns or sets the primary color of the font.
True if the font is bold.
Returns or sets the font name. Read / write string.
Returns or sets the size of the font. Read / write integer.
True if the font is struck through with a horizontal line.
Read / write Boolean
True if the font is formatted as subscript.
False by default. Read / write Boolean.
True if the font is formatted as superscript. False by default.
Read/write Boolean
Indicates whether color is automatically selected. Read-only.
Returns or sets the type of underline applied to the font.
Generates system font object.
Font object.
Location of the page break.
Returns a Range object that represents the range the specified hyperlink is attached to.
This object used to store, convert colors.
Returns color value (it can be index, rgb color, etc.)
Gets or sets Tint.
Returns type of the stored color.
Returns the hash code for this instance.
A 32-bit signed integer hash code.
Sets RGB color value.
Value to set.
Parent workbook.
Sets known color.
Excel color to set.
Determines whether the specified Object is equal to the current Object.
The Object to compare with the current Object.
true if the specified Object is equal to the current Object; otherwise, false.
Color types.
Known color.
RGB color.
Theme color.
Represents the page setup description. The PageSetup object contains all page setup attributes (left margin, bottom margin, paper size, and so on) as properties.
Returns font for character at specified position.
Position
Sets font for specified range of characters.
Position of first character.
Position of last character.
Font to set.
Clears formatting.
Clears all.
Gets Rtf Text. Read-Only.
Indicates whether rich text string contains formatting Read-only.
Returns data type validation for a range
Represents a vertical page break.
Returns or sets the cell (a Range object) that defines the page-break location.
Returns a Range object that represents the used range on the
specified worksheet. Read-only.
Get cell range.
Get cell range.
Get cell range.
Returns all merged ranges. Read-only.
Finds the all cells with specified string value.
Value to search.
Type of value to search.
Way to search.
All found cells, or Null if value was not found.
Finds the cell with the input number.
Double value to search for.
Indicates if includes formula value.
Found ranges.
Finds the cell with the input string.
String value to search for.
Indicates if includes formula.
Indicates if includes formula value.
Found ranges.
Finds the cell with the input date time.
Datetime value to search for.
Found ranges.
Finds the cell with the input time span.
Time span value to search for.
Found ranges.
Finds the cell with the input bool.
Bool value to search for.
Found ranges.
Finds the cell with the input bool.
Bool value to search for.
Found range.
Finds the cell with the input double.
Double value to search for.
Indicates if includes formula value.
Found range.
Finds the cell with the input string.
String value to search for.
Indicates whether includes formula.
Indicates whether includes formula value.
Found range.
Finds the cell with the input date time.
DateTime value to search for.
Found range.
Finds the cell with the input time span.
Time span value to search for.
Found range.
Copy data from specified worksheet.
worksheet object
Copys data from a source range to a destination range.
Source range.
Destination range.
Copys data from a source range to a destination range.
Source range.
Destination range.
Indicates whether copys styles.
Copys data from a source range to a destination range.
Source range.
Destination range
Indicates whether copy styles.
Indicates whether update reference ranges.
Indicates whether check range sizes.
Copy data from source range to destination worksheet.
Source range.
Destination worksheet
Row index of destination worksheet.
Column index of destination worksheet.
Copy data from source range to destination worksheet.
Source range
Destination worksheet.
Row index of destination worksheet.
Column index of destination worksheet.
Indicates whehter copy styles.
Copy data from source range to destination worksheet.
Source range
Destination worksheet.
Row index of destination worksheet.
Column index of destination worksheet.
Indicates whehter copy styles.
Indicates whether update reference range.
Copys data from a source range to a destination range.
Source range.
Destination range
Indicates whether copy styles.
Indicates whether update reference ranges.
Indicates whether check range sizes.
Indicates whether copy shape.
Copys data from a source range to a destination range.
Source range.
Destination range
Copy options.
Copys data from a source row to a destination row.
Source row.
Destination sheet
Destination row index
Copy options.
Copys data from a source column to a destination column.
Source column.
Destination sheet
Destination column index
Copy options.
Move data from source range to destination range.
Source range.
Destination range.
Exports worksheet data into a DataTable.
Range to export.
Indicates if export column name.
exported datatable
Exports worksheet data into a DataTable.
Range to export.
Indicates if export column name.
Indicates wheter compute formula value.
exported datatable
Exports worksheet data into a DataTable
Row of first cell.
Column of first cell.
Maximun rows to export.
Maximun columns to export.
Indicates if export column name.
Exported datatable.
Intersects two ranges.
First range.
Second range.
Intersection of two ranges
Combines a range of cells into a single cell.
First range.
Second range.
Merged ranges
Sets default style for column.
Column index.
Default style.
Sets default style for column.
First column index.
Last column index.
Default style.
Sets default style for row.
Row index.
Default style.
Sets default style for row.
First row index.
Last row index.
Default style.
Removes range from list.
Specified range.
Removes range from list.
Row index.
Column index.
Remove picture from this worksheet.
Picture ID
Remove picture from this worksheet.
Picture name
Remove picture from this worksheet.
A pictureshape
Apply style to whole sheet.
style to apply
Freezes panes at the specified cell in the worksheet.
Row index.
Column index.
Sets active cell
Cell to activate.
Returns all used cells in the worksheet. Read-only.
Rrepresents all used columns on the specified worksheet. Read-only Range object.
Returns a PageSetup object that contains all the page setup settings
for the specified object. Read-only.
Returns charts collection. Read-only.
Returns comments collection for this worksheet. Read-only.
Returns an HPageBreaks collection that represents the horizontal
page breaks on the sheet.
Collection of all worksheet's hyperlinks.
Pictures collection. Read-only.
Print area of worksheet.
Returns a VPageBreaks collection that represents the vertical page
breaks on the sheet. Read-only.
Returns a Range object that represents the used range on the
specified worksheet. Read-only.
Represents all the rows on the specified worksheet. Read-only Range object.
Create a new instance of workbook.
Returns a Sheets collection that represents all the worksheets in the specified workbook. Read-only Sheets object.
Returns an object that represents the active sheet (the sheet
on top) in the active workbook or in the specified window or
workbook. Returns Nothing if no sheet is active. Read-only.
Gets or sets index of the active worksheet.
Returns collection of add-in functions.
Get or set calculation mode.
Gets Data sorter to sort the data..
Name which used by macros to access to workbook items.
Returns colors in the palette for the workbook. The palette has 56 entries, each represented by an RGB value. Read/write Object.
True if the workbook uses the 1904 date system. Read/write Boolean.
Returns or sets the name of the default font.
Returns or sets the default font size.
Returns or sets the custom path of font files.
Get result that parse the custom path of font files
Allows users to disable load of macros from document.
Gets file name.
Indicates whether contains VBA macros.
Indicates whether cells are protected.
Indicates whether worksheet is displayed right to left.
Indicates whether workbook changes have been saved.
Indicates window is protected.
Returns or sets password to encrypt document.
Indicates whether to optimize Import data. This option will
take effect only on Import methods that are available with the worksheet
WARNING: Setting this property to True can decrease memory significantly,
but will increase the performance of data import .
Gets the PrintDocument
Indicates whether the workbook has been opened as Read-only.
Gets or sets tab index of selected.
Get or sets a value whether the Workbook tabs are displayed.
Returns a Styles collection that represents all the styles in the specified workbook. Read-only.
User Compound storage mode
Hide window
Returns a Sheets collection that represents all the chart sheets in the specified workbook. Read-only.
Returns a BuiltInDocumentProperties collection that represents all the built-in document properties for the specified workbook. Read-only.
Loads a file and imports its data.
File name.
Loads a file and imports its data.
File name
Preserve mode
Loads a file and imports its data.
File name
Excel version
Loads text files stream with user defined separator.
File name
Delimiter of text file.
Loads text files with user defined separator.
File name.
Delimiter of text file.
Start row.
Start column.
Loads text files with user defined separator.
File name.
Delimiter of text file.
Start row.
Start column.
workbook version
Loads text files with user defined separator.
File name.
Delimiter of text file.
Start row.
Start column.
Text Encoding
Load workbook from the stream.
Stream contains data.
Load workbook from the stream.
Stream contains data.
Indicates whether loads styles.
Load workbook from the stream.
Stream contains data
Excel version
Loads text files stream with user defined separator.max row 60000.
File stream.
Delimiter of text file.
Start row.
Start column.
Loads text files stream with user defined separator. Version2007 support 60000+ row
File stream.
Delimiter of text file.
Start row.
Start column.
Excel version.
Loads a xml file and imports its data.
File name.
Loads a xml file and imports its data.
Stream contains data.
Loads a html file and imports its data.
File name.
Loads a html file and imports its data.
Stream contains data.
Loads a Mhtml file and imports its data.
File name.
Loads a Mhtml file and imports its data.
Stream contains data.
Load workbook from the excel template.
File name
Load workbook from the excel template.
File name
Indicates whehter load styles.
Saves the workbook to html
File name.
Saves changes to the workbook in a different file
File name.
Saves changes to the workbook in a different file
File name
File format
Saves changes to the workbook in a different file
File name.
Saves changes to the workbook in a different file
File name
File format
retain hidden data
Saves changes to the workbook in a different file
File name
Excel version
Computes the string formula
Caculate all formula for the workbook
Changes the palette for the spreadsheet in the specified index.
Color structure
Palette index,Value should be from 0 to 55
onverts column width in characters into column width in pixels.
Column width in characters.
Column width in pixels.
Indicates whether the workbook contains specified font.
Copies whole workbook to the clipboard.
Copies the selected worksheet to clipboard.
Create a new worksheet.
Create a new worksheet.
Sheet name.
Create workbook with specified number of worksheets.
Create workbook with specified names of worksheets.
Creates a font object and add it to the workbook.
Finds the cell with the input bool.
Bool value to search for
Found ranges
Finds the cell with the input double.
Double value to search for.
Indicates whether includes formula value to search for.
Found ranges.
Finds the cell with the input string.
String value to search for
Indicates whether includes formula to search for.
Indicates whether includes formula value to search for.
Found ranges.
Finds the cell with the input datetime.
Datetime value to search for.
Found ranges.
Finds the cell with the input time span.
Found ranges.
Finds the cell with the input bool.
Bool value to search for.
Found range.
Finds the cell with the input number.
Double value to search for.
Indicates whether includes formula value to search for.
Found range.
Finds the cell with the input string.
String value to search for.
Indicates whether includes formula to search for.
Indicates whether includes formula value to search for.
Found range.
Finds the cell with the input datetime.
Datetime value to search for.
Found range.
Finds the cell with the input time span.
Time span value to search for.
Found range.
Find best matching Color in workbook palette.
Color to search for.
Workbook palette color.
Find best matching Color in workbook palette.
Red color.
Green color.
Blue color.
Workbook palette color.
Gets excel color from workbook palette.
Index from palette array.
RGB Color.
Initilize Calc engine
check file is password protect
Copies workbook and all its worksheets from the clipboard.
Converts column width in pixels into column width in characters.
Column width in pixels.
Column width in characters.
protect file also protect workbook window and structure.
password to open file.
protect file,also Indicates whether protect workbook window and structure or not
password to open file.
Indicates if protect workbook window.
Indicates if protect workbook content.
Sets protection for workbook.
Indicates if protect workbook window.
Indicates if protect workbook content.
password
Replaces cell's value from data column values.
Value to replace.
New data.
Indicates whether includes column name.
Replaces cell's value from data table values.
Value to replace.
New data.
Indicates whether includes column name.
Replaces cell's value by specified value.
Value to replace.
New value
Replaces cell's value by specified value..
Value to replace.
New value.
Replaces cell's value from array.
Value to replace.
New values.
Indicates whether new values should be inserted vertically.
Replaces cell's value from array.
Value to replace.
New values.
Indicates whether new values should be inserted vertically.
Replaces cell's value by specified value.
Value to replace.
New value
Replaces cell's value from array.
Value to replace.
New values.
Indicates whether new values should be inserted vertically.
Resets the color palette to the default colors.
Saves changes to the specified workbook
Save workbook to image.
sheet Index
Dpi X
Dpi Y
Save workbook to an XML data file.
XML file name.
Save workbook as XML format to stream.
Stream object.
Save chart to vector images.
worksheet instance
Save chart to vector image.
work sheet
chart index
Save chart to vector image.
work sheet
chart index
output stream
Save chart to image.
chart sheet
Save chart to images.
worksheet instance
Save chart to image.
work sheet
chart index
Save workbook as template to file.
File name.
Save workbook as template to response.
File name.
Http response.
Save workbook to the http response.
File Name
Http response
Save type : attachment or inline mode
Save workbook to the http response.
File name
Http response.
True - inline mode, False - Attachment mode.
Save workbook to the http response.
File Name
Http response
Http context type
Save workbook to the http response.
File Name
Http response
Http context type
Save workbook the stream
Stream object
Save workbook to stream.
Save workbook the stream.
Stream object.
Separator
set the size of the visible range of cells when this workbook is displyed as an embedded obect in another document;
the visible range's first row index
the visible range's first column index
the visible range's last row index
the visible range's last column index
Sets write protection password.
Password to set
unprotect file
also upprotect workbook window and structure
unprotect file
also upprotect workbook window and structure
password for protect workbook window and structure
unprotect workbook window and structure
password
get the size of the visible range of cells when this workbook is displyed as an embedded obect in another document;
if there does not set the size ,return null
Indicates whether the workbook has any tracked changes
Reject all tracked changes in the workbook.
Accept all tracked changes in the workbook.
Add a DigitalSignature.
Certificate object that was used to sign
Signature Comments
Sign Time
Collection of DigitalSignature
Get collection of DigitalSignature in this file.
Collection of DigitalSignature
Remove all DigitalSignature in this file.
Indicates whether this spreadsheet is digitally signed.
Represents single condition value for iconset, databar, colorscale conditions.
specifies how the threshold values for a data bar, color scale,
or icon set conditional format are determined
Returns or sets the shortest bar or longest bar threshold value for a data
bar conditional format.
A strongly-typed resource class, for looking up localized strings, etc.
Returns the cached ResourceManager instance used by this class.
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
Looks up a localized string similar to 0 #825600;8520f #ffa800;18350f #825600;28180f #ffa800;38011f #825600;47186f #ffa800;57016f #825600;1 #ffa800.
Looks up a localized string similar to 0 #ccf;11796f #9cf;23593f #96f;39977f #c9f;53740f #9cf;1 #ccf.
Looks up a localized string similar to 0 white;10486f #1f1f1f;11796f white;27525f #636363;34734f #cfcfcf;43254f #cfcfcf;49807f #1f1f1f;51773f white;1 #7f7f7f.
Looks up a localized string similar to 0 #cbcbcb;8520f #5f5f5f;13763f #5f5f5f;41288f white;43909f #b2b2b2;45220f #292929;53740f #777;1 #eaeaea.
Looks up a localized string similar to 0 #5e9eff;26214f #85c2ff;45875f #c4d6eb;1 #ffebfa.
Looks up a localized string similar to 0 #fc9fcb;8520f #f8b049;13763f #f8b049;41288f #fee7f2;43909f #f952a0;45220f #c50849;53740f #b43e85;1 #f8b049.
Looks up a localized string similar to 0 #000082;19661f #66008f;42598f #ba0066;58982f red;1 #ff8200.
Looks up a localized string similar to 0 #fff200;29491f #ff7a00;45875f #ff0300;1 #4d0808.
Looks up a localized string similar to 0 #8488c4;34734f #d4deff;54395f #d4deff;1 #96ab94.
Looks up a localized string similar to 0 #e6dcac;7864f #e6d78a;19661f #c7ac4c;29491f #e6d78a;50463f #c7ac4c;1 #e6dcac.
Looks up a localized string similar to 0 #fbe4ae;8520f #bd922a;13763f #bd922a;41288f #fbe4ae;43909f #bd922a;45220f #835e17;53740f #a28949;1 #fae3b7.
Looks up a localized string similar to 0 #dcebf5;5243f #83a7c3;8520f #768fb9;13763f #83a7c3;34079f white;36700f #9c6563;38011f #80302d;46531f #c0524e;61604f #ebdad4;1 #55261c.
Looks up a localized string similar to 0 black;13107f #000040;.5 #400040;.75 #8f0040;58982f #f27300;1 #ffbf00.
Looks up a localized string similar to 0 #d6b19c;19661f #d49e6c;45875f #a65528;1 #663012.
Looks up a localized string similar to 0 #ddebcf;.5 #9cb86e;1 #156b13.
Looks up a localized string similar to 0 black;26214f #0a128c;45875f #181cc7;57672f #7005d4;1 #8c3d91.
Looks up a localized string similar to 0 #03d4a8;.25 #21d6e0;.75 #0087e6;1 #005cbf.
Looks up a localized string similar to 0 #ffefd1;42598f #f0ebd5;1 #d1c39f.
Looks up a localized string similar to 0 #39f;10486f #0cc;30802f #99f;39322f #2e6792;46531f #33c;53084f #1170ff;1 #069.
Looks up a localized string similar to 0 #a603ab;13763f #0819fb;22938f #1a8d48;34079f yellow;47841f #ee3f17;57672f #e81766;1 #a603ab.
Looks up a localized string similar to 0 #f39;.25 #f63;.5 yellow;.75 #01a78f;1 #36f.
Looks up a localized string similar to 0 #000082;8520f #0047ff;18350f #000082;28180f #0047ff;38011f #000082;47186f #0047ff;57016f #000082;1 #0047ff.
Looks up a localized string similar to 0 white;4588f #e6e6e6;20972f #7d8496;30802f #e6e6e6;55706f #7d8496;1 #e6e6e6.
Looks up a localized string similar to 0 #fbeac7;11796f #fee7f2;23593f #fac77d;39977f #fba97d;53740f #fbd49c;1 #fee7f2.
Default constructor.
Sector size.