fixedWidth
If non-0, any GUI elements rendered with this style will have the width specified here.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.IMGUIModule
public float fixedWidth { get; set; }
Examples
using UnityEngine;public class Example : MonoBehaviour{ // Prints the value of fixedWidth. void OnGUI() { Debug.Log(GUI.skin.button.fixedWidth); }}