# Preview Action Items

Learn about preview action items in PrintDocument from this WinForms documentation helpfile.

## Content



The **PrintPreview** Control provides the option to set flags indicating which all tools should be available in the preview. For this purpose, the [C1PrintPreviewControl](/componentone/docs/win/online-printdocument/) class provides the [AvailablePreviewActions](/componentone/docs/win/online-printdocument/) property.

So, when you click the **AvailablePreviewActions** property, the following window opens from the Property window.

![Snapshot of Properties window.](https://cdn.mescius.io/document-site-files/images/6772f728-508e-4e80-9394-208f07d64beb/images/available-preview-actions.gif)

You can check or uncheck the preview actions as per your choice using this property. You can also set the flags for tools which you want to preview programmatically:

```csharp
c1PrintPreviewControl1.AvailablePreviewActions = C1.Win.C1Preview.C1PreviewActionFlags.File;
```

This is how the output looks like:

![Snapshot of output](https://cdn.mescius.io/document-site-files/images/6772f728-508e-4e80-9394-208f07d64beb/images/available-preview-fileoperations.png)