Property

Method

Event

 

 

EnableHorzScrollbar

Enables or disables the horizontal scroll bar.

Syntax

    HRESULT EnableHorzScrollbar(
    long flag
    );

Parameters

flag

[in] Whether to enable or disable the horizontal scroll bar.

0

Disable

others

Enable

Return Values

0 (always)

Sample Codes

VBScript

dim object
set object = document.editForm
object.wec.EnableHorzScrollbar 1
' Enables the horizontal scroll bar.