Class RadTokenizedTextItem
Represents a logical data item that contains the tokenzied text and its value
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class RadTokenizedTextItem : IComparable<RadTokenizedTextItem>, INotifyPropertyChanged
  Constructors
RadTokenizedTextItem(String, Object)
Initializes a new instance of the RadTokenizedTextItem class.
Declaration
public RadTokenizedTextItem(string text, object value)
  Parameters
| 
        System.String
        text
         The text.  | 
    
| 
        System.Object
        value
         The value.  | 
    
Properties
Text
Gets the text.
Declaration
public string Text { get; protected set; }
  Property Value
| 
        System.String
         
  | 
    
Value
Gets the value.
Declaration
public object Value { get; protected set; }
  Property Value
| 
        System.Object
         
  | 
    
Methods
CompareTo(RadTokenizedTextItem)
Compares the current object with another object of the same type.
Declaration
public virtual int CompareTo(RadTokenizedTextItem other)
  Parameters
| 
        RadTokenizedTextItem
        other
         An object to compare with this object.  | 
    
Returns
| 
        System.Int32
         A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has the following meanings: Value Meaning Less than zero This object is less than the   | 
    
Implements
OnPropertyChanged(PropertyChangedEventArgs)
Raises the PropertyChanged event.
Declaration
protected void OnPropertyChanged(PropertyChangedEventArgs e)
  Parameters
| 
        System.ComponentModel.PropertyChangedEventArgs
        e
         The System.ComponentModel.PropertyChangedEventArgs instance containing the event data.  | 
    
OnPropertyChanged(String)
Raises the PropertyChanged event.
Declaration
protected void OnPropertyChanged(string propertyName)
  Parameters
| 
        System.String
        propertyName
         Name of the property.  | 
    
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
         
  |