Commit f9181931 authored by Tebjan Halm's avatar Tebjan Halm Committed by GitHub
Browse files

Merge pull request #292 from mrbean-bremen/initial-overflow

Use Hidden as default SvgOverflow value
parents 2f426fa3 a0ba52d6
...@@ -21,6 +21,9 @@ namespace Svg ...@@ -21,6 +21,9 @@ namespace Svg
[TypeConverter(typeof(SvgOverflowConverter))] [TypeConverter(typeof(SvgOverflowConverter))]
public enum SvgOverflow public enum SvgOverflow
{ {
/// <summary>Overflow is not rendered.</summary>
Hidden,
/// <summary>The value is inherited from the parent element.</summary> /// <summary>The value is inherited from the parent element.</summary>
Inherit, Inherit,
...@@ -30,9 +33,6 @@ namespace Svg ...@@ -30,9 +33,6 @@ namespace Svg
/// <summary>Overflow is rendered.</summary> /// <summary>Overflow is rendered.</summary>
Visible, Visible,
/// <summary>Overflow is not rendered.</summary>
Hidden,
/// <summary>Overflow causes a scrollbar to appear (horizontal, vertical or both).</summary> /// <summary>Overflow causes a scrollbar to appear (horizontal, vertical or both).</summary>
Scroll Scroll
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment