title | ms.service | ms.assetid | ms.date | ms.localizationpriority |
---|---|---|---|---|
Project.IsCheckoutMsgBarVisible property (Project) |
project-server |
7d3ef8b3-36c1-d1f1-6c10-ad82573f9d08 |
06/08/2017 |
medium |
Gets whether the checkout message bar is visible. Read-only Boolean.
expression. IsCheckoutMsgBarVisible
expression A variable that represents a Project object.
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.
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
BOOL
IsCheckoutOSVisible HideCheckoutMsgBar Method CheckoutProject Method
[!includeSupport and feedback]