次の方法で共有


Solution3.Saved プロパティ

ソリューションが最後に保存したか開いたときから変更されていないかどうかを示す値を取得または設定します。

名前空間:  EnvDTE90
アセンブリ:  EnvDTE90 (EnvDTE90.dll 内)

構文

'宣言
Property Saved As Boolean
    Get
    Set
bool Saved { get; set; }
property bool Saved {
    bool get ();
    void set (bool value);
}
abstract Saved : bool with get, set
function get Saved () : boolean
function set Saved (value : boolean)

プロパティ値

型: System.Boolean
オブジェクトが最後に保存したか開いたときから変更されていない場合は true。それ以外の場合は false。既定値は、true です。

実装

Solution2.Saved

解説

Saved プロパティは Visual Studio バージョン 6.0 の IsDirty に代わるプロパティですが、IsDirty とは反対の値を返します。

このアドイン コードの実行方法については、「方法 : オートメーション オブジェクト モデルのコード例をコンパイルおよび実行する」を参照してください。

Public Sub OnConnection(ByVal application As Object, _
 ByVal connectMode As ext_ConnectMode, ByVal addInInst As Object, _
 ByRef custom As Array) Implements IDTExtensibility2.OnConnection
    _applicationObject = CType(application, DTE2)
    _addInInstance = CType(addInInst, AddIn)
    PropertiesExample(_applicationObject)
End Sub

Sub PropertiesExample(ByVal dte As DTE2)
    ' This add-in sets and gets the Saved status of a solution.
    ' Open a solution in Visual Studio before 
    ' running this example.
    Try
        Dim soln As Solution3 =  _
        CType(_applicationObject.Solution, Solution3)
        Dim solnName As String = _
        System.IO.Path.GetFileNameWithoutExtension(soln.FullName)
        MsgBox(solnName & " has the following Saved status: "  _
        & soln.Saved.ToString())
        MsgBox("Setting the Saved status to False")
        soln.Saved = False
            MsgBox(solnName & " now has the following Saved status: " & soln.Saved.ToString())
    Catch ex As System.Exception
        MsgBox(ex.ToString)
    End Try
End Sub
using System.Windows.Forms;
public void OnConnection(object application,
 Extensibility.ext_ConnectMode connectMode, object addInInst,
 ref System.Array custom)
{
    _applicationObject = (DTE2)application;
    _addInInstance = (AddIn)addInInst;
    // Pass the applicationObject member variable to the code example.
    ProjectExample((DTE2)_applicationObject);
}

public void ProjectExample(DTE2 dte)
{
    // This add-in gets and sets the Saved status of a solution. 
    // Open a solution in 
    // Visual Studio before running this example.
    try
    {
        Solution3 soln = (Solution3)_applicationObject.Solution;
        string solnName = 
          System.IO.Path.GetFileNameWithoutExtension(soln.FullName);
        MessageBox.Show(solnName + " has the following Saved status: "
          + soln.Saved.ToString());
        MessageBox.Show("Setting the Saved status to false...");
        soln.Saved = false;
        MessageBox.Show(solnName + 
          " now has the following Saved status: " + 
          soln.Saved.ToString());
    }
    catch(SystemException ex)
    {
        MessageBox.Show("ERROR: " + ex);
    }
}

.NET Framework セキュリティ

  • 直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

参照

Solution3 インターフェイス

Saved オーバーロード

EnvDTE90 名前空間

その他の技術情報

方法 : オートメーション オブジェクト モデルのコード例をコンパイルおよび実行する