Enum Overflow
Namespace: Aspose.Svg.Builder
Assembly: Aspose.SVG.dll (25.5.0)
Specifies the overflow behavior for SVG elements.
[ComVisible(true)]
public enum Overflow
Fields
Hidden = 1
Content that exceeds the bounds of the element is clipped and not visible.
The ‘hidden’ value causes any content that overflows the element’s box to be clipped and not displayed. This is useful for maintaining strict boundaries for the element’s content.
Scroll = 2
Provides scrollbars for the content that exceeds the bounds of the element.
The ‘scroll’ value adds scrollbars to the element, allowing the user to scroll to see the overflow content. This is useful when the content is too large to fit within the element’s bounds but should still be accessible to the user.
Visible = 0
Content that exceeds the bounds of the element is visible.
The ‘visible’ value allows content to overflow the element’s box and be visible outside its bounds. This is useful when the overflow is intentional and should be displayed.
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.