Search
Table.Locked Property
See Also
 



Gets or sets a value specifying whether users are allowed to select and modify this table.

 Syntax

VB6  Copy Code

Public Property Get Locked() As Boolean
Public Property Let Locked( _
    ByVal value As Boolean _
)

C++  Copy Code

public:
bool get_Locked ()
void put_Locked (
    bool value
)

 Property Value

A boolean value. The default is false.

 Remarks

Set to true prevents the user from modifying or moving the table.

 See Also