Visual Basic (Declaration) | |
---|---|
<CategoryAttribute("Behavior")> <BrowsableAttribute(False)> <DefaultValueAttribute()> <DescriptionAttribute("Determines whether diagnostic script is displayed as code executes.")> Public Property Debug As Boolean |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As LiveImage Dim value As Boolean instance.Debug = value value = instance.Debug |
C# | |
---|---|
[CategoryAttribute("Behavior")] [BrowsableAttribute(false)] [DefaultValueAttribute()] [DescriptionAttribute("Determines whether diagnostic script is displayed as code executes.")] public bool Debug {get; set;} |
C++/CLI | |
---|---|
[CategoryAttribute("Behavior")] [BrowsableAttribute(false)] [DefaultValueAttribute()] [DescriptionAttribute("Determines whether diagnostic script is displayed as code executes.")] public: property bool Debug { bool get(); void set ( bool value); } |
Property Value
true if a debug window is displayed when callback data is sent/received; false otherwise. The default value is false;This property is intended to be used by application developers to assist in diagnosis of application bugs. Set this property to true to see the JavaScript that is executed on the client-side as a result of the server-side interaction with the controls.
Target Platforms: Microsoft .NET Framework 2.0