Share via


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 相反的值。

範例

如需如何執行增益集程式碼的詳細資訊,請參閱 HOW TO:編譯和執行 Automation 物件模型程式碼範例

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 命名空間

其他資源

HOW TO:編譯和執行 Automation 物件模型程式碼範例