DevExpress の ASPxMemo でのタイトル位置設定のサンプルです。
現状の画面デザインはこのようになっています。
<タイトル位置設定>
「Position=”Top”」を設定します。
【位置一覧】
・Left(左側)
・Top(上段)
・Right(右側)
・Bottom(下段)
・NotSet(なし:初期値)
【サンプルプログラム】
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<form id="form1" runat="server"> <div> <dx:ASPxMemo ID="ASPxMemo1" runat="server" Height="100px" NullText="文字を入力して下さい。" Theme="RedWine" Width="300px" Caption="テキスト複数行入力"> <NullTextStyle ForeColor="Red"> </NullTextStyle> <CaptionSettings Position="Top" /> <CaptionStyle Font-Bold="True" Font-Size="Medium" Font-Underline="True"> </CaptionStyle> <Border BorderWidth="5px" /> </dx:ASPxMemo> </div> </form> |
それでは、実行して動作確認を行います。
↓
無事にテキスト複数行のタイトル位置設定が出来ました。
- 投稿タグ
- ASPxMemo