Can I use api.data.calculate to insert text?

Kamila
New Contributor III

Hi Team,

I wanted to insert a text to data cell (for example 'Add comment'). Is it possible to be done by using api.data.calculate?

This is how I see this:

Dim Comment As String = "Add comment"

api.data.calculate("V#Annotation:A#xxx:F#xxx:O#xxx:I#xxx:U1#xxx:U2#xxx:U3#xxx:U4#xxx:U5#xxx:U6#xxx:U7#xxx:U8#xxx=" & Comment)

 

Thanks a lot!

 

1 ACCEPTED SOLUTION

MarkMeader
New Contributor III

Hi Kamila

There is a api.Data.SetDataAttachmentText( ) function to use for setting text annotations

So something like this will work:
api.Data.SetDataAttachmentText("V#Annotation:A#xxx:F#xxx:O#xxx:I#xxx:U1#xxx:U2#xxx:U3#xxx:U4#xxx:U5#xxx:U6#xxx:U7#xxx:U8#xxx", False)

 

The false prevent  text accumulating if text already exists in the POV so can be toggled on or off

View solution in original post

2 REPLIES 2

MarkMeader
New Contributor III

Hi Kamila

There is a api.Data.SetDataAttachmentText( ) function to use for setting text annotations

So something like this will work:
api.Data.SetDataAttachmentText("V#Annotation:A#xxx:F#xxx:O#xxx:I#xxx:U1#xxx:U2#xxx:U3#xxx:U4#xxx:U5#xxx:U6#xxx:U7#xxx:U8#xxx", False)

 

The false prevent  text accumulating if text already exists in the POV so can be toggled on or off

Kamila
New Contributor III

Thank you Mark, much appreciated!