Is there a way to change column position by X code?
I created one field in grid by code
formBuildGroupControl = element.form().design().control('Grid');
formBuildStringControl = formBuildGroupControl.addDataField(formBuildDataSource.id(), fieldNum(MyTable, MyField));
formBuildStringControl.name('ValueColumn');
adn the other one is created by AOT:

My problem is that the "InvoiceAccount" field appears in the first place on the grid, and the field I created appears in the second place.
My goal is to find a way to move "InvoiceAccount" to the last place on the grid.
The last thing I would like to do is move the code, because I also work on standard code which also creates dynamic fields. The best solution for me would be to move this one field, instead of 5 dynamic fields.
I was looking for a solution to the problem in "FormBuildStringControl", unfortunately there is no method there that could help me.