ApiExamples.ExHtmlFixedSaveOptions.CssPrefix C# (CSharp) Метод

CssPrefix() приватный Метод

private CssPrefix ( string cssprefix ) : void
cssprefix string
Результат void
        public void CssPrefix(string cssprefix)
        {
            Document doc = new Document(MyDir + "Bookmark.doc");

            HtmlFixedSaveOptions saveOptions = new HtmlFixedSaveOptions();
            saveOptions.CssClassNamesPrefix = cssprefix;

            doc.Save(MyDir + @"\Artifacts\cssPrefix_Out.html", saveOptions);

            DocumentHelper.FindTextInFile(MyDir + @"\Artifacts\cssPrefix_Out\styles.css", "div");
        }