Exemplo n.º 1
0
        public uint AddColumn(string columnName, Table.ColumnType columnType)
        {
            uint ret = RakNetPINVOKE.Table_AddColumn(swigCPtr, columnName, (int)columnType);

            return(ret);
        }
Exemplo n.º 2
0
 public Table.ColumnType GetColumnType(uint index)
 {
     Table.ColumnType ret = (Table.ColumnType)RakNetPINVOKE.Table_GetColumnType(swigCPtr, index);
     return(ret);
 }
Exemplo n.º 3
0
 public ColumnDescriptor(string cn, Table.ColumnType ct) : this(RakNetPINVOKE.new_Table_ColumnDescriptor__SWIG_1(cn, (int)ct), true)
 {
 }
Exemplo n.º 4
0
 public Table.ColumnType EstimateColumnType()
 {
     Table.ColumnType ret = (Table.ColumnType)RakNetPINVOKE.Table_Cell_EstimateColumnType(swigCPtr);
     return(ret);
 }
Exemplo n.º 5
0
            public RakString ToString(Table.ColumnType columnType)
            {
                RakString ret = new RakString(RakNetPINVOKE.Table_Cell_ToString(swigCPtr, (int)columnType), true);

                return(ret);
            }
Exemplo n.º 6
0
 public void SetByType(double numericValue, string charValue, SWIGTYPE_p_void ptr, Table.ColumnType type)
 {
     RakNetPINVOKE.Table_Cell_SetByType(swigCPtr, numericValue, charValue, SWIGTYPE_p_void.getCPtr(ptr), (int)type);
 }
Exemplo n.º 7
0
 public Cell(double numericValue, string charValue, SWIGTYPE_p_void ptr, Table.ColumnType type) : this(RakNetPINVOKE.new_Table_Cell__SWIG_1(numericValue, charValue, SWIGTYPE_p_void.getCPtr(ptr), (int)type), true)
 {
 }