Imports Infragistics.Win
Imports Infragistics.Win.UltraWinToolbars
...
Private Sub ChangethePlacementofToolText_Load(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles MyBase.Load
Me.UltraToolbarsManager1.Tools("NewFile").SharedProps.DisplayStyle = _
ToolDisplayStyle.ImageAndText
Me.UltraToolbarsManager1.Toolbars(1).Settings.CaptionPlacement = _
TextPlacement.BelowImage
End Sub