作成日: 2014/12/15 最終更新日: 2014/12/15
文書種別
使用方法
詳細
C1InputTextを継承したカスタムコントロールでTextプロパティを参照するには、下記のサンプルコードのようにカスタムコントロールにてWidgetNameプロパティをオーバーライドします。
◎サンプル (VB)
◎サンプル (C#)
◎サンプル (VB)
Protected Overrides ReadOnly Property WidgetName As String
Get
Return "c1inputtext"
End Get
End Property
Get
Return "c1inputtext"
End Get
End Property
◎サンプル (C#)
protected override string WidgetName {
get { return "c1inputtext"; }
}
get { return "c1inputtext"; }
}
旧文書番号
81106