Go to field in table

217
2
05-20-2022 10:48 AM
KisakyeM
New Contributor III

I am writing an addin to go to a specified field when the user types the name of that field into an input text box. I attempted to set tablePane.ActiveColumn = fieldname but this property is read only. How can I allow a user to quickly jump to a given field in a table with hundreds of fields?

 

   if (FrameworkApplication.Panes.ActivePane is ITablePane tablePane)
            {
                var fieldname = Interaction.InputBox("Field name", "Field name", "Default", 0, 0);
                //tablePane.ActiveColumn = fieldname
            }

 

@Wolf @UmaHarano @CharlesMacleod 

Tags (1)
0 Kudos
2 Replies
CharlesMacleod
Esri Regular Contributor

We have added this as a new requirement for 3.1.

KisakyeM
New Contributor III

Thanks Charles!

0 Kudos