Show / Hide Table of Contents

Class TextSpan

A wrapper class for offset and length, which together, represent a span of text in a text document.

Inheritance
object
TextSpan
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatalabelingservicedataplaneService.Models
Assembly: OCI.DotNetSDK.Datalabelingservicedataplane.dll
Syntax
public class TextSpan

Properties

Length

Declaration
[JsonProperty(PropertyName = "length")]
public decimal? Length { get; set; }
Property Value
Type Description
decimal?

The length of the selected text.

Offset

Declaration
[JsonProperty(PropertyName = "offset")]
public decimal? Offset { get; set; }
Property Value
Type Description
decimal?

The offset of the selected text within the entire text.

In this article
Back to top