Skip to content

ScrollHintMode

Eduard Gushchin edited this page Jul 1, 2026 · 3 revisions

Home | API by Category | Complete API Index | API Compatibility

Field Value
Full name Electron2D.ScrollHintMode
Namespace Electron2D
Kind enum
Category UI and Text

Overview

Describes which scroll hint edges a Electron2D.ScrollContainer may expose.

Syntax

public enum Electron2D.ScrollHintMode : System.IComparable, System.IConvertible, System.IFormattable, System.ISpanFormattable

Godot 4.7 C# profile compatibility

Profile: Electron2D 0.1.0 2D
Status: Supported / Parity verified
Out of profile: no
Godot reference: ScrollContainer.ScrollHintMode

Stored scroll hint policy values accepted by the preview scroll API.

Remarks

The 0.1.0 Preview stores the value for UI policy. Rendering of hint affordances is intentionally left to later widget work.

Since

This enum is available since Electron2D 0.1.0 Preview.

See Also

  • Electron2D.ScrollContainer.ScrollHintMode

Members

Member Kind Summary
All Enum value Allows scroll hints on every edge.
BottomAndRight Enum value Allows hints on the bottom and right edges.
Disabled Enum value Disables scroll hints.
TopAndLeft Enum value Allows hints on the top and left edges.

Member Details

All

Kind: Enum value

public const Electron2D.ScrollHintMode All

Summary

Allows scroll hints on every edge.

Remarks

This value is useful when both axes can scroll.

Since

This enum value is available since Electron2D 0.1.0 Preview.

BottomAndRight

Kind: Enum value

public const Electron2D.ScrollHintMode BottomAndRight

Summary

Allows hints on the bottom and right edges.

Remarks

Use this value for layouts where the end edges are more important.

Since

This enum value is available since Electron2D 0.1.0 Preview.

Disabled

Kind: Enum value

public const Electron2D.ScrollHintMode Disabled

Summary

Disables scroll hints.

Remarks

No edge hint should be rendered for this mode.

Since

This enum value is available since Electron2D 0.1.0 Preview.

TopAndLeft

Kind: Enum value

public const Electron2D.ScrollHintMode TopAndLeft

Summary

Allows hints on the top and left edges.

Remarks

Use this value for layouts where the start edges are more important.

Since

This enum value is available since Electron2D 0.1.0 Preview.

Clone this wiki locally