build.Link.SectionAlignment
|
アクティブ・プロジェクトのリンク・オプションである,セクション・アライメントの設定/参照を行います。【CC-RH】【CC-RX】【CC-RL】
[指定形式]
build.Link.SectionAlignment = sectionlist
|
[設定]
|
|
sectionlist
|
セクション・アライメントを文字列のリストで設定します。
|
[参照]
セクション・アライメントのリスト
[詳細説明]
- | アクティブ・プロジェクトのリンク・オプションである,セクション・アライメントの設定/参照を行います。 |
- | 設定を変更する場合は,参照したリストに対して追加/変更してください。 |
[使用例]
>>>sec1= build.Link.SectionAlignment …現在の設定を参照してセクション・アライメントを追加
>>>print sec1
['R_1']
>>>sec1.append('R_2')
>>>build.Link.SectionAlignment = sec1
>>>print build.Link.SectionAlignment
['R_1', 'R_2']
>>>
>>>sec2 = ['R_1', 'R_2'] …複数のセクション・アライメントを設定
>>>build.Link.SectionAlignment = sec2
>>>print build.Link.SectionAlignment
['R_1', 'R_2']
|