PointLoad.Create
Description:
Creates a new custom hosted point load within the project using data at point.
Creates a new custom hosted point load within the project using data at point.
Overloads (2):
Create(Document,ElementId,XYZ,XYZ,XYZ,PointLoadType)
-
documentDocument to which new point load will be added.
-
hostElemIdThe AnalyticalElement host element for the point Load.
-
pointThe position of point load, measured in decimal feet.
-
forceVectorThe applied 3d force vector.
-
momentVectorThe applied 3d moment vector.
-
symbolThe symbol of the PointLoad. Set null to use default type.
Document document = commandData.Application.ActiveUIDocument.Document;
UIDocument activeDoc = commandData.Application.ActiveUIDocument;
//select object for adding a point load
Reference eRef = activeDoc.Selection.PickObject(ObjectType.Element, "Please select the analytical element");
ElementId selectedElementId = null;
if (eRef != null && eRef.ElementId != ElementId.InvalidElementId)
selectedElementId = eRef.ElementId;
XYZ location = activeDoc.Selection.PickPoint("Point Load location");
using (Transaction transaction = new Transaction(document, "Create custom PointLoad"))
{
transaction.Start();
PointLoad pointLoad = null;
if (PointLoad.IsPointInsideHostBoundaries(document, selectedElementId, location))
pointLoad = PointLoad.Create(document, selectedElementId, location, new XYZ(1, 0, 0), new XYZ(1, 0, 0), null);
transaction.Commit();
}
-
hostElemId is not permitted for this type of load. -or- Thrown when work plane is not valid. -or- hostElemId is not a valid host for point load.
-
A non-optional argument was null
-
Thrown when force and moment vectors are equal zero.
-
Thrown if type could not be set for newly created point load.