Represents a tuple between a search location and the string representation of its name.
Definition
Namespace:Telerik.Windows.Controls.Spreadsheet.Dialogs
Assembly:Telerik.Windows.Controls.Spreadsheet.dll
Type Parameters:
T
The type of the T.
Syntax:
C#
public class SearchLocationName<T> : NotifyPropertyChangedBase
Inheritance: objectSearchLocationName<T>
Constructors
Initializes a new instance of the SearchLocationName<T> class.
C#
public SearchLocationName(T searchLocation, string name)
The search location.
namestringThe name of the instance.
Properties
Gets or sets the name representing the search location.
C#
public string Name { get; set; }
The name representing the search location.
Gets or sets the search location.
C#
public T SearchLocation { get; set; }
The search location.