Table of Contents

Class KeyValueLine

Namespace
anybill.POS.Client.Models.Receipt.Data.Line
Assembly
anybill.POS.Client.Abstractions.dll

A KeyValue line is a custom line, which is not defined by the DFKA. This line should only be used if you need information which has to have a specific order. Please consider if using the "TextLineDto" or "DefaultLineDto" is sufficient for your needs. Key and Value will be shown on the left and right side of the pdf receipt. There will be no localization for the key and value.

public class KeyValueLine : LineBase
Inheritance
KeyValueLine
Inherited Members

Constructors

KeyValueLine()

public KeyValueLine()

Properties

Extension

public AnybillKeyValueLineExtension Extension { get; set; }

Property Value

AnybillKeyValueLineExtension

Key

The key of your custom line. This will be shown on the left side of the pdf receipt.

public string Key { get; set; }

Property Value

string

Value

The value of your custom line. This will be shown on the right side of the pdf receipt.

public string Value { get; set; }

Property Value

string