shapemodule.bas

来自「多种图表的绘制及其运用」· BAS 代码 · 共 23 行

BAS
23
字号
Attribute VB_Name = "ShapeModule"
' ===========================================
'  === Project of Visual Logic Language ===
' ===========================================
' Authors:
'           Yuri Margolin
'           Asaf Shoshani
' ORT Academic College
' July 2001
' ===========================================
'  Declaration module for Active-X
' ===========================================

Option Explicit

' declaration of function to draw complex figures:
Public Declare Function Polygon Lib "gdi32" (ByVal hdc As Long, lpPoint As POINTAPI, ByVal nCount As Long) As Long
' type used by Polygon API function:
Public Type POINTAPI
        x As Long
        y As Long
End Type

⌨️ 快捷键说明

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