SelectOccurrence() публичный Метод

Select the word indicated by the occurrence. Note that this does not save any changes made in the Sandbox. It is mainly used when the view is read-only.
public SelectOccurrence ( SIL.FieldWorks.FDO.DomainServices.AnalysisOccurrence target ) : void
target SIL.FieldWorks.FDO.DomainServices.AnalysisOccurrence
Результат void
            public override bool Redo()
            {
                if (m_newOccurrence != null && m_newOccurrence.IsValid)
                {
                    m_interlinDoc.SelectOccurrence(m_newOccurrence);
                }
                else
                {
                    m_interlinDoc.TryHideFocusBoxAndUninstall();
                }

                return(true);
            }