Skip to main content
A newer version of this page is available. .

SpreadsheetBehaviorOptions.FunctionNameCulture Property

Enables you to specify culture setting for function names in a worksheet that is different from the control’s culture settings. This is a dependency property.

Namespace: DevExpress.Xpf.Spreadsheet

Assembly: DevExpress.Xpf.Spreadsheet.v18.2.dll

Declaration

public FunctionNameCulture FunctionNameCulture { get; set; }

Property Value

Type Description
FunctionNameCulture

A FunctionNameCulture enumeration member specifying culture settings used for the names of the worksheet functions.

Available values:

Name Description
English

English function names are used regardless of the spreadsheet control’s culture settings.

Local

Function names are retrieved from a table of localized names for the culture specified for the spreadsheet control. Use the SpreadsheetControl.Options.Culture notation to get access to the spreadsheet control’s culture setting.

Auto

Function names are retrieved from a table of localized names if present; otherwise, invariant names (English) are used.

Property Paths

You can access this nested property as listed below:

Object Type Path to FunctionNameCulture
SpreadsheetControlOptions
.Behavior.FunctionNameCulture

Remarks

The SpreadsheetControlOptions.Culture property allows you to specify culture settings for the SpreadsheetControl. The FunctionNameCulture property allows you to fine tune localization to avoid using localized function names in the worksheet, however applying culture-specific number and date formats.

See Also