IBlogExtensibility.Open Method
Opens the blog specified by the blog ID. It is called by the Open Existing Post dialog based on the item selected by the user.
Namespace: Microsoft.Office.Core
Assembly: office (in office.dll)
Syntax
'Declaration
Sub Open ( _
Account As String, _
PostID As String, _
ParentWindow As Integer, _
<OutAttribute> ByRef xHTML As String, _
<OutAttribute> ByRef Title As String, _
<OutAttribute> ByRef DatePosted As String, _
<OutAttribute> ByRef Categories As Array _
)
'Usage
Dim instance As IBlogExtensibility
Dim Account As String
Dim PostID As String
Dim ParentWindow As Integer
Dim xHTML As String
Dim Title As String
Dim DatePosted As String
Dim Categories As Array
instance.Open(Account, PostID, ParentWindow, _
xHTML, Title, DatePosted, Categories)
void Open(
string Account,
string PostID,
int ParentWindow,
out string xHTML,
out string Title,
out string DatePosted,
out Array Categories
)
Parameters
Account
Type: System.StringRepresents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account.
PostID
Type: System.StringThe ID of the post.
ParentWindow
Type: System.Int32Contains the HWND for the window Microsoft Office Word is calling from.
xHTML
Type: System.StringRepresents the xHTML of the current document.
Title
Type: System.StringThe title of the post.
DatePosted
Type: System.StringThe date the entry was posted.
Categories
Type: System.ArrayA list of categories supported by the provider.