PocketPlanner Programmer's Guide

XmlSerializationContext.WriteFloatArray Method

See Also

Writes the specified array.

Namespace: MindFusion.Scheduling
Assembly: PocketPlanner

 Syntax

C#

public XmlElement WriteFloatArray (
    float[] array,
    string elementName,
    string subElementName,
    XmlElement parentElement
)

Visual Basic

Public Function WriteFloatArray ( _
    array As Single(), _
    elementName As String, _
    subElementName As String, _
    parentElement As XmlElement _
) As XmlElement

 Parameters

array
The array to write.
elementName
The name of the element under which the array should be written.
subElementName
The name of the XML elements under which the individual array values will be written.
parentElement
The parent element of the newly created node.

 Return Value

An instance of the .NET XmlElement class representing the newly created XML element.

 See Also