I am setting a datasource that contains a column whose width is too big, i would like to limit this to a specific width but only if it exceeds a specific value, i am able to set the width using UltraCombo.DropDownWidth, however the value of this property is -1 before assigning to it. How can i know the width that it will take?
Hello,
Could you please try the following code line and see if it meets your requirements:
ultraCombo1.DisplayLayout.Bands["Band 0"].Columns["Column 0"].MaxWidth = 50;
Please feel free to let me know if I misunderstood you or if you have any other questions.
That was EXACTLY what i needed :) thank you so much!