[]
Gets or sets an expression that identifies the parent group in a recursive hierarchy.
public ExpressionInfo Parent { get; set; }
Type | Description |
---|---|
ExpressionInfo | An ExpressionInfo object containing the parent group in a recursive hierarchy. |
This property only applies if the group has exactly one group expression
Indicates the following:
If filters on the group eliminate the parent of a group instance, it is instead treated as a child of the parent's parent.
Grouping group = new Grouping();
group.Parent = ExpressionInfo.FromString("=Fields!ParentCategory.Value");