IPMath.Max(IXMLDOMNodeList) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the largest value of all of the numerical elements in a node set.
public:
System::Object ^ Max(Microsoft::Office::Interop::InfoPath::Xml::IXMLDOMNodeList ^ pxmllistInput);
public object Max (Microsoft.Office.Interop.InfoPath.Xml.IXMLDOMNodeList pxmllistInput);
abstract member Max : Microsoft.Office.Interop.InfoPath.Xml.IXMLDOMNodeList -> obj
Public Function Max (pxmllistInput As IXMLDOMNodeList) As Object
Parameters
- pxmllistInput
- IXMLDOMNodeList
The node set to search for the largest value.
Returns
An object that represents the largest value of all the numerical elements in a node set.
Examples
In the following example, the variable maxAge
is set to the largest age value in my:ages
, and is returned in a repeating section or table with a field named "ages." An alert is also shown with the largest age value.
IXMLDOMNodeList ages = thisXDocument.DOM.selectNodes("//my:ages");
object maxAge = thisXDocument.Util.Math.<span class="label">Max</span>(ages);
thisXDocument.UI.Alert(maxAge.ToString());