Files
Nuvolar/Nuvolar.Module/Controllers/Interfaces/ModelListViewAllowSortLogic.vb
T
2017-03-08 11:21:27 +01:00

10 lines
388 B
VB.net

Imports DevExpress.ExpressApp.DC
Imports DevExpress.ExpressApp.Model
<DomainLogic(GetType(IModelListViewAllowSort))>
Public NotInheritable Class ModelListViewAllowSortLogic
Public Shared Function Get_AllowSort(ByVal modelListView As IModelListView) As Boolean
Return (CType(modelListView.ModelClass, IModelClassAllowSort)).DefaultListViewAllowSort
End Function
End Class