Class CustomFilterDialogViewModel
Represents the view model of the custom filter dialog.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls.Spreadsheet.Dialogs
Assembly: Telerik.Windows.Controls.Spreadsheet.dll
Syntax
public class CustomFilterDialogViewModel : DialogViewModelBase<CustomFilterDialogContext>
Constructors
CustomFilterDialogViewModel(CustomFilterDialogContext, Action)
Initializes a new instance of the CustomFilterDialogViewModel class.
Declaration
public CustomFilterDialogViewModel(CustomFilterDialogContext context, Action closeDialogAction)
Parameters
CustomFilterDialogContext
context
The context. |
System.Action
closeDialogAction
The close dialog action. |
Properties
CancelCommand
Gets the cancel command.
Declaration
public ICommand CancelCommand { get; }
Property Value
System.Windows.Input.ICommand
The cancel command. |
ComparisonOperatorItemsSource
Gets the comparison operator items source.
Declaration
public IEnumerable<ComparisonOperatorItem> ComparisonOperatorItemsSource { get; }
Property Value
System.Collections.Generic.IEnumerable<ComparisonOperatorItem>
The comparison operator items source. |
DialogHeader
Gets the dialog header.
Declaration
public string DialogHeader { get; }
Property Value
System.String
The dialog header. |
OKCommand
Gets the OK command.
Declaration
public ICommand OKCommand { get; }
Property Value
System.Windows.Input.ICommand
The OK command. |
SelectedComparisonOperator1
Gets or sets the first selected comparison operator.
Declaration
public ComparisonOperatorItem SelectedComparisonOperator1 { get; set; }
Property Value
ComparisonOperatorItem
The first selected comparison operator. |
SelectedComparisonOperator2
Gets or sets the second selected comparison operator.
Declaration
public ComparisonOperatorItem SelectedComparisonOperator2 { get; set; }
Property Value
ComparisonOperatorItem
The second selected comparison operator. |
SelectedLogicalOperator
Gets or sets the selected logical operator.
Declaration
public LogicalOperator SelectedLogicalOperator { get; set; }
Property Value
Telerik.Windows.Documents.Spreadsheet.Model.Filtering.LogicalOperator
The selected logical operator. |
Value1
Gets or sets the first value.
Declaration
public string Value1 { get; set; }
Property Value
System.String
The first value. |
Value2
Gets or sets the second value.
Declaration
public string Value2 { get; set; }
Property Value
System.String
The second value. |