Itenso.Rtf.Interpreter.RtfUserPropertyBuilder.RtfUserPropertyBuilder C# (CSharp) Method

RtfUserPropertyBuilder() public method

public RtfUserPropertyBuilder ( RtfDocumentPropertyCollection collectedProperties ) : System
collectedProperties Itenso.Rtf.Model.RtfDocumentPropertyCollection
return System
        public RtfUserPropertyBuilder( RtfDocumentPropertyCollection collectedProperties )
            : base(RtfElementVisitorOrder.NonRecursive)
        {
            // we iterate over our children ourselves -> hence non-recursive
            if ( collectedProperties == null )
            {
                throw new ArgumentNullException( "collectedProperties" );
            }
            this.collectedProperties = collectedProperties;
        }