Vcl.ComCtrls.TCustomRichEdit.HideScrollBars
Delphi
property HideScrollBars: Boolean read FHideScrollBars write SetHideScrollBars default True;
C++
__property bool HideScrollBars = {read=FHideScrollBars, write=SetHideScrollBars, default=1};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | protected | Vcl.ComCtrls.pas Vcl.ComCtrls.hpp |
Vcl.ComCtrls | TCustomRichEdit |
Description
Determines whether the scroll bars disappear when not needed.
Use HideScrollBars to determine whether the scroll bars disappear from the edit control when the text appears completely within the edit window. Set HideScrollBars to false to prevent the scroll bars from flashing on and off when the contents of the rich edit control change.
HideScrollBars does nothing when the ScrollBars property is set to ssNone (The default for TRichEdit).
See Also
Code Examples