aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets/qml/qml-documents/LabeledImageBox.qml
blob: bfc5a7b45ebc7eafab24e24fa40b7c6f649fe1ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [document]
// LabeledImageBox.qml
import QtQuick

Rectangle {
    property alias caption: image.caption
    property alias source: image.source
    border.width: 2
    border.color: "black"
    Images.LabeledImage {
        id: image
    }
}
//! [document]