parentSemanticsClipRect property

Rect? parentSemanticsClipRect
getter/setter pair

The semantic clip from an ancestor that was applied to this node.

Expressed in the coordinate system of the node. May be null if no clip has been applied.

Descendant SemanticsNodes that are positioned outside of this rect will be excluded from the semantics tree. Descendant SemanticsNodes that are overlapping with this rect, but are outside of parentPaintClipRect will be included in the tree, but they will be marked as hidden because they are assumed to be not visible on screen.

If this rect is null, all descendant SemanticsNodes outside of parentPaintClipRect will be excluded from the tree.

If this rect is non-null it has to completely enclose parentPaintClipRect. If parentPaintClipRect is null this property is also null.

Implementation

Rect? parentSemanticsClipRect;