Partager via


Solution3.Saved, propriété

Obtient ou définit une valeur indiquant si une solution n'a pas été modifiée depuis son dernier enregistrement ou sa dernière ouverture.

Espace de noms :  EnvDTE90
Assembly :  EnvDTE90 (dans EnvDTE90.dll)

Syntaxe

'Déclaration
Property Saved As Boolean
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)

Valeur de propriété

Type : Boolean
true si l'objet n'a pas été modifié depuis son dernier enregistrement ou sa dernière ouverture ; sinon, false.La valeur par défaut est true.

Notes

La propriété Saved remplace la propriété IsDirty dans Visual Studio version 6.0, mais elle retourne la valeur opposée de IsDirty.

Exemples

Pour plus d'informations sur l'exécution de ce code de complément, consultez Comment : compiler et exécuter les exemples de code du modèle objet 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);
    }
}

Sécurité .NET Framework

Voir aussi

Référence

Solution3 Interface

EnvDTE90, espace de noms

Autres ressources

Comment : compiler et exécuter les exemples de code du modèle objet Automation