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.

EditorGUI.PropertyField

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 static function PropertyField(position: Rect, property: SerializedProperty, includeChildren: bool = false): bool;
public static bool PropertyField(Rect position, SerializedProperty property, bool includeChildren = false);
public static function PropertyField(position: Rect, property: SerializedProperty, label: GUIContent, includeChildren: bool = false): bool;
public static bool PropertyField(Rect position, SerializedProperty property, GUIContent label, bool includeChildren = false);

Parameters

position Rectangle on the screen to use for the property field.
property The SerializedProperty to make a field for.
label Optional label to use. If not specified the label of the property itself is used. Use GUIContent.none to not display a label at all.
includeChildren If true the property including children is drawn; otherwise only the control itself (such as only a foldout but nothing below it).

Returns

bool True if the property has children and is expanded and includeChildren was set to false; otherwise false.

Description

Make a field for SerializedProperty.