This example demonstrates a RadTabStrip that contains images in its tabs. Use the Image property to set a picture for a given tab. The relation between the picture and the text is set by TextImageRelation property. Possible values are defined in the TextImageRelation enumeration: Overlay, ImageAboveText, TextAboveImage, TextBeforeImage, and ImageBeforeText. You can set this relation either in Visual Studio 2005 property grid, or programmatically in the following way:

     tabItem1.TextImageRelation = TextImageRelation.ImageBeforeText;