Пример #1
0
 /// <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
 /// <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
 /// <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
 /// <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
 /// <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)
 {
 }