AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.11.0" />

.NET API 814,592 bytes

 HtmlTextAreaElement

Represents a HTML textarea element.
public int Columns { get; set; }

Gets or sets the cols HTML attribute, indicating the visible width of the text area.

public int Rows { get; set; }

Gets or sets the rows HTML attribute, indicating the number of visible text lines for the control.

public int TextLength { get; }

Gets the codepoint length of the control's value.

public string Type { get; }

Gets the type of input control (texarea).

public string Wrap { get; set; }

Gets or sets the wrap HTML attribute, indicating how the control wraps text.

public HtmlTextAreaElement(Document owner, string prefix = null)

Creates a new HTML textarea element.