Show / Hide Table of Contents

    IWindowMeta.Processing Property

    .NET Standard 2.x

    Gets or sets the processing form of DataWindow.

    Namespace: DWNet.Data

    Assembly: DWNet.Data.dll

    Syntax

    DwStyle Processing { get; set; }
    

    Return

    DWNet.Data.DwStyle

    An enum value indicating the processing form of the DataWindow.

    Examples

    The following code example demonstrates how to use the DataWindow property.

    using DWNet.Data;
    using System;
    
    namespace Appeon.ApiDoc.IWindowMetaExamples
    {
        public class ProcessingExample
        {
            private readonly SchoolContext _context;
    
            public ProcessingExample(SchoolContext dataContext)
            {
                // Sets the data context
                _context = dataContext;
            }
    
            public void Example()
            {
                // Instantiates datastore with datawindow: d_department
                var datastore = new DataStore("d_department", _context);
    
                datastore.Retrieve();
    
                // Gets the properties of the DataWindow object.
                var windowMeta = datastore.DwMeta.DataWindow;
                Console.WriteLine("Processing: {0}", windowMeta.Processing);
    
                /*This code produces the following output:
                
                Processing: Grid
                */
            }
        }
    }
    

    Example Refer To

    Model Class: D_Department
    DataWindow File: d_department

    Applies to

    .NET Standard

    2.x

    Back to top Generated by Appeon