IVsLifetimeControlledObject Interface
Instructs undo objects to release references to a designer or buffer.
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaration
<InterfaceTypeAttribute()> _
<GuidAttribute("B3B2E5D4-F03E-4BB9-85F9-61B5F45AC498")> _
Public Interface IVsLifetimeControlledObject
[InterfaceTypeAttribute()]
[GuidAttribute("B3B2E5D4-F03E-4BB9-85F9-61B5F45AC498")]
public interface IVsLifetimeControlledObject
[InterfaceTypeAttribute()]
[GuidAttribute(L"B3B2E5D4-F03E-4BB9-85F9-61B5F45AC498")]
public interface class IVsLifetimeControlledObject
[<InterfaceTypeAttribute()>]
[<GuidAttribute("B3B2E5D4-F03E-4BB9-85F9-61B5F45AC498")>]
type IVsLifetimeControlledObject = interface end
public interface IVsLifetimeControlledObject
The IVsLifetimeControlledObject type exposes the following members.
Methods
Name | Description | |
---|---|---|
SeverReferencesToOwner | Instructs undo objects to release references to a designer or buffer. |
Top
Remarks
In some cases you may want to place the undo manager in the inactive state when the owning object has died. A designer can use this same method to instruct its undo objects to release references to it and not call on those pointers any more. To manage this, you can call QueryInterface on the undo manager for IVsLifetimeControlledObject. Once you have a pointer to IVsLifetimeControlledObject, call SeverReferencesToOwner. This method removes all Undo and Redo stacks, making it safe for the owning object to go away.
Notes to Callers
When your document in closed, call QueryInterface on your undo manager for IID_IVsLifetimeControlledObject.