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.Edit (ListManager, Int32, Rectangle, Boolean)

Prepares the cell for editing, passing a DataView, row number, Rectangle, and value indicating whether the column is read-only.

[Visual Basic]
Overloads Overridable Public Sub Edit( _
   ByVal source As ListManager, _
   ByVal rowNum As Integer, _
   ByVal bounds As Rectangle, _
   ByVal readOnly As Boolean _
)
[C#]
public virtual void Edit(
   ListManager source,
   int rowNum,
   Rectangle bounds,
   bool readOnly
);
[C++]
public: virtual void Edit(
   ListManager* source,
   int rowNum,
   Rectangle bounds,
   bool readOnly
);
[JScript]
public function Edit(
   source : ListManager,
   rowNum : int,
   bounds : Rectangle,
   readOnly : Boolean
);

Parameters

source
The TBD for the DataGridColumn.
rowNum
The row number in this column which is being edited.
bounds
The bounding rectangle in which the control is to be sited.
readOnly
A value indicating whether the column is a read-only. true if the value is read-only; otherwise, false.

Remarks

Typically, Edit sites a control onto the grid at the location of the cell being edited.

See Also

DataGridColumn Class | DataGridColumn Members | System.WinForms Namespace | DataGridColumn.Edit Overload List