Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 2.07 KB

ScoreCreationBuilderDataLayoutData.md

File metadata and controls

37 lines (28 loc) · 2.07 KB

ScoreCreationBuilderDataLayoutData

Control the appearance of the score. If missing, default values are used.

Properties

Name Type Description Notes
notes_spacing_coeff float A float value >= 1 that controls the spacing between notes. [optional]
length_unit str The unit to use for layout customizations [optional] [default to 'cm']
page_height float The height of the page in chosen unit (`lengthUnit`). [optional]
page_width float The width of the page in chosen unit (`lengthUnit`). [optional]
page_margin_top float The top margin of the page in chosen unit (`lengthUnit`). [optional]
page_margin_bottom float The bottom margin of the page in chosen unit (`lengthUnit`). [optional]
page_margin_left float The left margin of the page in chosen unit (`lengthUnit`). [optional]
page_margin_right float The right margin of the page in chosen unit (`lengthUnit`). [optional]

Example

from flat_api.models.score_creation_builder_data_layout_data import ScoreCreationBuilderDataLayoutData

# TODO update the JSON string below
json = "{}"
# create an instance of ScoreCreationBuilderDataLayoutData from a JSON string
score_creation_builder_data_layout_data_instance = ScoreCreationBuilderDataLayoutData.from_json(json)
# print the JSON string representation of the object
print ScoreCreationBuilderDataLayoutData.to_json()

# convert the object into a dict
score_creation_builder_data_layout_data_dict = score_creation_builder_data_layout_data_instance.to_dict()
# create an instance of ScoreCreationBuilderDataLayoutData from a dict
score_creation_builder_data_layout_data_form_dict = score_creation_builder_data_layout_data.from_dict(score_creation_builder_data_layout_data_dict)

[Back to Model list] [Back to API list] [Back to README]