Itenso.Rtf.Parser.RtfParserListenerStructureBuilder.DoGroupBegin C# (CSharp) Method

DoGroupBegin() protected method

protected DoGroupBegin ( ) : void
return void
        protected override void DoGroupBegin()
        {
            RtfGroup newGroup = new RtfGroup();
            if ( curGroup != null )
            {
                openGroupStack.Push( curGroup );
                curGroup.WritableContents.Add( newGroup );
            }
            curGroup = newGroup;
        }