Class DropDownItemModelBase
Represents the drop down item model.
Inheritance
Namespace: Telerik.Windows.Controls.Spreadsheet.Controls
Assembly: Telerik.Windows.Controls.Spreadsheet.dll
Syntax
public abstract class DropDownItemModelBase : Object, INotifyPropertyChanged
Constructors
DropDownItemModelBase()
Declaration
protected DropDownItemModelBase()
Properties
Command
Gets or sets the command.
Declaration
public ICommand Command { get; set; }
Property Value
System.Windows.Input.ICommand
The command. |
Description
Gets or sets the description.
Declaration
public string Description { get; set; }
Property Value
System.String
The description. |
Header
Gets or sets the header.
Declaration
public string Header { get; set; }
Property Value
System.String
The header. |
Icon
Gets or sets the drop down item icon.
Declaration
public BitmapImage Icon { get; set; }
Property Value
System.Windows.Media.Imaging.BitmapImage
The drop down item icon. |
Methods
DipToInchString(Double)
Converts Dip units to inches.
Declaration
protected string DipToInchString(double lengthInDip)
Parameters
System.Double
lengthInDip
The length in dip. |
Returns
System.String
The length in inches. |
OnPropertyChanged(String)
Called when a property is changed.
Declaration
protected virtual void OnPropertyChanged(string name)
Parameters
System.String
name
The name. |
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|