コード例 #1
0
        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());
        }