|
|
INTEGER AddPart (MessagePart)
|
/** Adds a part to this multi-part entity
@param MessagePart The entity for the part
@return integer The part number being added. */
|
|
|
ClearParts ()
|
/** Clears all the parts from this multipart entity */
|
|
|
OpenEdge.Net.MessagePart GetPart (character)
|
/* Returns any parts that have the specified content-id.
@param character A content ID to search by
@return MessagePart[] An array of parts that have a content ID */
|
|
|
OpenEdge.Net.MessagePart GetPart (integer)
|
/** Returns a part's content, selected by part number
@param integer The part number
@return MessagePart The content */
|
|
|
LOGICAL RemovePart (integer)
|
/** Removes a part (by number) and reorders the parts.
@param integer The part number to remove
@return logical True if the record was removed */
|
|
|
LOGICAL SetPart (integer, MessagePart)
|
/** Adds a part to this multi-part entity
@param integer The part number being added.
@param MessagePart The entity for the part
@return logical True if the Part has replaced another part */
|