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
765
UltraDockManager change the Height Caption
posted

Hi.


infragistics 11.2 to use.
Caption of the respective ULtraWindock.UltraDockManager ControlPane would like to adjust the Height.
How do you use to change the Height Caption this?


  • 23930
    Verified Answer
    Offline posted

    Hello,

    The height of the caption of the UltraDockManagerPane depends on the size of the text and the images inside it as it is designed to fit all of them. So to control its height you have to change either the size of the images or the size of the text inside. To do that you could use code like:

                   ultraDockManager1.ImageSizeCaption = new Size(30, 30);

    or

                   ultraDockManager1.DefaultPaneSettings.CaptionAppearance.FontData.SizeInPoints = 10;

    Please let me know if you have any additional questions.