0
次のコードは、ExcelからHTMLファイルに範囲を発行します。公開された範囲を既定の範囲と異なるサイズにする方法はありますか?または、同じファイルの範囲にImageバージョンを公開する方法はありますか?VBA PublishObjects - どのようにhtmlでサイズを変更しますか?
ObjectToPaste = xlApp.Range(UserformObj.listCharts.SelectedItem).Address
Title = UserformObj.listCharts.SelectedItem.SubItems(4)
Caption = IIf(KUKUKU3 = 1, Title, "")
On Error Resume Next
With oWB.PublishObjects.Add(xlSourceRange, Where, sht, _
ObjectToPaste, xlHtmlStatic, "", Caption)
.Publish (False)
.AutoRepublish = UpdateHTml
End With
On Error GoTo 0