Class SvgOptions
Implements
System.Collections.Generic.IDictionary<System.String, System.String>
ICollection<
System.Collections.Generic.KeyValuePair<
System.String,
System.String>>
IEnumerable<
System.Collections.Generic.KeyValuePair<
System.String,
System.String>>
System.Collections.IEnumerable
Inherited Members
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Svg
Assembly: Svg.dll
Syntax
public class SvgOptions : IDictionary<string, string>, ICollection<KeyValuePair<string, string>>, IEnumerable<KeyValuePair<string, string>>, IEnumerable, ICloneable
Constructors
|
Improve this Doc
View Source
SvgOptions()
Declaration
|
Improve this Doc
View Source
SvgOptions(Dictionary<String, String>)
Declaration
public SvgOptions(Dictionary<string, string> entities)
Parameters
| Type |
Name |
Description |
| Dictionary<System.String, System.String> |
entities |
|
|
Improve this Doc
View Source
SvgOptions(Dictionary<String, String>, String)
Declaration
public SvgOptions(Dictionary<string, string> entities, string css)
Parameters
| Type |
Name |
Description |
| Dictionary<System.String, System.String> |
entities |
|
| System.String |
css |
|
|
Improve this Doc
View Source
SvgOptions(String)
Declaration
public SvgOptions(string css)
Parameters
| Type |
Name |
Description |
| System.String |
css |
|
Properties
|
Improve this Doc
View Source
Count
Declaration
public int Count { get; }
Property Value
|
Improve this Doc
View Source
Css
Declaration
public string Css { get; set; }
Property Value
| Type |
Description |
| System.String |
|
|
Improve this Doc
View Source
Entities
Declaration
public Dictionary<string, string> Entities { get; set; }
Property Value
| Type |
Description |
| Dictionary<System.String, System.String> |
|
|
Improve this Doc
View Source
IsReadOnly
Declaration
public bool IsReadOnly { get; }
Property Value
|
Improve this Doc
View Source
Item[String]
Declaration
public string this[string key] { get; set; }
Parameters
| Type |
Name |
Description |
| System.String |
key |
|
Property Value
| Type |
Description |
| System.String |
|
|
Improve this Doc
View Source
Keys
Declaration
public ICollection<string> Keys { get; }
Property Value
|
Improve this Doc
View Source
Values
Declaration
public ICollection<string> Values { get; }
Property Value
Methods
|
Improve this Doc
View Source
Add(KeyValuePair<String, String>)
Declaration
public void Add(KeyValuePair<string, string> item)
Parameters
| Type |
Name |
Description |
| System.Collections.Generic.KeyValuePair<System.String, System.String> |
item |
|
|
Improve this Doc
View Source
Add(String, String)
Declaration
public void Add(string key, string value)
Parameters
| Type |
Name |
Description |
| System.String |
key |
|
| System.String |
value |
|
|
Improve this Doc
View Source
Clear()
Declaration
|
Improve this Doc
View Source
Clone()
Declaration
public SvgOptions Clone()
Returns
|
Improve this Doc
View Source
Contains(KeyValuePair<String, String>)
Declaration
public bool Contains(KeyValuePair<string, string> item)
Parameters
| Type |
Name |
Description |
| System.Collections.Generic.KeyValuePair<System.String, System.String> |
item |
|
Returns
|
Improve this Doc
View Source
ContainsKey(String)
Declaration
public bool ContainsKey(string key)
Parameters
| Type |
Name |
Description |
| System.String |
key |
|
Returns
|
Improve this Doc
View Source
CopyTo(KeyValuePair<String, String>[], Int32)
Declaration
public void CopyTo(KeyValuePair<string, string>[] array, int arrayIndex)
Parameters
| Type |
Name |
Description |
| System.Collections.Generic.KeyValuePair<System.String, System.String>[] |
array |
|
| Int32 |
arrayIndex |
|
|
Improve this Doc
View Source
GetEnumerator()
Declaration
public IEnumerator<KeyValuePair<string, string>> GetEnumerator()
Returns
| Type |
Description |
| IEnumerator<System.Collections.Generic.KeyValuePair<System.String, System.String>> |
|
|
Improve this Doc
View Source
GetValue(String, String)
Declaration
protected string GetValue(string key, string defaultVal = null)
Parameters
| Type |
Name |
Description |
| System.String |
key |
|
| System.String |
defaultVal |
|
Returns
| Type |
Description |
| System.String |
|
|
Improve this Doc
View Source
Remove(KeyValuePair<String, String>)
Declaration
public bool Remove(KeyValuePair<string, string> item)
Parameters
| Type |
Name |
Description |
| System.Collections.Generic.KeyValuePair<System.String, System.String> |
item |
|
Returns
|
Improve this Doc
View Source
Remove(String)
Declaration
public bool Remove(string key)
Parameters
| Type |
Name |
Description |
| System.String |
key |
|
Returns
|
Improve this Doc
View Source
SetValue(String, String)
Declaration
protected void SetValue(string key, string value)
Parameters
| Type |
Name |
Description |
| System.String |
key |
|
| System.String |
value |
|
|
Improve this Doc
View Source
TryGetValue(String, out String)
Declaration
public bool TryGetValue(string key, out string value)
Parameters
| Type |
Name |
Description |
| System.String |
key |
|
| System.String |
value |
|
Returns
Explicit Interface Implementations
|
Improve this Doc
View Source
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
| Type |
Description |
| System.Collections.IEnumerator |
|
|
Improve this Doc
View Source
ICloneable.Clone()
Declaration
object ICloneable.Clone()
Returns
Implements
System.Collections.Generic.IDictionary<TKey, TValue>
System.Collections.IEnumerable