bool ListBox.HideScrollArrows
Gets/sets whether the built-in up/down scroll arrows are hidden.
Because the appearance of the scroll arrows is not customizable, you may wish to use
this to hide them and provide your own arrows using GUI Button controls.
NOTE: If the list box's "Hide Border" setting is enabled, then the scroll arrows will
also be hidden, since "Hide Border" supersedes "Hide Scroll Arrows". You only need to
use this HideScrollArrows property if you want the border to be shown but the arrows hidden.
Example:
lstSaveGames.HideScrollArrows = true;
will hide the built-in scroll arrows on the list box.
See Also: ListBox.HideBorder
|