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 Interfaces, prefix the name with the module name and a period.
<ComImportAttribute(), _
Guid("0000000b-0000-0000-c000-000000000046"), _
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)> _
Interface IStorage
Sub CreateStream(ByVal pwcsName As String,
ByVal grfMode As UInteger,
ByVal reserved1 As UInteger,
ByVal reserved2 As UInteger,
ByRef ppstm As IStream)
Sub OpenStream(ByVal pwcsName As String,
ByVal reserved1 As IntPtr,
ByVal grfMode As UInteger,
ByVal reserved2 As UInteger,
ByRef ppstm As IStream)
Sub CreateStorage(ByVal pwcsName As String,
ByVal grfMode As UInteger,
ByVal reserved1 As UInteger,
ByVal reserved2 As UInteger,
ByRef ppstg As IStorage)
Sub OpenStorage(ByVal pwcsName As String,
ByVal pstgPriority As IStorage,
ByVal grfMode As UInteger,
ByVal snbExclude As IntPtr,
ByVal reserved As UInteger,
ByRef ppstg As IStorage)
Sub CopyTo(ByVal ciidExclude As UInteger,
ByVal rgiidExclude() As Guid,
ByVal snbExclude As IntPtr,
ByVal pstgDest As IStorage)
Sub MoveElementTo(ByVal pwcsName As String,
ByVal pstgDest As IStorage,
ByVal pwcsNewName As String,
ByVal grfFlags As UInteger)
Sub Commit(ByVal grfCommitFlags As UInteger)
Sub Revert()
Sub EnumElements(ByVal reserved1 As UInteger,
ByVal reserved2 As IntPtr,
ByVal reserved3 As UInteger,
ByRef ppenum As IEnumSTATSTG)
Sub DestroyElement(ByVal pwcsName As String)
Sub RenameElement(ByVal pwcsOldName As String,
ByVal pwcsNewName As String)
Sub SetElementTimes(ByVal pwcsName As String,
ByVal pctime As FILETIME,
ByVal patime As FILETIME,
ByVal pmtime As FILETIME)
Sub SetClass(ByVal clsid As Guid)
Sub SetStateBits(ByVal grfStateBits As UInteger,
ByVal grfMask As UInteger)
Sub Stat(ByRef pstatstg As STATSTG,
ByVal grfStatFlag As UInteger)
End Interface