Table of Contents

Method EditPropertyWithListEditor

Namespace
Alternet.UI
Assembly
Alternet.UI.Common.dll

EditPropertyWithListEditor(object?, PropertyInfo?)

Edits property with list editor.

public static bool? EditPropertyWithListEditor(object? instance, PropertyInfo? propInfo)

Parameters

instance object

Object which contains the property.

propInfo PropertyInfo

Property information.

Returns

bool?

null if property editing is not supported; true if editing was performed and user pressed 'Ok' button; false if user pressed 'Cancel' button.

Remarks

List editor must support editing of the property.

EditPropertyWithListEditor(object?, string)

Edits property with list editor.

public static bool? EditPropertyWithListEditor(object? instance, string propName)

Parameters

instance object

Object which contains the property.

propName string

Property name.

Returns

bool?

null if property editing is not supported; true if editing was performed and user pressed 'Ok' button; false if user pressed 'Cancel' button.

Remarks

List editor must support editing of the property.