Skip to content

Files

Latest commit

 

History

History
43 lines (27 loc) · 942 Bytes

Excel.timelinestate.application.md

File metadata and controls

43 lines (27 loc) · 942 Bytes
title keywords f1_keywords ms.assetid ms.date ms.localizationpriority
TimelineState.Application property (Excel)
vbaxl10.chm949073
vbaxl10.chm949073
5b919557-9aeb-acc7-f717-8457f57e44fb
05/18/2019
medium

TimelineState.Application property (Excel)

Returns an Application object that represents the Microsoft Excel application. Read-only.

Syntax

expression.Application

expression A variable that represents a TimelineState object.

Property value

APPLICATION

Example

This example displays a message about the application that created myObject.

Set myObject = ActiveWorkbook 
If myObject.Application.Value = "Microsoft Excel" Then 
 MsgBox "This is an Excel Application object." 
Else 
 MsgBox "This is not an Excel Application object." 
End If

[!includeSupport and feedback]