V8RuntimeFormatCode Property |
Enables or disables script code formatting.
Namespace: Microsoft.ClearScript.V8Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.4.5
Syntax public bool FormatCode { get; set; }
Public Property FormatCode As Boolean
Get
Set
public:
property bool FormatCode {
bool get ();
void set (bool value);
}
member FormatCode : bool with get, set
Property Value
BooleanRemarks
When this property is set to true, the V8 runtime may format script code before
executing or compiling it. This is intended to facilitate interactive debugging. The
formatting operation currently includes stripping leading and trailing blank lines and
removing global indentation.
See Also