Cell.SetSharedFormula
Contents
[
Hide
]SetSharedFormula(string, int, int, bool, bool)
Sets a formula to a range of cells.
[Obsolete("Use FormulaParseOptions for more options instead.")]
[EditorBrowsable(EditorBrowsableState.Never)]
public void SetSharedFormula(string sharedFormula, int rowNumber, int columnNumber, bool isR1C1,
bool isLocal)
Parameter | Type | Description |
---|---|---|
sharedFormula | String | Shared formula. |
rowNumber | Int32 | Number of rows to populate the formula. |
columnNumber | Int32 | Number of columns to populate the formula. |
isR1C1 | Boolean | whether the formula is R1C1 formula |
isLocal | Boolean | whether the formula is locale formatted |
Remarks
NOTE: This class is now obsolete. Instead, please use Cell.SetSharedFormula(string,int,int,FormulaParseOptions). This property will be removed 12 months later since December 2019. Aspose apologizes for any inconvenience you may have experienced.
See Also
- class Cell
- namespace Aspose.Cells
- assembly Aspose.Cells
SetSharedFormula(string, int, int)
Sets shared formulas to a range of cells.
public void SetSharedFormula(string sharedFormula, int rowNumber, int columnNumber)
Parameter | Type | Description |
---|---|---|
sharedFormula | String | Shared formula. |
rowNumber | Int32 | Number of rows to populate the formula. |
columnNumber | Int32 | Number of columns to populate the formula. |
See Also
- class Cell
- namespace Aspose.Cells
- assembly Aspose.Cells
SetSharedFormula(string, int, int, FormulaParseOptions)
Sets shared formulas to a range of cells.
public void SetSharedFormula(string sharedFormula, int rowNumber, int columnNumber,
FormulaParseOptions options)
Parameter | Type | Description |
---|---|---|
sharedFormula | String | Shared formula. |
rowNumber | Int32 | Number of rows to populate the formula. |
columnNumber | Int32 | Number of columns to populate the formula. |
options | FormulaParseOptions | Options for parsing the formula. |
See Also
- class FormulaParseOptions
- class Cell
- namespace Aspose.Cells
- assembly Aspose.Cells
SetSharedFormula(string, int, int, FormulaParseOptions, object[][])
Sets shared formulas to a range of cells.
public void SetSharedFormula(string sharedFormula, int rowNumber, int columnNumber,
FormulaParseOptions options, object[][] values)
Parameter | Type | Description |
---|---|---|
sharedFormula | String | Shared formula. |
rowNumber | Int32 | Number of rows to populate the formula. |
columnNumber | Int32 | Number of columns to populate the formula. |
options | FormulaParseOptions | Options for parsing the formula. |
values | Object[][] | values for those cells with given shared formula |
See Also
- class FormulaParseOptions
- class Cell
- namespace Aspose.Cells
- assembly Aspose.Cells