- wx.lib.docview.DOC_NEW Creates a fresh document.
- wx.lib.docview.DOC_SILENT Silently loads the given document file.
-
- If wx.lib.docview.DOC_NEW is present, a new document will be created and returned,
- possibly after asking the user for a template to use if there is more
- than one document template. If wx.lib.docview.DOC_SILENT is present, a new document
- will be created and the given file loaded into it. If neither of these
- flags is present, the user will be presented with a file selector for
- the file to load, and the template to use will be determined by the
- extension (Windows) or by popping up a template choice list (other
+ * DOC_NEW: Creates a fresh document.
+ * DOC_SILENT: Silently loads the given document file.
+
+ If DOC_NEW is present, a new document will be created and
+ returned, possibly after asking the user for a template to use
+ if there is more than one document template. If DOC_SILENT is
+ present, a new document will be created and the given file
+ loaded into it. If neither of these flags is present, the user
+ will be presented with a file selector for the file to load,
+ and the template to use will be determined by the extension
+ (Windows) or by popping up a template choice list (other