Fonts in Portal (Arcade Expression)

313
0
05-27-2020 07:48 PM
BryceChristie
New Contributor II

I have a number of feature layers which all have two fields which are labelled "POI_LABEL_SET_A" & "POI_LABEL_SET_B". Within these fields are symbols which correspond to the symbols set within the "HemaSymbelSetA" & "HemaSymbelSetB". 

What I see in ArcPro:

image.png

What I see in Portal:

image.png

Both font types have been installed on the Portal server.

The expression that had been using was a VB Script. I am unfamiliar with Arcade Expressions and I was curious as to whether someone could help me with rewriting into an Arcade Expression so the correct fonts are being used for those two fields in labelling?
VB Script:
Function FindLabel ( [POI_LABEL_SET_A], [POI_LABEL_SET_B] )
  LabelA = Replace(Replace([POI_LABEL_SET_A],"&","&amp;"), "<", "&lt;")
  LabelB = Replace(Replace([POI_LABEL_SET_B],"&","&amp;"), "<", "&lt;")
  FindLabel = LabelA & "<FNT name='HemaSymbolSetB' size='18'>"&LabelB&"</FNT>"
End Function
Any assistance would be appreciated!
Thank you!
0 Replies