Skip to content

Latest commit

 

History

History
55 lines (31 loc) · 1.37 KB

Project.project.ischeckoutmsgbarvisible.md

File metadata and controls

55 lines (31 loc) · 1.37 KB
title ms.service ms.assetid ms.date ms.localizationpriority
Project.IsCheckoutMsgBarVisible property (Project)
project-server
7d3ef8b3-36c1-d1f1-6c10-ad82573f9d08
06/08/2017
medium

Project.IsCheckoutMsgBarVisible property (Project)

Gets whether the checkout message bar is visible. Read-only Boolean.

Syntax

expression. IsCheckoutMsgBarVisible

expression A variable that represents a Project object.

Remarks

The checkout message bar is the yellow information bar near the top of the Project window that shows READ-ONLY This project was opened in read-only mode, and contains a Check Out button. The IsCheckoutMsgBarVisible property is True if the checkout message bar is visible; otherwise, False.

Example

The following example tests whether the checkout message bar is visible; if so, it hides the message bar.

Sub TestHideCheckoutMessageBar()
    If ActiveProject.IsCheckoutMsgBarVisible Then
        ActiveProject.HideCheckoutMsgBar
    End If
End Sub

Property value

BOOL

See also

Project Object

IsCheckoutOSVisible HideCheckoutMsgBar Method CheckoutProject Method

[!includeSupport and feedback]