GetItems() public method

Gets the items in the collection as a T:object[].
public GetItems ( object editValue ) : object[]
editValue object The collection object being edited.
return object[]
Esempio n. 1
0
 private void ObjectCollectionEditorForm_Load(object sender, EventArgs e)
 {
     foreach (object obj in editor.GetItems(value))
     {
         textBox1.AppendText(obj.ToString() + '\n');
     }
     lines = textBox1.Lines.Length;
 }