Close Data Grid
Close data grid
Summary: Configures data table properties for Coating Supplier and Lot Acceptance, including setting tags with specific attributes.
Code:
dt = Open("data_table.jmp");
dt << Close data grid( 1 );
dt:Coating Supplier << Set Property( "Tags", {"attributes"} );
dt:Lot Acceptance << Set Property( "Tags", {"attributes"} );
Code Explanation:
- Open data table.
- Close data grid view.
- Set tags for Coating Supplier.
- Set tags for Lot Acceptance.
Summary: Opens and closes a data table in JMP, allowing for efficient data management.
Code:
dt = Open("data_table.jmp");
dt << Close Data Grid( 1 );
Code Explanation:
- Open data table.
- Close data grid window.