<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.melissadata.com/index.php?action=history&amp;feed=atom&amp;title=MatchUp_Object%3AMatchcode%3AModification</id>
	<title>MatchUp Object:Matchcode:Modification - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.melissadata.com/index.php?action=history&amp;feed=atom&amp;title=MatchUp_Object%3AMatchcode%3AModification"/>
	<link rel="alternate" type="text/html" href="http://wiki.melissadata.com/index.php?title=MatchUp_Object:Matchcode:Modification&amp;action=history"/>
	<updated>2026-05-02T21:59:52Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>http://wiki.melissadata.com/index.php?title=MatchUp_Object:Matchcode:Modification&amp;diff=9473&amp;oldid=prev</id>
		<title>Admin: Created page with &quot;{{MatchUpObjectMatchcodeInterfaceNav |FunctionsCollapse= }}  {{CustomTOC}}  These functions add, insert, update, or delete matchcode components from the current Matchcode obje...&quot;</title>
		<link rel="alternate" type="text/html" href="http://wiki.melissadata.com/index.php?title=MatchUp_Object:Matchcode:Modification&amp;diff=9473&amp;oldid=prev"/>
		<updated>2015-08-04T19:03:17Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;{{MatchUpObjectMatchcodeInterfaceNav |FunctionsCollapse= }}  {{CustomTOC}}  These functions add, insert, update, or delete matchcode components from the current Matchcode obje...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{MatchUpObjectMatchcodeInterfaceNav&lt;br /&gt;
|FunctionsCollapse=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{CustomTOC}}&lt;br /&gt;
&lt;br /&gt;
These functions add, insert, update, or delete matchcode components from the current Matchcode object.&lt;br /&gt;
&lt;br /&gt;
==AddMatchcodeItem==&lt;br /&gt;
This function accepts a MatchcodeComponent object as its only argument and adds this component as the last component for this matchcode.&lt;br /&gt;
&lt;br /&gt;
To add a component at any position other than the last component, use the [[#InsertMatchcodeItem|InsertMatchcodeItem]] function instead. To modify an existing matchcode, use the [[#ChangeMatchcodeItem|ChangeMatchcodeItem]] function.&lt;br /&gt;
&lt;br /&gt;
This function returns an enumerated value of the type [[MatchUp Object:Enumerations#MatchcodeStatus|MatchcodeStatus]] that indicates if the component was successfully added to the matchcode and, if not, the reason for the error.&lt;br /&gt;
&lt;br /&gt;
For a list of these enumerations, see [[MatchUp Object:Enumerations#MatchcodeStatus|MatchcodeStatus Enumerations]].&lt;br /&gt;
&lt;br /&gt;
{{ Object Syntax&lt;br /&gt;
|Syntax=MatchcodeStatus = mdMC-&amp;gt;AddMatchcodeItem(MatchcodeComponent)&lt;br /&gt;
|C=mdMUMatchcodeStatus = mdMUMatchcodeAddMatchcodeItem(mdMCC, mdMUMatchcodeComponent)&lt;br /&gt;
|.Net=MatchcodeStatus = mdMC.AddMatchcodeItem(MatchcodeComponent)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==InsertMatchcodeItem==&lt;br /&gt;
This function adds a new MatchcodeComponent object to the current matchcode in any position other than the very last.&lt;br /&gt;
&lt;br /&gt;
This function accepts two arguments: the MatchcodeComponent object to be added; and an integer value indicating the position where the component is to be inserted. The integer value can be from one to the number of components currently stored in the current Matchcode object.&lt;br /&gt;
&lt;br /&gt;
This function returns an enumerated value of the type [[MatchUp Object:Enumerations#MatchcodeStatus|MatchcodeStatus]] that indicates if the component was successfully added to the matchcode and, if not, then the reason for the error.&lt;br /&gt;
&lt;br /&gt;
For a list of these enumerations, see [[MatchUp Object:Enumerations#MatchcodeStatus|MatchcodeStatus Enumerations]].&lt;br /&gt;
&lt;br /&gt;
{{ Object Syntax&lt;br /&gt;
|Syntax=MatchcodeStatus = mdMC-&amp;gt;InsertMatchcodeItem(MatchcodeComponent, int)&lt;br /&gt;
|C=mdMUMatchcodeStatus = mdMUMatchcodeInsertMatchcodeItem(mdMCC, mdMUMatchcodeComponent, int)&lt;br /&gt;
|.Net=MatchcodeStatus = mdMC.InsertMatchcodeItem(MatchcodeComponent, integer)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==ChangeMatchcodeItem==&lt;br /&gt;
This function replaces an existing MatchcodeComponent object at a specific position in the component order of the current Matchcode object with a modified or new component.&lt;br /&gt;
&lt;br /&gt;
This function accepts two arguments: the MatchcodeComponent object to be added; and an integer value indicating the position where the component is to be replaced. The integer value can be from one to the number of components currently stored in the current Matchcode object.&lt;br /&gt;
&lt;br /&gt;
This function returns an enumerated value of the type [[MatchUp Object:Enumerations#MatchcodeStatus|MatchcodeStatus]] that indicates if the component was successfully added to the matchcode and, if not, then the reason for the error.&lt;br /&gt;
&lt;br /&gt;
For a list of these enumerations, see [[MatchUp Object:Enumerations#MatchcodeStatus|MatchcodeStatus Enumerations]].&lt;br /&gt;
&lt;br /&gt;
{{ Object Syntax&lt;br /&gt;
|Syntax=MatchcodeStatus = mdMC-&amp;gt;ChangeMatchcodeItem(MatchcodeComponent, int)&lt;br /&gt;
|C=mdMUMatchcodeStatus = mdMUMatchcodeChangeMatchcodeItem(mdMCC, mdMUMatchcodeComponent, int)&lt;br /&gt;
|.Net=MatchcodeStatus = mdMC.ChangeMatchcodeItem(MatchcodeComponent, integer)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==DeleteMatchcodeItem==&lt;br /&gt;
This function removes a specific MatchcodeComponent object from a Matchcode object.&lt;br /&gt;
&lt;br /&gt;
This function accepts a single argument: the integer value indicating the position where the component is to be deleted. The integer value can be from one to the number of components currently stored in the current Matchcode object.&lt;br /&gt;
&lt;br /&gt;
This function returns an enumerated value of the type [[MatchUp Object:Enumerations#MatchcodeStatus|MatchcodeStatus]] that indicates if the component was successfully added to the matchcode and, if not, then the reason for the error.&lt;br /&gt;
&lt;br /&gt;
For a list of these enumerations, see [[MatchUp Object:Enumerations#MatchcodeStatus|MatchcodeStatus Enumerations]].&lt;br /&gt;
&lt;br /&gt;
{{ Object Syntax&lt;br /&gt;
|Syntax=MatchcodeStatus = mdMC-&amp;gt;DeleteMatchcodeItem(int)&lt;br /&gt;
|C=mdMUMatchcodeStatus = mdMUMatchcodeDeleteMatchcodeItem(int)&lt;br /&gt;
|.Net=MatchcodeStatus = mdMC.DeleteMatchcodeItem(integer)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:MatchUp Object]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
</feed>