Dgs-dxscrollpane
From Multi Theft Auto: Wiki
DGS Properties is always used to change the gui style and make it more fantastic.
This page shows the properties of dgs-dxscrollpane that you could use.
Contents
Main Functions
Properties
bgColor
This property determines the background color of the scroll pane.
dgsSetProperty(scrollpane,"bgColor",bgColor)
- bgColor: An integer of the color that can be converted by tocolor.
bgImage
This property determines the background image of the scroll pane.
dgsSetProperty(scrollpane,"bgImage",bgImage)
- bgImage: A material element that serves as the background image of the scroll pane (texture/shader/screen source/renderTarget).
scrollBarThick
This property determines the thickness of scroll bar.
dgsSetProperty(scrollpane,"scrollBarThick",scrollBarThick)
- scrollBarThick: An integer of the thickness of scroll bar.
scrollBarState
This property forces the visibility of scroll bar. See dgsScrollPaneSetScrollBarState/dgsScrollPaneGetScrollBarState
dgsSetProperty(scrollpane,"scrollBarState",{vertical,horizontal})
- vertical: A bool of the state of the vertical scroll bar.
- horizontal: A bool of the state of the horizontal scroll bar.
- true: Force to be visible
- false: Force to be invisible
- nil: Auto
scrollBarLength
This property forces the length of the cursor of scroll bar to be static instead of being adjusted automatically.
dgsSetProperty(scrollpane,"scrollBarLength",{{VerticalLen,VerticalRelative},{HorizontalLen,HorizontalRelative}})
- VerticalLen: A float of the cursor length of the vertical scroll bar.
- VerticalRelative: A bool indicates whether the length is relative to the size of scroll bar or not.
- HorizontalLen: A float of the cursor length of the horizontal scroll bar.
- HorizontalRelative: A bool indicates whether the length is relative to the size of scroll bar or not.