Search Results for

    Show / Hide Table of Contents

    Class SvgOptions

    Inheritance
    Object
    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
    ICloneable
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    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
    public SvgOptions()
    | 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
    Type Description
    Int32
    | 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
    Type Description
    Boolean
    | 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
    Type Description
    ICollection<System.String>
    | Improve this Doc View Source

    Values

    Declaration
    public ICollection<string> Values { get; }
    Property Value
    Type Description
    ICollection<System.String>

    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
    public void Clear()
    | Improve this Doc View Source

    Clone()

    Declaration
    public SvgOptions Clone()
    Returns
    Type Description
    SvgOptions
    | 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
    Type Description
    Boolean
    | Improve this Doc View Source

    ContainsKey(String)

    Declaration
    public bool ContainsKey(string key)
    Parameters
    Type Name Description
    System.String key
    Returns
    Type Description
    Boolean
    | 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
    Type Description
    Boolean
    | Improve this Doc View Source

    Remove(String)

    Declaration
    public bool Remove(string key)
    Parameters
    Type Name Description
    System.String key
    Returns
    Type Description
    Boolean
    | 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
    Type Description
    Boolean

    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
    Type Description
    Object

    Implements

    System.Collections.Generic.IDictionary<TKey, TValue>
    System.Collections.Generic.ICollection<T>
    System.Collections.Generic.IEnumerable<T>
    System.Collections.IEnumerable
    System.ICloneable
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX