Overflow Enum

Overflow enumeration

Specifies the overflow behavior for SVG elements.

public enum Overflow

Values

NameValueDescription
Visible0Content that exceeds the bounds of the element is visible.
Hidden1Content that exceeds the bounds of the element is clipped and not visible.
Scroll2Provides scrollbars for the content that exceeds the bounds of the element.

Remarks

This enumeration controls how content that exceeds the bounds of an SVG element is displayed. It determines whether the excess content is visible, clipped, or provided with scrollbars.

See Also