officefileapi-devexpress-dot-spreadsheet-dot-formcontrol.md
Specifies whether to print the form control.
Namespace : DevExpress.Spreadsheet
Assembly : DevExpress.Spreadsheet.v25.2.Core.dll
NuGet Package : DevExpress.Spreadsheet.Core
bool PrintObject { get; set; }
Property PrintObject As Boolean
| Type | Description |
|---|---|
| Boolean |
true to print the form control; otherwise, false.
|
This option also affects the following operations:
The following code snippets (auto-collected from DevExpress Examples) contain references to the PrintObject property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
{
formControl.PrintObject = false;
}
{
formControl.PrintObject = false;
}
{
formControl.PrintObject = false;
}
For Each formControl As DevExpress.Spreadsheet.FormControl In formControls
formControl.PrintObject = False
Next
For Each formControl As FormControl In formControls
formControl.PrintObject = False
Next formControl
See Also