AngleSharp by Florian Rappl

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

.NET API 997,888 bytes

 HTMLTextAreaElement

Represents a HTML textarea element.
public enum WrapType

An enumeration with possible wrap types.

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.

Creates a new HTML textarea element.