# Sandbox.Bind.Builder

A helper to create binds between two properties (or whatever you want)

Example usage: set "BoolValue" from value of "StringValue"

```csharp
BindSystem.Build.Set( this, "BoolValue" ).From( this, "StringValue" );
```

- Kind: struct
- Namespace: `Sandbox.Bind`
- Assembly: `Sandbox.Bind`
- Modifiers: sealed

## Methods

- [`From`](/api/Sandbox.Bind.Builder/From)
- [`FromConsoleVariable`](/api/Sandbox.SandboxToolExtensions/FromConsoleVariable): Bind the Left hand side to the value of the given console variable.
- [`FromConsoleVariableInt`](/api/Sandbox.SandboxToolExtensions/FromConsoleVariableInt): Bind the Left hand side to the value of the given console variable as an integer.
- [`FromDictionary`](/api/Sandbox.Bind.Builder/FromDictionary)
- [`FromObject`](/api/Sandbox.Bind.Builder/FromObject)
- [`ReadOnly`](/api/Sandbox.Bind.Builder/ReadOnly): 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)
- [`Set`](/api/Sandbox.Bind.Builder/Set)
