예제 #1
0
 public HorizontalTextExtractionStrategy()
 {
     locationalResultField = typeof(LocationTextExtractionStrategy).GetField("locationalResult", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance);
     textLineFinder        = new TextLineFinder();
 }
예제 #2
0
 public HorizontalTextChunk(String stringValue, Vector startLocation, Vector endLocation, float charSpaceWidth, TextLineFinder textLineFinder)
     : base(stringValue, startLocation, endLocation, charSpaceWidth)
 {
     this.textLineFinder = textLineFinder;
 }