public HPSFPropertiesExtractor(POIDocument doc)
            : base(doc)
        {

        }
Пример #2
0
 /// <summary>
 /// Creates a new text extractor for the given document
 /// </summary>
 /// <param name="document"></param>
 public POIOLE2TextExtractor(POIDocument document)
     : base(document)
 {
 }
Пример #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;
 }
        /// <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;
 }