[]
Loads the current theme from a stream. This method assumes that stream contains theme in Xml format.
public void Load(Stream stream)
Public Sub Load(stream As Stream)
| Type | Name | Description |
|---|---|---|
| Stream | stream | The source stream. |
Loads the current theme from a stream.
public void Load(Stream stream, C1ThemeFormat format)
Public Sub Load(stream As Stream, format As C1ThemeFormat)
| Type | Name | Description |
|---|---|---|
| Stream | stream | The source stream. |
| C1ThemeFormat | format | The theme persistence format to use. |
Loads the current theme from a file. The theme format determined on the base of the file extension.
public void Load(string fileName)
Public Sub Load(fileName As String)
| Type | Name | Description |
|---|---|---|
| string | fileName | The source file name. |
Loads the current theme from a file.
public void Load(string fileName, C1ThemeFormat format)
Public Sub Load(fileName As String, format As C1ThemeFormat)
| Type | Name | Description |
|---|---|---|
| string | fileName | The source file name. |
| C1ThemeFormat | format | The theme persistence format to use. |