Editable Cell

Represents a cell containing an editable text box

Namespace: LSOne.Controls.Cells

Assembly: LSOne.Controls.ListView

Syntax

public class EditableCell : Cell

Editable cell

Constructors

Name Description
EditableCell(string) Initializes a new instance of the EditableCell class
EditableCell(string, LSOne.Controls.ListView) Initializes a new instance of the EditableCell class

Examples


var cell = new EditableCell(item.Text + " value");
row.AddCell(cell);

row.Tag = item;

listView1.AddRow(row);			
		

See also