public void EndEdit()
        {
            IVBFileCodeModelEvents vbfcm = FileCodeModel as IVBFileCodeModelEvents;

            if (vbfcm != null)
            {
                vbfcm.EndEdit();
            }
        }
Пример #2
0
        public void EndBatch()
        {
            IVBFileCodeModelEvents temp = this;

            ErrorHandler.ThrowOnFailure(temp.EndEdit());
        }
Пример #3
0
        public void BeginBatch()
        {
            IVBFileCodeModelEvents temp = this;

            ErrorHandler.ThrowOnFailure(temp.StartEdit());
        }