Class GetContainerForNodeCommandSettings
Returns the query container of the given node based on container query conditions: containerName, physical and logical axes, and whether it queries scroll-state or anchored elements. If no axes are provided and queriesScrollState is false, the style container is returned, which is the direct parent or the closest element with a matching container-name.
public sealed class GetContainerForNodeCommandSettings : ICommand
- Inheritance
-
GetContainerForNodeCommandSettings
- Implements
- Inherited Members
Properties
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
ContainerName
Gets or sets the containerName
[JsonPropertyName("containerName")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? ContainerName { get; set; }
Property Value
LogicalAxes
Gets or sets the logicalAxes
[JsonPropertyName("logicalAxes")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public LogicalAxes? LogicalAxes { get; set; }
Property Value
NodeId
Gets or sets the nodeId
[JsonPropertyName("nodeId")]
public long NodeId { get; set; }
Property Value
PhysicalAxes
Gets or sets the physicalAxes
[JsonPropertyName("physicalAxes")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public PhysicalAxes? PhysicalAxes { get; set; }
Property Value
QueriesAnchored
Gets or sets the queriesAnchored
[JsonPropertyName("queriesAnchored")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? QueriesAnchored { get; set; }
Property Value
- bool?
QueriesScrollState
Gets or sets the queriesScrollState
[JsonPropertyName("queriesScrollState")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? QueriesScrollState { get; set; }
Property Value
- bool?