LineDisplayMarqueeFormat Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines the constants that indicate the marquee format for the current window.
public enum class LineDisplayMarqueeFormat
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 327680)]
enum class LineDisplayMarqueeFormat
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 327680)]
public enum LineDisplayMarqueeFormat
var value = Windows.Devices.PointOfService.LineDisplayMarqueeFormat.none
Public Enum LineDisplayMarqueeFormat
- Inheritance
-
LineDisplayMarqueeFormat
- Attributes
Windows requirements
Device family |
Windows 10 Fall Creators Update (introduced in 10.0.16299.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v5.0)
|
Fields
Name | Value | Description |
---|---|---|
None | 0 | Marquee scrolling is disabled. |
Walk | 1 | The display is populated by walking data from the opposite end of the display as the scrolling direction. For example, if the scrolling direction is Left, then the viewport is filled by bringing characters in from the right side and scrolling them to the left. |
Place | 2 | The display is populated by placing data. For example, if the scrolling direction is left, then the viewport is filled by placing characters starting at the left side, and beginning scrolling only after the viewport is full. |