File tree Expand file tree Collapse file tree
source/Nice3point.Revit.Extensions/UtilsExtensions Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -459,7 +459,7 @@ This update focuses on improved API design through C# 14 extension methods synta
459459
460460#### Annotation
461461
462- - ` element.SupportsMultiAlign `
462+ - ` element.IsMultiAlignSupported `
463463- ` element.GetAnnotationOutlineWithoutLeaders() `
464464- ` element.MoveWithAnchoredLeaders(XYZ) `
465465
Original file line number Diff line number Diff line change @@ -2398,10 +2398,10 @@ var instance = familySymbol.CreateAdaptiveComponentInstance();
23982398
23992399### Annotation
24002400
2401- ** SupportsMultiAlign ** returns true if the element can be aligned to other similar elements.
2401+ ** IsMultiAlignSupported ** returns true if the element can be aligned to other similar elements.
24022402
24032403``` csharp
2404- var supports = element .SupportsMultiAlign ;
2404+ var supports = element .IsMultiAlignSupported ;
24052405```
24062406
24072407** GetAnnotationOutlineWithoutLeaders** gets the four corners of the alignable element in model space without its leaders.
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ public static class AnnotationMultipleAlignmentUtilsExtensions
1717 /// <returns>
1818 /// True if the element can be aligned using the multiple alignment commands, false otherwise.
1919 /// </returns>
20- public bool SupportsMultiAlign => AnnotationMultipleAlignmentUtils. ElementSupportsMultiAlign( element ) ;
20+ public bool IsMultiAlignSupported => AnnotationMultipleAlignmentUtils. ElementSupportsMultiAlign( element ) ;
2121
2222 /// <summary>
2323 /// Gets the four corners of the alignable element in model space without its leaders.
You can’t perform that action at this time.
0 commit comments