iTextSharp.tool.xml.css.CssFileImpl.IsPersistent C# (CSharp) Méthode

IsPersistent() public méthode

public IsPersistent ( ) : bool
Résultat bool
        public bool IsPersistent()
        {
            return persistent;
        }

Same methods

CssFileImpl::IsPersistent ( bool isPeristent ) : void

Usage Example

 virtual public void ClearWithPersistent() {
     CssFileImpl css = new CssFileImpl();
     css.IsPersistent(true);
     files.Add(css);
     files.Clear();
     Assert.IsTrue(files.HasFiles(), "no files detected");
 }