IRadValidationRule
Interface
Represent a base for RadValidation
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.UI.dll
Syntax:
C#
public interface IRadValidationRule
Derived Classes:
Properties
Enable ot disable the ToolTip showing when validation fails.
C#
bool AutoToolTip { get; set; }
Turn On or Off the CaseSensitive evaluation.
C#
bool CaseSensitive { get; set; }
Represents the List of Controls that belongs to this Rule.
C#
List<Control> Controls { get; set; }
Get the Rule Expression e.g. 'Value > 5'
C#
string Expression { get; }
Sets or sets the PropertyName which will be evaluated. For example 'Value' Property.
C#
string PropertyName { get; set; }
Gets or sets the ToolTip Text.
C#
string ToolTipText { get; set; }
Gets or sets ToolTip Title.
C#
string ToolTipTitle { get; set; }
Methods
Add a RadEditorControl descendant to the Rule's Controls collection.
C#
void AddControl(RadEditorControl control)
RadEditorControl descendant instance
Remove a RadEditorControl descendant from the Rule's Controls collection.
C#
void RemoveControl(RadEditorControl control)
RadEditorControl descendant instance