Пример #1
0
        public bool RemoveFrom(RescueGeobodySurface existingObject)
        {
            bool myReturn = RemoveFrom3(nativeNdx
                                        , (existingObject == null) ? 0 : existingObject.nativeNdx);

            return(myReturn);
        }
        public RescueGeobodySurface GeobodySurfaceIdentifiedBy(int identifier)
        {
            long returnNdx = GeobodySurfaceIdentifiedBy16(nativeNdx
                                                          , (long)identifier);

            if (returnNdx == 0)
            {
                return(null);
            }
            else
            {
                RescueGeobodySurface myReturn = new RescueGeobodySurface(returnNdx);
                return(myReturn);
            }
        }
Пример #3
0
        public RescueGeobodySurface GeobodySurfaceIdentifiedBy(long id)
        {
            long returnNdx = GeobodySurfaceIdentifiedBy5(nativeNdx
                                                         , id);

            if (returnNdx == 0)
            {
                return(null);
            }
            else
            {
                RescueGeobodySurface myReturn = new RescueGeobodySurface(returnNdx);
                return(myReturn);
            }
        }
Пример #4
0
        public RescueGeobodySurface NthGeobodySurface(long zeroBasedOrdinal)
        {
            long returnNdx = NthGeobodySurface4(nativeNdx
                                                , zeroBasedOrdinal);

            if (returnNdx == 0)
            {
                return(null);
            }
            else
            {
                RescueGeobodySurface myReturn = new RescueGeobodySurface(returnNdx);
                return(myReturn);
            }
        }
Пример #5
0
        public RescueGeobodySurface ObjectIdentifiedBy(long identifier)
        {
            long returnNdx = ObjectIdentifiedBy7(nativeNdx
                                                 , identifier);

            if (returnNdx == 0)
            {
                return(null);
            }
            else
            {
                RescueGeobodySurface myReturn = new RescueGeobodySurface(returnNdx);
                return(myReturn);
            }
        }
Пример #6
0
        public RescueGeobodySurface ObjectNamed(string nameIn)
        {
            long returnNdx = ObjectNamed6(nativeNdx
                                          , nameIn);

            if (returnNdx == 0)
            {
                return(null);
            }
            else
            {
                RescueGeobodySurface myReturn = new RescueGeobodySurface(returnNdx);
                return(myReturn);
            }
        }
Пример #7
0
        public RescueGeobodySurface NthObject(long ordinal)
        {
            long returnNdx = NthObject5(nativeNdx
                                        , ordinal);

            if (returnNdx == 0)
            {
                return(null);
            }
            else
            {
                RescueGeobodySurface myReturn = new RescueGeobodySurface(returnNdx);
                return(myReturn);
            }
        }
Пример #8
0
 public void DropGeobodySurface(RescueGeobodySurface existingSurface)
 {
     DropGeobodySurface2(nativeNdx
                         , (existingSurface == null) ? 0 : existingSurface.nativeNdx);
 }
Пример #9
0
 public void AddTo(RescueGeobodySurface newObject)
 {
     AddTo2(nativeNdx
            , (newObject == null) ? 0 : newObject.nativeNdx);
 }