public void UpdateChangeCount(DocumentChangeKind changeKind)
 {
     try {
         base.UpdateChangeCount(UIDocumentChangeKind.Done);
     } catch {
         throw;
     }
 }
Example #2
0
		public void UpdateChangeCount (DocumentChangeKind changeKind)
		{
			try {
				base.UpdateChangeCount (UIDocumentChangeKind.Done);				
			} catch {
				throw;
			}
		}
Example #3
0
 private static string GetChangeKindVerb(DocumentChangeKind changeKind) =>
 changeKind switch
 {
Example #4
0
 public DocumentChange(T document, DocumentChangeKind changeKind)
 {
     Document   = document;
     ChangeKind = changeKind;
 }
Example #5
0
 public void UpdateChangeCount(DocumentChangeKind changeKind)
 {
 }
Example #6
0
		public void UpdateChangeCount (DocumentChangeKind changeKind)
		{
		}