I like DocumentViewer for display of an XPS document in a WPF application. But I also need to redact the XPS document. I have found stand alone applications (.exe) for redacting XPS. What I need is a WPF control for view and redaction of XPS. Or an extension to DocumentViewer for redaction. The redaction must actually remove the data and not just hide it (this is for a litigation application). Does anyone know of way to view and redact XPS in WPF?
2
There are 2 best solutions below
Related Questions in WPF
- WPF MessageBox Cancel checkbox check
- WPF multiple control property simultaneous changes
- ObservableCollection.CollectionChanged does not select the correct DataTemplate on ToolBar
- Telerik's WPF RadColorPicker NoColorText property not working
- How to automate UI interaction during acceptance test run
- Binding to "this.property" object in VisualStateMenager
- ContextMenu Closes Immediately
- Update ObservableCollection where the items are received from another List
- change content button with trigger
- WPF - How to highlight a combobox border when focused
- Wpf No Highlight on ListBoxItem for Touch Devices
- WPF WebBrowser how best to get Tag trees
- Make a class suitable for Property Change Notification
- WPF Comparing two datatables to find matching values
- how to create folder and file with datetime in wpf application
Related Questions in XPS
- Display XPS Document in WPF
- XAML to XPS memory leak
- WPF find all regex matches in a xps document
- WPF DocumentViewer enable scroll on touch screen for XPS document
- Using CMYK colours in WPF/XAML
- My Print Method Saves An XPS File But Doesn't Print?
- xps document printed from wpf - too short, strange paper size?
- Intercepting PrintDialog to XPS Document Writer
- Simplest way to modify a document "template" and print via WPF?
- Using ITextSharp to generate XPS documents instead of PDF?
- How to create XPS file silently?
- Create an XPS DC in C# with a given filename to be delivered to a printing function
- How to convert from PDF to XPS?
- Silently use Microsoft XPS Document Writer printer to create XPS
- Printing with XPSDocumentWritter on an Epson printer PrintQueue
Related Questions in FLOWDOCUMENTREADER
- Is it possible to place a marker on the scrollbar of FlowDocumentReader?
- Adding a menu item to a FlowDocumentReader ContextMenu
- How can I keep XamlReader.Load(xamlFile) from inserting extra Run elements?
- FlowDocumentReader scroll to top
- FlowDocumentScrollViewer vs FlowDocumentPageViewer
- WPF XPS Redaction
- Positioning a Windows.Controls.Grid in a WPF FlowDocument
- Referencing a FlowDOcument.xaml into the WPF XAML and change reference documents via ComboBox
- How to goto particular page number in flowdocument reader through code in WPF?
- Hide controls in FlowDocumentReader
- Can we programmatically create FlowDocumentReader from the content of RichTexBox?
- RichTextBox becomes ReadOnly when binding it to content from inside FlowDocumentReader
- FlowDocument has too much white space on lines
- FlowDocumentReader - carriage return line feed characters are added to the end of text that has none
- How can i attach ListView to WPF FlowDocumentReader?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
With a custom
DocumentPaginatoryou can control how each element of the document is printed.If you can identify the text ranges you want to redact then you can replace the glyphs with a black visual and not add the text range to the final document.
...
Hmm. As I typed the above it really sounds a bit complex when there are simpler solutions.
* As you replaced the original text, it will not be available in copy/paste actions.
There are plenty of tutorials on how to each the above steps separately. Let me know if you need any additional help.