A class that contains various helpful extension methods for RadExpressionEditor
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.Expressions.dll
Syntax:
public static class RadExpressionEditorExtensions
Inheritance: objectRadExpressionEditorExtensions
Methods
Converts the string representation of an expression to its Expression equivalent. A return value indicates whether the conversion was successful.
public static bool TryParse(this RadExpressionEditor expressionEditor, string expressionText, out Expression result)
The RadExpressionEditor instance which will perform the conversion.
expressionTextstringA string containing a well-formed expression to convert.
resultExpressionWhen this method returns, contains the LINQ Expression equivalent to the well-formed expression contained in
expressionText, if the conversion succeeded, or null if it failed.
This parameter is passed uninitialized.
true if expressionText was converted successfully; otherwise, false.