Click or drag to resize

ITaskDialogCommandLink Interface

Class representing a command link in ITaskDialog which can be clicked by user to close the form.

Namespace:  EBP.Api.Interfaces.Dialogs
Assembly:  EBP.Api.Common (in EBP.Api.Common.dll) Version: 1.0.2835.45 (1.0.2835.45)
Syntax
public interface ITaskDialogCommandLink : IDisposable, 
	IEquatable<IProxy>

The ITaskDialogCommandLink type exposes the following members.

Properties
  NameDescription
Public propertyId
Gets or sets identifier of command link (this identifier will be returned by ITaskDialog when user click on command link)
Public propertyMainText
Gets or sets the command link main text
Public propertyNote
Gets or sets the command link notes (appears below main text with a small font)
Top
Methods
  NameDescription
Public methodDispose
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable.)
Top
Remarks
The ITaskDialogCommandLink type can be instantiated with EBP.Api.Utils<TExtension>.GetInterface<T>
ITaskDialogCommandLink instance = Utils<ExtensionType>.GetInterface<ITaskDialogCommandLink>();
See Also