MindFusion.UI for WebForms Programmer's Guide

XmlPersistContext.ReadFloatArray Method

See Also
 





Reads a float array with the specified name.

Namespace: MindFusion.UI.Web
Assembly: MindFusion.UI.Web

 Syntax

C#  Copy Code

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

Visual Basic  Copy Code

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

 Parameters

elementName

Type: String
A string specifying the name of the element.

subElementName

Type: String
A string specifying the name of the sub-element.

parentElement

Type: XmlElement
The parent XML element.

 Return Value

Type: Single<>
The read float[] value

 See Also