Esempio n. 1
0
        public RescueTruncation BaseTruncation()
        {
            long returnNdx = BaseTruncation16(nativeNdx);

            if (returnNdx == 0)
            {
                return(null);
            }
            else
            {
                RescueTruncation myReturn = new RescueTruncation(returnNdx);
                return(myReturn);
            }
        }
Esempio n. 2
0
 public void SetBaseTruncation(RescueTruncation newBase)
 {
     SetBaseTruncation18(nativeNdx
                         , (newBase == null) ? 0 : newBase.nativeNdx);
 }
Esempio n. 3
0
 public void SetTopTruncation(RescueTruncation newTop)
 {
     SetTopTruncation17(nativeNdx
                        , (newTop == null) ? 0 : newTop.nativeNdx);
 }