Hello Team,
I need to write calculated variable from System Macro to User defined text length and width.
Thanks.
Hello Team,
I need to write calculated variable from System Macro to User defined text length and width.
Thanks.
In your system macro, you have to loop the source list entries. Each element in the source list is of type PslSourceString. Here you can set the maximal width, height, etc.
Dim s As PslSourceString
Set s = ...' max width
s.Property(20100) = 123
' max heights.Property(20101) = 12
' font aliass.Property(20102) = HelveticaBold14
' Word wraps.Property(20103) = True
In your system macro, you have to loop the source list entries. Each element in the source list is of type PslSourceString. Here you can set the maximal width, height, etc.
Dim s As PslSourceString
Set s = ...' max width
s.Property(20100) = 123
' max heights.Property(20101) = 12
' font aliass.Property(20102) = HelveticaBold14
' Word wraps.Property(20103) = True