PresentationContent Class |
Namespace: GroupDocs.Watermark.Contents.Presentation
The PresentationContent type exposes the following members.
Name | Description | |
---|---|---|
![]() | LayoutSlides |
Gets the collection of all layout slides of this PresentationContent.
|
![]() | MasterHandoutSlide |
Gets the master handout slide of this PresentationContent.
|
![]() | MasterNotesSlide |
Gets the master slide for all notes slides of this PresentationContent.
|
![]() | MasterSlides |
Gets the collection of all master slides of this PresentationContent.
|
![]() | NotesSlideHeight |
Gets the height of a notes slide in points.
|
![]() | NotesSlideWidth |
Gets the width of a notes slide in points.
|
![]() | SlideHeight |
Gets the height of a slide in points.
|
![]() | Slides |
Gets the collection of all slides of this PresentationContent.
|
![]() | SlideWidth |
Gets the width of a slide in points.
|
Name | Description | |
---|---|---|
![]() | Decrypt |
Decrypts the document.
|
![]() | Dispose |
Disposes the current instance.
(Inherited from Content.) |
![]() | Dispose(Boolean) |
Releases all resources used by the PresentationContent (Overrides ContentDispose(Boolean).) |
![]() | Encrypt |
Encrypts the document.
|
![]() | Equals | (Inherited from Object.) |
![]() | Finalize | (Inherited from Object.) |
![]() | FindImages |
Finds all images in the content.
The search is conducted in the objects specified in SearchableObjects.
(Inherited from ContentPart.) |
![]() | FindImages(ImageSearchCriteria) |
Finds images according to the specified search criteria.
The search is conducted in the objects specified in SearchableObjects.
(Inherited from ContentPart.) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() | MemberwiseClone | (Inherited from Object.) |
![]() | Search |
Finds all possible watermarks in the content.
The search is conducted in the objects specified in SearchableObjects.
(Inherited from ContentPart.) |
![]() | Search(SearchCriteria) |
Finds possible watermarks according to specified search criteria.
The search is conducted in the objects specified in SearchableObjects.
(Inherited from ContentPart.) |
![]() | ToString | (Inherited from Object.) |
PresentationLoadOptions loadOptions = new PresentationLoadOptions(); using (Watermarker watermarker = new Watermarker(@"D:\input.ppt", loadOptions)) { // Use Add method to add watermark to a particular slide or all slides. // Save changes. watermarker.Save(@"D:\output.ppt"); }