Search results

  1. C

    Type Bold/Underlined text in Word

    Solved the issue by using a code stage wit the following code: Dim doc as Object = GetDocument(handle,documentname) Dim range As Object range = doc.Range(startRange, endRange) range.Font.Bold=True
  2. C

    Type Bold/Underlined text in Word

    Hello everyone, I'm trying to type something in Word using MS Word VBO in BluePrism. Type Text works well when writing plain text. However, I cannot find a way to write certain words bold and/or underlined. Is there a way to do this? Thank you!
Top