combit List & Label 29 - .NET Help
combit.Reporting.DataProviders Namespace / SqlConnectionDataProvider Class / SupportedElementTypes Property
Example


In This Topic
    SupportedElementTypes Property (SqlConnectionDataProvider)
    In This Topic

    Gets or sets the element types that are offered in the Designer. (Default: Table | View from DbConnectionElementTypes)

    Syntax
    'Declaration
     
    
    Public Property SupportedElementTypes As DbConnectionElementTypes
    public DbConnectionElementTypes SupportedElementTypes {get; set;}
    public:
    property DbConnectionElementTypes SupportedElementTypes {
       DbConnectionElementTypes get();
       void set (    DbConnectionElementTypes value);
    }
    Example
    provider.SupportedElementTypes = DbConnectionElementTypes.Table | DbConnectionElementTypes.View;
    provider.SupportedElementTypes = DbConnectionElementTypes.Table Or DbConnectionElementTypes.View
    Requirements

    See Also