I have a set of selected records from my MapMember (Standalonetable and Feature Layer) by creating a function GetActiveTable() from where I can get their oids. I'm also trying to get the oid of a highlighted feature within the set of selected features. Initially, I'd tried this:
var hltsel = GetActiveTable().GetHighlightSelection().GetObjectIDs();
but that was unable to get a value for the oid.
Is there a way to get the oid of a highlighted selection within a set of selected features?
Thank you.