如何使用第三章php API将布局样式应用于苹果新闻文档

时间:2016-10-12 16:58:36

标签: php apple-news

我正在使用AppleNewsAPI创建苹果新闻文档并将其提交给苹果新闻。即使查看API文档,我也无法理解如何在语法上应用该样式。这是我到目前为止所做的:

newdb = workspace.CreateDatabase(dbname, dbLangGeneral, 64)

这会为apple生成一个有效的json文件。如何使用此库传递一些样式信息?

感谢

1 个答案:

答案 0 :(得分:0)

这是添加样式和布局的方法:

// Create the firewall type.
Type FWManagerType = Type.GetTypeFromProgID("HNetCfg.FwMgr");

// Use the firewall type to create a firewall manager object.
dynamic FWManager = Activator.CreateInstance(FWManagerType);

// Check the status of the firewall.
bool enabled = FWManager.LocalPolicy.CurrentProfile.FirewallEnabled;

希望这有帮助。