NetOffice icon indicating copy to clipboard operation
NetOffice copied to clipboard

Please add Shape.IsNarration to PowerPointApi

Open ICompareSolutions opened this issue 2 years ago • 1 comments

Please add Shape.IsNarration property to PowerPointApi. It is available in the COM API, but not in Microsoft .NET office interop API. (Not sure why).

This code works...

    /// <summary>
    /// SupportByVersion PowerPoint 9, 10, 11, 12, 14, 15, 16
    /// Get/Set
    /// </summary>
    /// <remarks> Docs: <see href="https://docs.microsoft.com/en-us/office/vba/api/PowerPoint.Shape.IsNarration"/> </remarks>
    [SupportByVersion("PowerPoint", 9, 10, 11, 12, 14, 15, 16)]
    public NetOffice.OfficeApi.Enums.MsoTriState IsNarration
    {
        get
        {
            return Factory.ExecuteEnumPropertyGet<NetOffice.OfficeApi.Enums.MsoTriState>(this, "IsNarration");
        }
        set
        {
            Factory.ExecuteEnumPropertySet(this, "IsNarration", value);
        }
    }

ICompareSolutions avatar Aug 07 '22 15:08 ICompareSolutions

This member was added in Microsoft Office 2016, version 2004 (build 12730.20352) and NetOffice was not updated yet for that release.

jozefizso avatar Aug 08 '22 14:08 jozefizso

Released in v1.9.0

jozefizso avatar Sep 23 '22 18:09 jozefizso