Itenso.Rtf.Parser.RtfParserListenerStructureBuilder.DoTagFound C# (CSharp) 메소드

DoTagFound() 보호된 메소드

protected DoTagFound ( IRtfTag tag ) : void
tag IRtfTag
리턴 void
        protected override void DoTagFound( IRtfTag tag )
        {
            if ( curGroup == null )
            {
                throw new RtfStructureException( Strings.MissingGroupForNewTag );
            }
            curGroup.WritableContents.Add( tag );
        }