IInfoPathViewControl.Value Property

InfoPath Developer Reference

Gets or set the value of the current control in the enumeration. Read/write

Version Information
 Version Added:  InfoPath 2007

Syntax

expression.Value(pbstrValue)

expression   An expression that returns an IInfoPathViewControl object.

Parameters

Name Required/Optional Data Type Description
pbstrValue Required String The value of the control.

Return Value
[HRESULT]

Remarks

The following controls are limited to certain types of data.

Control Data type
Textbox Any xsd:string value
Rich Text Box XHTML tree with XHTML namespaces on top level elements. XHTML tree will be inserted into XML DOM without parsing.
Drop-Down List Box Any xsd:string value
List Box Any xsd:string value
Date Picker Any xsd:string value
Check Box “CHECKED” or “UNCHECKED”
Option Button “SELECTED”
Bulleted, Numbered and Plain Lists Any xsd:string value
Picture and Ink Picture Any xsd:base64Binary data

For a list of controls that are enumerated in the view, if present, see the GetControls method of the IInfoPathDataImporterFields interface.

This object or member is used for extending the InfoPath application and is not intended to be used directly from your form code.

For more information about programmatically importing data into an InfoPath form, see the InfoPath Developer Portal on the Microsoft Office Developer Center.

See Also