コード例 #1
0
ファイル: POIOLE2TextExtractor.cs プロジェクト: zzy092/npoi
 /// <summary>
 /// Creates a new text extractor for the given document
 /// </summary>
 /// <param name="document"></param>
 public POIOLE2TextExtractor(POIDocument document)
 {
     this.document = document;
     // Ensure any underlying resources, such as open files,
     //  will get cleaned up if the user calls #close()
     SetFilesystem(document);
 }
コード例 #2
0
        public HPSFPropertiesExtractor(POIDocument doc)
            : base(doc)
        {

        }
コード例 #3
0
ファイル: POITextExtractor.cs プロジェクト: hiodava/Romero
 /// <summary>
 /// Creates a new text extractor, using the same
 /// document as another text extractor. Normally
 /// only used by properties extractors.
 /// </summary>
 /// <param name="otherExtractor">The other extractor.</param>
 protected POITextExtractor(POITextExtractor otherExtractor)
 {
     this.document = otherExtractor.document;
 }
コード例 #4
0
ファイル: POITextExtractor.cs プロジェクト: hiodava/Romero
 /// <summary>
 /// Creates a new text extractor for the given document
 /// </summary>
 /// <param name="document">The document.</param>
 public POITextExtractor(POIDocument document)
 {
     this.document = document;
 }
コード例 #5
0
        /// <summary>
        /// Creates a new text extractor for the given document
        /// </summary>
        /// <param name="document"></param>
        public POIOLE2TextExtractor(POIDocument document)
            : base(document)
        {

        }
コード例 #6
0
ファイル: POITextExtractor.cs プロジェクト: Reinakumiko/npoi
 /// <summary>
 /// Creates a new text extractor, using the same
 /// document as another text extractor. Normally
 /// only used by properties extractors.
 /// </summary>
 /// <param name="otherExtractor">The other extractor.</param>
 protected POITextExtractor(POITextExtractor otherExtractor)
 {
     this.document = otherExtractor.document;
 }
コード例 #7
0
ファイル: POITextExtractor.cs プロジェクト: Reinakumiko/npoi
 /// <summary>
 /// Creates a new text extractor for the given document
 /// </summary>
 /// <param name="document">The document.</param>
 public POITextExtractor(POIDocument document)
 {
     this.document = document;
 }
コード例 #8
0
 /// <summary>
 /// Creates a new text extractor for the given document
 /// </summary>
 /// <param name="document"></param>
 public POIOLE2TextExtractor(POIDocument document)
     : base(document)
 {
 }