Visual Basic (Declaration) | |
---|---|
<CategoryAttribute("Behavior")> <DescriptionAttribute("Set to the ID of a control which will display a message while a callback is pending")> <DefaultValueAttribute()> Public Property WaitElementID As String |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As LiveImage Dim value As String instance.WaitElementID = value value = instance.WaitElementID |
C# | |
---|---|
[CategoryAttribute("Behavior")] [DescriptionAttribute("Set to the ID of a control which will display a message while a callback is pending")] [DefaultValueAttribute()] public string WaitElementID {get; set;} |
C++/CLI | |
---|---|
[CategoryAttribute("Behavior")] [DescriptionAttribute("Set to the ID of a control which will display a message while a callback is pending")] [DefaultValueAttribute()] public: property String^ WaitElementID { String^ get(); void set ( String^ value); } |
Property Value
The ID of an HTML element, such as a Label, that will display a message during pending callbacks.Use in conjunction with the WaitMessage property.
Set WaitElementID to specify the ID of the control that will display the WaitMessage during a pending callback.
Typical usage would be for immediately displaying a message (such as "Processing..") to the user during lengthy callbacks (due to network traffic or server side processing).
Target Platforms: Microsoft .NET Framework 2.0