Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

ScrollRect.horizontal

Switch to Manual
public var horizontal: bool;

Description

Should horizontal scrolling be enabled?

#pragma strict
// Required when Using UI elements.
public var myScrollRect;
public function Start() {
	// Is horizontal scrolling enabled?
	if (myScrollRect.horizontal == true) {
		Debug.Log("Horizontal Scrolling is Enabled!");
	}
}