Click or drag to resize

IAppControllerDataItemClassDataGridView Property

Form SOWI App Foundation App Standard see DataGridView

Namespace:  SOWIApp.Foundation
Assembly:  SOWIApp.Foundation (in SOWIApp.Foundation.dll) Version: 19.1.23.1 (19.1.23.622)
Syntax
List<DataGrid> DataGridView { get; }

Property Value

Type: ListDataGrid
Examples
Implement example from AppStandard
public List<SOWIData.Management.DataGrid> DataGridView
{
    get
    {
        try
        {
           if (_DataGridView == null)
           {
                var lProperties = typeof(DataItemClass).GetProperties().ToList();
                _DataGridView = SOWIApp.Management.DataGrid.GetDataGridView(this.AppName, this.TableName, this.UserName, this.ClientID, lProperties);
                SOWIApp.Management.DataGrid.Translate(ref _DataGridView, this.DictionaryUI);
            }
            return _DataGridView;
         }
         catch (Exception ex)
         {
            SIC.Protocol.Write(ref ex);
            throw;
         }
    }
}
See Also