RenderTreeEditType Enum

Definition

Types in the Microsoft.AspNetCore.Components.RenderTree are not recommended for use outside of the Blazor framework. These types will change in future release.

public enum class RenderTreeEditType
public enum RenderTreeEditType
type RenderTreeEditType = 
Public Enum RenderTreeEditType
Inheritance
RenderTreeEditType

Fields

PermutationListEnd 10

Indicates that the preceding series of PermutationListEntry entries is now complete.

PermutationListEntry 9

An entry in a sparse permutation list. That is, a list of old indices with corresponding new indices, which altogether describe a valid permutation of the children at the current edit position.

PrependFrame 1

Indicates that a new frame should be inserted before the specified tree frame.

RemoveAttribute 4

Indicates that a named attribute should be removed from the specified frame.

RemoveFrame 2

Indicates that the specified tree frame should be removed.

SetAttribute 3

Indicates that an attribute value should be applied to the specified frame. This may be a change to an existing attribute, or the addition of a new attribute.

StepIn 6

Indicates that the edit position should move inside the specified frame.

StepOut 7

Indicates that there are no further edit operations on the current frame, and the edit position should move back to the parent frame.

UpdateMarkup 8

Indicates that the markup content of the specified frame (which must be a markup frame) should be updated.

UpdateText 5

Indicates that the text content of the specified frame (which must be a text frame) should be updated.

Applies to