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
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