public KeywordEnumerator(KeywordListType par) 
			{
				parent = par;
				nIndex = -1;
			}
Exemple #2
0
		public void InsertKeywordListAt(KeywordListType newValue, int index)
		{
			InsertDomElementAt("", "KeywordList", index, newValue);
		}
Exemple #3
0
		public void ReplaceKeywordListAt(KeywordListType newValue, int index)
		{
			ReplaceDomElementAt("", "KeywordList", index, newValue);
		}
Exemple #4
0
		public void AddKeywordList(KeywordListType newValue)
		{
			AppendDomElement("", "KeywordList", newValue);
		}
 public void ReplaceKeywordListAt(KeywordListType newValue, int index)
 {
     ReplaceDomElementAt("", "KeywordList", index, newValue);
 }
 public void InsertKeywordListAt(KeywordListType newValue, int index)
 {
     InsertDomElementAt("", "KeywordList", index, newValue);
 }
 public void AddKeywordList(KeywordListType newValue)
 {
     AppendDomElement("", "KeywordList", newValue);
 }
 public KeywordEnumerator(KeywordListType par)
 {
     parent = par;
     nIndex = -1;
 }