コード例 #1
0
ファイル: _HtmlText.cs プロジェクト: Nerven/Htmler
        private _HtmlText(HtmlTextProperties textProperties, _HtmlText cloneFrom)
        {
            Must.Assertion
            .AssertArgumentNotNull(textProperties, nameof(textProperties));

            _TextProperties = textProperties;
            _Annotations    = new _HtmlAnnotationCollection(ChildrensProof, this, cloneFrom?._Annotations);
        }
コード例 #2
0
ファイル: _HtmlText.cs プロジェクト: Nerven/Htmler
 public static IHtmlText Create(HtmlTextProperties textProperties) => new _HtmlText(textProperties, null);