■57000 / inTopicNo.1) |
継承のオーバーライド・メソッドの引数名 |
□投稿者/ usako (7回)-(2011/02/08(Tue) 15:36:35)
|
分類:[VB.NET/VB2005 以降]
前回は、以下のようにDataGridViewTextBoxCellクラスを継承してハイライト表示に挑戦しました。
(VB2008で作成)
http://bbs.wankuma.com/index.cgi?mode=al2&namber=56609
その中で、色々と紹介頂いたサンプルを見て疑問にもったことがあります。
例えば、セル描画のオーバーライド・メソッドでは、
Protected Overrides Sub Paint(ByVal graphics As Graphics, _
ByVal clipBounds As Rectangle, _
ByVal cellBounds As Rectangle, _
ByVal rowIndex As Integer, _
ByVal cellState As DataGridViewElementStates, _
ByVal value As Object, _
ByVal formattedValue As Object, _
ByVal errorText As String, _
ByVal cellStyle As DataGridViewCellStyle, _
ByVal advancedBorderStyle As DataGridViewAdvancedBorderStyle, _
ByVal paintParts As DataGridViewPaintParts)
と、サンプルに記載してあった引数名(graphics等)をそのまま使用しましたが、
この引数名は独自につけても構わないのでしょうか?
・引数名・引数の型は同じでなければならない
・引数名は変数名としてOKならば任意でよいが、引数の型は同じでなければならない
など...
ちょっと調べれば分かることかも知れませんが、概念を知りたくて質問しました。
宜しくお願い申し上げます。
|
|