You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/models/CaptionParams.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Name | Type | Description | Notes
13
13
---- | ---- | ----------- | -----
14
14
**text** | **String** | Caption text. | [optional][default to null]
15
15
**alignment** | [**TextAlignment**](TextAlignment.md) | Text alignment. | [optional][default to null]
16
-
**color** | **String** | Text color. | [optional][default to null]
16
+
**color** | **String** | Text color. Default value: black Use named colors like: red, green, blue Or HTML colors like: #FF0000, #00FF00, #0000FF | [optional][default to null]
17
17
**visible** | **bool** | Is caption visible. | [optional][default to null]
18
18
**font** | [**FontParams**](FontParams.md) | Font. | [optional][default to null]
19
19
**padding** | [**Padding**](Padding.md) | Padding. | [optional][default to null]
Copy file name to clipboardExpand all lines: doc/models/GeneratorParams.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Name | Type | Description | Notes
16
16
**twoDDisplayText** | **String** | Text that will be displayed instead of codetext in 2D barcodes. Used for: Aztec, Pdf417, DataMatrix, QR, MaxiCode, DotCode | [optional][default to null]
17
17
**textLocation** | [**CodeLocation**](CodeLocation.md) | Specify the displaying Text Location, set to CodeLocation.None to hide CodeText. Default value: CodeLocation.Below. | [optional][default to null]
18
18
**textAlignment** | [**TextAlignment**](TextAlignment.md) | Text alignment. | [optional][default to null]
19
-
**textColor** | **String** | Specify the displaying CodeText's Color. Default value: Color.Black. | [optional][default to null]
19
+
**textColor** | **String** | Specify the displaying CodeText's Color. Default value: black. Use named colors like: red, green, blue Or HTML colors like: #FF0000, #00FF00, #0000FF | [optional][default to null]
20
20
**font** | [**FontParams**](FontParams.md) | Specify the displaying Text's font. Default value: Arial 5pt regular. Ignored if FontSizeMode is set to FontSizeMode.Auto. | [optional][default to null]
21
21
**fontSizeMode** | [**FontMode**](FontMode.md) | Specify FontSizeMode. If FontSizeMode is set to Auto, font size will be calculated automatically based on xDimension value. It is recommended to use FontSizeMode.Auto especially in AutoSizeMode.Nearest or AutoSizeMode.Interpolation. Default value: FontSizeMode.Auto. | [optional][default to null]
22
22
**noWrap** | **bool** | Specify word wraps (line breaks) within text. Default value: false. | [optional][default to null]
@@ -34,9 +34,9 @@ Name | Type | Description | Notes
**backColor** | **String** | Background color of the barcode image. Default value: white. Use named colors like: red, green, blue Or HTML colors like: #FF0000, #00FF00, #0000FF | [optional][default to null]
38
+
**barColor** | **String** | Bars color. Default value: black. Use named colors like: red, green, blue Or HTML colors like: #FF0000, #00FF00, #0000FF | [optional][default to null]
39
+
**borderColor** | **String** | Border color. Default value: black. Use named colors like: red, green, blue Or HTML colors like: #FF0000, #00FF00, #0000FF | [optional][default to null]
40
40
**borderWidth** | **double** | Border width. Default value: 0. Ignored if Visible is set to false. | [optional][default to null]
Copy file name to clipboardExpand all lines: lib/src/model/generator_params.dart
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ class GeneratorParams {
19
19
/// Text alignment.
20
20
TextAlignment? textAlignment;
21
21
22
-
/// Specify the displaying CodeText's Color. Default value: Color.Black.
22
+
/// Specify the displaying CodeText's Color. Default value: black. Use named colors like: red, green, blue Or HTML colors like: #FF0000, #00FF00, #0000FF
23
23
String? textColor;
24
24
25
25
/// Specify the displaying Text's font. Default value: Arial 5pt regular. Ignored if FontSizeMode is set to FontSizeMode.Auto.
@@ -73,13 +73,13 @@ class GeneratorParams {
73
73
/// Additional caption below barcode.
74
74
CaptionParams? captionBelow;
75
75
76
-
/// Background color of the barcode image. Default value: Color.White.
76
+
/// Background color of the barcode image. Default value: white. Use named colors like: red, green, blue Or HTML colors like: #FF0000, #00FF00, #0000FF
77
77
String? backColor;
78
78
79
-
/// Bars color. Default value: Color.Black.
79
+
/// Bars color. Default value: black. Use named colors like: red, green, blue Or HTML colors like: #FF0000, #00FF00, #0000FF
80
80
String? barColor;
81
81
82
-
/// Border color. Default value: Color.Black.
82
+
/// Border color. Default value: black. Use named colors like: red, green, blue Or HTML colors like: #FF0000, #00FF00, #0000FF
83
83
String? borderColor;
84
84
85
85
/// Border width. Default value: 0. Ignored if Visible is set to false.
0 commit comments