27.3.2.5.3 GetActiveTagGroup

 

Get the current active open tag group ID.

 

Syntax

viewdll.dll

int VD_API VdBroadWinGetActiveTagGroup();

Bwdllobj

Public Function GetActiveTagGroup() As Integer

C#

Integer GetActiveTagGroup();

 

Parameters

None.

 

Return Value

Type: Integer

The group ID for the open tag group.

 

Remarks

 

C# Sample Code

private void btnGetActiveTagGroup_Click(object sender, EventArgs e)

{

    int result = ViewDllWrap.GetActiveTagGroup();

    tbGetActiveTagGroup.Text

        = tbSetActiveTagGroup.Text

        = result.ToString();

}