Enum RenderMode
- Namespace
- SharpConsoleUI.Drivers
- Assembly
- SharpConsoleUI.dll
Specifies the rendering mode for console output.
public enum RenderMode
Fields
Buffer = 1Uses double-buffering for smoother rendering.
This mode accumulates changes in a buffer and renders them all at once, only updating portions of the screen that have changed. This provides smoother visual updates and is recommended for most applications.
Direct = 0Writes directly to the console without buffering.
This mode writes each output operation immediately to the console, which may result in visible flickering during complex updates.