AltD Function (Long) | |
Programmatically define a breakpoint in an application.
Namespace:
XSharp.Core
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax FUNCTION AltD(
nMode AS LONG
) AS VOID
public static void AltD(
int nMode
)
Request Example
View SourceParameters
- nMode
- Type: Long
This parameter is ignored in X#
Remarks
AltD() is operational only if the application is being executed by the Debugger.
Remarks This function is inlined by the compiler, but is included so it can be used in Macros as well.
Examples
This example shows how to define a breakpoint in a function using AltD():
1FUNCTION Bad()
2 ...
3 AltD()
4 ...
5 RETURN Value
See Also