次の方法で共有


MAPIFolder.CurrentView プロパティ

定義

現在のビューを View 表す オブジェクトを返します。 読み取り専用です。

public:
 property Microsoft::Office::Interop::Outlook::View ^ CurrentView { Microsoft::Office::Interop::Outlook::View ^ get(); };
public Microsoft.Office.Interop.Outlook.View CurrentView { get; }
Public ReadOnly Property CurrentView As View

プロパティ値

注釈

現在の ビューの View オブジェクトを取得するには、 によってCurrentFolder返される現在ExplorerFolderのオブジェクトの CurrentView プロパティの代わりに を使用CurrentViewします。

任意の目的に使用する開始する前に、 示します によって返される ビュー オブジェクトへの参照を保存する必要があります。

現在のビューを適切にリセットするには、 と を実行 Reset() する Apply()必要があります。 次のコード例は、呼び出しの順序を示しています。

Sub ResetView()
    Dim v as Outlook.View
    ' Save a reference to the current view object
    Set v = Application.ActiveExplorer().CurrentView
    ' Reset and then apply the current view
    v.Reset
    v.Apply
End Sub
private void ResetView()
{
    // Save a reference to the current view object    
    Outlook.View v = Application.ActiveExplorer().CurrentView 
        as Outlook.View; 

    // Reset and then apply the current view
    v.Reset();
    v.Apply();
}

適用対象