This commit is contained in:
Digital Data - Marlon Schreiber
2017-10-06 14:12:27 +02:00
parent 6874538dfc
commit aac764e521
324 changed files with 608 additions and 371 deletions

View File

@@ -0,0 +1,13 @@
Public Class DocumentViewerEx
Public ReadOnly Property DocumentViewer() As DevExpress.XtraPrinting.Preview.DocumentViewer
Get
Return DocumentViewer1
End Get
End Property
Public WriteOnly Property Source() As Object
Set(value As Object)
DocumentViewer1.DocumentSource = value
End Set
End Property
End Class