Show / Hide Table of Contents

Class Formatting

Formatting information for a segment.

Inheritance
System.Object
Formatting
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class Formatting : IDirectResponseSchema

Properties

Bold

Declaration
[JsonProperty("bold")]
public virtual bool? Bold { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

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

Highlight

This indicates that the segment should be rendered as highlighted or visually emphasized.

Declaration
[JsonProperty("highlight")]
public virtual bool? Highlight { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Italics

Declaration
[JsonProperty("italics")]
public virtual bool? Italics { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Strikethrough

Declaration
[JsonProperty("strikethrough")]
public virtual bool? Strikethrough { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Style

If set, this indicates that the segment should be rendered with the specified style. The absence of an explicit style represents "no style", i.e. the segment can be rendered with the default style chosen by the application.

Declaration
[JsonProperty("style")]
public virtual string Style { get; set; }
Property Value
Type Description
System.String

Underline

Declaration
[JsonProperty("underline")]
public virtual bool? Underline { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top