Populates the list box with items from IEnumerable object.

Namespace: Dapfor.Net.Editors
Assembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)

Syntax

C#
public override void Populate(
	ListBox listBox,
	Object value,
	ref ContentAlignment alignment
)
Visual Basic
Public Overrides Sub Populate ( 
	listBox As ListBox,
	value As Object,
	ByRef alignment As ContentAlignment
)
Visual C++
public:
virtual void Populate(
	ListBox^ listBox, 
	Object^ value, 
	ContentAlignment% alignment
) override
F#
abstract Populate : 
        listBox : ListBox * 
        value : Object * 
        alignment : ContentAlignment byref -> unit 
override Populate : 
        listBox : ListBox * 
        value : Object * 
        alignment : ContentAlignment byref -> unit 

Parameters

listBox
Type: System.Windows.Forms..::..ListBox
The list box.
value
Type: System..::..Object
The value to be edited.
alignment
Type: System.Drawing..::..ContentAlignment%
The alignment.

See Also