Version: 5.4 beta (switch to 5.3)
LanguageEnglish
  • C#
  • JS

Script language

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

Rect.width

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public var width: float;
public float width;

Description

The width of the rectangle, measured from the X position.

Setting this value will also change xMax.

#pragma strict
public class RectExample extends MonoBehaviour {
	// Use this for initialization
	function Start() {
		var rect: Rect = new Rect(10, 10, 50, 30);
		Debug.Log("width = " + rect.width);
		// prints: width = 50
		rect.width = 20;
		Debug.Log("new max x = " + rect.xMax);
		// prints: new max x = 30
	}
}
using UnityEngine;

public class RectExample : MonoBehaviour { // Use this for initialization void Start() { Rect rect = new Rect(10, 10, 50, 30); Debug.Log("width = " + rect.width); // prints: width = 50 rect.width = 20; Debug.Log("new max x = " + rect.xMax); // prints: new max x = 30 } }