API ReferenceSandbox.Bind

Linkclass

Joins two proxies together, so one can be updated from the other (or both from each other)

objectLink
Namespace
Sandbox.Bind
Assembly
Sandbox.Bind
Declaration
public sealed class Sandbox.Bind.Link

Properties4

Showing 4 properties

public bool Sandbox.Bind.Link.IsValid { get; set; }PUBLICGETSET

This is updated in tick. Will return false if either binding is invalid. Bindings become invalid if the object is garbage collected or is an IValid and made invalid.

Returns:bool

public Sandbox.Bind.Proxy Sandbox.Bind.Link.Left { get; set; }PUBLICGETSET

The primary binding. Changes to this value always take priority over the other.

Returns:Proxy

public bool Sandbox.Bind.Link.OneWay { get; set; }PUBLICGETSET

True if this should only update from left to right.

Returns:bool

public Sandbox.Bind.Proxy Sandbox.Bind.Link.Right { get; set; }PUBLICGETSET

The secondary binding, if we're OneWay then this will only ever be written to.

Returns:Proxy

On this page