[]
Loads a StyleSheet object from a Stream.
public static StyleSheet Load(Stream stream)
| Type | Name | Description |
|---|---|---|
| Stream | stream | A Stream object to load from. |
| Type | Description |
|---|---|
| StyleSheet | A loaded StyleSheet object. |
using (var stream = new MemoryStream(Encoding.Unicode.GetBytes(embeddedStyleSheet.Data)))
{
var styleSheet = StyleSheet.Load(stream);
}
| Type | Condition |
|---|---|
| ArgumentNullException | Throws if |