Linking

QML properties

  1. Property group: Parent::group.
  2. Property in a group: QDoc.Test::Parent::group.c.

Auto-linking to types in code snippets

import QtQuick

ProgressBar {
    // Linking to int value type
    property int progress: 0
}
// 'int' should not link anywhere in C++ code
int main() { int x{0}; return x; }