
Initializes a new instance of the InlineStyle class. The first implemation creates an instance based on the TextControl root style named [Normal]. The second implementation creates an instance based on the specified base style. The third constructor creates a new root style that has all attributes of the specified style.
[C#]
public InlineStyle(string name);
public InlineStyle(string name, string baseStyle);
public InlineStyle(InlineStyle style);
[Visual Basic]
Public Sub New(ByVal name As String)
Public Sub New(ByVal name As String, ByVal baseStyle As String)
Public Sub New(ByVal style As InlineStyle)
| Parameter | Description | |
| name | Specifies the new style's name. | |
| baseStyle | Specifies the name of the style the new style based on. | |
| style | Is a style the attributes of which are used to initialize the new style. |