IBlogExtensibility.GetRecentPosts Method

Returns the list of the user’s last fifteen blog posts that Microsoft Office Word then displays in the Open Existing Post dialog. This method does not actually return the blog post contents.

Namespace:  Microsoft.Office.Core
Assembly:  office (in office.dll)

Syntax

'Declaration
Sub GetRecentPosts ( _
    Account As String, _
    ParentWindow As Integer, _
    Document As Object, _
    <OutAttribute> ByRef PostTitles As Array, _
    <OutAttribute> ByRef PostDates As Array, _
    <OutAttribute> ByRef PostIDs As Array _
)
'Usage
Dim instance As IBlogExtensibility
Dim Account As String
Dim ParentWindow As Integer
Dim Document As Object
Dim PostTitles As Array
Dim PostDates As Array
Dim PostIDs As Array

instance.GetRecentPosts(Account, ParentWindow, _
    Document, PostTitles, PostDates, _
    PostIDs)
void GetRecentPosts(
    string Account,
    int ParentWindow,
    Object Document,
    out Array PostTitles,
    out Array PostDates,
    out Array PostIDs
)

Parameters

  • Account
    Type: System.String

    Represents the GUID of the account registry key. Blog account settings are stored in the registry at \\HKCU\Software\Microsoft\Office\Common\Blog\Account.

  • ParentWindow
    Type: System.Int32

    Contains the HWND for the window Office Word is calling from.

  • PostTitles
    Type: System.Array

    Contains the titles of the last fifteen posts.

  • PostDates
    Type: System.Array

    Contains the dates of the last fifteen posts.

  • PostIDs
    Type: System.Array

    Contains the IDs of the last fifteen posts.

See Also

Reference

IBlogExtensibility Interface

IBlogExtensibility Members

Microsoft.Office.Core Namespace