Show / Hide Table of Contents

    DataObject Class

    .NET Standard 2.x

    Represents an object which can be used for the direct manipulation of controls within a DataWindow object from a script. These controls could be, for example, columns or computed controls.

    Namespace: PowerScript.Bridge

    Assembly: PowerScript.Bridge.dll

    Syntax

      public interface IDataObject : IReadOnlyDataObject, IDataObjectBase, ICloneable<IDataObject>
    

    Constructors

    Name Description
    DataObject(string syntax) Initializes an instance of the DataObject object according to the syntax in the SRD file.
    DataObject(string name, string syntax) Initializes an instance of the DataObject object according to the syntax in the SRD file and specifies the name for the object.
    DataObject(string name, string syntax, Type modelType) Initializes an instance of the DataObject object according to the syntax in the SRD file and specifies the model type and name for the object.

    Property

    Name Return Type Description
    Columns IDwoList<IDwoColumn> Gets or sets the column controls in the DataWindow.
    Computes IDwoList<IDwoCompute> Gets or sets the computed controls in the DataWindow.
    DataWindow IDwoDataWindow Gets or sets the IDwoDataWindow object which contains properties for the DataWindow object.
    Groups IDwoList<IDwoGroup> Gets or sets the properties for the Groups keyword.
    Item[int index] PowerScript.Bridge.IDwoReadOnly Gets the control at the specified index. (Inherited from IReadOnlyDataObject
    Item[string name] PowerScript.Bridge.IDwoReadOnly Gets the control in the DataWindow by its name. (Inherited from IReadOnlyDataObject
    Back to top Generated by Appeon