0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

M_Excel:各種定義

Posted at

Excel処理の各種定義

'##############################################################################
' Excel処理
'##############################################################################
' 参照設定          |   ―
'------------------------------------------------------------------------------
' 共通バージョン    |   250504
'------------------------------------------------------------------------------

'==============================================================================
' 公開定義
'==============================================================================
' 定数定義
'------------------------------------------------------------------------------
Public Const D_EXCEL_ROW_START As Long = D_POS_START
Public Const D_EXCEL_ROW_NONE As Long = D_POS_NONE
Public Const D_EXCEL_ROW_NOW As Long = D_POS_NOW
Public Const D_EXCEL_ROW_END As Long = D_POS_END

Public Const D_EXCEL_CLM_START As Integer = D_POS_START
Public Const D_EXCEL_CLM_NONE As Integer = D_POS_NONE
Public Const D_EXCEL_CLM_NOW As Long = D_POS_NOW
Public Const D_EXCEL_CLM_END As Integer = D_POS_END

'------------------------------------------------------------------------------
' 構造体定義
'------------------------------------------------------------------------------
Public Type T_EXCEL_POS_ROW_INF
    Stt As Long
    End As Long
    Cnt As Long
End Type

Public Type T_EXCEL_POS_CLM_INF
    Stt As Integer
    End As Integer
    Cnt As Long
End Type

Public Type T_EXCEL_POS_INF
    Row As T_EXCEL_POS_ROW_INF
    Clm As T_EXCEL_POS_CLM_INF
End Type

'==============================================================================
' 内部定義
'==============================================================================
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?