# GetLineByLineGraphic Method
Returns an array of strings that contains each line of the resulting QR code as ASCII chars.
## Definition
**Namespace:** QRCoder.Core
**Assembly:** QRCoder.Core (in QRCoder.Core.dll) Version: 1.0.2+100b048b01076590efe500a3be242a5faeb43294
**XMLNS for XAML:** Not mapped to an xmlns.
**C#**
``` C#
public string[] GetLineByLineGraphic(
int repeatPerModule,
string darkColorString = "██",
string whiteSpaceString = "",
bool drawQuietZones = true
)
```
**C++**
``` C++
public:
array^ GetLineByLineGraphic(
int repeatPerModule,
String^ darkColorString = L"██",
String^ whiteSpaceString = L"",
bool drawQuietZones = true
)
```
#### Parameters
- Int32
- Number of repeated darkColorString/whiteSpaceString per module.
- String (Optional)
- String for use as dark color modules. In case of string make sure whiteSpaceString has the same length.
- String (Optional)
- String for use as white modules (whitespace). In case of string make sure darkColorString has the same length.
- Boolean (Optional)
- \[Missing <param name="drawQuietZones"/> documentation for "M:QRCoder.Core.AsciiQRCode.GetLineByLineGraphic(System.Int32,System.String,System.String,System.Boolean)"\]
#### Return Value
String[]
\[Missing <returns> documentation for "M:QRCoder.Core.AsciiQRCode.GetLineByLineGraphic(System.Int32,System.String,System.String,System.Boolean)"\]
## See Also
#### Reference
AsciiQRCode Class
QRCoder.Core Namespace