public bool AddTableFor(string typeName,
                                RescueColorTable table)
        {
            bool myReturn = AddTableFor3(nativeNdx
                                         , typeName
                                         , (table == null) ? 0 : table.nativeNdx);

            return(myReturn);
        }
Exemplo n.º 2
0
        public RescueColorTable ColorTable()
        {
            long returnNdx = ColorTable33(nativeNdx);

            if (returnNdx == 0)
            {
                return(null);
            }
            else
            {
                RescueColorTable myReturn = new RescueColorTable(returnNdx);
                return(myReturn);
            }
        }
        public RescueColorTable TableFor(string typeName)
        {
            long returnNdx = TableFor2(nativeNdx
                                       , typeName);

            if (returnNdx == 0)
            {
                return(null);
            }
            else
            {
                RescueColorTable myReturn = new RescueColorTable(returnNdx);
                return(myReturn);
            }
        }
 public RescueColorTable(RescueColorTable other)
 {
     nativeNdx = Create_RescueColorTable1((other == null) ? 0 : other.nativeNdx);
 }
Exemplo n.º 5
0
 public void SetColorTable(RescueColorTable newTable)
 {
     SetColorTable32(nativeNdx
                     , (newTable == null) ? 0 : newTable.nativeNdx);
 }