# yuiAuthoredRuntime

A yui authored runtime record carrying schema, schemaVersion, id, nodes, states, and related state.

Last updated: 2026-09-09

Package: ui | Status: source-declared

Tags: cpu, method, source-example, thing, ui, yeho

Build YUI's reusable control, layout, interaction, text, accessibility, and retained-rendering models.

```yh
external thing yuiAuthoredRuntime
```

- text schema: Stores schema as text.
- int schemaVersion: Stores schema version as int.
- text id: Stores id as text.
- list of yuiAuthoredNode nodes: Stores nodes as list of yuiAuthoredNode.
- list of yuiAuthoredState states: Stores states as list of yuiAuthoredState.
- list of yuiAuthoredProperty properties: Stores properties as list of yuiAuthoredProperty.
- list of yuiAuthoredBinding bindings: Stores bindings as list of yuiAuthoredBinding.
- list of yuiAuthoredBindingBucket bindingBuckets: Stores binding buckets as list of yuiAuthoredBindingBucket.
- list of yuiAuthoredOwnerIndexBucket ownerIndex: Stores owner index as list of yuiAuthoredOwnerIndexBucket.
- list of yuiAuthoredDirtyReceipt dirtyReceipts: Stores dirty receipts as list of yuiAuthoredDirtyReceipt.
- int revision: Stores revision as int.
- int mutationRevision: Stores mutation revision as int.
- int lastMutationBindingsScanned: Stores last mutation bindings scanned as int.
- int lastMutationOwnersAffected: Stores last mutation owners affected as int.
- int lastMutationPropertiesUpdated: Stores last mutation properties updated as int.
- text diagnostic: Stores diagnostic as text.
- yuiAuthoredRuntime(text id): Yui authored runtime.
- NodeIndex(text nodeId) returns int: Node index.
- StateIndex(text stateId) returns int: State index.
- PropertyIndex(text ownerId, text propertyName) returns int: Property index.
- OwnerIndex(text ownerId) returns int: Owner index.
- BindingBucketIndex(text stateId) returns int: Binding bucket index.
- BeginMutationBatch(): Begin mutation batch.
- HasDirtyOwner(text ownerId) returns bool: Has dirty owner.
- DirtyReceiptIndex(text ownerId, text dependencyKey, text scope) returns int: Dirty receipt index.
- RecordDirty(text ownerId, text dependencyKey, text scope, text source) returns bool: Record dirty.
- Reject(text operation, text reason) returns bool: Reject.
- Accept(): Accept.
- AddNode(yuiAuthoredNode node) returns bool: Add node.
- AddState(yuiAuthoredState state) returns bool: Add state.
- AddProperty(yuiAuthoredProperty property) returns bool: Add property.
- AddBinding(yuiAuthoredBinding binding) returns bool: Add binding.
- BoundPropertyValue(text ownerId, text propertyName) returns text: Bound property value.
- StateValue(text stateId) returns text: State value.
- ResolvedPropertyValue(text ownerId, text propertyName) returns text: Resolved property value.
- SetState(text stateId, yuiAuthoredValue value) returns bool: Set state.
- SetProperty(text ownerId, text propertyName, yuiAuthoredValue value, text dependencyKey, text scope, text source) returns bool: Set property.
- PropertySummary(text nodeId) returns text: Property summary.
- ToTree() returns yuiTree: To tree.
- ShapeEquivalent(yuiAuthoredRuntime other) returns bool: Shape equivalent.
- StatesEquivalent(yuiAuthoredRuntime other) returns bool: States equivalent.
- PropertiesEquivalent(yuiAuthoredRuntime other) returns bool: Properties equivalent.
- BindingsEquivalent(yuiAuthoredRuntime other) returns bool: Bindings equivalent.
- ContractEquivalent(yuiAuthoredRuntime other) returns bool: Contract equivalent.
- RenderLayoutReport() returns text: Render layout report.
- RenderCommandReport() returns text: Render command report.
- RenderAccessibilityReport() returns text: Render accessibility report.
- RenderPaintReport() returns text: Render paint report.
- RenderReport() returns text: Render report.

