<PrimerTextArea Placeholder="Enter your notes"
@bind-Value="note"
Size="InputSize.Large"
State="InputState.Valid"
Width="500"
Height="300"
Resize="ResizeBehavior.None"
BgColor="InputBgColor.Inset" />
Available options for PrimerTextArea
Name | Description | Default Value |
---|---|---|
Placeholder | Placeholder text shown inside the textarea | - |
Value | Textarea content | - |
Size | Textarea size (Small, Medium, Large) | Medium |
State | Input validation state (Default, Valid, Invalid) | Default |
Width | Fixed width in pixels | - |
Height | Fixed height in pixels | - |
Resize | Control resize behavior (None, Vertical, Horizontal, Both) | Vertical |
BgColor | Background color | CanvasSubtle |
private string note = "";