예제 #1
0
 public Presentation(PowerPoint.Presentation presentation)
 {
     this.presentation = presentation;
     this.tags = new PowerPointTags(this.presentation);
     this.properties = new DocumentProperty(this.presentation);
 }
예제 #2
0
 public Document(Word.Document document)
 {
     this.document   = document;
     this.tags       = new WordTags(this.document);
     this.properties = new DocumentProperty(this.document);
 }
예제 #3
0
 public Presentation(PowerPoint.Presentation presentation)
 {
     this.presentation = presentation;
     this.tags         = new PowerPointTags(this.presentation);
     this.properties   = new DocumentProperty(this.presentation);
 }
예제 #4
0
파일: Workbook.cs 프로젝트: Servoy/electron
 public Workbook(Excel.Workbook workbook)
 {
     this.workbook   = workbook;
     this.tags       = new ExcelTags(this.workbook);
     this.properties = new DocumentProperty(this.workbook);
 }