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

Represents a setter for a field property in the Telerik document model. This class is used to assign a value, including nested fields, to a specific property of a field within a document.

Definition

Namespace:Telerik.Windows.Documents.Model

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

C#
public class FieldPropertySetter

Inheritance: objectFieldPropertySetter

Constructors

C#
public FieldPropertySetter()

Initializes a new instance of the FieldPropertySetter class with the specified property name and nested field value.

C#
public FieldPropertySetter(string propertyName, Field value)
Parameters:propertyNamestring

The name of the property to set.

valueField

The Field value to assign to the property.

Properties

Sets the value for a nested field in a document model.

C#
[XamlCompositePropertySerializable]
public Field NestedFieldValue { get; set; }

Gets the name of the property that this FieldPropertySetter is responsible for setting.

C#
[XamlSerializable]
public string PropertyName { get; set; }
Property Value:

The name of the property as a string.