MoreInternals.Model.RGBAColorValue.Bind C# (CSharp) Method

Bind() public method

public Bind ( Scope scope ) : Value
scope Scope
return Value
        public override Value Bind(Scope scope)
        {
            return new RGBAColorValue(Red.Bind(scope), Green.Bind(scope), Blue.Bind(scope), Alpha.Bind(scope));
        }