ZennoLab Assemblies Documentation
UnLockTableSyncer Method
Example 
The performs the unlock the tables.
Syntax
public static void UnLockTableSyncer()
Example
The following code example demonstrates uses of the UnLockTableSyncer method.
// get the list from project
$table = $project->Tables->get_Item("Table1");
// lock the table
ZennoLab\CommandCenter\PhpHelper::LockTableSyncer();
try 
{
    $table->AddRow("a;b;c;d;e;f");
}
catch (Exception $e) {}
// unlock the table
ZennoLab\CommandCenter\PhpHelper::UnLockListSyncer();
Requirements

Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.

See Also

Reference

PhpHelper Class
PhpHelper Members
LockInputSyncer Method
LockListSyncer Method
LockTableSyncer Method
UnLockInputSyncer Method
UnLockListSyncer Method

Send Feedback