Welcome to the WinUI feedback portal. We’re happy you’re here! If you have feedback on how to improve the WinUI, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Everything else works correctly, but FontSize is always 1
Dim extractedText As String = page.ExtractText(lineCollection)
Dim lineList As List(Of TextLine) = lineCollection.TextLine()
Dim li As Integer
For li = 0 To lineList.Count - 1
Dim line As TextLine = lineList(li)
Dim textWordCollection As List(Of TextWord) = line.WordCollection
Dim StartWord As Integer = wi
Dim temp As Integer
For temp = 0 To textWordCollection.Count - 1
Dim w As TextWord = textWordCollection(temp)
Dim txt As String = w.Text()
If (txt.Equals(" ")) Then Continue For
Dim bounds As RectangleF = w.Bounds()
Dim fName As String = w.FontName()
Dim fSize As Double = w.FontSize()
Dim fStyle As FontStyle = w.FontStyle()