Class MergeFieldToStringConvertingEventArgs
Provides data for the MergeFieldToStringConverting event.
Inheritance
Namespace: Telerik.Windows.Documents.Model
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public class MergeFieldToStringConvertingEventArgs : EventArgs
Constructors
MergeFieldToStringConvertingEventArgs(MergeField, Object, String)
Declaration
public MergeFieldToStringConvertingEventArgs(MergeField mergeField, object value, string convertedValue)
Parameters
MergeField
mergeField
|
System.Object
value
|
System.String
convertedValue
|
Properties
ConvertedValue
Gets the converted value of the merge field as a string.
Declaration
public string ConvertedValue { get; set; }
Property Value
System.String
A string representation of the converted merge field value. |
MergeField
Represents the merge field associated with the event arguments for the MergeFieldToStringConverting event.
Declaration
public MergeField MergeField { get; }
Property Value
MergeField
The merge field as a string that can be converted to a specific format during the merging process. |
Value
Represents the value of the merge field.
Declaration
public object Value { get; }
Property Value
System.Object
|