@@ -59,7 +59,7 @@ namespace iText.Kernel.Pdf.Colorspace {
59
59
public abstract class PdfPattern : PdfObjectWrapper < PdfDictionary > {
60
60
/// <summary>
61
61
/// Wraps the passed
62
- /// <see cref="iText.Kernel.Pdf.PdfDictionary"/>
62
+ /// <see cref="iText.Kernel.Pdf.PdfDictionary"/>.
63
63
/// </summary>
64
64
/// <param name="pdfObject">
65
65
/// the
@@ -219,6 +219,7 @@ public Tiling(PdfStream pdfObject)
219
219
/// <summary>Creates a new Tiling Pattern instance.</summary>
220
220
/// <remarks>
221
221
/// Creates a new Tiling Pattern instance.
222
+ /// <para />
222
223
/// By default the pattern will be colored.
223
224
/// </remarks>
224
225
/// <param name="width">the width of the pattern cell's bounding box</param>
@@ -238,6 +239,7 @@ public Tiling(float width, float height, bool colored)
238
239
/// <summary>Creates a new Tiling instance.</summary>
239
240
/// <remarks>
240
241
/// Creates a new Tiling instance.
242
+ /// <para />
241
243
/// By default the pattern will be colored.
242
244
/// </remarks>
243
245
/// <param name="bbox">the pattern cell's bounding box</param>
@@ -255,6 +257,7 @@ public Tiling(Rectangle bbox, bool colored)
255
257
/// <summary>Creates a new Tiling Pattern instance.</summary>
256
258
/// <remarks>
257
259
/// Creates a new Tiling Pattern instance.
260
+ /// <para />
258
261
/// By default the pattern will be colored.
259
262
/// </remarks>
260
263
/// <param name="width">the width of the pattern cell's bounding box</param>
@@ -278,6 +281,7 @@ public Tiling(float width, float height, float xStep, float yStep, bool colored)
278
281
/// <summary>Creates a new Tiling instance.</summary>
279
282
/// <remarks>
280
283
/// Creates a new Tiling instance.
284
+ /// <para />
281
285
/// By default the pattern will be colored.
282
286
/// </remarks>
283
287
/// <param name="bbox">the pattern cell's bounding box</param>
@@ -376,19 +380,19 @@ public virtual void SetBBox(Rectangle bbox) {
376
380
SetModified ( ) ;
377
381
}
378
382
379
- /// <summary>Gets the desired horizontal space between pattern cells</summary>
383
+ /// <summary>Gets the desired horizontal space between pattern cells. </summary>
380
384
/// <returns>the desired horizontal space between pattern cells</returns>
381
385
public virtual float GetXStep ( ) {
382
386
return GetPdfObject ( ) . GetAsNumber ( PdfName . XStep ) . FloatValue ( ) ;
383
387
}
384
388
385
- /// <summary>Sets the desired horizontal space between pattern cells</summary>
389
+ /// <summary>Sets the desired horizontal space between pattern cells. </summary>
386
390
public virtual void SetXStep ( float xStep ) {
387
391
GetPdfObject ( ) . Put ( PdfName . XStep , new PdfNumber ( xStep ) ) ;
388
392
SetModified ( ) ;
389
393
}
390
394
391
- /// <summary>Gets the desired vertical space between pattern cells</summary>
395
+ /// <summary>Gets the desired vertical space between pattern cells. </summary>
392
396
/// <returns>the desired vertical space between pattern cells</returns>
393
397
public virtual float GetYStep ( ) {
394
398
return GetPdfObject ( ) . GetAsNumber ( PdfName . YStep ) . FloatValue ( ) ;
@@ -400,7 +404,7 @@ public virtual void SetYStep(float yStep) {
400
404
SetModified ( ) ;
401
405
}
402
406
403
- /// <summary>Gets the Tiling Pattern's resources</summary>
407
+ /// <summary>Gets the Tiling Pattern's resources. </summary>
404
408
/// <returns>the Tiling Pattern's resources</returns>
405
409
public virtual PdfResources GetResources ( ) {
406
410
if ( this . resources == null ) {
@@ -469,7 +473,7 @@ public Shading(PdfShading shading)
469
473
470
474
/// <summary>
471
475
/// Gets the dictionary of the pattern's
472
- /// <see cref="PdfShading"/>
476
+ /// <see cref="PdfShading"/>.
473
477
/// </summary>
474
478
/// <returns>
475
479
/// the dictionary of the pattern's
@@ -482,7 +486,7 @@ public virtual PdfDictionary GetShading() {
482
486
/// <summary>
483
487
/// Sets the
484
488
/// <see cref="PdfShading"/>
485
- /// that specifies the details of a particular gradient fill
489
+ /// that specifies the details of a particular gradient fill.
486
490
/// </summary>
487
491
/// <param name="shading">
488
492
/// the
@@ -494,7 +498,7 @@ public virtual void SetShading(PdfShading shading) {
494
498
SetModified ( ) ;
495
499
}
496
500
497
- /// <summary>Sets the dictionary which specifies the details of a particular gradient fill</summary>
501
+ /// <summary>Sets the dictionary which specifies the details of a particular gradient fill. </summary>
498
502
/// <param name="shading">
499
503
/// the dictionary of the pattern's
500
504
/// <see cref="PdfShading"/>
0 commit comments