NewPointLoad Method (XYZ, XYZ, XYZ, Boolean, PointLoadType, SketchPlane)


Creates a new unhosted point load within the project.

Namespace: Autodesk.Revit.Creation
Assembly: RevitAPI (in RevitAPI.dll) Version: 16.0.0.0 (16.0.0.0)

Syntax

C#
[ObsoleteAttribute("This method is obsolete in Revit 2016. Use PointLoad.Create() method instead.")]
public PointLoad NewPointLoad(
	XYZ point,
	XYZ force,
	XYZ moment,
	bool isReaction,
	PointLoadType symbol,
	SketchPlane plane
)
Visual Basic
<ObsoleteAttribute("This method is obsolete in Revit 2016. Use PointLoad.Create() method instead.")> _
Public Function NewPointLoad ( _
	point As XYZ, _
	force As XYZ, _
	moment As XYZ, _
	isReaction As Boolean, _
	symbol As PointLoadType, _
	plane As SketchPlane _
) As PointLoad
Visual C++
[ObsoleteAttribute(L"This method is obsolete in Revit 2016. Use PointLoad.Create() method instead.")]
public:
PointLoad^ NewPointLoad(
	XYZ^ point, 
	XYZ^ force, 
	XYZ^ moment, 
	bool isReaction, 
	PointLoadType^ symbol, 
	SketchPlane^ plane
)

Parameters

point
Type: Autodesk.Revit.DB XYZ
The point of the PointLoad application.
force
Type: Autodesk.Revit.DB XYZ
The 3d force.
moment
Type: Autodesk.Revit.DB XYZ
The 3d moment.
isReaction
Type: System Boolean
Specifies if the load is a reaction load. The load cannot be modified if isReaction=True.
symbol
Type: Autodesk.Revit.DB.Structure PointLoadType
The symbol of the PointLoad.
plane
Type: Autodesk.Revit.DB SketchPlane
Indicate the work plane of the PointLoad.

Return Value

If successful, NewPointLoad returns an object for the newly created PointLoad. a null reference ( Nothing in Visual Basic) is returned if the operation fails.

Exceptions

Exception Condition
Autodesk.Revit.Exceptions InvalidOperationException If the product is not Revit Structure.
Autodesk.Revit.Exceptions ArgumentException Thrown if the point load symbol does not exist in the given document.
Autodesk.Revit.Exceptions ArgumentException Thrown if the work plane does not exist in the given document.

See Also