I have a shapefile that contains both large and small cities. I can succesfully get the PointStyle to be different however the TextStyle doesn't draw, am I doing this wrong?
Dim TownStyles As New ValueStyle()
TownStyles.ColumnName = "SYMBOL"
TownStyles.ValueItems.Add(New ValueItem(100, PointStyles.Capital1))
TownStyles.ValueItems.Add(New ValueItem(100, TextStyles.Capital1("NAME")))
TownStyles.ValueItems.Add(New ValueItem(200, PointStyles.City2))
TownStyles.ValueItems.Add(New ValueItem(200, TextStyles.City2("NAME")))
'Towns.ZoomLevelSet.ZoomLevel01.CustomStyles.Add(TownStyles)