DesignerDataView Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a data view in the data store.
public ref class DesignerDataView abstract : System::ComponentModel::Design::Data::DesignerDataTableBase
public abstract class DesignerDataView : System.ComponentModel.Design.Data.DesignerDataTableBase
type DesignerDataView = class
inherit DesignerDataTableBase
Public MustInherit Class DesignerDataView
Inherits DesignerDataTableBase
- Inheritance
Remarks
The DesignerDataView class is one of several types that represent the schema of a data store at design-time. These schema items are made available to controls by designers implementing the IDataEnvironment interface. Controls access schema objects by calling the GetConnectionSchema method of the interface.
The DesignerDataView class represents a single data view in the data store. A collection of DesignerDataView objects is returned when you call the GetSchemaItems method with the schemaClass
parameter set to DesignerDataSchemaClass.Views.
Constructors
DesignerDataView(String, String) |
Initializes a new instance of the DesignerDataView class with the specified name and owner. |
DesignerDataView(String) |
Initializes a new instance of the DesignerDataView class with the specified name. |
Properties
Columns |
Gets a collection of columns defined for a table or view. (Inherited from DesignerDataTableBase) |
Name |
Gets the name of the data-store table or view. (Inherited from DesignerDataTableBase) |
Owner |
Gets the owner of the data-store table or view. (Inherited from DesignerDataTableBase) |
Methods
CreateColumns() |
When overridden in a derived class, returns a collection of data-store column objects. (Inherited from DesignerDataTableBase) |
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |