Shape.RowExists Property

Visio Automation Reference

Determines whether a ShapeSheet row exists. Read-only.

Version Information
 Version Added:  Visio 4.0

Syntax

expression.RowExists(Section, Row, fExistsLocally)

expression   A variable that represents a Shape object.

Parameters

Name Required/Optional Data Type Description
Section Required Integer The row's section index.
Row Required Integer The row's row index.
fExistsLocally Required Integer The scope of the search.

Return Value
Integer

Remarks

If fExistsLocally is False (0), the RowExists property returns True if the object either contains or inherits the specified row.

If fExistsLocally is True (non-zero), the RowExists property returns True only if the object contains the specified row locally; if the row is inherited, the RowExists property returns False.

For a list of row index values, see the AddRow method or view the Visio type library for the members of the VisRowIndices enumeration. For a list of section index values, see the AddSection method or view the Visio type library for the members of the VisSectionIndices enumeration.

See Also