We have moved!

You are currently looking at documentation for Umbraco 8 and older versions.
An automated guess is that docs.umbraco.com/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/content-picker/index-vpre8_1 could be the link to the new documentation for Umbraco 9 and newer versions.

    Content Picker

    Alias: Umbraco.ContentPicker

    Returns: IPublishedContent

    The content picker opens a panel to pick a specific page from the content structure. The value saved is the selected nodes UDI

    Data Type Definition Example

    Content Picker Data Type Definition

    Content Example

    Content Picker Content

    Typed Example

    @{
        IPublishedContent typedContentPicker = Model.Value<IPublishedContent>("featurePicker");
        if (typedContentPicker != null)
        {
            <p>@typedContentPicker.Name</p>
        }
    }