iLogic code to compose a string

iLogic code to compose a string

Anonymous
Not applicable
957 Views
2 Replies
Message 1 of 3

iLogic code to compose a string

Anonymous
Not applicable

Hi

I need a little help to build a string with some sheet size parameters.

 

I would like to have a string wich looks like : A0 (841 x 1189), created from activesheet.size, activesheet.width and activesheet.height.

 

Then I will place this text on the side of my border, in my drawing template.

 

Thanks 

0 Likes
Accepted solutions (1)
958 Views
2 Replies
Replies (2)
Message 2 of 3

clutsa
Collaborator
Collaborator
Accepted solution

Use "&" to concatenate strings together

iProperties.Value("Custom", "SheetLabel") = ActiveSheet.Size & " (" & ActiveSheet.Width & " x " & ActiveSheet.Height & ")"

make your text box reference your custom iProperty and BOOM your done.

If I've helped you, please help me by supporting this idea.
Mass Override for Each Model State

Custom Glyph Icon for iMates

0 Likes
Message 3 of 3

Anonymous
Not applicable

Thank you very much

0 Likes