18 lines
598 B
VB.net
18 lines
598 B
VB.net
Imports System.ComponentModel
|
|
Imports DevExpress.DataAccess.ObjectBinding
|
|
|
|
Namespace Report
|
|
<HighlightedClass, DisplayName("ReportSource")>
|
|
Public Class ReportSource
|
|
<HighlightedMember>
|
|
Public Property Head As ReportHead
|
|
<HighlightedMember>
|
|
Public Property Positions As IEnumerable(Of ReportPosition)
|
|
<HighlightedMember>
|
|
Public Iterator Function GetPositionList() As IEnumerable(Of ReportPosition)
|
|
For Each oPosition In Positions
|
|
Yield oPosition
|
|
Next
|
|
End Function
|
|
End Class
|
|
End Namespace |