Version

InitializeStyleRole(Style,Int32,String) Method

Initializes a style object according to the RoleInfo data that is obtained from the StyleInfoCatalog. The RoleInfo is looked up in the StyleInfoCatalog and passed on to the initialization overload for further handling. That is designed in addition to a similar method with 2 parameters. It should be used when control has multiple styles with same role.
Syntax
'Declaration
 
Public Overloads Sub InitializeStyleRole( _
   ByVal style As Style, _
   ByVal roleIndex As Integer, _
   ByVal key As String _
) 
public void InitializeStyleRole( 
   Style style,
   int roleIndex,
   string key
)

Parameters

style
The Style to be initialized with appropriate Css Class Names
roleIndex
The RoleIndex constant defined for this control: i.e. TreeRoles.Node.
key
Additional identifier of role. To avoid possible conflicts with over styles, it must not be null or empty string or digit(s). Suggested values: "ra", "rb", "rc", etc.
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