# RenderTreeBuilder Extensions

The exntensions allows you create element or component easily

### CreateElement

#### Create normal element

```csharp
builder.CreateElement(0, "div", "content", new { @class="sub-title" });
```

```markup
<div class="sub-title">content</div>
```

### CreateComponent

```csharp
builder.CreateComponent<Component>(0, attributes: new { Active = true, style = "display:flex" });
```

### CreateStyleRegion

```csharp
builder.CreateStyleRegion(selector => {
    selector.AddStyle(".head", new {
        font_size = "16px",
        color = "#ff0000",
        font_weight = "bolder"
    })
    .AddStyle(".bigger", new { animation = "tran 3s" });
    .AddKeyFrames("tran", frame => 
    {
        frame.Add("from", new { width = "0px" })
            .Add("to", new { width = "100px" });
    });    
})
```

{% code title="Output" %}

```css
.head {
    font-size : "16px";
    color : "#ff0000";
    font-weight : "bolder";
}
.bigger {
    animation : tran 3s;
}
@keyframes tran {
    from {
        width : "0px"
    },
    to {
        width : "100px"
    }
}
```

{% endcode %}

### BlazorRenderTree

This is a new class to represent `RenderTree` instance.

```csharp
builder.Open("div").Class("sub-title").Content("content").Close();
```

```markup
<div class="sub-title">content</div>
```

#### Inner Content

```csharp
using(var div = builder.Open("div").Class("sub-title"))
{
    div.Content(inner =>
    {
        inner.Open<NavLink>().Content("Link").Close();
    });
}
```

Use `Open` to start element or component, and use `Close` to be end of element or component

Use `using` key word to auto close.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://playermaker.gitbook.io/componentbuilder/english/extensions/rendertreebuilder-extensions.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
