Class HighlightSourceOrderCommandSettings
Highlights the source order of the children of the DOM node with given id or with the given JavaScript object wrapper. Either nodeId or objectId must be specified.
public sealed class HighlightSourceOrderCommandSettings : ICommand
- Inheritance
-
HighlightSourceOrderCommandSettings
- Implements
- Inherited Members
Properties
BackendNodeId
Identifier of the backend node to highlight.
[JsonPropertyName("backendNodeId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? BackendNodeId { get; set; }
Property Value
- long?
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
NodeId
Identifier of the node to highlight.
[JsonPropertyName("nodeId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? NodeId { get; set; }
Property Value
- long?
ObjectId
JavaScript object id of the node to be highlighted.
[JsonPropertyName("objectId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? ObjectId { get; set; }
Property Value
SourceOrderConfig
A descriptor for the appearance of the overlay drawing.
[JsonPropertyName("sourceOrderConfig")]
public SourceOrderConfig SourceOrderConfig { get; set; }