Desktop Functions: Smart Device Functions:
|
Search Results for "COMBOBOXINFO" in [All]shlwapiSee also GetComboBoxInfo user32
public static extern bool GetComboBoxInfo(IntPtr hWnd, ref COMBOBOXINFO pcbi);
Public Shared Function GetComboBoxInfo(ByVal hWnd As IntPtr, ByRef pcbi As COMBOBOXINFO) As Boolean
public struct COMBOBOXINFO {
Public Structure COMBOBOXINFO
COMBOBOXINFO cbi = new COMBOBOXINFO();
if(GetComboBoxInfo(comboBox1.Handle, ref cbi)) {
Dim cbi As COMBOBOXINFO
If GetComboBoxInfo(comboBox1.Handle, cbi) Then Structures3: COMBOBOXINFO
|