Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Structures, prefix the name with the module name and a period.
Public Structure MIB_IPADDRROW
Dim _address As UInt32
Dim _index As UInt32
Dim _mask As UInt32
Dim _broadcastAddress As UInt32
Dim _reassemblySize As UInt32
Dim _unused1 As UInt16
Dim _type As UInt16
' Properties (Optional)
'Function get_Address() As UInt32
' Return _address
'End Function
'Function get_Index() As UInt32
' Return _index
'End Function
'Function get_Mask() As UInt32
' Return _mask
'End Function
'Function get_BroadCastAddress() As UInt32
' Return _broadcastAddress
'End Function
'Function get_ReassemblySize() As UInt32
' Return _reassemblySize
'End Function
'Function get_Type() As UInt16
' Return _type
'End FunctionEnd Structure