コード例 #1
0
ファイル: _Explorer.cs プロジェクト: fredatgithub/NetOffice-1
        public bool IsPaneVisible(NetOffice.OutlookApi.Enums.OlPane pane)
        {
            object[] paramsArray = Invoker.ValidateParamsArray(pane);
            object   returnItem  = Invoker.MethodReturn(this, "IsPaneVisible", paramsArray);

            return(NetRuntimeSystem.Convert.ToBoolean(returnItem));
        }
コード例 #2
0
ファイル: _Explorer.cs プロジェクト: fredatgithub/NetOffice-1
 public void ShowPane(NetOffice.OutlookApi.Enums.OlPane pane, bool visible)
 {
     object[] paramsArray = Invoker.ValidateParamsArray(pane, visible);
     Invoker.Method(this, "ShowPane", paramsArray);
 }
コード例 #3
0
ファイル: _Explorer.cs プロジェクト: realzhaorong/NetOffice
 public void ShowPane(NetOffice.OutlookApi.Enums.OlPane pane, bool visible)
 {
     Factory.ExecuteMethod(this, "ShowPane", pane, visible);
 }
コード例 #4
0
ファイル: _Explorer.cs プロジェクト: realzhaorong/NetOffice
 public bool IsPaneVisible(NetOffice.OutlookApi.Enums.OlPane pane)
 {
     return(Factory.ExecuteBoolMethodGet(this, "IsPaneVisible", pane));
 }
コード例 #5
0
ファイル: _Explorer.cs プロジェクト: tinmanjk/NetOffice
 public virtual void ShowPane(NetOffice.OutlookApi.Enums.OlPane pane, bool visible)
 {
     InvokerService.InvokeInternal.ExecuteMethod(this, "ShowPane", pane, visible);
 }
コード例 #6
0
ファイル: _Explorer.cs プロジェクト: tinmanjk/NetOffice
 public virtual bool IsPaneVisible(NetOffice.OutlookApi.Enums.OlPane pane)
 {
     return(InvokerService.InvokeInternal.ExecuteBoolMethodGet(this, "IsPaneVisible", pane));
 }