Class Editors
Contains methods to call common editors.
Inheritance
System.Object
Editors
Namespace: FastReport.Utils
Assembly: FastReport.dll
Syntax
public static class Editors
Remarks
Use this class if you are writing a new component for FastReport.
Methods
EditBandColumns(BandColumns)
Invokes the data band columns editor.
Declaration
public static BandColumns EditBandColumns(BandColumns columns)
Parameters
Type | Name | Description |
---|---|---|
BandColumns | columns | The data band columns to edit. |
Returns
Type | Description |
---|---|
BandColumns |
EditBorder(Border)
Invokes the border editor.
Declaration
public static Border EditBorder(Border border)
Parameters
Type | Name | Description |
---|---|---|
Border | border | The Border to edit. |
Returns
Type | Description |
---|---|
Border | The new border. |
EditExpression(Report, String)
Invokes the expression editor.
Declaration
public static string EditExpression(Report report, string expression)
Parameters
Type | Name | Description |
---|---|---|
Report | report | A reference to the report. |
System.String | expression | The expression to edit. |
Returns
Type | Description |
---|---|
System.String | The new expression. |
EditFill(FillBase)
Invokes the fill editor.
Declaration
public static FillBase EditFill(FillBase fill)
Parameters
Type | Name | Description |
---|---|---|
FillBase | fill | The fill to edit. |
Returns
Type | Description |
---|---|
FillBase | The new fill. |
EditOutline(TextOutline)
Invokes the outline editor.
Declaration
public static TextOutline EditOutline(TextOutline outline)
Parameters
Type | Name | Description |
---|---|---|
TextOutline | outline | The outline to edit. |
Returns
Type | Description |
---|---|
TextOutline | The new outline. |
EditText(Report, String, Boolean)
Invokes the text editor.
Declaration
public static string EditText(Report report, string text, bool hideDataBar = true)
Parameters
Type | Name | Description |
---|---|---|
Report | report | A reference to the report. May be null |
System.String | text | The text to edit. |
System.Boolean | hideDataBar | True to hide data tree part. |
Returns
Type | Description |
---|---|
System.String | The new text. |