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, String)

Prepares the cell for editing, passing the specified TBD, row number, Rectangle, argument indicating whether the column is read-only, and the text to display in the new control.

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

Parameters

source
A TBD asssociated with the DataGridColumn.
rowNum
The row number in this column which is being edited.
bounds
The 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.
instantText
The text to display in the control.

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