Class ContentControlState
Represents the view state properties needed for representing the content control.
Inheritance
Inherited Members
Namespace: Telerik.WinForms.Documents.Model.StructuredDocumentTags
Assembly: Telerik.WinControls.RichTextEditor.dll
Syntax
public class ContentControlState : INotifyPropertyChanged
  Properties
Alias
Gets the alias text.
Declaration
public string Alias { get; }
  Property Value
| 
        System.String
         
  | 
    
Focused
Gets the value that indicates whether the controls should appear focused or not.
Declaration
public bool Focused { get; }
  Property Value
| 
        System.Boolean
         
  | 
    
Hovered
Gets or sets the value that indicates whether the control should appear hovered or not.
Declaration
public bool Hovered { get; set; }
  Property Value
| 
        System.Boolean
         
  | 
    
Lock
Gets the value that indicates if the control is locked.
Declaration
public Lock? Lock { get; }
  Property Value
| 
        System.Nullable<Lock>
         
  | 
    
OutlineAppearance
Gets the value that indicates the appearance of the control.
Declaration
public OutlineAppearance OutlineAppearance { get; }
  Property Value
| 
        OutlineAppearance
         
  | 
    
OutlineColor
Gets the value that indicates the color of the control.
Declaration
public Color? OutlineColor { get; }
  Property Value
| 
        System.Nullable<Color>
         
  | 
    
PolygonPoints
Gets the value that indicates the list of points that identifies the control's polygon.
Declaration
public IEnumerable<Point> PolygonPoints { get; }
  Property Value
| 
        System.Collections.Generic.IEnumerable<Point>
         
  | 
    
Properties
SdtStart
SelectAction
Gets the value that indicates the action which selects the content of the control.
Declaration
public Action<object> SelectAction { get; }
  Property Value
| 
        System.Action<System.Object>
         
  | 
    
Selected
Gets the value that indicates whether the control should appear selected or not.
Declaration
public bool Selected { get; }
  Property Value
| 
        System.Boolean
         
  | 
    
ShowThumb
Gets the value that indicates whether the controls should show its thumb or not.
Declaration
public bool ShowThumb { get; }
  Property Value
| 
        System.Boolean
         
  | 
    
Type
Gets the value that indicates the type of the control.
Declaration
public SdtType Type { get; }
  Property Value
| 
        SdtType
         
  | 
    
Methods
OnPropertyChanged(String)
Raise PropertyChanged event to any listeners.
Declaration
protected virtual void OnPropertyChanged(string propertyName)
  Parameters
| 
        System.String
        propertyName
         
  | 
    
Events
PropertyChanged
PropertyChanged event.
Declaration
public event PropertyChangedEventHandler PropertyChanged
  Event Type
| 
        System.ComponentModel.PropertyChangedEventHandler
         
  |