You're right, but I'm running a decision to only put the leader that I need based upon where it was drawn, see here:
UIDocument uiDoc = commandData.Application.ActiveUIDocument;
Leader leader = null;
if (uiDoc.ActiveView.ViewType != ViewType.DraftingView && uiDoc.ActiveView.ViewType != ViewType.Legend)
{
Plane plane = commandData.Application.Application.Create.NewPlane(uiDoc.ActiveView.ViewDirection, uiDoc.ActiveView.Origin);
SketchPlane sketchPlane = SketchPlane.Create(uiDoc.Document, plane);
uiDoc.ActiveView.SketchPlane = sketchPlane;
}
try
{
// Prompt the user to select three points and store there values
startPoint = uiDoc.Selection.PickPoint(snapTypeNone, "Pick the start point of the leader.");
elbowPoint = uiDoc.Selection.PickPoint(snapTypeNone, "Pick the elbow point of the leader.");
endPoint = uiDoc.Selection.PickPoint(snapTypeNone, "Pick the text location.");
}
if (Math.Abs(uiDoc.ActiveView.RightDirection.X) == 1 && (startPoint.X * uiDoc.ActiveView.RightDirection.X) > (elbowPoint.X * uiDoc.ActiveView.RightDirection.X) ||
Math.Abs(uiDoc.ActiveView.RightDirection.Y) == 1 && (startPoint.Y * uiDoc.ActiveView.RightDirection.Y) > (elbowPoint.Y * uiDoc.ActiveView.RightDirection.Y))
{
leader = note.AddLeader(TextNoteLeaderTypes.TNLT_STRAIGHT_R);
}
else
{
leader = note.AddLeader(TextNoteLeaderTypes.TNLT_STRAIGHT_L);
}
if (Math.Abs(uiDoc.ActiveView.RightDirection.X) == 1)
leader.Elbow = new XYZ(elbowPoint.X, leader.Elbow.Y, leader.Elbow.Z);
else if (Math.Abs(uiDoc.ActiveView.RightDirection.Y) == 1)
leader.Elbow = new XYZ(leader.Elbow.X, elbowPoint.Y, leader.Elbow.Z);
else
leader.Elbow = new XYZ(elbowPoint.X, elbowPoint.Y, leader.Elbow.Z);
So now the note has a leader using .AddLeader(). However, I don't want to change the endPoint as you showed as an example below. I want to change the Right Attachment property in the object. See the Screenshot I have attached - it shows that the Left Attachment is Top and the Right Attachment is Bottom. This is the default activity of a new leader on a note - I want to override that and make them both Top.
I can't seem to find anything useful beyond the "TopLine" I posted before, but that doesn't work.... Any additional ideas on how to make that work? Thank you for your help!!