我想向现有的 Delphi 类添加一个方法。我认为基本类框架可以,但需要访问在我的方法中调用我的方法的对象的一些属性。我似乎什么也做不了。
旧类 TStringGrid
引用 myNewMethod 的新类 OptStringGrid
//example of new class method
procedure myNewMethod (const Name: string);
begin
//Here is my question location.
// I would like to access properties of the calling object in this case
// testgrid. Like... i:= testgrid.rowcount;
end
// Unit Calling statements
var
testGrid : OptStringGrid;
i: integer;
begin
i := testgrid.myNewMethod(strName);
end;
Delphi 新手,如有错误,请原谅我的术语。我知道示例代码不可编译。我正在寻找技术来访问所描述的属性。