GUIText.alignment
var alignment: TextAlignment;
TextAlignment alignment;
alignment as TextAlignment
Description

The alignment of the text.

	guiText.alignment = TextAlignment.Left;
using UnityEngine;
using System.Collections;

public class Example : MonoBehaviour {
    void Example() {
        guiText.alignment = TextAlignment.Left;
    }
}
import UnityEngine
import System.Collections

public class Example(MonoBehaviour):

	def Example() as void:
		guiText.alignment = TextAlignment.Left