How to set the Microsoft Word Document's built-in properties?

Hi Communities,

I have an question on how to set the Microsoft Word Document’s built-in properties?

I found that on C#, we can do it per below. but on UiPath Studio, there is no either activity or object could to it. please advise.
"
Microsoft.Office.Core.DocumentProperties properties;

properties = (Microsoft.Office.Core.DocumentProperties)
Globals.ThisDocument.BuiltInDocumentProperties;
"

Hi
Did we try with invoke code activity

@mita29

1 Like

Hi @mita29

Check this link -

You can run .net or C# code to perform this.

Hi @Palaniyappan

Yes, Thank you for your reply. I just imagine that would be nice to do it on process activity rather than call outside code.

Yeah we can execute the peace of code inside UiPath with Invoke code activity

Some of the features or configuration cant be directly handled with UiPath activities but still can be done with UI Ineraction
Though it can be done with UI interaction it takes more time when compared to INVOKE CODE which takes just matter of seconds
That’s why UiPath came with code invoking inside studio itself

@mita29

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.