LineEnding Struct

Definition

Defines the sequence of characters to use between the lines of text recognized by the OCR skill. The default value is "space".

public readonly struct LineEnding : IEquatable<Azure.Search.Documents.Indexes.Models.LineEnding>
type LineEnding = struct
Public Structure LineEnding
Implements IEquatable(Of LineEnding)
Inheritance
LineEnding
Implements

Constructors

LineEnding(String)

Initializes a new instance of LineEnding.

Properties

CarriageReturn

Lines are separated by a carriage return ('\r') character.

CarriageReturnLineFeed

Lines are separated by a carriage return and a line feed ('\r\n') character.

LineFeed

Lines are separated by a single line feed ('\n') character.

Space

Lines are separated by a single space character.

Methods

Equals(LineEnding)

Indicates whether the current object is equal to another object of the same type.

ToString()

Returns the fully qualified type name of this instance.

Operators

Equality(LineEnding, LineEnding)

Determines if two LineEnding values are the same.

Implicit(String to LineEnding)

Converts a string to a LineEnding.

Inequality(LineEnding, LineEnding)

Determines if two LineEnding values are not the same.

Applies to