s&box docs
API ReferenceSandbox.Bind

public sealed struct Sandbox.Bind.Builder

A helper to create binds between two properties (or whatever you want) Example usage: set "BoolValue" from value of "StringValue" BindSystem.Build.Set( this, "BoolValue" ).From( this, "StringValue" );

Broader workflow and conceptual references connected to this API.

Methods

Showing 12 methods

public Sandbox.Bind.Link FromDictionary(System.Collections.Generic.Dictionary`2<K,V> dict, K key)

public Sandbox.Bind.Link FromObject(object obj)

public Sandbox.Bind.Builder ReadOnly(bool makeReadOnly = True)

Makes the bind link one way. The system will not try to write to the target/right hand property. (The one you set via "From" methods)

Parameters

  • makeReadOnly: Default: True

Metadata

FieldValue
NamespaceSandbox.Bind
Typeclass
AssemblySandbox.Bind
Doc IDT:Sandbox.Bind.Builder

On this page