NetOffice icon indicating copy to clipboard operation
NetOffice copied to clipboard

Presentation class missing AutoSaveOn property

Open kev-is-coding-for-adn opened this issue 9 months ago • 2 comments

Hi,

I see that you added this property for Excel Workbook class, but this also exists on PowerPoint Presentation. https://learn.microsoft.com/fr-fr/office/vba/api/powerpoint.presentation.autosaveon

Can this be added ? I tried to create an extension but this doesn't seem to work

public static bool IsAutoSaveOn(this Presentation pres) { try { return pres.Factory.ExecuteBoolPropertyGet(pres, "AutoSaveOn"); } catch (Exception) { return false; } }

Thanks

kev-is-coding-for-adn avatar Apr 14 '25 09:04 kev-is-coding-for-adn

Hi @kev-is-coding-for-adn, a pull request with the new property is welcome.

jozefizso avatar Apr 14 '25 11:04 jozefizso