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
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.0
.NET 6.0100.13 - 200.0
.NET 6.0 Windows100.13 - 200.0
.NET 6.0 Android200
.NET 6.0 iOS200
.NET Framework100.11 - 200.0
.NET 5100.11 - 100.12
.NET Core 3.1100.11 - 100.12
Android100.11 - 100.15
iOS100.11 - 100.15
UWP100.11 - 200.0
In This Article
Back to top Copyright © 2022 Esri.