Hi,
I am trying to get the value using inspector but i am deadlocked and I don't know how to get the value which is shown in the image.
Sample code:
var selection = MapView.Active.SelectFeatures(geo);
List<long> selectList = selection[featureToVerPom];
foreach (long objektd in selectList)
{
var inspector = new Inspector();
inspector.Load(featureToVerPom, objektd);
var strana = inspector.GetEnumerator();
}
Solved! Go to Solution.
Hi,
Are you going to read attributes of loaded feature?
If yes, then you can do it like this:
var value = inspector[fieldName];
Hi,
Are you going to read attributes of loaded feature?
If yes, then you can do it like this:
var value = inspector[fieldName];
Hi,
I've done this several times in other projects and now I'm coming up with useless things.
Thank you so much.