[This is preliminary documentation and is subject to change.]

Gets value indicating if this button is timer button

Namespace: Tools.WindowsT.IndependentT
Assembly: Tools.Windows (in Tools.Windows.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[BrowsableAttribute(false)]
public bool IsTime { get; }
Visual Basic
<BrowsableAttribute(False)> _
Public ReadOnly Property IsTime As Boolean
	Get
Visual C++
[BrowsableAttribute(false)]
public:
property bool IsTime {
	bool get ();
}
F#
[<BrowsableAttribute(false)>]
member IsTime : bool
JScript
function get IsTime () : boolean

Return Value

True if this button is selected fro timer; false otherwise

Remarks

This property returns correct value only when button is stored in ListWithEvents<(Of <(<'T>)>)> with Owner set to MessageBox. Then its change is reported via INotifyPropertyChanged.

Individual MessageBox implementation may, or may not utilize this property. It can ignore timer button at all or determine it from TimeButton.

See Also

Collapse/expand Version History

1.5.2

  • Property added