Click or drag to resize
AceoffixCtrlJsFunction_AfterDocumentClosed Property
Sets a JavaScript function for AfterDocumentClosed event.

Namespace: Aceoffix
Assembly: Aceoffix (in Aceoffix.dll) Version: 5.0.0.1
Syntax
public string JsFunction_AfterDocumentClosed { get; set; }

Property Value

Type: String
The property has no default value.
Remarks

This event is triggered at the client-side after the document is closed.

If you want to capture this event, You should define a JavaScript function in the aspx file of current page.

Examples

The following code example shows how to use the JsFunction_AfterDocumentClosed property.

AceoffixCtrl1.JsFunction_AfterDocumentClosed = "AfterDocumentClosed()";

And then, you should define the AfterDocumentClosed() JavaScript function in the aspx file of current page.

JavaScript
<script language="javascript" type="text/javascript">
    function AfterDocumentClosed() {
        // Add your code here.
    }
</script>
See Also