Class FlagEnumValueViewModel
Holds information about Flag Enumeration member.
Inherited Members
Namespace: Telerik.Windows.Controls.Data.PropertyGrid
Assembly: Telerik.Windows.Controls.Data.dll
Syntax
public class FlagEnumValueViewModel : EnumMemberViewModel, INotifyPropertyChanged
Constructors
FlagEnumValueViewModel(Object, String, String, Int64)
Initializes a new instance of the FlagEnumValueViewModel class.
Declaration
public FlagEnumValueViewModel(object value, string name, string description, long flagValue)
Parameters
System.Object
value
|
System.String
name
|
System.String
description
|
System.Int64
flagValue
|
FlagEnumValueViewModel(Object, String, String, Int64, String)
Initializes a new instance of the FlagEnumValueViewModel class.
Declaration
public FlagEnumValueViewModel(object value, string name, string description, long flagValue, string displayShortName)
Parameters
System.Object
value
|
System.String
name
|
System.String
description
|
System.Int64
flagValue
|
System.String
displayShortName
|
Properties
FlagValue
Gets or sets the flag value of the item.
Declaration
public object FlagValue { get; set; }
Property Value
System.Object
The Flag Value of each item. |
IsSelected
Gets or sets the selected state of the item.
Declaration
public bool IsSelected { get; set; }
Property Value
System.Boolean
The IsSelected value. |
Methods
OnPropertyChanged(PropertyChangedEventArgs)
Called when [property changed].
Declaration
protected virtual void OnPropertyChanged(PropertyChangedEventArgs args)
Parameters
System.ComponentModel.PropertyChangedEventArgs
args
|
ToString()
Returns a System.String that represents this instance.
Declaration
public override string ToString()
Returns
System.String
A System.String that represents this instance. |
Overrides
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|