Skip to main content

ClipboardOptions.ShowProgress Property

Gets or sets whether a progress bar that indicates a data copy operation’s progress is enabled.

Namespace: DevExpress.Export

Assembly: DevExpress.Data.v23.2.dll

NuGet Package: DevExpress.Data

Declaration

[DefaultValue(ProgressMode.Automatic)]
public ProgressMode ShowProgress { get; set; }

Property Value

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.

Remarks

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