Skip to content

Commit

Permalink
Merge pull request #416 from NetOfficeFw/feature/411-powerpoint_prese…
Browse files Browse the repository at this point in the history
…ntation_readonlyrecommended
  • Loading branch information
jozefizso authored Jun 8, 2024
2 parents ccc0411 + 46d33a9 commit 60cc591
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Source/PowerPoint/DispatchInterfaces/_Presentation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,23 @@ public NetOffice.OfficeApi.Enums.MsoTriState ReadOnly
}
}

/// <summary>
/// When you open a presentation that was saved as read-only recommended, Microsoft PowerPoint displays a message recommending that you open the presentation as read-only.
///
/// Use the SaveCopyAs2 method to change this property.
///
/// SupportByVersion PowerPoint 16
/// </summary>
/// <remarks> Docs: <see href="https://learn.microsoft.com/en-us/office/vba/api/powerpoint.presentation.readonlyrecommended"/> </remarks>
[SupportByVersion("PowerPoint", 16)]
public NetOffice.OfficeApi.Enums.MsoTriState ReadOnlyRecommended
{
get
{
return Factory.ExecuteEnumPropertyGet<NetOffice.OfficeApi.Enums.MsoTriState>(this, "ReadOnlyRecommended");
}
}

/// <summary>
/// SupportByVersion PowerPoint 9, 10, 11, 12, 14, 15, 16
/// Get
Expand Down

0 comments on commit 60cc591

Please sign in to comment.