Class SelectionRowFormatModule
Represents the selection row format module in DocumentEditor.
Inheritance
Namespace: Syncfusion.Blazor.DocumentEditor
Assembly: Syncfusion.Blazor.DocumentEditor.dll
Syntax
public class SelectionRowFormatModule : Object
Constructors
SelectionRowFormatModule(SfDocumentEditor)
Initializes a new instance of the SelectionRowFormatModule class. Default constructor for SelectionRowFormatModule.
Declaration
public SelectionRowFormatModule(SfDocumentEditor baseComponent)
Parameters
Type | Name | Description |
---|---|---|
SfDocumentEditor | baseComponent | An DocumentEdiorComponent instance. |
Properties
DocumentEditor
DocumentEdiorComponent instance.
Declaration
protected SfDocumentEditor DocumentEditor { get; set; }
Property Value
Type |
---|
SfDocumentEditor |
Methods
GetAllowBreakAcrossPagesAsync()
Gets or Sets a value indicating whether to allow break across pages for selected rows.
Declaration
public Task<bool> GetAllowBreakAcrossPagesAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Boolean> | A System.Threading.Tasks.Task representing the asynchronous operation. |
GetHeightAsync()
Gets or Sets the height for selected rows.
Declaration
public Task<int> GetHeightAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Int32> | A System.Threading.Tasks.Task representing the asynchronous operation. |
GetHeightTypeAsync()
Gets or Sets the height type for selected rows.
Declaration
public Task<HeightType> GetHeightTypeAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<HeightType> | A System.Threading.Tasks.Task representing the asynchronous operation. |
GetIsHeaderAsync()
Gets or Sets a value indicating whether the selected rows are header rows or not.
Declaration
public Task<bool> GetIsHeaderAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Boolean> | A System.Threading.Tasks.Task representing the asynchronous operation. |
SetAllowBreakAcrossPagesAsync(Boolean)
Gets or Sets a value indicating whether to allow break across pages for selected rows.
Declaration
public void SetAllowBreakAcrossPagesAsync(bool value)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | value | Specifies the allow break across pages. |
SetHeightAsync(Int32)
Gets or Sets the height for selected rows.
Declaration
public void SetHeightAsync(int value)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | value | Specifies the height. |
SetHeightTypeAsync(HeightType)
Gets or Sets the height type for selected rows.
Declaration
public void SetHeightTypeAsync(HeightType value)
Parameters
Type | Name | Description |
---|---|---|
HeightType | value | Specifies the hight type. |
SetIsHeaderAsync(Boolean)
Gets or Sets a value indicating whether the selected rows are header rows or not.
Declaration
public void SetIsHeaderAsync(bool value)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | value | Specifies the is header. |