# Powerpoint Library
Business processes often involves reading/writing/modifying data in PowerPoint. PowerPoint library helps the developers to create bots using PowerPoint based functions. Using PowerPoint library developers can effortlessly perform various operations such as create/delete/retrieve etc
# Method: OpenFile(System.String)
To open the powerpoint file
Parameters:
Fields | |
---|---|
path | Object- The path where the PPT file is located |
# Method: Getnoofslides()
To get number of slides in PPT file
# Method: AddSlide()
To add a slide in the PPT file
# Method: DeleteSlide(System.Int32)
To delete a slide
Parameters:
Fields | |
---|---|
slideIndex | Slide number which has to be deleted |
# Method: GetSlide(System.Int32)
To select a particular slide
Parameters:
Fields | |
---|---|
slideNumber | Slide number which has to be selected |
# Method: GetText(System.Int32)
To get the text from the slide
Parameters:
Fields | |
---|---|
slideNumber | slide number from where data has to be retrieved |
# Method: Savefile(System.String)
To save the file
Parameters:
Fields | |
---|---|
path | object- path where the file has to be saved |
# Method: Save()
To save the file
# Method: CopySlide(System.String, System.String)
To copy the slide from source file to destination file
Parameters:
Fields | |
---|---|
sourcefile | specifies the source file |
Destinationfile | specifies the destination file |
# Method: getTableData(System.Int32)
To get data present in the table
Parameters:
Fields | |
---|---|
slideNumber | Slide which has table in it |