I am trying to get the selected row from a table.
I have created a TableControl objetc
private TableControl _tableControl = null;
And a method to fetch the selected row(s)
private async Task GetSelectedObjectIdsFromTable()
{
await QueuedTask.Run(() => _selectedObjectIds = _tableControl.GetSeletedObjectIds() as List<long>);
}
The user can from a combobox select a layer from TOC and the content are showend in a tabel in a dockpane. But I can't figure out how I get the selected row from the table.
Visual studio give me a waring to the above method, saying GetSelectedObjectIds are deprecated in 3.1. But what do i use insted?
