Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

EditorGUI.HandlePrefixLabel

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public static function HandlePrefixLabel(totalPosition: Rect, labelPosition: Rect, label: GUIContent, id: int = 0, style: GUIStyle = EditorStyles.label): void;
public static void HandlePrefixLabel(Rect totalPosition, Rect labelPosition, GUIContent label, int id = 0, GUIStyle style = EditorStyles.label);
public static function HandlePrefixLabel(totalPosition: Rect, labelPosition: Rect, label: GUIContent, id: int = 0, style: GUIStyle = EditorStyles.label): void;
public static void HandlePrefixLabel(Rect totalPosition, Rect labelPosition, GUIContent label, int id = 0, GUIStyle style = EditorStyles.label);
public static function HandlePrefixLabel(totalPosition: Rect, labelPosition: Rect, label: GUIContent, id: int = 0, style: GUIStyle = EditorStyles.label): void;
public static void HandlePrefixLabel(Rect totalPosition, Rect labelPosition, GUIContent label, int id = 0, GUIStyle style = EditorStyles.label);

Parámetros

totalPosition Rectangle on the screen to use in total for both the label and the control.
labelPosition Rectangle on the screen to use for the label.
label Label to show for the control.
id The unique ID of the control. If none specified, the ID of the following control is used.
style Optional GUIStyle to use for the label.

Descripción

Make a label for some control.

HandlePrefixLabel is like PrefixLabel but allows custom control over the label position by supplying its Rect explicitly. PrefixLabel or HandlePrefixLabel should be used when creating a control with a connected label. It ensures that when the label is clicked, the control will get keyboard focus. For this reason it is important that the same ID is supplied to PrefixLabel or HandlePrefixLabel as to the control itself. It is also possible to not supply a Control ID, in which case the one from the immediately following control is automatically used.