Share via


Characters.AddCustomFieldU Method

Visio Automation Reference

Replaces the text represented by a Characters object with a custom formula field that uses universal syntax.

Version Information
 Version Added:  Visio 3.0

Syntax

expression.AddCustomFieldU(Formula, Format)

expression   A variable that represents a Characters object.

Parameters

Name Required/Optional Data Type Description
Formula Required String The formula of the new field.
Format Required Integer The format of the new field.

Return Value
Nothing

Remarks

Using the AddCustomFieldU method is similar to clicking Field on the Insert menu and inserting a custom formula field in text. To add any other type of field (not custom), use the AddField method.

Valid field format constants are defined in the Visio type library in VisFieldFormats.

ms367506.vs_note(en-us,office.12).gif  Note
Beginning with Microsoft Visio 2000, you can use both local and universal names to refer to Visio shapes, masters, documents, pages, rows, add-ons, cells, hyperlinks, styles, fonts, master shortcuts, UI objects, and layers. When a user names a shape, for example, the user is specifying a local name. Beginning with Microsoft Office Visio 2003, the ShapeSheet spreadsheet displays only universal names in cell formulas and values. (In prior versions, universal names were not visible in the user interface.)

As a developer, you can use universal names in a program when you don't want to change a name each time a solution is localized. Use the AddCustomField method to set a custom field that uses local syntax. Use the AddCustomFieldU method to set a custom field that uses universal syntax.

See Also