title | ms.service | api_name | ms.assetid | ms.date | ms.localizationpriority | |
---|---|---|---|---|---|---|
Project.CurrentTable property (Project) |
project-server |
|
7b80d451-bf37-7b1c-62b4-7ee0e7fd0e63 |
06/08/2017 |
medium |
Gets the name of the active table for a project. Read-only String.
expression. CurrentTable
expression A variable that represents a Project object.
The following example displays the names of the active view, table, and filter in a dialog box.
Sub ViewDetails()
Dim Temp As String
Temp = "View: " & ActiveProject.CurrentView & vbCrLf
Temp = Temp & "Table:" & ActiveProject.CurrentTable & vbCrLf
Temp = Temp & "Filter: " & ActiveProject.CurrentFilter
MsgBox Temp
End Sub
[!includeSupport and feedback]