aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/qml-extending-types/properties/alias-override.qml
blob: f214e55dc979e9184f8782a63b94cd4f41d7af93 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
//![0]
Rectangle {
    property alias color: childRect.color
    color: "red"

    Rectangle { id: childRect }
}
//![0]