Controls how file attachments are displayed within Chat messages. Choose from ChatMessageFilesLayoutMode options to best fit your application's design: Vertical (default) stacks files vertically, Horizontal arranges files in a single horizontal row, and Wrap wraps files to the next line when they exceed the message width.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public enum ChatMessageFilesLayoutMode
Fields
Files are displayed in a single horizontal row. Use when you prefer a compact, side-by-side presentation for attachments.
Horizontal = 1
Files are displayed in a vertical stack. This is the default behavior and provides consistent readability for varying attachment sizes.
Vertical = 0
Files wrap to the next line when they exceed the available message width. Use when you want responsive layout behavior without overflowing content.
Wrap = 2