[]
Gets a style by name or alias.
public Style this[string name] { get; }
Public ReadOnly Default Property Item(name As String) As Style
Type | Name | Description |
---|---|---|
string | name | A style name or alias. |
Type | Description |
---|---|
Style | The style with the specified name or alias. |
Gets a built-in style by its locale independent identifier.
public Style this[BuiltInStyleId id] { get; }
Public ReadOnly Default Property Item(id As BuiltInStyleId) As Style
Type | Name | Description |
---|---|---|
BuiltInStyleId | id | The BuiltInStyleId value that specifies the built in style to retrieve. |
Type | Description |
---|---|
Style | The built-in style. |
Gets a style by its index.
public Style this[int index] { get; }
Public ReadOnly Default Property Item(index As Integer) As Style
Type | Name | Description |
---|---|---|
int | index | The index of a style index in the collection. |
Type | Description |
---|---|
Style | The style with the specified index. |