Link to home
Start Free TrialLog in
Avatar of gerhardub
gerhardub

asked on

Powershell... next Excel formatting Question

Ok,

We've determined that this works to ADD a comment:

[void] $CurrentSheet.Cells.Item($ServerRow+1,$ServerCol).Addcomment("comment")
[void] $CurrentSheet.Cells.Item($ServerRow+1,$ServerCol).Comment.Text("New comment")

BUT:  How do you set the display size of the (area size) of the comment from Powershell?

I need to size the comment so that it can be hovered over and actually read...

Probably some like a 60 x 15 like rectangle...

Thoughts?
ASKER CERTIFIED SOLUTION
Avatar of cyberkiwi
cyberkiwi
Flag of New Zealand image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of gerhardub
gerhardub

ASKER

Rock on... letme try this... Thank you!