Using the C1.Win.C1Preview.C1PrintPreviewControl how can I change the default tab that appears from the PreviewThumbnailView to the PreviewOutlineView?
Thanks in advance for any help.
You can use this "hack":
((TabControl)c1PrintPreviewControl1.PreviewOutlineView.Parent.Parent).SelectedIndex = 1;
Thanks for the help, this is exactly what I was looking for.