@@ -230,9 +230,8 @@ protected override void init()
230
230
}
231
231
232
232
/// <summary>
233
- /// Set the orientation of the layout
233
+ /// Set the orientation of the layout. Can be: <see cref="Horizontal"/>, or <see cref="Vertical"/>
234
234
/// </summary>
235
- /// <param name="orientation">either Flow.HORIZONTAL or FLow.VERTICAL</param>
236
235
public virtual void SetOrientation ( int orientation )
237
236
{
238
237
mFlow . Orientation = orientation ;
@@ -290,23 +289,17 @@ public virtual void SetPaddingBottom(int value)
290
289
}
291
290
292
291
/// <summary>
293
- /// Set the style of the last Horizontal column.
292
+ /// Set the style of the last Horizontal column. Can be: <see cref="ChainSpread"/>, <see cref="ChainSpreadInside"/>, or <see cref="ChainPacked"/>.
294
293
/// </summary>
295
- /// <param name="style">
296
- /// Flow.CHAIN_SPREAD, Flow.CHAIN_SPREAD_INSIDE, or Flow.CHAIN_PACKED
297
- /// </param>
298
294
public virtual void SetLastHorizontalStyle ( int style )
299
295
{
300
296
mFlow . LastHorizontalStyle = style ;
301
297
this . RequestReLayout ( ) ;
302
298
}
303
299
304
300
/// <summary>
305
- /// Set the style of the last vertical row.
301
+ /// Set the style of the last vertical row. Can be: <see cref="ChainSpread"/>, <see cref="ChainSpreadInside"/>, or <see cref="ChainPacked"/>.
306
302
/// </summary>
307
- /// <param name="style">
308
- /// Flow.CHAIN_SPREAD, Flow.CHAIN_SPREAD_INSIDE, or Flow.CHAIN_PACKED
309
- /// </param>
310
303
public virtual void SetLastVerticalStyle ( int style )
311
304
{
312
305
mFlow . LastVerticalStyle = style ;
@@ -335,11 +328,9 @@ public virtual void SetLastVerticalBias(float value)
335
328
336
329
/// <summary>
337
330
/// Set wrap mode for the layout. Can be:
338
- ///
339
- /// Flow.WRAP_NONE (default) -- no wrap behavior, create a single chain Flow.WRAP_CHAIN --
340
- /// if not enough space to fit the referenced elements, will create additional chains after
341
- /// the first one Flow.WRAP_ALIGNED -- if not enough space to fit the referenced elements,
342
- /// will wrap the elements, keeping them aligned (like a table)
331
+ /// <see cref="WrapNone"/> (default) -- no wrap behavior, create a single chain.
332
+ /// <see cref="WrapChain"/> -- if not enough space to fit the referenced elements, will create additional chains after the first one.
333
+ /// <see cref="WrapAligned"/> -- if not enough space to fit the referenced elements, will wrap the elements, keeping them aligned (like a table).
343
334
/// </summary>
344
335
/// <param name="mode"></param>
345
336
public virtual void SetWrapMode ( int value )
@@ -349,9 +340,7 @@ public virtual void SetWrapMode(int value)
349
340
}
350
341
351
342
/// <summary>
352
- /// Set horizontal chain style. Can be:
353
- ///
354
- /// Flow.CHAIN_SPREAD Flow.CHAIN_SPREAD_INSIDE Flow.CHAIN_PACKED
343
+ /// Set horizontal chain style. Can be: <see cref="ChainSpread"/>, <see cref="ChainSpreadInside"/>, <see cref="ChainPacked"/>.
355
344
/// </summary>
356
345
/// <param name="style"></param>
357
346
public virtual void SetHorizontalStyle ( int value )
@@ -361,9 +350,7 @@ public virtual void SetHorizontalStyle(int value)
361
350
}
362
351
363
352
/// <summary>
364
- /// Set vertical chain style. Can be:
365
- ///
366
- /// Flow.CHAIN_SPREAD Flow.CHAIN_SPREAD_INSIDE Flow.CHAIN_PACKED
353
+ /// Set vertical chain style. Can be: <see cref="ChainSpread"/>, <see cref="ChainSpreadInside"/>, <see cref="ChainPacked"/>.
367
354
/// </summary>
368
355
/// <param name="style"></param>
369
356
public virtual void SetVerticalStyle ( int value )
@@ -393,7 +380,7 @@ public virtual void SetVerticalBias(float bias)
393
380
}
394
381
395
382
/// <summary>
396
- /// Similar to setHorizontalStyle() , but only applies to the first chain.
383
+ /// Similar to <see cref="SetHorizontalStyle"/> , but only applies to the first chain.
397
384
/// </summary>
398
385
/// <param name="style"></param>
399
386
public virtual void SetFirstHorizontalStyle ( int value )
@@ -403,7 +390,7 @@ public virtual void SetFirstHorizontalStyle(int value)
403
390
}
404
391
405
392
/// <summary>
406
- /// Similar to setVerticalStyle() , but only applies to the first chain.
393
+ /// Similar to <see cref="SetVerticalStyle"/> , but only applies to the first chain.
407
394
/// </summary>
408
395
/// <param name="style"></param>
409
396
public virtual void SetFirstVerticalStyle ( int value )
@@ -413,7 +400,7 @@ public virtual void SetFirstVerticalStyle(int value)
413
400
}
414
401
415
402
/// <summary>
416
- /// Similar to setHorizontalBias() , but only applied to the first chain.
403
+ /// Similar to <see cref="SetHorizontalBias"/> , but only applied to the first chain.
417
404
/// </summary>
418
405
/// <param name="bias"></param>
419
406
public virtual void SetFirstHorizontalBias ( float value )
@@ -423,7 +410,7 @@ public virtual void SetFirstHorizontalBias(float value)
423
410
}
424
411
425
412
/// <summary>
426
- /// Similar to setVerticalBias() , but only applied to the first chain.
413
+ /// Similar to <see cref="SetVerticalBias"/> , but only applied to the first chain.
427
414
/// </summary>
428
415
/// <param name="bias"></param>
429
416
public virtual void SetFirstVerticalBias ( float value )
@@ -433,11 +420,10 @@ public virtual void SetFirstVerticalBias(float value)
433
420
}
434
421
435
422
/// <summary>
436
- /// Set up the horizontal alignment of the elements in the layout, if the layout orientation
437
- /// is set to Flow.VERTICAL
423
+ /// Set up the horizontal alignment of the elements in the layout, if the layout <see cref="SetOrientation(int)"/>
424
+ /// is set to <see cref="Vertical"/>.
438
425
///
439
- /// Can be either: Flow.HORIZONTAL_ALIGN_START Flow.HORIZONTAL_ALIGN_END
440
- /// Flow.HORIZONTAL_ALIGN_CENTER
426
+ /// Can be either: <see cref="HorizontalAlignStart"/>, <see cref="HorizontalAlignEnd"/>, <see cref="HorizontalAlignCenter"/>.
441
427
/// </summary>
442
428
/// <param name="align"></param>
443
429
public virtual void SetHorizontalAlign ( int value )
@@ -447,11 +433,10 @@ public virtual void SetHorizontalAlign(int value)
447
433
}
448
434
449
435
/// <summary>
450
- /// Set up the vertical alignment of the elements in the layout, if the layout orientation
451
- /// is set to Flow.HORIZONTAL
436
+ /// Set up the vertical alignment of the elements in the layout, if the layout <see cref="SetOrientation(int)"/>
437
+ /// is set to <see cref="Horizontal"/>.
452
438
///
453
- /// Can be either: Flow.VERTICAL_ALIGN_TOP Flow.VERTICAL_ALIGN_BOTTOM
454
- /// Flow.VERTICAL_ALIGN_CENTER Flow.VERTICAL_ALIGN_BASELINE
439
+ /// Can be either: <see cref="VerticalAlignTop"/>, <see cref="VerticalAlignBottom"/>, <see cref="VerticalAlignCenter"/>, <see cref="VerticalAlignBaseline"/>.
455
440
/// </summary>
456
441
/// <param name="align"></param>
457
442
public virtual void SetVerticalAlign ( int value )
0 commit comments