Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1320
UltraCombo with an embedded UltraWinGrid aligning the header SortIndicators
posted

Hello,

I use an UltraCombo with an UltraDataSource. There was no UltraWinGrid created with the Visual Studio designer on this form.

Everything works as I like but I don’t find out how the SortIndicators in the embedded UltraWinGrid headers can be set to right align.
They are all in a center position as we can see in the image. (marked red)

It looks like that I have to access the hidden UltraWinGrid and then set the right property. 
Over an UltraGridColumn object I can only set the sorting order to ascending or descending.

UltraCombo BibCombo;
UltraGridColumn hBibColumn = BibCombo.DisplayLayout.Bands[0].Columns[c_KeyBib];
hBibColumn.SortIndicator = SortIndicator.Ascending;

Does anybody know the name of the desired property or method is and how to get access to it?

Thank you very much!

regards Frank

Parents Reply Children
No Data