Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Description

Sets or returns the category of the presentation. The category property can be used to search for a PowerPoint file.
C#
public System.String Category{ get; set; }
vb.net
Public Property Category() As String

Examples

C#
//--- Get Category
string category = docProps.Category;
 
//--- Set Category
docProps.Category = "Sales Reports";
vb.net
'--- Get Category
Dim category As String = docProps.Category
 
'--- Set Category
docProps.Category = "Sales Reports"
  • No labels