[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IRange.Formula2Local

Formula2Local Property

Formula2Local

Gets or sets the localized formula of the cells represented by this IRange in A1-style array notation.

Declaration
string Formula2Local { get; set; }
Property Formula2Local As String
Property Value
Type Description
string

The formula.

Examples
IRange range = worksheet.Range["A1:A3"];
range.Formula2Local = "=SEQUENCE(3)";
workbook.Calculate();
object value = worksheet.Range["A1"].Value;