Class CodeEditorOptions
Represents the options for the CodeEditor.
public class CodeEditorOptions : INotifyPropertyChanged
- Inheritance
-
CodeEditorOptions
- Implements
- Inherited Members
Properties
ConvertTabsToSpaces
Gets or sets a value indicating whether tabs will be converted to spaces.
public bool ConvertTabsToSpaces { get; set; }
Property Value
EnableHyperlinks
Gets or sets a value indicating whether hyperlinks are enabled.
public bool EnableHyperlinks { get; set; }
Property Value
IndentationSize
Gets or sets the indention size.
public int IndentationSize { get; set; }
Property Value
ShowLineBreaks
Gets or sets a value indicating whether the line breaks are visible.
public bool ShowLineBreaks { get; set; }
Property Value
ShowLineNumbers
Gets or sets a value indicating whether the line numbers are visible.
public bool ShowLineNumbers { get; set; }
Property Value
Events
PropertyChanged
Occurs when a property value changes.
public event PropertyChangedEventHandler PropertyChanged