Pair.WSOptions Property

<< Click to Display Table of Contents >>

Navigation:  Developer Edition > Visual Basic for Applications (VBA) > Object Model Reference > Pair Object > Properties >

Pair.WSOptions Property

Previous pageReturn to chapter overviewNext page

Returns or sets the name of the linking options.

 

Syntax

expression.WSOptions

expression. A variable representing a WSOptions object.

 

Example

This example links the rows and columns '1 on 1'.

 

With oProj.Pairs.Item(0)

   .WSOptions = WSOptionFlag_Rows1on1 + WSOptionFlag_Cols1on1

End With