Version

RoundedImageStyle Enumeration

Specifies the style to render RoundedImage.

Image can not be stretched and it is used as it is. While rendering, a tab is subdivided on 2-3 parts and every part is painted separately using different parts of provided image.

Syntax
'Declaration
 
Public Enum RoundedImageStyle 
   Inherits System.Enum
public enum RoundedImageStyle : System.Enum 
Members
MemberDescription
LeftMergedWithCenterThe border and background are not painted.

Tab is devided on 2 parts. To render the left side of tab and its center,- the left part of image is used. To render the right side of tab,- the right part of image is used. The background color is not used.
LeftRightOnlyThe border is not painted and the background of the center part of tab is filled by the BackColor of Style properties.

Tab is devided on 3 parts. To render the left side of tab,- the left part of image is used. To render the right side of tab,- the right part of image is used. Image is not used to fill center part of tab, and an application should provide the background color(s) within the DefaultTabStyle (and HoverTabStyle, SelectedTabStyle and DisabledTabStyle in case of different images) property of UltraWebTab.

Notes:

  • The values of BackColor in Style properties of tabs should match with the background color of images that are used to draw rounded edges.
  • This style allows to uses image(s) with the smallest possible size(s), because the only edges of image are used, however, the center parts of tabs are painted flat.

NoneRounded images are not used.

Tabs are painted using the BackColor and border related subproperties of the Tab's Style properties.
RightMergedWithCenterThe border and background are not painted.

Tab is devided on 2 parts. To render the right side of tab and its center,- the right part of image is used. To render the left side of tab,- the left part of image is used. The background color is not used.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also