Enterra.V8x1C.DOM.Structure.Insert C# (CSharp) Method

Insert() public method

Вставить (Insert)
public Insert ( string name, object value ) : void
name string
value object
return void
        public void Insert(string name, object value)
        {
            if (value is BaseObject)
            {
                value = (value as BaseObject).Ptr;
            }
            InvokeV8Method("Insert", name, value);
        }