FormatConditionGetFormula1 Method (Boolean, Boolean, Int32, Int32) |
Gets the value or expression of the conditional formatting of the cell.
Namespace:
Aspose.Cells
Assembly:
Aspose.Cells (in Aspose.Cells.dll) Version: 21.1.0.0 (21.1)
Syntaxpublic string GetFormula1(
bool isR1C1,
bool isLocal,
int row,
int column
)
Public Function GetFormula1 (
isR1C1 As Boolean,
isLocal As Boolean,
row As Integer,
column As Integer
) As String
public:
String^ GetFormula1(
bool isR1C1,
bool isLocal,
int row,
int column
)
member GetFormula1 :
isR1C1 : bool *
isLocal : bool *
row : int *
column : int -> string
Parameters
- isR1C1
- Type: SystemBoolean
Whether the formula needs to be formatted as R1C1. - isLocal
- Type: SystemBoolean
Whether the formula needs to be formatted by locale. - row
- Type: SystemInt32
The row index. - column
- Type: SystemInt32
The column index.
Return Value
Type:
StringThe value or expression associated with the conditional formatting of the cell.
RemarksThe given cell must be contained by this conditional formatting, otherwise null will be returned.
See Also