Returns a string holding version/date of the PowerPoint UDF.
#Include <PowerPoint.au3>
_PPT_VersionInfo()
Parameters
None. | |
Return Value
Success: string holding version/date of PowerPoint.au3.
Remarks
Example of the returned string: "PowerPoint: 1.0.0.0 2020-09-01"
Related
Example
#AutoIt3Wrapper_AU3Check_Parameters= -d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#AutoIt3Wrapper_AU3Check_Stop_OnWarning=Y
#include <PowerPoint.au3>
#include <MsgBoxConstants.au3>
; *************************************************
; Example 1 - Display the version info for this UDF
; *************************************************
Global $sVersionInfo = _PPT_VersionInfo()
MsgBox($MB_IconInformation, "PowerPoint UDF - Version Info", $sVersionInfo)