27.3.2.6.2 GetActiveTagGroupClosed
Get the current active closed tag group ID.
Syntax
viewdll.dll |
int VD_API VdBroadWinGetActiveTagGroupClosed(); |
Bwdllobj |
Public Function GetActiveTagGroupClosed() As Integer |
C# |
Integer GetActiveTagGroupClosed(); |
Parameters
None.
Return Value
Type: Integer
The group ID for the closed tag group.
Remarks
C# Sample Code
private void btnGetActiveTagGroupClosed_Click(object sender, EventArgs e) { int result = ViewDllWrap.GetActiveTagGroupClosed(); tbGetActiveTagGroupClosed.Text = tbSetActiveTagGroupClosed.Text = result.ToString(); } |