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!

DataGridColumn.GetColumnValueAtRow

Gets the value in the specified row from the specified DataView.

[Visual Basic]
Overridable Public Function GetColumnValueAtRow( _
   ByVal source As ListManager, _
   ByVal rowNum As Integer _
) As Object
[C#]
public virtual object GetColumnValueAtRow(
   ListManager source,
   int rowNum
);
[C++]
public: virtual Object* GetColumnValueAtRow(
   ListManager* source,
   int rowNum
);
[JScript]
public function GetColumnValueAtRow(
   source : ListManager,
   rowNum : int
) : Object;

Parameters

source
The DataView containing the data.
rowNum
The row number containing the data.

Return Value

An Object containing the value.

Exceptions

Exception Type Condition
ApplicationException The TBD for this DataGridColumn hasn't been set yet.

See Also

DataGridColumn Class | DataGridColumn Members | System.WinForms Namespace | SetColumnValueAtRow