RVTDocs.com
Namespace: Autodesk.Revit.DB Class: Form

Form.MoveProfile

Method
Description:
Move a profile of the form, specified by a reference, and an offset vector.
Syntax
public void MoveProfile(
	int profileIndex,
	XYZ offset
)
Examples
public void MoveForm(Form form)
{
    int profileCount = form.ProfileCount;
    if (form.ProfileCount > 0)
    {
        int profileIndex = 0;   // modify the first form only
        if (form.CanManipulateProfile(profileIndex))
        {
            XYZ offset = new XYZ(-25, 0, 0);
            form.MoveProfile(profileIndex, offset);
        }
    }
}
Parameters
Parameter Type Description
profileIndex Int32 Index to specify the profile.
offset XYZ The vector by which the element is to be moved.
Return Value