Search
XmlSerializationContext.WriteBool Method
See Also
 





Writes a boolean value with the specified name.

Namespace: MindFusion.Charting.Wpf
Assembly: MindFusion.Charting.Wpf

 Syntax

C#  Copy Code

public XmlElement WriteBool (
    bool boolValue,
    string elementName,
    XmlElement parentElement
)

Visual Basic  Copy Code

Public Function WriteBool( _
    boolValue As Boolean, _
    elementName As String, _
    parentElement As XmlElement _
) As XmlElement

 Parameters

boolValue

The bool value to write.

elementName

The name of the new element.

parentElement

The parent of the new element.

 Return Value

The newly created System.Xml.XmlElement.

 See Also