DevExpress の ASPxMemo でのタイトルコロン(:)非表示設定のサンプルです。
現状の画面デザインはこのようになっています。
<タイトルコロン(:)非表示設定>
「ShowColon=”False”」を設定します。
【サンプルプログラム】
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="Left" ShowColon="False" VerticalAlign="Middle" /> <CaptionStyle Font-Bold="True" Font-Size="Medium" Font-Underline="True"> </CaptionStyle> <Border BorderWidth="5px" /> </dx:ASPxMemo> </div> </form> |
それでは、実行して動作確認を行います。
↓
無事にテキスト複数行のタイトルコロン(:)非表示が出来ました。
- 投稿タグ
- ASPxMemo