NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

DataView.IsOpen

Gets a value indicating whether the data source is currently open and projecting views of data on the DataTable.

[Visual Basic]
Protected ReadOnly Property IsOpen As Boolean
[C#]
protected bool IsOpen {get;}
[C++]
protected: __property bool get_IsOpen();
[JScript]
protected function get IsOpen() : Boolean;

Property Value

true, if the source is open; otherwise, false.

Remarks

A DataView is a "view" on a DataTable because it provides custom sorting and filtering of the data. The IsOpen property can be queried to determine if a DataView has been opened using the Open method.

See Also

DataView Class | DataView Members | System.Data Namespace | Open