Table of Contents

Property HighlightReferences

Namespace
Alternet.Editor.Wpf
Assembly
Alternet.Editor.Wpf.v9.dll

HighlightReferences

Specifies that edit control should highlight find references.

public virtual bool HighlightReferences { get; set; }

Property Value

bool

Examples

Here is how to use a HighlightReferences in the C# code:

using System;
using System.Windows;
using Alternet.Editor.Wpf;

public partial class MainWindow : Window
{
    private TextSource textSource;
    private void Window_Loaded(object sender, RoutedEventArgs e)
    {
        var textEdit1 = new TextEditor();
        textSource = new TextSource();
        textSource.LoadFile("myfile.txt");

        textSource.HighlightReferences = true;
        textEdit1.Source = this.textSource;
    }
}

Here is how to use a HighlightReferences in the Visual Basic code:

Imports System
Imports System.Windows
Imports Alternet.Editor.Wpf

Partial Public Class MainWindow
    Inherits Window

    Private textSource As TextSource

    Private Sub Window_Loaded(ByVal sender As Object, ByVal e As RoutedEventArgs)
        Dim textEdit1 = New TextEditor()
        textSource = New TextSource()
        textSource.LoadFile("myfile.txt")

        textSource.HighlightReferences = True
        textEdit1.Source = Me.textSource
    End Sub
End Class

Remarks

Set HighlightReferences property to true to enable the highlighting of all occurrences of the symbol under the caret, like a local variable, parameter, property, or field by the TextEditor control linked to this TextSource