Controls whether the internal error handler throws an exception or displays a message box (default)


Namespace: rocketsoftware.MVSP
Assembly: RocketMVSP (in RocketMVSP.dll)

Syntax

Visual Basic (Declaration)
Public Property errorMsgBox As Boolean
C#
public bool errorMsgBox { get; set; }
C++
public property bool errorMsgBox sealed  {
    bool get();
    void set(bool value);
}
J#
/** property */
public bool get_errorMsgBox();

/** property */
public void set_errorMsgBox(bool value);
JScript
public function get errorMsgBox() : bool

public function set errorMsgBox(value : bool);

Property Value

True if set to show a message box or false if set to throw an exception

See Also