struct Builder

book_4_sparkGenerated
code_blocksInput

Description

The Builder struct in the Sandbox.Bind namespace is a utility for creating bindings between properties or other elements. It provides a fluent interface to set up these bindings, allowing for flexible and dynamic data connections.

Example usage: To bind the "BoolValue" from the value of "StringValue", you can use the following code:

BindSystem.Build.Set( this, "BoolValue" ).From( this, "StringValue" );

Members

Instance Methods

Member NameSummary
ReadOnlySets the binding to be read-only.
SetConfigures a binding with various overloads to specify the target and change handlers.
FromDefines the source of the binding with multiple overloads for different source types.
FromObjectCreates a binding from a generic object.
FromDictionaryEstablishes a binding from a dictionary entry.