RemoveAll() 공개 메소드

public RemoveAll ( ) : void
리턴 void
예제 #1
0
 // Removes all attributes from the element.
 public virtual void RemoveAllAttributes()
 {
     if (HasAttributes)
     {
         _attributes.RemoveAll();
     }
 }
예제 #2
0
 public virtual void RemoveAllAttributes()
 {
     if (attributes != null)
     {
         attributes.RemoveAll();
     }
 }