9 references to Separator
PresentationFramework (9)
MS\Internal\Annotations\Anchoring\FixedTextSelectionProcessor.cs (6)
211value += fp.Segments[i].Start.X.ToString(NumberFormatInfo.InvariantInfo) + TextSelectionProcessor.Separator + fp.Segments[i].Start.Y.ToString(NumberFormatInfo.InvariantInfo); 215value += TextSelectionProcessor.Separator; 217value += TextSelectionProcessor.Separator; 220value += fp.Segments[i].End.X.ToString(NumberFormatInfo.InvariantInfo) + TextSelectionProcessor.Separator + fp.Segments[i].End.Y.ToString(NumberFormatInfo.InvariantInfo); 224value += TextSelectionProcessor.Separator; 500string[] values = segmentValue.Split(TextSelectionProcessor.Separator);
MS\Internal\Annotations\Anchoring\TextSelectionProcessor.cs (2)
159part.NameValuePairs.Add(SegmentAttribute + i.ToString(NumberFormatInfo.InvariantInfo), startOffset.ToString(NumberFormatInfo.InvariantInfo) + TextSelectionProcessor.Separator + endOffset.ToString(NumberFormatInfo.InvariantInfo)); 439string[] values = segmentString.Split(Separator);
MS\Internal\Annotations\Anchoring\TextViewSelectionProcessor.cs (1)
148part.NameValuePairs.Add(TextSelectionProcessor.SegmentAttribute + 0.ToString(NumberFormatInfo.InvariantInfo), startOffset.ToString(NumberFormatInfo.InvariantInfo) + TextSelectionProcessor.Separator + endOffset.ToString(NumberFormatInfo.InvariantInfo));