Gets or sets a value indicating whether to show document pages continuously.
Namespace:
C1.Win.C1PreviewAssembly: C1.Win.C1Report.2 (in C1.Win.C1Report.2.dll)
Syntax
C# |
---|
[RefreshPropertiesAttribute(RefreshProperties.All)] [DefaultValueAttribute(true)] public bool Continuous { get; set; } |
Visual Basic |
---|
<RefreshPropertiesAttribute(RefreshProperties.All)> _ <DefaultValueAttribute(True)> _ Public Property Continuous As Boolean Get Set |
Remarks
The default value for this property is True.
Examples
Setting the Continuous property to False keeps the pages from appearing in continuous view. Instead, the pages will appear side-by-side horizontally.
Copy CodeVisual Basic
Me.C1PrintPreviewControl1.PreviewPane.Continuous = False |
Copy CodeC#
this.c1PrintPreviewControl1.PreviewPane.Continuous = false; |