ComponentOne ADO.NET DataExtender
C1.C1DataExtender.2 Assembly / C1.C1DataExtender Namespace / C1DataViewSet Class / DataSetShared Property

In This Topic
    DataSetShared Property
    In This Topic
    Allows to specify a DataSet which is situated beyond a Form where this C1DataViewSet is placed as a data source.
    Syntax
    'Declaration
     
    Public Property DataSetShared As System.String
    public System.string DataSetShared {get; set;}
    Remarks
    This property allows you to define a path to some static (shared in VB) public property or field or its nested property that references an object of DataSet derived type. The path definition has the following structure: [NameSpace.]TypeName.StaticPropertyName[.SubPropertyPath] , where the parts in square brackets are optional. [NameSpace.]TypeName - a name of a type that contains a static property, with an optional namespace. StaticPropertyName[.SubPropertyPath] - a name of static property or field of the type, with optional path to subproperty. All the properties or fields in the path must be public. The final property or field of the path must return an object of DataSet derived type.
    See Also