IVsLinkedUndoTransactionManager.IsStrict(Int32) Method

Definition

Determines if the linked undo transaction is strict.

public:
 int IsStrict(int % pfStrict);
int IsStrict(int & pfStrict);
public int IsStrict (ref int pfStrict);
abstract member IsStrict : int -> int
Public Function IsStrict (ByRef pfStrict As Integer) As Integer

Parameters

pfStrict
Int32

Pointer to a flag, true indicating strict.

Returns

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

From textmgr.idl:

HRESULT IVsLinkedUndoTransactionManager::IsStrict(  
   BOOL *pfStrict  
);  

Not strict linked undo behavior means that some of the documents with linked undo siblings can close and still leave the other linked undo siblings on their stacks. Strict linked undo behavior specifies that all the linked undo siblings have to be undone together or not at all.

Applies to