{% extends "base.html" %} {% block title %}{{ namespace.name }}.{{ class.name }}:{{ property.name }}{% endblock %} {% block meta_other %} {% endblock %} {% block sidebar %}
Type
Properties
{% endblock %} {% block content %}

Property

{{ namespace.name }}{{ class.name }}:{{ property.name }}

{%- if CONFIG.is_unstable(property.available_since) -%} unstable  {%- endif %} {%- if property.deprecated_since -%} deprecated: {{ property.deprecated_since.version }}  {%- endif -%} {%- if property.available_since -%} since: {{ property.available_since }} {%- endif -%}

Declaration

{{ property.c_decl }}

Description {% if CONFIG.source_location_url and property.docs_location %} [src] {% endif %}

{{ property.description }}

Type: {%- if property.is_array -%}An array of {%- endif -%} {%- if property.is_list -%}A list of {%- endif -%} {%- if property.link -%} {{ property.link|safe }} {%- else -%} {{ property.type_cname }} {%- endif -%}

{% if property.stability -%}

Stability: {{ property.stability }}

{%- endif %} {% if property.available_since -%}

Available since: {{ property.available_since }}

{%- endif %} {% if property.deprecated_since -%}

Deprecated since: {{ property.deprecated_since.version }}

{%- if property.deprecated_since.message -%} {{ property.deprecated_since.message }} {%- else -%}

Do not use in newly written code.

{%- endif -%}
{%- endif %}
{% if property.attributes %}
{% for (key, value) in property.attributes.items()|sort %} {% endfor %}
{{ key|escape }}{{ value|escape }}
{% endif %}

Flags

Readable{% if property.readable %}yes{% else %}no{% endif %}
Writable{% if property.writable %}yes{% else %}no{% endif %}
Construct{% if property.construct %}yes{% else %}no{% endif %}
Construct only{% if property.construct_only %}yes{% else %}no{% endif %}
{% endblock %}