Represents properties class for SyntaxEditor.
Definition
Namespace:Telerik.WinForms.Controls.SyntaxEditor.UI
Assembly:Telerik.WinControls.SyntaxEditor.dll
Syntax:
public class SyntaxEditorProperties : INotifyPropertyChanged
Inheritance: objectSyntaxEditorProperties
Implements:
Constructors
Initializes a new instance of the SyntaxEditorProperties class.
public SyntaxEditorProperties()
Fields
The tab size property name.
public const string TabSizePropertyName = "TabSize"
Properties
Gets or sets a value indicating whether [keep tabs].
public bool KeepTabs { get; set; }
true if [keep tabs]; otherwise, false.
Gets or sets a value indicating whether [show end of line].
public bool ShowEndOfLine { get; set; }
true if [show end of line]; otherwise, false.
Gets or sets a value indicating whether [show spaces].
public bool ShowSpaces { get; set; }
true if [show spaces]; otherwise, false.
Gets or sets a value indicating whether [show tabs].
public bool ShowTabs { get; set; }
true if [show tabs]; otherwise, false.
Methods
Called when [property changed].
protected virtual void OnPropertyChanged(string propertyName)
Name of the property.
Events
Occurs when a property value changes.
public event PropertyChangedEventHandler PropertyChanged
Implements: