示例#1
0
        /// -----------------------------------------------------------------------------------
        /// <summary>
        /// If we need to make a selection, but we can't because edits haven't been updated in the
        /// view, this method requests creation of a selection after the unit of work is complete.
        /// </summary>
        /// -----------------------------------------------------------------------------------
        public override void RequestSelectionAtEndOfUow(IVwRootBox rootb, int ihvoRoot, int cvlsi,
                                                        SelLevInfo[] rgvsli, int tagTextProp, int cpropPrevious, int ich, int wsAlt,
                                                        bool fAssocPrev, ITsTextProps selProps)
        {
            // Creating one hooks it up; it will free itself when invoked.
            new RequestSelectionHelper((IActionHandlerExtensions)m_sda.GetActionHandler(), rootb,
                                       ihvoRoot, rgvsli, tagTextProp, cpropPrevious, ich, wsAlt, fAssocPrev, selProps);

            // We don't want to continue using the old, out-of-date selection.
            rootb.DestroySelection();
        }
示例#2
0
		/// ------------------------------------------------------------------------------------
		/// <summary>
		/// If we need to make a selection, but we can't because edits haven't been updated in the
		/// view, this method requests creation of a selection after the unit of work is complete.
		/// Specifically, when all PropChanged calls have been made for the UOW.
		/// The arguments are as for MakeTextSelection, except that we only include the ones
		/// necessary to specify an insertion point, and of course don't return the selection,
		/// which typically won't be made until later. The selection made is always installed.
		/// </summary>
		/// ------------------------------------------------------------------------------------
		public void RequestSelectionAtEndOfUow(IVwRootBox rootb, int ihvoRoot, int cvlsi,
			SelLevInfo[] rgvsli, int tagTextProp, int cpropPrevious, int ich, int wsAlt,
			bool fAssocPrev, ITsTextProps selProps)
		{
			// Creating one hooks it up; it will free itself when invoked.
			new RequestSelectionHelper((IActionHandlerExtensions)m_cache.ActionHandlerAccessor,
				rootb, ihvoRoot, rgvsli, tagTextProp, cpropPrevious, ich, wsAlt, fAssocPrev, selProps);

			// We don't want to continue using the old, out-of-date selection.
			rootb.DestroySelection();
		}