#119 RightMargin

"RightMargin/右余白" プロパティ

コントロールの右側境界線とコントロール内部の文字間の余白(右余白)を設定します。
VBAでこの値を設定する場合には、単位として「twip」で指定します。1cmは567twipです。

ラベル、テキストボックス

Private Sub fraProperty_AfterUpdate()
'[プロパティの設定]オプショングループの更新後処理

  With Me!txtData
    Select Case Me!fraProperty
      Case 1
        '右余白を300twipに
        .RightMargin = 300
      Case 2
        '右余白を800twipに
        .RightMargin = 800
      Case 3
        '右余白を2000twipに
        .RightMargin = 2000
    End Select
  End With

End Sub
  • テキストボックスの右余白を300twipに設定した場合
    ※下図では、テキストボックスの文字配置は右寄せになっています。


  • テキストボックスの右余白を800twipに設定した場合


  • テキストボックスの右余白を2000twipに設定した場合(センタリングではありません)
| Index | Prev | Next |

 

Copyright © T'sWare All rights reserved