'Declaration Public Function New( _ ByVal dataSource As Object, _ ByVal dataMember As String, _ ByVal valueMember As String, _ ByVal imageMember As String, _ ByVal imageArea As ImageArea, _ ByVal imageSize As Size, _ ByVal displayFormat As String _ )
'Usage Dim dataSource As Object Dim dataMember As String Dim valueMember As String Dim imageMember As String Dim imageArea As ImageArea Dim imageSize As Size Dim displayFormat As String Dim instance As New ComboBoxViewer(dataSource, dataMember, valueMember, imageMember, imageArea, imageSize, displayFormat)
public ComboBoxViewer( object dataSource, string dataMember, string valueMember, string imageMember, ImageArea imageArea, Size imageSize, string displayFormat )
Parameters
- dataSource
- The data source used to populate the combobox.
- dataMember
- The table to bind to within the dataSource.
- valueMember
- A string that specifies the field of the dataSource from which to draw the value.
- imageMember
- A string that specifies the field of the dataSource from which to draw the image.
- imageArea
- An Xceed.Grid.ImageArea value representing the area where the viewer's image is displayed.
- imageSize
- A System.Drawing.Size structure representing the size of the viewer's image.
- displayFormat
- The format with which the selected item is displayed in the combobox.