Show / Hide Table of Contents

Property Separator

Separator

Gets or sets a string intended to describe one code point.

Declaration
public string Separator { get; set; }
Property Value
Type Description
System.String

A string intended to describe one code point.

Remarks

Each LabelStackSeparator specifies a code point to be looked for in the text. A code point is often thought of as a single character in the text, but may need several chars in a string to describe it. For example:

  • To use a comma as a separator, the Separator string would be just ",".
  • To use Hebrew Punctuation Paseq (U+05C0) as a separator, the Separator would need to encode the code point as \u05C0 (UTF-16).
  • To use higher range Unicode code points such as Aegean Word Separator Dot (U+10101), the Separator can be encoded as either \U00010101 (UTF-32) or \uD800\uDD01 (UTF-16).

The default value is an empty string, meaning that the separator will be ignored.

Applies to

Platforms and versions
TargetVersions
.NET Standard 2.0100.11 - 200.8
.NET100.13 - 200.8
.NET Windows100.13 - 200.8
.NET Android200.0 - 200.8
.NET iOS200.0 - 200.8
.NET Framework100.11 - 200.8
Xamarin.Android100.11 - 100.15
Xamarin.iOS100.11 - 100.15
UWP100.11 - 200.8
In This Article
Back to top Copyright © 2022 Esri.