Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 918 Bytes

Project.Project.CurrentTable.md

File metadata and controls

41 lines (26 loc) · 918 Bytes
title ms.service api_name ms.assetid ms.date ms.localizationpriority
Project.CurrentTable property (Project)
project-server
Project.Project.CurrentTable
7b80d451-bf37-7b1c-62b4-7ee0e7fd0e63
06/08/2017
medium

Project.CurrentTable property (Project)

Gets the name of the active table for a project. Read-only String.

Syntax

expression. CurrentTable

expression A variable that represents a Project object.

Example

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]