Gets or sets whether the user should be able to edit field text in place.

Namespace:  C1.Win.C1ReportDesigner
Assembly:  C1.Win.C1ReportDesigner.2 (in C1.Win.C1ReportDesigner.2.dll)

Syntax

C#
[DefaultValueAttribute(true)]
public bool AllowInPlaceEditing { get; set; }
Visual Basic
<DefaultValueAttribute(True)> _
Public Property AllowInPlaceEditing As Boolean
	Get
	Set

Remarks

If this property is set to true, then the user can select Field objects in the designer and type text directly into them. The text is assigned to the field's Text()()()() property.

If the property is set to false, then the user must edit the field text using a property grid control attached to the field object.

The default value for this property is True.

See Also