⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 drawdata.vb

📁 《ViSUAL BASIC》设计模式
💻 VB
字号:

public class DrawData
Private x, y, dx , dy As Integer

Public Sub New(x_ As Integer, y_ As Integer, dx_ As Integer, dy_ As Integer)
MyBase.New
 x = x_
 y = y_
 dx = dx_
 dy = dx_
End Sub

Public Function getX() As Integer
 getX = x
End Function

Public Function getY() As Integer
 getY = y
End Function

Public Function getdX() As Integer
 getdX = dx
End Function

Public Function getdY() As Integer
 getdY = dy
End Function

End Class

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -