Beispiel #1
0
 public CubeDef Find(string index)
 {
     if (_obj != null)
     {
         Microsoft.AnalysisServices.AdomdClient.CubeDef obj = _obj.Find(index);
         return(obj == null ? null : new CubeDef(obj));
     }
     else
     {
         ExcelAdoMdConnections.ReturnDelegate <CubeDef> f = delegate
         {
             ExcelAdomdClientReference::Microsoft.AnalysisServices.AdomdClient.CubeDef obj = _objExcel.Find(index);
             return(obj == null ? null : new CubeDef(obj));
         };
         return(f());
     }
 }
Beispiel #2
0
        public CubeDef Find(string index)
        {
            if (_obj != null)
            {
                Microsoft.AnalysisServices.AdomdClient.CubeDef obj = _obj.Find(index);
                return(obj == null ? null : new CubeDef(obj));
            }
            else
            {
                CubeDef f()
                {
                    ExcelAdomdClientReference::Microsoft.AnalysisServices.AdomdClient.CubeDef obj = _objExcel.Find(index);
                    return(obj == null ? null : new CubeDef(obj));
                }

                return(f());
            }
        }
Beispiel #3
0
 public CubeDef(Microsoft.AnalysisServices.AdomdClient.CubeDef cubeDef)
 {
     _obj = cubeDef;
 }
Beispiel #4
0
 public CubeDef(Microsoft.AnalysisServices.AdomdClient.CubeDef obj)
 {
     _obj = obj;
 }
Beispiel #5
0
 public CubeDef(Microsoft.AnalysisServices.AdomdClient.CubeDef obj)
 {
     _obj = obj;
 }