AODL.Document.Content.Tables.Table.Reset C# (CSharp) Method

Reset() public method

Resets the table node.
public Reset ( ) : void
return void
		public void Reset()
		{
			string name			= this.TableName;
			string styleName	= this.StyleName;

			this.Node.RemoveAll();
			this.NewXmlNode(name, styleName);
		}