Class SelectionRowFormatModule
Represents the selection row format module in DocumentEditor.
Inherited Members
Namespace: Syncfusion.Blazor.DocumentEditor
Assembly: Syncfusion.Blazor.DocumentEditor.dll
Syntax
public class SelectionRowFormatModule
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 |
|---|---|
| Task<bool> | A Task representing the asynchronous operation. |
GetHeightAsync()
Gets or Sets the height for selected rows.
Declaration
public Task<double> GetHeightAsync()
Returns
| Type | Description |
|---|---|
| Task<double> | A Task representing the asynchronous operation. |
GetHeightTypeAsync()
Gets or Sets the height type for selected rows.
Declaration
public Task<HeightType> GetHeightTypeAsync()
Returns
| Type | Description |
|---|---|
| Task<HeightType> | A 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 |
|---|---|
| Task<bool> | A Task representing the asynchronous operation. |
SetAllowBreakAcrossPagesAsync(bool)
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 |
|---|---|---|
| bool | value | Specifies the allow break across pages. |
SetHeightAsync(double)
Gets or Sets the height for selected rows.
Declaration
public void SetHeightAsync(double value)
Parameters
| Type | Name | Description |
|---|---|---|
| double | 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(bool)
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 |
|---|---|---|
| bool | value | Specifies the is header. |