This document is archived and information here might be outdated.  Recommended version.


IPageLayoutControl2.CheckMxFile Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Controls > ESRI ArcGIS Controls > Interfaces > IP > IPageLayoutControl2 Interface > IPageLayoutControl2.CheckMxFile Method
ArcGIS Developer Help

IPageLayoutControl2.CheckMxFile Method

Checks the specified filename to see if it is a map document that can be loaded into the PageLayoutControl.

[Visual Basic .NET]
Public Function CheckMxFile ( _
    ByVal fileName As String _
) As Boolean
[C#]
public bool CheckMxFile (
    string fileName
);
[C++]
HRESULT CheckMxFile(
  BSTR fileName
);
[C++]
Parameters
fileName [in]

fileName is a parameter of type BSTR

Product Availability

Available with ArcGIS Engine.

Description

Determines whether the specified map document (*.mxd, *.mxt, *.pmf) is a valid map document and can be loaded into the PageLayoutControl. The method verifies the file exists and verifies the file internals conform to an expected storage format. The method does not read and validate the entire contents of the file; use the LoadMxFile to do this.

See Also

IPageLayoutControl2 Interface