「Excel VBA ワークシートをHTMLテーブル」の版間の差分
ナビゲーションに移動
検索に移動
90行目: | 90行目: | ||
</pre> | </pre> | ||
+ | |||
+ | *使用例 | ||
+ | <pre> | ||
+ | =MakeHtmlTable(B2:C7, "r", 1, "wikitable") | ||
+ | </pre> | ||
+ | *結果 | ||
+ | <table class="wikitable" ><tr><td>プロパティ</td><td>内容</td></tr><tr><td>axis</td><td>(UIStackViewのみ) スタックビューの方向を定義し、垂直または水平のどちらかを指定します</td></tr><tr><td>orientation</td><td>スタックビューの方向を指定します。(NSStackView のみ) スタックビューの方向を、垂直または水平に定義</td></tr><tr><td>distribution</td><td>軸に沿ったビューのレイアウトを定義</td></tr><tr><td>alignment</td><td> スタックビューの軸に垂直なビューのレイアウトを定義</td></tr><tr><td>spacing</td><td> 隣接するビューの間のスペースを定義します。</td></table> |
2022年3月26日 (土) 00:34時点における版
Excel VBA ワークシートをHTMLテーブル
Option Explicit Public Function MakeHtmlTable(table As Range, headerType As String, headerSize As Integer, cls As String) As String Dim buf As String Dim cl As Range Dim rowPos As Integer Dim isFirstRow As Boolean Dim celVal As String Dim colPos As Integer Dim isColHeader As Boolean Dim isRowHeader As Boolean Dim celTag As String If Trim(cls) <> "" Then cls = " class=""" & cls & """ " Else cls = " border=""1"" " End If isColHeader = InStr(headerType, "c") > 0 isRowHeader = InStr(headerType, "r") > 0 isFirstRow = True rowPos = -1 buf = "<table " & cls & ">" For Each cl In table If rowPos <> cl.Row Then If Not isFirstRow Then buf = buf & "</tr>" End If buf = buf & "<tr>" isFirstRow = False colPos = 0 End If celVal = EscapeHtmlSpecial(cl.text) If Trim(celVal) = "" Then celVal = " " End If rowPos = cl.Row If (isColHeader And headerSize > colPos) Or _ (isRowHeader And headerSize > rowPos) Then celTag = "th" Else celTag = "td" End If buf = buf & EncloseTag(celVal, celTag) colPos = colPos + 1 Next buf = buf & "</table>" MakeHtmlTable = buf End Function Public Function EncloseTag(value As String, tag As String) EncloseTag = "<" & tag & ">" & value & "</" & tag & ">" End Function Public Function EscapeHtmlSpecial(text As String) As String Dim buf As String Dim c As String Dim i As Integer For i = 1 To Len(text) c = Mid(text, i, 1) Select Case c Case "&" c = "&" Case "<" c = "<" Case ">" c = ">" Case """" c = "'""" End Select buf = buf & c Next EscapeHtmlSpecial = buf End Function
- 使用例
=MakeHtmlTable(B2:C7, "r", 1, "wikitable")
- 結果
プロパティ | 内容 |
axis | (UIStackViewのみ) スタックビューの方向を定義し、垂直または水平のどちらかを指定します |
orientation | スタックビューの方向を指定します。(NSStackView のみ) スタックビューの方向を、垂直または水平に定義 |
distribution | 軸に沿ったビューのレイアウトを定義 |
alignment | スタックビューの軸に垂直なビューのレイアウトを定義 |
spacing | 隣接するビューの間のスペースを定義します。 |
© 2006 矢木浩人