Type Bold/Underlined text in Word

c.uyuk

New Member
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!
 

c.uyuk

New Member
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
 

Sukesh Kumaru

Active Member
Hello,

In that case, use "Global Send Keys".

Send [CTRL] + and send the actual text you want to type in Bold.

Good Luck.
 
Top