Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

EditorGUI.PropertyField

static function PropertyField(position: Rect, property: SerializedProperty, includeChildren: bool = false): bool;
static bool PropertyField(Rect position, SerializedProperty property, bool includeChildren = false);
static def PropertyField(position as Rect, property as SerializedProperty, includeChildren as bool = false) as bool
static function PropertyField(position: Rect, property: SerializedProperty, label: GUIContent, includeChildren: bool = false): bool;
static bool PropertyField(Rect position, SerializedProperty property, GUIContent label, bool includeChildren = false);
static def PropertyField(position as Rect, property as SerializedProperty, label as GUIContent, includeChildren as bool = false) as bool

Parameters

positionRectangle on the screen to use for the property field.
propertyThe SerializedProperty to make a field for.
labelOptional label to use. If not specified the label of the property itself is used. Use GUIContent.none to not display a label at all.
includeChildrenIf 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.