Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
src_gui_widgets_qcalendarwidget.cpp
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
3
4//! [0]
6calendar->setGridVisible(true);
7//! [0]
8
9
10//! [1]
12calendar->setGridVisible(true);
13calendar->setMinimumDate(QDate(2006, 6, 19));
14//! [1]
15
16
17//! [2]
19calendar->setGridVisible(true);
20calendar->setMaximumDate(QDate(2006, 7, 3));
21//! [2]
22
23
24//! [3]
26
27calendar->setDateRange(min, max);
28//! [3]
29
30
31//! [4]
33
34calendar->setMinimumDate(min);
35calendar->setMaximumDate(max);
36//! [4]
37
38
39//! [5]
41calendar->setGridVisible(true);
42//! [5]
QCalendarWidget * calendar
[0]