Bloom.Edit.EditingModel.SetTopic C# (CSharp) Method

SetTopic() private method

When the user types ctrl+n, we do this: 1) If the user is on a page that is xmatter, or a singleton, then we just add the first page in the template 2) Else, make a new page of the same type as the current one
private SetTopic ( string englishTopicAsKey ) : void
englishTopicAsKey string
return void
        private void SetTopic(string englishTopicAsKey)
        {
            //make the change in the data div
            _currentlyDisplayedBook.SetTopic(englishTopicAsKey);
            //reflect that change on this page
            RethinkPageAndReloadIt(null);
        }