27.3.2.6.3 SetActiveTagGroupClosed
Set the current active closed tag group ID.
Syntax
viewdll.dll |
void VD_API VdBroadWinSetActiveTagGroupClosed(int gpno); |
Bwdllobj |
Public Sub SetActiveTagGroupClosed(gpno As Integer) |
C# |
Void SetActiveTagGroupClosed(Integer gpno); |
Parameters
gpno
[in] the assigned group ID that initialized by InitTagGroupClosed().
Return Value
None.
Remarks
C# Sample Code
private void btnSetActiveTagGroupClosed_Click(object sender, EventArgs e) { int gpno; if (!int.TryParse(tbSetActiveTagGroupClosed.Text, out gpno)) { MessageLog("Please input a valid group number."); return; } ViewDllWrap.SetActiveTagGroupClosed(gpno); tbFreeTagGroupClosed.Text = gpno.ToString(); } |