@@ -1879,34 +1879,37 @@ public enum NSSaveOperationType : ulong {
18791879
18801880 #region NSBezelPath
18811881
1882+ /// <summary>Specifies the shape of the endpoints of an open path.</summary>
18821883 [ NoMacCatalyst ]
18831884 [ Native ]
18841885 public enum NSLineCapStyle : ulong {
1885- /// <summary>To be added .</summary>
1886+ /// <summary>Ends the path at the endpoint .</summary>
18861887 Butt ,
1887- /// <summary>To be added .</summary>
1888+ /// <summary>Uses a semicircular cap centered on the endpoint .</summary>
18881889 Round ,
1889- /// <summary>To be added .</summary>
1890+ /// <summary>Uses a square cap that extends beyond the endpoint .</summary>
18901891 Square ,
18911892 }
18921893
1894+ /// <summary>Specifies the shape used to join connected path segments.</summary>
18931895 [ NoMacCatalyst ]
18941896 [ Native ]
18951897 public enum NSLineJoinStyle : ulong {
1896- /// <summary>To be added .</summary>
1898+ /// <summary>Joins segments by extending their outer edges until they meet .</summary>
18971899 Miter ,
1898- /// <summary>To be added .</summary>
1900+ /// <summary>Joins segments with a rounded corner .</summary>
18991901 Round ,
1900- /// <summary>To be added .</summary>
1902+ /// <summary>Joins segments with a beveled corner .</summary>
19011903 Bevel ,
19021904 }
19031905
1906+ /// <summary>Specifies the rule used to determine which areas of a path are filled.</summary>
19041907 [ NoMacCatalyst ]
19051908 [ Native ]
19061909 public enum NSWindingRule : ulong {
1907- /// <summary>To be added .</summary>
1910+ /// <summary>Fills areas using the nonzero winding rule .</summary>
19081911 NonZero ,
1909- /// <summary>To be added .</summary>
1912+ /// <summary>Fills areas using the even-odd winding rule .</summary>
19101913 EvenOdd ,
19111914 }
19121915
@@ -1926,12 +1929,13 @@ public enum NSBezierPathElement : ulong {
19261929 #endregion
19271930
19281931 #region NSRulerView
1932+ /// <summary>Specifies the orientation of a ruler view.</summary>
19291933 [ NoMacCatalyst ]
19301934 [ Native ]
19311935 public enum NSRulerOrientation : ulong {
1932- /// <summary>To be added .</summary>
1936+ /// <summary>A horizontal ruler .</summary>
19331937 Horizontal ,
1934- /// <summary>To be added .</summary>
1938+ /// <summary>A vertical ruler .</summary>
19351939 Vertical ,
19361940 }
19371941 #endregion
@@ -2133,23 +2137,25 @@ public enum NSUnderlinePattern : int {
21332137 DashDotDot = 0x0400 ,
21342138 }
21352139
2140+ /// <summary>Specifies the direction associated with a selection at a line boundary.</summary>
21362141 [ NoMacCatalyst ]
21372142 [ Native ]
21382143 public enum NSSelectionAffinity : ulong {
2139- /// <summary>To be added .</summary>
2144+ /// <summary>The selection is associated with the preceding line .</summary>
21402145 Upstream ,
2141- /// <summary>To be added .</summary>
2146+ /// <summary>The selection is associated with the following line .</summary>
21422147 Downstream ,
21432148 }
21442149
2150+ /// <summary>Specifies the unit used when modifying a text selection.</summary>
21452151 [ NoMacCatalyst ]
21462152 [ Native ]
21472153 public enum NSSelectionGranularity : ulong {
2148- /// <summary>To be added .</summary>
2154+ /// <summary>Selects text by character .</summary>
21492155 Character ,
2150- /// <summary>To be added .</summary>
2156+ /// <summary>Selects text by word .</summary>
21512157 Word ,
2152- /// <summary>To be added .</summary>
2158+ /// <summary>Selects text by paragraph .</summary>
21532159 Paragraph ,
21542160 }
21552161
@@ -2181,31 +2187,33 @@ public enum NSTrackingAreaOptions : ulong {
21812187 }
21822188 #endregion
21832189
2190+ /// <summary>Specifies the direction in which text layout sweeps across a line.</summary>
21842191 [ NoMacCatalyst ]
21852192 [ Native ]
21862193 public enum NSLineSweepDirection : ulong {
2187- /// <summary>To be added .</summary>
2194+ /// <summary>Sweeps toward the left .</summary>
21882195 NSLineSweepLeft ,
2189- /// <summary>To be added .</summary>
2196+ /// <summary>Sweeps toward the right .</summary>
21902197 NSLineSweepRight ,
2191- /// <summary>To be added .</summary>
2198+ /// <summary>Sweeps downward .</summary>
21922199 NSLineSweepDown ,
2193- /// <summary>To be added .</summary>
2200+ /// <summary>Sweeps upward .</summary>
21942201 NSLineSweepUp ,
21952202 }
21962203
2204+ /// <summary>Specifies the direction in which text layout moves between lines.</summary>
21972205 [ NoMacCatalyst ]
21982206 [ Native ]
21992207 public enum NSLineMovementDirection : ulong {
2200- /// <summary>To be added .</summary>
2208+ /// <summary>Does not move between lines .</summary>
22012209 None ,
2202- /// <summary>To be added .</summary>
2210+ /// <summary>Moves to the left .</summary>
22032211 Left ,
2204- /// <summary>To be added .</summary>
2212+ /// <summary>Moves to the right .</summary>
22052213 Right ,
2206- /// <summary>To be added .</summary>
2214+ /// <summary>Moves downward .</summary>
22072215 Down ,
2208- /// <summary>To be added .</summary>
2216+ /// <summary>Moves upward .</summary>
22092217 Up ,
22102218 }
22112219
@@ -2289,23 +2297,25 @@ public enum NSBitmapFormat : ulong {
22892297 BigEndian32Bit = 1 << 11 ,
22902298 }
22912299
2300+ /// <summary>Specifies the orientation of printed pages.</summary>
22922301 [ NoMacCatalyst ]
22932302 [ Native ]
22942303 public enum NSPrintingOrientation : ulong {
2295- /// <summary>To be added .</summary>
2304+ /// <summary>Prints pages in portrait orientation .</summary>
22962305 Portrait ,
2297- /// <summary>To be added .</summary>
2306+ /// <summary>Prints pages in landscape orientation .</summary>
22982307 Landscape ,
22992308 }
23002309
2310+ /// <summary>Specifies how printed content is paginated along one axis.</summary>
23012311 [ NoMacCatalyst ]
23022312 [ Native ]
23032313 public enum NSPrintingPaginationMode : ulong {
2304- /// <summary>To be added .</summary>
2314+ /// <summary>Divides the content into equal-sized page rectangles .</summary>
23052315 Auto ,
2306- /// <summary>To be added .</summary>
2316+ /// <summary>Scales the content to produce one row or column of pages .</summary>
23072317 Fit ,
2308- /// <summary>To be added .</summary>
2318+ /// <summary>Clips the content to produce one row or column of pages .</summary>
23092319 Clip ,
23102320 }
23112321
0 commit comments