GUIStyle.alignment

var alignment : TextAnchor

Description

Text alignment.

JavaScript
    // Prints how text alignment is set at customStyles[0]
function OnGUI() {
if(GUI.skin.customStyles.Length > 0)
Debug.Log(GUI.skin.customStyles[0].alignment);
}