Class: Google::Apis::DocsV1::UpdateTextStyleRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DocsV1::UpdateTextStyleRequest
 
 
- 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
Update the styling of text.
Instance Attribute Summary collapse
- 
  
    
      #fields  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The fields that should be updated.
 - 
  
    
      #range  ⇒ Google::Apis::DocsV1::Range 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies a contiguous range of text.
 - 
  
    
      #text_style  ⇒ Google::Apis::DocsV1::TextStyle 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Represents the styling that can be applied to text.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ UpdateTextStyleRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of UpdateTextStyleRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ UpdateTextStyleRequest
Returns a new instance of UpdateTextStyleRequest.
      6758 6759 6760  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 6758 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#fields ⇒ String
The fields that should be updated. At least one field must be specified. The
root text_style is implied and should not be specified. A single "*" can
be used as short-hand for listing every field. For example, to update the text
style to bold, set fields to "bold". To reset a property to its default
value, include its field name in the field mask but leave the field itself
unset.
Corresponds to the JSON property fields
      6737 6738 6739  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 6737 def fields @fields end  | 
  
#range ⇒ Google::Apis::DocsV1::Range
Specifies a contiguous range of text.
Corresponds to the JSON property range
      6742 6743 6744  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 6742 def range @range 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
      6756 6757 6758  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 6756 def text_style @text_style end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6763 6764 6765 6766 6767  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 6763 def update!(**args) @fields = args[:fields] if args.key?(:fields) @range = args[:range] if args.key?(:range) @text_style = args[:text_style] if args.key?(:text_style) end  |