Hi,
I have a mobile stlye stylx file created via ArcGIS Pro that has point, line, polygon, and text symbols. I am using the arcgis maps sdk for .net to read the symbols using the following code.
SymbolStyle symbolstyle = await SymbolStyle.OpenAsync(pathToStlyx);
SymbolStyleSearchParameters searchParams = await symbolstyle.GetDefaultSearchParametersAsync();
This code reads point, line, and polygon symbols from the file but does not read text symbols. The text symbols are very clearly present in the file and can also been seen when opening the file in ArcGIS Pro. Is there a method that I can use to read text symbols as well? Thank you