关于自定义数据类型(100分)

  • 主题发起人 主题发起人 esgeht
  • 开始时间 开始时间
E

esgeht

Unregistered / Unconfirmed
GUEST, unregistred user!
VB里面定义的数据类型该如何转化成DELPHI格式?
Type ZmjFontType
byFontType As Byte
byColor As Byte
byMode As Byte
byRate As Byte
byFormat As Byte
End Type

变成DELPHI格式后是因该这样吗?
type
ZmjFontType = record
byFontType:Byte

byFontSpace:Byte

byColor:Byte

byMode:Byte

byRate:Byte

byFormat:Byte;
end
 
没错的!
 

好象多了个byFontSpace:Byte
 
多人接受答案了。
 
后退
顶部