Application.LayoutSelectionNow method (Project)

Positions the selected task boxes in the active Network Diagram view according to its layout options.

Syntax

expression. LayoutSelectionNow

expression A variable that represents an Application object.

Return value

Boolean

Remarks

Layout options can be set with the BoxLayout and BoxLinks methods.

The LayoutSelectionNow method is only available when a Network Diagram view is active.

Example

The following example positions the selected boxes in a top-down layout.

Sub Layout_SelectionNow() 
 
 'Activate Network Diagram view 
 ViewApply Name:="Network &Diagram" 
 
 BoxSet Action:=pjBoxAddToSelection, TaskID:=2 
 BoxLayout LayoutMode:=pjLayoutManual, LayoutScheme:=pjLayoutTopDownByDay 
 
 LayoutSelectionNow 
End Sub

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.