Syntax

expression.IsInplace

expression A variable that represents a Workbook object.

Example

This example indicates whether the workbook was opened for editing in place or in Microsoft Excel.

Visual Basic for Applications
Private Sub Workbook_Open() If ThisWorkbook.IsInPlace = True Then MsgBox "Editing in place" Else MsgBox "Editing in Microsoft Excel" End If End Sub
is in place Is In Place Property isin ISINPLACE IsInPlace Property

See also: