Skip to content
Enes Okullu edited this page Feb 23, 2024 · 3 revisions

Numerical data

PreFilledCustom(long number, byte maxDigit, string text = "");
PreFilledCustom(long? number, byte maxDigit, string text = "");
PreFilledCustom(long number, byte maxDigit, char text = '');
PreFilledCustom(long? number, byte maxDigit, char text = '');
PreFilledCustom(ulong number, byte maxDigit, string text = "");
PreFilledCustom(ulong? number, byte maxDigit, string text = "");
PreFilledCustom(ulong number, byte maxDigit, char text = '');
PreFilledCustom(ulong? number, byte maxDigit, char text = '');

Returns prefilled value. If value is null returns only prefilling value. (string)

  • ulong?/long? number: Unsigned long, long number value or null.

  • byte maxNumberOfDigit: Maximum number of digit of numerical value.

  • string/char text: Desired value to add at left side.

Text data

PreFilledCustom(string context, int maxLength, string text = "")
PreFilledCustom(string context, int maxLength, char text = '')

Returns prefilled value. If context is null, it returns only prefilling value. (string)

  • string context: String text value.
  • int maxLength: Maximum length of text value.
  • string/char text: Desired value to add at left side.

Generic type of data

PreFilledCustom<T>(T value, int maxLength, string text = " ")

Returns prefilled value. If context is null, it returns only prefilling value. (string)

  • T value: object value.
  • int maxLength: Maximum length of text value.
  • string text: Desired value to add at left side.

List of numerical data

PreFilledCustom(List<long> numberList, string text = "");
PreFilledCustom(List<long?> numberList, string text = "");
PreFilledCustom(List<long> numberList, char text = '');
PreFilledCustom(List<long?> numberList, char text = '');
PreFilledCustom(List<ulong> numberList, string text = "");
PreFilledCustom(List<ulong?> numberList, string text = "");
PreFilledCustom(List<long> numberList, char text = '');
PreFilledCustom(List<long?> numberList, char text = '');

Returns prefilled values. If element of given list is null, it returns only prefilling value for null element. (List)

  • List<long?>/List<ulong?> numberList: List of signed long or unsigned long numerical values.
  • string/char text: Desired value to add at left side.

List of text data

PreFilledCustom(List<string> contextList, string text = "")
PreFilledCustom(List<string) contextList, char text = '')

Returns prefilled values (List)

  • List contextList: List of string values.
  • string/char text: Desired value to add at left side.
Clone this wiki locally