View.VerticalScrollBarEnabled Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicate whether the vertical scrollbar should be drawn or not. -or- Define whether the vertical scrollbar should be drawn or not.
public virtual bool VerticalScrollBarEnabled { [Android.Runtime.Register("isVerticalScrollBarEnabled", "()Z", "GetIsVerticalScrollBarEnabledHandler")] get; [Android.Runtime.Register("setVerticalScrollBarEnabled", "(Z)V", "GetSetVerticalScrollBarEnabled_ZHandler")] set; }
[<get: Android.Runtime.Register("isVerticalScrollBarEnabled", "()Z", "GetIsVerticalScrollBarEnabledHandler")>]
[<set: Android.Runtime.Register("setVerticalScrollBarEnabled", "(Z)V", "GetSetVerticalScrollBarEnabled_ZHandler")>]
member this.VerticalScrollBarEnabled : bool with get, set
Property Value
true if the vertical scrollbar should be painted, false otherwise
- Attributes
Remarks
Property getter documentation:
Indicate whether the vertical scrollbar should be drawn or not. The scrollbar is not drawn by default.
Java documentation for android.view.View.isVerticalScrollBarEnabled()
.
Property setter documentation:
Define whether the vertical scrollbar should be drawn or not. The scrollbar is not drawn by default.
Java documentation for android.view.View.setVerticalScrollBarEnabled(boolean)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.