Interface IControlWithResult
- Namespace
- SunamoShared._public.SunamoInterfaces.Interfaces
- Assembly
- SunamoShared.dll
Represents a control that produces a dialog result.
[ComVisible(true)]
[InterfaceType(ComInterfaceType.InterfaceIsDual)]
public interface IControlWithResult
- Extension Methods
Properties
DialogResult
Sets the dialog result value.
bool? DialogResult { set; }
Property Value
- bool?
Methods
Accept(object)
Accepts the input and processes it.
void Accept(object value)
Parameters
valueobjectThe input value to accept.
FocusOnMainElement()
Sets focus on the main interactive element.
void FocusOnMainElement()
Events
ChangeDialogResult
Occurs when the dialog result changes.
event Action<bool?> ChangeDialogResult