Version

InitializeStyle(Style,String,String,String,Int32,String) Method

Initializes a style object with a literal selector.
Syntax
'Declaration
 
Public Overloads Overridable Sub InitializeStyle( _
   ByVal style As Style, _
   ByVal roleName As String, _
   ByVal baseRoleName As String, _
   ByVal literalSelector As String, _
   ByVal priority As Integer, _
   ByVal key As String _
) 
public virtual void InitializeStyle( 
   Style style,
   string roleName,
   string baseRoleName,
   string literalSelector,
   int priority,
   string key
)

Parameters

style
Style to initialize
roleName
Name of style used by control. It is better to be a constant defined in CssNames which starts with prefix "YourControl_".
baseRoleName
Name of shared style. It should be a constant defined in CssNames which starts with prefix "Shared_"
literalSelector
priority
Priority of style. In order to initialize only without adding style to CssBuilder, a negative value should be used.
key
Value for unique key in value of css class name
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