aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/qml-extending-types/properties/alias.qml
blob: c6adac69fac19052ddad98dfc130293a05268267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
//![0]
// Button.qml
import QtQuick

Item {
    property alias buttonText: textItem.text

    width: 200; height: 50

    Text { id: textItem }
}
//![0]