편집

다음을 통해 공유


_XDocument3.IsReadOnly Property

Definition

Gets a value that indicates whether a Microsoft Office InfoPath form is in read-only mode.

public:
 property bool IsReadOnly { bool get(); };
public bool IsReadOnly { get; }
member this.IsReadOnly : bool
Public ReadOnly Property IsReadOnly As Boolean

Property Value

true if the form has been placed in a read-only state; otherwise false.

Implements

Examples

In the following example, the IsReadOnly property of the XDocument object is used to determine whether the form is in a read-only state:

if (thisXDocument.<span class="label">IsReadOnly</span>)
{
 thisXDocument.UI.Alert("The form cannot be modified.");
}

In the following example, the IsReadOnly property of the XDocument object is used to determine whether the form is in a read-only state:

if (thisXDocument.<span class="label">IsReadOnly</span>)
{
 thisXDocument.UI.Alert("The form cannot be modified.");
}

Remarks

If the IsReadOnly property is true, the form has been placed in a read-only state. Changes can still be made to the form, but it cannot be saved using a save operation, it must be saved using a save-as operation.

To determine whether the form's underlying XML document has been placed in a read-only state, use the IsDOMReadOnly property.

Applies to