diff --git a/ej2-asp-core-mvc/code-snippet/textarea/rows-cols/razor b/ej2-asp-core-mvc/code-snippet/textarea/rows-cols/razor index 34b0bb655a..91b94fbb75 100644 --- a/ej2-asp-core-mvc/code-snippet/textarea/rows-cols/razor +++ b/ej2-asp-core-mvc/code-snippet/textarea/rows-cols/razor @@ -1,10 +1,10 @@
- @Html.EJS().TextArea("default1").Placeholder("Enter your comments").FloatLabelType(FloatLabelType.Auto).rowsCount(3).columnsCount(35).Render() + @Html.EJS().TextArea("default1").Placeholder("Enter your comments").FloatLabelType(FloatLabelType.Auto).Rows(3).Cols(35).Render()
- @Html.EJS().TextArea("default2").Placeholder("Enter your comments").FloatLabelType(FloatLabelType.Auto).rowsCount(5).columnsCount(40).Render() + @Html.EJS().TextArea("default2").Placeholder("Enter your comments").FloatLabelType(FloatLabelType.Auto).Rows(5).Cols(40).Render()
diff --git a/ej2-asp-core-mvc/code-snippet/textarea/rows-cols/tagHelper b/ej2-asp-core-mvc/code-snippet/textarea/rows-cols/tagHelper index 7a88ca2053..e654f857ca 100644 --- a/ej2-asp-core-mvc/code-snippet/textarea/rows-cols/tagHelper +++ b/ej2-asp-core-mvc/code-snippet/textarea/rows-cols/tagHelper @@ -1,10 +1,10 @@
- +
- +
\ No newline at end of file diff --git a/ej2-asp-core-mvc/textarea/rows-columns.md b/ej2-asp-core-mvc/textarea/rows-columns.md index 5144ebc3bb..75ec400ff9 100644 --- a/ej2-asp-core-mvc/textarea/rows-columns.md +++ b/ej2-asp-core-mvc/textarea/rows-columns.md @@ -15,7 +15,7 @@ Two essential attributes, `rows` and `columns`, play a pivotal role in customizi The `rows`attribute determines the initial visible number of lines within the TextArea, controlling its vertical size. Conversely, the `columns` attribute specifies the visible width of the TextArea in characters per line, determining its initial width. -* You can customize the TextArea control by setting the number of rows using the [RowsCount](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Inputs.TextArea.html#Syncfusion_EJ2_Inputs_TextArea_RowsCount) property and the number of columns using the [ColumnsCount](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Inputs.TextArea.html#Syncfusion_EJ2_Inputs_TextArea_ColumnsCount) property. These properties allow precise control over the dimensions of the TextArea, ensuring it fits seamlessly within the layout of the application. +* You can customize the TextArea control by setting the number of rows using the [Rows](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Inputs.TextArea.html#Syncfusion_EJ2_Inputs_TextArea_Rows) property and the number of columns using the [Cols](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Inputs.TextArea.html#Syncfusion_EJ2_Inputs_TextArea_Cols) property. These properties allow precise control over the dimensions of the TextArea, ensuring it fits seamlessly within the layout of the application. {% if page.publishingplatform == "aspnet-core" %}