Example #1
0
			public KeywordEnumerator(KeywordListType par) 
			{
				parent = par;
				nIndex = -1;
			}
Example #2
0
		public void InsertKeywordListAt(KeywordListType newValue, int index)
		{
			InsertDomElementAt("", "KeywordList", index, newValue);
		}
Example #3
0
		public void ReplaceKeywordListAt(KeywordListType newValue, int index)
		{
			ReplaceDomElementAt("", "KeywordList", index, newValue);
		}
Example #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);
 }
Example #8
0
 public KeywordEnumerator(KeywordListType par)
 {
     parent = par;
     nIndex = -1;
 }