Esempio n. 1
0
 public Presentation(PowerPoint.Presentation presentation)
 {
     this.presentation = presentation;
     this.tags = new PowerPointTags(this.presentation);
     this.properties = new DocumentProperty(this.presentation);
 }
Esempio n. 2
0
 public Document(Word.Document document)
 {
     this.document   = document;
     this.tags       = new WordTags(this.document);
     this.properties = new DocumentProperty(this.document);
 }
Esempio n. 3
0
 public Presentation(PowerPoint.Presentation presentation)
 {
     this.presentation = presentation;
     this.tags         = new PowerPointTags(this.presentation);
     this.properties   = new DocumentProperty(this.presentation);
 }
Esempio n. 4
0
 public Workbook(Excel.Workbook workbook)
 {
     this.workbook   = workbook;
     this.tags       = new ExcelTags(this.workbook);
     this.properties = new DocumentProperty(this.workbook);
 }