Enterra.V8x1C.DOM.EnumManager.Get C# (CSharp) Method

Get() public method

public Get ( int index ) : EnumRef
index int
return EnumRef
        public EnumRef Get(int index)
        {
            object ptr = InvokeV8Method("Get", index);
            return ptr != null ? new EnumRef(Session, EnumName, ptr) : null;
        }