我們現在已建立所有必要的參數值,以建構模型來計算零件號碼。我們要編寫的最後一個規則會將零件號碼以及其他與此檔案相關的參數值傳遞至 Excel 工作表中。這些零件號碼中的部分在 iPart 中,而此規則產生了螺釘零件號碼。
update_excel_spreadsheet_rule 利用了一組函數,這些函數可從「編輯規則」對話方塊的「片段」區域中的「Excel Data Links」品類取得。
根據模型的狀態,此規則會填寫必要的儲存格。在工作表中,資料要傳遞至的所有儲存格已進行命名,以對應寫入的資訊。
GoExcel.CellValue("part_number.xls", "Sheet1", "Block_Type") = component_type GoExcel.CurrentCellValue("Block_Style") = block GoExcel.CurrentCellValue("Block_Part_Number") = iProperties.Value("manifold_block:1", "Project", "Part Number")
在此部份中,我們參考 part_number.xls 工作表檔案 (包括在此自學課程專案中)。然後,我們設定 Block_Type、Block_Style 和 Block_Part_Number 儲存格的值。前兩個值會設定自組合參數,而最後一個值則設定自檔塊的「零件號碼」 iProperty。
GoExcel.CurrentCellValue("port_a_size") = port_a_size If block = "tee" Then GoExcel.CurrentCellValue("port_b_size") = port_b_size Else GoExcel.CurrentCellValue("port_b_size") = "N/A" End If GoExcel.CurrentCellValue("port_c_size") = port_c_size
請注意我們如何對彎頭型式歧管使用 N/A 預留位置值。
GoExcel.CurrentCellValue("block_depth") = Parameter("manifold_block:1", "block_depth") GoExcel.CurrentCellValue("block_width") = Parameter("manifold_block:1", "block_width") GoExcel.CurrentCellValue("block_height") = Parameter("manifold_block:1", "block_height")
請注意在此區段中對 manifold_block:1 元件的參考。
GoExcel.CurrentCellValue("port_a_union_cap") = port_a_union_part_number GoExcel.CurrentCellValue("port_a_screw_kit") = port_a_screw_part_number If block = "tee" Then GoExcel.CurrentCellValue("port_b_union_cap") = port_b_union_part_number GoExcel.CurrentCellValue("port_b_screw_kit") = port_b_screw_part_number Else GoExcel.CurrentCellValue("port_b_union_cap") = "N/A" GoExcel.CurrentCellValue("port_b_screw_kit") = "N/A" End If GoExcel.CurrentCellValue("port_c_union_cap") = port_c_union_part_number GoExcel.CurrentCellValue("port_c_screw_kit") = port_c_screw_part_number
如同規則先前區段中的 port_b_size 一樣,請注意與 Port B 相關的值的條件處理。
GoExcel.Save