本文整理汇总了C#中ScriptCoreLib.ToCode128方法的典型用法代码示例。如果您正苦于以下问题:C# ScriptCoreLib.ToCode128方法的具体用法?C# ScriptCoreLib.ToCode128怎么用?C# ScriptCoreLib.ToCode128使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ScriptCoreLib
的用法示例。
在下文中一共展示了ScriptCoreLib.ToCode128方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Application
/// <summary>
/// This is a javascript application.
/// </summary>
/// <param name="page">HTML document rendered by the web server which can now be enhanced.</param>
public Application(IApp page)
{
// what if cache does not have our package, if we are a new project?
// packages.config
// <package id="Abstractatech.JavaScript.CODE128" version="1.0.0.0" targetFramework="net40" />
// "C:\Users\Arvo\AppData\Local\NuGet\Cache\Abstractatech.JavaScript.CODE128.1.0.0.0.nupkg"
{
var data = new { foo = "text" }.ToString();
data.ToCode128(
height: 20,
yield:
img =>
{
var c = new IHTMLCenter().AttachToDocument();
img.AttachTo(c);
new IHTMLBreak { }.AttachTo(c);
new IHTMLCode { innerText = data }.AttachTo(c).style.fontSize = "x-small";
}
);
}
{
var data = "1234567890";
data.ToCode128(
height: 20,
yield:
img =>
{
var c = new IHTMLCenter().AttachToDocument();
img.AttachTo(c);
new IHTMLBreak { }.AttachTo(c);
new IHTMLCode { innerText = data }.AttachTo(c).style.fontSize = "x-small";
}
);
}
IStyleSheet.Default.AddRule(".foo",
r =>
{
r.style.border = "1px solid black";
r.style.margin = "2em";
}
);
Native.document.getElementsByClassName("foo").ToArray().WithEach(
x =>
{
(x.getAttribute("data-value") as string).With(
data =>
{
data.ToCode128(
height: 20,
yield:
img =>
{
var c = new IHTMLCenter().AttachTo(x);
img.AttachTo(c);
new IHTMLBreak { }.AttachTo(c);
new IHTMLCode { innerText = data }.AttachTo(c).style.fontSize = "x-small";
}
);
}
);
}
);
}