corelibraries-devexpress-dot-export-dot-clipboardoptions-962906be.md
Gets or sets whether a progress bar that indicates a data copy operation’s progress is enabled.
Namespace : DevExpress.Export
Assembly : DevExpress.Data.v25.2.dll
NuGet Package : DevExpress.Data
[DefaultValue(ProgressMode.Automatic)]
public ProgressMode ShowProgress { get; set; }
<DefaultValue(ProgressMode.Automatic)>
Public Property ShowProgress As ProgressMode
| Type | Default | Description |
|---|---|---|
| ProgressMode | Automatic |
A value that specifies if the progress bar is visible when copying very large amounts of RTF or HTML formatted data.
|
Available values:
| Name | Description |
|---|---|
| Automatic |
The progress bar is visible only when copying large portions of RTF- or HTML-formatted data.
| | Always |
The progress bar is always visible when copying data.
| | Never |
The progress bar is never shown.
|
The ShowProgress option is in effect if the ClipboardOptions.ClipboardMode property is set to Formatted. See Clipboard - Copy and Paste Operations. Data Formatting to learn more.
Copying large amounts of RTF- or HTML-formatted data can affect the application performance. Depending on the ShowProgress property value, the application can display a progress bar to indicate that it is currently busy with the copy operation.
See Also