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

Gets text of button with possible time text and platform-specific accesskey indication

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 virtual string TextIncludingAccessKeyAndTimer { get; }
Visual Basic
<BrowsableAttribute(False)> _
Public Overridable ReadOnly Property TextIncludingAccessKeyAndTimer As String
	Get
Visual C++
[BrowsableAttribute(false)]
public:
virtual property String^ TextIncludingAccessKeyAndTimer {
	String^ get ();
}
F#
[<BrowsableAttribute(false)>]
abstract TextIncludingAccessKeyAndTimer : string
[<BrowsableAttribute(false)>]
override TextIncludingAccessKeyAndTimer : string
JScript
function get TextIncludingAccessKeyAndTimer () : String

Return Value

If OwnerMessageBox is not set return Text; if this button is not time button or owning messagebox is not counting douw, returns TextIncludingAccessKey; otherwise returns TextIncludingAccessKey appedned by TimerFormat-formatted OwnerMessageBox.CurrentTimer enclosed in braces (()).

Remarks

Change of this property is notofied via INotifyPropertyChanged. In order this to work correctly button must be stored in ListWithEvents<(Of <(<'T>)>)> with Owner set to MessageBox.

See Also

Collapse/expand Version History

1.5.2

  • Property added