DropDownListContentControl.LockContents Property (2007 System)
Gets or sets a value that specifies whether the contents of the DropDownListContentControl can be edited.
Namespace: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word.v9.0 (in Microsoft.Office.Tools.Word.v9.0.dll)
Syntax
'Declaration
Public Property LockContents As Boolean
'Usage
Dim instance As DropDownListContentControl
Dim value As Boolean
value = instance.LockContents
instance.LockContents = value
public bool LockContents { get; set; }
public:
property bool LockContents {
bool get ();
void set (bool value);
}
public function get LockContents () : boolean
public function set LockContents (value : boolean)
Property Value
Type: System.Boolean
true if the contents of the DropDownListContentControl cannot be edited; false if the contents can be edited. The default is false.
Remarks
To prevent users from deleting a DropDownListContentControl from the document, use the LockContentControl property. For more information about using a DropDownListContentControl to protect a part of a document, see Content Controls and How to: Protect Parts of Documents by Using Content Controls.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
DropDownListContentControl Class
DropDownListContentControl Members
Microsoft.Office.Tools.Word Namespace
Other Resources
How to: Protect Parts of Documents by Using Content Controls