Class: Google::Apis::DocsV1::TextRun
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DocsV1::TextRun
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/docs_v1/classes.rb,
lib/google/apis/docs_v1/representations.rb,
lib/google/apis/docs_v1/representations.rb 
Overview
A ParagraphElement that represents a run of text that all has the same styling.
Instance Attribute Summary collapse
- 
  
    
      #content  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The text of this run.
 - 
  
    
      #suggested_deletion_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The suggested deletion IDs.
 - 
  
    
      #suggested_insertion_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The suggested insertion IDs.
 - 
  
    
      #suggested_text_style_changes  ⇒ Hash<String,Google::Apis::DocsV1::SuggestedTextStyle> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The suggested text style changes to this run, keyed by suggestion ID.
 - 
  
    
      #text_style  ⇒ Google::Apis::DocsV1::TextStyle 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Represents the styling that can be applied to text.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TextRun 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of TextRun.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ TextRun
Returns a new instance of TextRun.
      6250 6251 6252  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 6250 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#content ⇒ String
The text of this run. Any non-text elements in the run are replaced with the
Unicode character U+E907.
Corresponds to the JSON property content
      6217 6218 6219  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 6217 def content @content end  | 
  
#suggested_deletion_ids ⇒ Array<String>
The suggested deletion IDs. If empty, then there are no suggested deletions of
this content.
Corresponds to the JSON property suggestedDeletionIds
      6223 6224 6225  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 6223 def suggested_deletion_ids @suggested_deletion_ids end  | 
  
#suggested_insertion_ids ⇒ Array<String>
The suggested insertion IDs. A TextRun may have multiple insertion IDs if it's
a nested suggested change. If empty, then this is not a suggested insertion.
Corresponds to the JSON property suggestedInsertionIds
      6229 6230 6231  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 6229 def suggested_insertion_ids @suggested_insertion_ids end  | 
  
#suggested_text_style_changes ⇒ Hash<String,Google::Apis::DocsV1::SuggestedTextStyle>
The suggested text style changes to this run, keyed by suggestion ID.
Corresponds to the JSON property suggestedTextStyleChanges
      6234 6235 6236  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 6234 def suggested_text_style_changes @suggested_text_style_changes end  | 
  
#text_style ⇒ Google::Apis::DocsV1::TextStyle
Represents the styling that can be applied to text. Inherited text styles are
represented as unset fields in this message. A text style's parent depends on
where the text style is defined: * The TextStyle of text in a Paragraph
inherits from the paragraph's corresponding named style type. * The TextStyle
on a named style inherits from the normal text named style. * The TextStyle of
the normal text named style inherits from the default text style in the Docs
editor. * The TextStyle on a Paragraph element that's contained in a table may
inherit its text style from the table style. If the text style does not
inherit from a parent, unsetting fields will revert the style to a value
matching the defaults in the Docs editor.
Corresponds to the JSON property textStyle
      6248 6249 6250  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 6248 def text_style @text_style end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6255 6256 6257 6258 6259 6260 6261  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 6255 def update!(**args) @content = args[:content] if args.key?(:content) @suggested_deletion_ids = args[:suggested_deletion_ids] if args.key?(:suggested_deletion_ids) @suggested_insertion_ids = args[:suggested_insertion_ids] if args.key?(:suggested_insertion_ids) @suggested_text_style_changes = args[:suggested_text_style_changes] if args.key?(:suggested_text_style_changes) @text_style = args[:text_style] if args.key?(:text_style) end  |