entity.MapForms.MapForm.JumpToTagItem_Click C# (CSharp) Method

JumpToTagItem_Click() private method

Jumps to the hilighted tag
private JumpToTagItem_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void JumpToTagItem_Click(object sender, EventArgs e)
        {
            if (references.FocusedItem == null)
                return;
            // gets the tag number from the 2nd & 3rd column from the selected item in the References ListView
            int tagNum = map.Functions.ForMeta.FindByNameAndTagType( references.FocusedItem.SubItems[2].Text,
                                                                     references.FocusedItem.SubItems[3].Text);
            selectTag(tagNum);
        }
MapForm