## Use yuiAuthoredRuntime

A complete small caller. Values are illustrative; check the returned result and package requirements before connecting live resources.

Verification: type checked

```yh
using ui

// Build YUI's reusable control, layout, interaction, text, accessibility, and retained-rendering models.
yuiAuthoredRuntime sample = yuiAuthoredRuntime("id")
Console.Log(Text.From(sample.schema))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/usage --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.NodeIndex

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Node index.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
text argument_nodeId = "argument node Id"
int result = instance.NodeIndex(argument_nodeId)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-NodeIndex-17 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.StateIndex

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// State index.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
text argument_stateId = "argument state Id"
int result = instance.StateIndex(argument_stateId)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-StateIndex-18 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.PropertyIndex

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Property index.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
text argument_ownerId = "argument owner Id"
text argument_propertyName = "argument property Name"
int result = instance.PropertyIndex(argument_ownerId, argument_propertyName)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-PropertyIndex-19 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.OwnerIndex

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Owner index.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
text argument_ownerId = "argument owner Id"
int result = instance.OwnerIndex(argument_ownerId)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-OwnerIndex-20 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.BindingBucketIndex

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Binding bucket index.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
text argument_stateId = "argument state Id"
int result = instance.BindingBucketIndex(argument_stateId)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-BindingBucketIndex-21 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.BeginMutationBatch

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Begin mutation batch.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
instance.BeginMutationBatch()
Console.Log("BeginMutationBatch completed")

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-BeginMutationBatch-22 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.HasDirtyOwner

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Has dirty owner.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
text argument_ownerId = "argument owner Id"
bool result = instance.HasDirtyOwner(argument_ownerId)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-HasDirtyOwner-23 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.DirtyReceiptIndex

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Dirty receipt index.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
text argument_ownerId = "argument owner Id"
text argument_dependencyKey = "argument dependency Key"
text argument_scope = "argument scope"
int result = instance.DirtyReceiptIndex(argument_ownerId, argument_dependencyKey, argument_scope)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-DirtyReceiptIndex-24 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.RecordDirty

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Record dirty.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
text argument_ownerId = "argument owner Id"
text argument_dependencyKey = "argument dependency Key"
text argument_scope = "argument scope"
text argument_source = "argument source"
bool result = instance.RecordDirty(argument_ownerId, argument_dependencyKey, argument_scope, argument_source)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-RecordDirty-25 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.Reject

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Reject.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
text argument_operation = "argument operation"
text argument_reason = "argument reason"
bool result = instance.Reject(argument_operation, argument_reason)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-Reject-26 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.Accept

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Accept.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
instance.Accept()
Console.Log("Accept completed")

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-Accept-27 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.AddNode

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Add node.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
yuiAuthoredNode argument_node = yuiAuthoredNode("id", "parent Id", "kind", "role", "accessibility Name", "example", true)
bool result = instance.AddNode(argument_node)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-AddNode-28 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.AddState

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Add state.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
yuiAuthoredState argument_state = yuiAuthoredState("id", "type Name", yuiAuthoredValue("kind", "type Name", "encoded"), "example", true)
bool result = instance.AddState(argument_state)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-AddState-29 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.AddProperty

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Add property.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
yuiAuthoredProperty argument_property = yuiAuthoredProperty("owner Id", "Nova", yuiAuthoredValue("kind", "type Name", "encoded"), "example")
bool result = instance.AddProperty(argument_property)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-AddProperty-30 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.AddBinding

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Add binding.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
yuiAuthoredBinding argument_binding = yuiAuthoredBinding("kind", "owner Id", "property Name", "target", "type Name", "example")
bool result = instance.AddBinding(argument_binding)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-AddBinding-31 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.BoundPropertyValue

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Bound property value.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
text argument_ownerId = "argument owner Id"
text argument_propertyName = "argument property Name"
text result = instance.BoundPropertyValue(argument_ownerId, argument_propertyName)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-BoundPropertyValue-32 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.StateValue

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// State value.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
text argument_stateId = "argument state Id"
text result = instance.StateValue(argument_stateId)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-StateValue-33 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.ResolvedPropertyValue

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Resolved property value.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
text argument_ownerId = "argument owner Id"
text argument_propertyName = "argument property Name"
text result = instance.ResolvedPropertyValue(argument_ownerId, argument_propertyName)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-ResolvedPropertyValue-34 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.SetState

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Set state.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
text argument_stateId = "argument state Id"
yuiAuthoredValue argument_value = yuiAuthoredValue("kind", "type Name", "encoded")
bool result = instance.SetState(argument_stateId, argument_value)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-SetState-35 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.SetProperty

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Set property.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
text argument_ownerId = "argument owner Id"
text argument_propertyName = "argument property Name"
yuiAuthoredValue argument_value = yuiAuthoredValue("kind", "type Name", "encoded")
text argument_dependencyKey = "argument dependency Key"
text argument_scope = "argument scope"
text argument_source = "argument source"
bool result = instance.SetProperty(argument_ownerId, argument_propertyName, argument_value, argument_dependencyKey, argument_scope, argument_source)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-SetProperty-36 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.PropertySummary

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Property summary.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
text argument_nodeId = "argument node Id"
text result = instance.PropertySummary(argument_nodeId)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-PropertySummary-37 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.ToTree

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// To tree.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
yuiTree result = instance.ToTree()
Console.Log("Inspect result in your debugger")

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-ToTree-38 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.ShapeEquivalent

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Shape equivalent.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
yuiAuthoredRuntime argument_other = yuiAuthoredRuntime("id")
bool result = instance.ShapeEquivalent(argument_other)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-ShapeEquivalent-39 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.StatesEquivalent

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// States equivalent.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
yuiAuthoredRuntime argument_other = yuiAuthoredRuntime("id")
bool result = instance.StatesEquivalent(argument_other)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-StatesEquivalent-40 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.PropertiesEquivalent

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Properties equivalent.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
yuiAuthoredRuntime argument_other = yuiAuthoredRuntime("id")
bool result = instance.PropertiesEquivalent(argument_other)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-PropertiesEquivalent-41 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.BindingsEquivalent

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Bindings equivalent.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
yuiAuthoredRuntime argument_other = yuiAuthoredRuntime("id")
bool result = instance.BindingsEquivalent(argument_other)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-BindingsEquivalent-42 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.ContractEquivalent

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Contract equivalent.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
yuiAuthoredRuntime argument_other = yuiAuthoredRuntime("id")
bool result = instance.ContractEquivalent(argument_other)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-ContractEquivalent-43 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.RenderLayoutReport

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Render layout report.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
text result = instance.RenderLayoutReport()
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-RenderLayoutReport-44 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.RenderCommandReport

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Render command report.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
text result = instance.RenderCommandReport()
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-RenderCommandReport-45 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.RenderAccessibilityReport

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Render accessibility report.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
text result = instance.RenderAccessibilityReport()
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-RenderAccessibilityReport-46 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.RenderPaintReport

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Render paint report.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
text result = instance.RenderPaintReport()
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-RenderPaintReport-47 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## yuiAuthoredRuntime.RenderReport

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using ui

// Render report.
yuiAuthoredRuntime instance = yuiAuthoredRuntime("id")
text result = instance.RenderReport()
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.ui__yuiauthoredruntime"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "graphics.image"
version = "0.1.0"
path = "../../../yeho/packages/graphics/image"

[[dependencies]]
package = "graphics.text"
version = "0.1.0"
path = "../../../yeho/packages/graphics/text"

[[dependencies]]
package = "host.ui_services"
version = "0.1.0"
path = "../../../yeho/packages/host/ui_services"

[[dependencies]]
package = "ui"
version = "0.2.0"
path = "../../../yeho/packages/ui"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/ui--yuiAuthoredRuntime/method-RenderReport-48 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


Package presence and a declaration do not establish support on every host. Host services need their platform and lifecycle setup.

Source: yeho/packages/ui/authoring-10-runtime.yh

AI training permission: https://demonhunterlabs.com/ai-use
