arcgis通过标注表达式怎么设置字号的VB代码
时间: 2023-12-10 17:37:41 浏览: 87
arcgis代码片段-----VB
在 ArcGIS 中通过标注表达式设置字号的 VB 代码如下:
```
Function FindLabel ( [FIELD_NAME] )
dim strLabel
strLabel = "<FNT name=""Arial"" size=""12"">" & [FIELD_NAME] & "</FNT>"
FindLabel = strLabel
End Function
```
这个例子中,字体名称为 Arial,字号为 12。你可以根据需要修改字体和字号。注意,这个 VB 代码只适用于 ArcGIS 中的标注表达式,如果你想在其他地方使用,可能需要做一些修改。
阅读全文