Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
python-docx / features / sty-access-parfmt.feature
Size: Mime:
Feature: Access style paragraph format
  In order to discover or change the paragraph formatting of a style
  As a developer using python-docx
  I need access to the paragraph format of a style


  Scenario Outline: Get style paragraph format
    Given a style of type <style-type>
     Then style.paragraph_format is the ParagraphFormat object for the style

    Examples: Style types
      | style-type              |
      | WD_STYLE_TYPE.PARAGRAPH |
      | WD_STYLE_TYPE.TABLE     |