Esempio n. 1
0
 public AsyncColShapeRef(IColShape colShape)
 {
     if (colShape == null)
     {
         this.colShape = null;
     }
     else
     {
         lock (colShape)
         {
             this.colShape = colShape.AddRef() ? colShape : null;
         }
     }
 }
Esempio n. 2
0
 public ColShapeRef(IColShape colShape)
 {
     this.colShape = colShape.AddRef() ? colShape : null;
 }
Esempio n. 3
0
 public ColShapeRef(IColShape colShape)
 {
     this.colShape = colShape.AddRef() ? colShape : null;
     Alt.Module.CountUpRefForCurrentThread(colShape);
 }