Gets or sets a value indicating whether the Progress Form is displayed.
[Visual Basic]
Public Property ShowProgressForm As Boolean
[C#]
public bool ShowProgressForm {get;set;}
[Delphi]
public property ShowProgressForm: Boolean read get_ShowProgressForm write set_ShowProgressForm;
Example
The following example does not display the Progress form:
' Show Options dialog box.
Me.C1TrueDBGrid1.PrintInfo.ShowProgressForm = False
' Invoke print preview.
Me.C1TrueDBGrid1.PrintInfo.PrintPreview()
· C#
// Show Options dialog box.
this.c1TrueDBGrid1.PrintInfo.ShowProgressForm = false;
// Invoke print preview.
this.c1TrueDBGrid1.PrintInfo.PrintPreview();
· Delphi
// Show Options dialog box.
Self.C1TrueDBGrid1.PrintInfo.ShowProgressForm := False;
// Invoke print preview.
Self.C1TrueDBGrid1.PrintInfo.PrintPreview;
See Also
PrintInfo Class | PrintInfo Members | C1.Win.C1TrueDBGrid Namespace
Send comments about this topic to ComponentOne. Copyright © ComponentOne LLC. All rights reserved. |