New to Telerik UI for WPFStart a free 30-day trial

Represents the insert function argument control.

Definition

Namespace:Telerik.Windows.Controls.Spreadsheet.Dialogs

Assembly:Telerik.Windows.Controls.Spreadsheet.dll

Syntax:

C#
public class InsertFunctionArgumentControl : Control

Inheritance: objectInsertFunctionArgumentControl

Constructors

Initializes a new instance of the InsertFunctionArgumentControl class.

C#
public InsertFunctionArgumentControl(ArgumentInfo argument)
Parameters:argumentArgumentInfo

The argument.

Fields

ArgumentNameProperty

DependencyProperty

Argument name dependency property.

C#
public static readonly DependencyProperty ArgumentNameProperty

ArgumentStatusProperty

DependencyProperty

Argument status dependency property.

C#
public static readonly DependencyProperty ArgumentStatusProperty

Argument type foreground dependency property.

C#
public static readonly DependencyProperty ArgumentTypeForegroundProperty

ArgumentValueProperty

DependencyProperty

Argument value dependency property.

C#
public static readonly DependencyProperty ArgumentValueProperty

Properties

Argument

ArgumentInfo

Gets the argument.

C#
public ArgumentInfo Argument { get; }
Property Value:

The argument.

Gets or sets the name of the argument.

C#
public string ArgumentName { get; set; }
Property Value:

The name of the argument.

Gets or sets the argument status.

C#
public string ArgumentStatus { get; set; }
Property Value:

The argument status.

ArgumentTypeForeground

SolidColorBrush

Gets or sets the argument type foreground.

C#
public SolidColorBrush ArgumentTypeForeground { get; set; }
Property Value:

The argument type foreground.

Gets or sets the argument value.

C#
public string ArgumentValue { get; set; }
Property Value:

The argument value.

Methods

Focuses the value text box.

C#
public void FocusTheTextBox()

When overridden in a derived class, is invoked whenever application code or internal processes call .

C#
public override void OnApplyTemplate()

Raises the event. This method is invoked whenever is set to true internally.

C#
protected override void OnInitialized(EventArgs e)
Parameters:eEventArgs

The RoutedEventArgs that contains the event data.

Events

Occurs when the enter selection mode button is clicked.

C#
public event RoutedEventHandler EnterSelectionModeButtonClick

ValueChanged

RoutedEventHandler

Occurs when an argument value is changed.

C#
public event RoutedEventHandler ValueChanged

ValueTextBoxGotFocus

RoutedEventHandler

Occurs when the value text box gets focus.

C#
public event RoutedEventHandler ValueTextBoxGotFocus