许可证

评估版本限制

A free evaluation version of Aspose.Cells for C++ can be downloaded from the downloads section of Aspose’s web site at: https://downloads.aspose.com/cells/cpp.

使用文件或流对象应用许可

许可证可以从文件或流对象加载。 Aspose.Cells for C++ 将尝试在以下位置查找许可证:

  1. 明确的路径。
  2. 包含Aspose.Cells.dll的文件夹。
  3. 包含调用Aspose.Cells.dll的程序集的文件夹。
  4. 包含入口程序集(.exe文件)的文件夹。
  5. 调用Aspose.Cells.dll的程序集中的嵌入资源。

设置许可的最简单方法是将许可文件放在与Aspose.Cells.dll文件相同的文件夹中,并指定文件名,不包括路径,如下例所示。

从文件加载许可

应用许可的最简单方法是将许可文件放在与Aspose.Cells.dll文件相同的文件夹中,并只指定文件名,不包括路径。

C++

  License license;
  license.SetLicense(u"Aspose.Cells.lic");

从流对象加载许可

以下示例显示了如何从流中加载许可。

C++

  License license;

  //You need to write your own code to read the contents of the license file into this variable.
  Vector<uint8_t> myStream{0}; //"Aspose.Cells.lic"

  license.SetLicense(myStream);