Skip to main content
Row

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

CellRange.GetDefinedName(DefinedNameScope) Method

Returns a defined name declared in the specified scope and associated with the current cell range.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v24.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

DefinedName GetDefinedName(
    DefinedNameScope scope
)

#Parameters

Name Type Description
scope DefinedNameScope

Specifies the defined name’s scope.

#Returns

Type Description
DefinedName

Specifies the name assigned to the current range. Null (Nothing in VB), if no name is found.

#Remarks

Use the GetDefinedName method overloads to return a DefinedName object associated with the current cell range. The scope parameter specifies where to search a name: in the DefinedNameCollection collection of the current worksheet (Worksheet.DefinedNames) or the entire workbook (IWorkbook.DefinedNames).

You can also use the Name property to return a string that specifies the range’s name.

Refer to the Defined Names document for more information on defined names.

See Also