Sets or returns the value of the Title field in a presentation's Properties sheet. The title property can be used to search for a PowerPoint file.

public System.String Title{ get; set; }
Public Property Title() As String
          //--- Get Title
          string title = docProps.Title;

          //--- Set Title
          docProps.Title = "Employees";
        
          '--- Get Title
          Dim title As String = docProps.Title

          '--- Set Title
          docProps.Title = "Employees"