Use the PackageTools[Create] command to create a new workbook called "TestPackage". Note: Ensure that you are in a directory for which you have the necessary administrative privileges to write files.
>
|
Create("TestPackage.maple");
|
Next, use the PackageTools[SetProperty] command to set the value of the metadata property, "Author" to "Me".
>
|
SetProperty("TestPackage.maple", "authors", "Me");
|
Verify that the value of "Author" was set to "Me" using the PackageTools[GetProperty] command.
>
|
GetProperty("TestPackage.maple", "authors");
|