27.3.2.5.4 SetActiveTagGroup
Set the current active open tag group ID.
Syntax
viewdll.dll |
void VD_API VdBroadWinSetActiveTagGroup(int gpno); |
Bwdllobj |
Public Sub SetActiveTagGroup(gpno As Integer) |
C# |
Void SetActiveTagGroup(Integer gpno); |
Parameters
gpno
[in] the assigned group ID that initialized by InitTagGroup().
Return Value
None.
Remarks
C# Sample Code
private void btnSetActiveTagGroup_Click(object sender, EventArgs e) { int gpno; if (!int.TryParse(tbSetActiveTagGroup.Text, out gpno)) { MessageLog("Please input a valid group number."); return; } ViewDllWrap.SetActiveTagGroup(gpno); } |