CreateLocalResource Method


Creates an ExternalResourceReference representing a local file managed by Revit's built-in server.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 2015.0.0.0 (2015.0.0.0)
Since: 2015

Syntax

C#
public static ExternalResourceReference CreateLocalResource(
	Document doc,
	ExternalResourceType resourceType,
	ModelPath path,
	PathType pathType
)
Visual Basic
Public Shared Function CreateLocalResource ( _
	doc As Document, _
	resourceType As ExternalResourceType, _
	path As ModelPath, _
	pathType As PathType _
) As ExternalResourceReference
Visual C++
public:
static ExternalResourceReference^ CreateLocalResource(
	Document^ doc, 
	ExternalResourceType^ resourceType, 
	ModelPath^ path, 
	PathType pathType
)

Parameters

doc
Type: Autodesk.Revit.DB Document
The document containing the reference. If the PathType is relative, the path will be made relative to the location of this Document. (If this Document belongs to a workshared model, the reference will be relative to the central model.)
resourceType
Type: Autodesk.Revit.DB ExternalResourceType
The type of the external resource.
path
Type: Autodesk.Revit.DB ModelPath
A path to the external file. This path must be absolute. If the PathType is relative, then Revit will relativize the path according to the location of the given Document.
pathType
Type: Autodesk.Revit.DB PathType
An enum indicating the type of path which the ExternalResourceReference should use. The PathType must be PathType.Server if the reference is to a Revit model on Revit Server. The PathType must be PathType.Absolute if the reference is local but the host model or host's central model are on Revit Server.

Return Value

The newly-created ExternalResourceReference.

Exceptions

Exception Condition
Autodesk.Revit.Exceptions ArgumentException The PathType.Enum value is not valid for this resource type or Document location. PathType.Content is not valid for Revit links. The PathType must be PathType.Server if the resource is on Revit Server and is only valid for Revit links. The PathType must be PathType.Absolute if the host document or the host document's central model are on Revit Server.
Autodesk.Revit.Exceptions ArgumentNullException A non-optional argument was NULL
Autodesk.Revit.Exceptions ArgumentOutOfRangeException A value passed for an enumeration argument is not a member of that enumeration

See Also