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

📄 创建统计图并自定义标题.mb

📁 很多的MAPINFO的常见问题下载后可以学习很有帮助
💻 MB
字号:
'*****************************************************************************
'*
'* The following code demonstrates the use of the Run Command to set a graph
'* title.  The graph title to be used is stored in a string variable.
'*
'******************************************************************************

Declare Sub Main

Sub Main

	Dim graph_str,								' Holds the Set Graph command
    	    graph_title As String						' Holds the Graph Title

	Open Table "Province" Interactive
	Graph Character_Name, Total_Pop_1990 From Province
	graph_title = "My Population 1990 graph of China Province"			' Sets the graph title
	graph_str = "Set graph rotated off title " + """" + graph_title + """"	' Sets the Graph command
	Run Command graph_str									' Runs the Graph command
End Sub

⌨️ 快捷键说明

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