Imports System Imports System.ComponentModel Imports DevExpress.Xpo Imports DevExpress.Data.Filtering Imports DevExpress.ExpressApp Imports DevExpress.Persistent.Base Imports DevExpress.Persistent.BaseImpl Imports DevExpress.Persistent.Validation _ Public Class RTFDocumentsCreatorHeader Inherits BaseObject Private _RTFDocumentsCreatorRows As IList(Of RTFDocumentsCreatorRows) Public Sub New(ByVal session As Session) MyBase.New(session) End Sub Public Overrides Sub AfterConstruction() MyBase.AfterConstruction() ' Place here your initialization code. _RTFDocumentsCreatorRows = New List(Of RTFDocumentsCreatorRows) End Sub Property RTFExportFileType As eRTFExportFileType Property FileName As String Property BusinessDirectory As BusinessDirectory ReadOnly Property RTFDocumentsCreatorRows As IList(Of RTFDocumentsCreatorRows) Get Return _RTFDocumentsCreatorRows End Get End Property End Class