Skip to main content
August 22, 2023
Solved

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

  • August 22, 2023
  • 1 reply
  • 0 views

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!

 

Best answer by MarkMeader

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

1 reply

August 22, 2023

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

KamilaAuthor
August 23, 2023

Thank you Mark, much appreciated!