Skip to content

Files

Latest commit

 

History

History
44 lines (27 loc) · 939 Bytes

Excel.modelchanges.application.md

File metadata and controls

44 lines (27 loc) · 939 Bytes
title keywords f1_keywords ms.assetid ms.date ms.localizationpriority
ModelChanges.Application property (Excel)
vbaxl10.chm959073
vbaxl10.chm959073
4f2d358a-ed68-1b9d-8eeb-e502a02d0c7f
05/01/2019
medium

ModelChanges.Application property (Excel)

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

Syntax

expression.Application

expression A variable that represents a ModelChanges 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]