[EditorBrowsableAttribute(EditorBrowsableState.Always)]
public static T InvokeUITypeEditor<T>(
this Component component,
PropertyDescriptor property
)
<ExtensionAttribute>
<EditorBrowsableAttribute(EditorBrowsableState.Always)>
Public Shared Function InvokeUITypeEditor(Of T) (
component As Component,
property As PropertyDescriptor
) As T
Dim component As Component
Dim property As PropertyDescriptor
Dim returnValue As T
returnValue = component.InvokeUITypeEditor(property)
public:
[ExtensionAttribute]
[EditorBrowsableAttribute(EditorBrowsableState::Always)]
generic<typename T>
static T InvokeUITypeEditor(
Component^ component,
PropertyDescriptor^ property
)
[<ExtensionAttribute>]
[<EditorBrowsableAttribute(EditorBrowsableState.Always)>]
static member InvokeUITypeEditor :
component : Component *
property : PropertyDescriptor -> 'T
No code example is currently available or this language may not be supported.
[Missing <param name="property"/> documentation for "M:DevCase.Extensions.ComponentExtensions.ComponentExtensions.InvokeUITypeEditor``1(System.ComponentModel.Component,System.ComponentModel.PropertyDescriptor)"]
No code example is currently available or this language may not be supported.
Dim lb As ListBox = Me.ListBox1
Dim propDescriptor As PropertyDescriptor = TypeDescriptor.GetProperties(lb)(NameOf(lb.Items))
Dim value As ListBox.ObjectCollection = lb.InvokeUITypeEditor(Of ListBox.ObjectCollection)(propDescriptor)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.