Represents the content of the FindAndReplaceDialog.
Definition
Namespace:Telerik.Windows.Controls.Spreadsheet.Dialogs
Assembly:Telerik.Windows.Controls.Spreadsheet.dll
Syntax:
public class FindAndReplaceDialogContent : FindAndReplaceDialogContentBase, ILocalizable, IRadSpreadsheetDialogContent<FindAndReplaceDialogContext>, IRadSpreadsheetDialogContent, INotifyPropertyChanged
Inheritance: objectControlBaseRadSpreadsheetDialogContentBaseRadSpreadsheetDialogContentBase<FindAndReplaceDialogContext>FindAndReplaceDialogContentBaseFindAndReplaceDialogContent...
Implements:
Inherited Members
Constructors
Initializes a new instance of the FindAndReplaceDialogContent class.
public FindAndReplaceDialogContent()
Fields
FindAllResultsProperty
DependencyProperty
Find all results dependency property.
public static readonly DependencyProperty FindAllResultsProperty
LookInProperty
DependencyProperty
Look in dependency property.
public static readonly DependencyProperty LookInProperty
MatchCaseProperty
DependencyProperty
Match case dependency property.
public static readonly DependencyProperty MatchCaseProperty
MatchEntireCellContentsProperty
DependencyProperty
Match entire cell contents dependency property.
public static readonly DependencyProperty MatchEntireCellContentsProperty
ReplaceWithWordProperty
DependencyProperty
Replace with word dependency property.
public static readonly DependencyProperty ReplaceWithWordProperty
ResultsGridVisibilityProperty
DependencyProperty
Results grid visibility dependency property.
public static readonly DependencyProperty ResultsGridVisibilityProperty
SearchByTypeProperty
DependencyProperty
Search by type dependency property.
public static readonly DependencyProperty SearchByTypeProperty
SearchedWordProperty
DependencyProperty
Searched word dependency property.
public static readonly DependencyProperty SearchedWordProperty
SearchWithinValueProperty
DependencyProperty
Search within value dependency property.
public static readonly DependencyProperty SearchWithinValueProperty
Properties
Gets the close dialog command.
public ICommand CloseDialogCommand { get; }
The close dialog command.
Gets the find all command.
public ICommand FindAllCommand { get; }
The find all command.
FindAllResults
IEnumerable<FindResult>
Gets or sets the results of find all.
public IEnumerable<FindResult> FindAllResults { get; set; }
The results of find all.
Gets the find next command.
public ICommand FindNextCommand { get; }
The find next command.
Gets the go to cell command.
public ICommand GoToCellCommand { get; }
The go to cell command.
LookIn
FindInContentType
Gets or sets the selected value to look in.
public FindInContentType LookIn { get; set; }
The selected value to look in.
LookInValues
IEnumerable<SearchLocationName<FindInContentType>>
Gets the values to look in.
public IEnumerable<SearchLocationName<FindInContentType>> LookInValues { get; }
The values to look in.
Gets or sets a value indicating whether the case should be matched.
public bool MatchCase { get; set; }
The value indicating whether the case should be matched.
Gets or sets a value indicating whether the entire cell contents should be matched.
public bool MatchEntireCellContents { get; set; }
The value indicating whether the entire cell contents should be matched.
Gets the replace all command.
public ICommand ReplaceAllCommand { get; }
The replace all command.
Gets the replace command.
public ICommand ReplaceCommand { get; }
The replace command.
Gets or sets the replace with word.
public string ReplaceWithWord { get; set; }
The replace with word.
ResultsGridVisibility
Visibility
Gets or sets the results grid visibility.
public Visibility ResultsGridVisibility { get; set; }
The results grid visibility.
SearchBy
IEnumerable<SearchLocationName<FindBy>>
Gets the values to search by.
public IEnumerable<SearchLocationName<FindBy>> SearchBy { get; }
The values to search by.
SearchByType
FindBy
Gets or sets the selected type to search by.
public FindBy SearchByType { get; set; }
The selected type to search by.
Gets or sets the searched word.
public string SearchedWord { get; set; }
The searched word.
SearchWithinValue
FindWithin
Gets or sets the selected value to search within.
public FindWithin SearchWithinValue { get; set; }
The selected value to search within.
WithinValues
IEnumerable<SearchLocationName<FindWithin>>
Gets the options for the values to search within.
public IEnumerable<SearchLocationName<FindWithin>> WithinValues { get; }
The values to search within.
Methods
Called on dialog closed.
protected override void CloseOverride()
Overrides:
When overridden in a derived class, is invoked whenever application code or internal processes call .
public override void OnApplyTemplate()
Overrides:
Raises the event. This method is invoked whenever is set to true internally.
protected override void OnInitialized(EventArgs e)
The RoutedEventArgs that contains the event data.
Invoked when an unhandled attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event.
protected override void OnKeyDown(KeyEventArgs e)
The KeyEventArgs that contains the event data.
Called before showing dialog.
protected override void ShowOverride()
Overrides:
Events
public event PropertyChangedEventHandler PropertyChanged
Implements: