本文整理汇总了TypeScript中xterm.Terminal.scrollToTop方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Terminal.scrollToTop方法的具体用法?TypeScript Terminal.scrollToTop怎么用?TypeScript Terminal.scrollToTop使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类xterm.Terminal
的用法示例。
在下文中一共展示了Terminal.scrollToTop方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: Terminal
t.setOption('fontSize', 1);
t.setOption('lineHeight', 1);
t.setOption('fontFamily', 'foo');
t.setOption('theme', {background: '#ff0000'});
t.setOption('macOptionIsMeta', true);
t.setOption('rightClickSelectsWord', false);
}
}
namespace scrolling {
{
const t: Terminal = new Terminal();
t.scrollLines(-1);
t.scrollLines(1);
t.scrollLines(-1);
t.scrollLines(1);
t.scrollToTop();
t.scrollToBottom();
}
}
namespace selection {
{
const t: Terminal = new Terminal();
const r1: boolean = t.hasSelection();
const r2: string = t.getSelection();
t.clearSelection();
t.selectAll();
}
}
}
namespace methods_experimental {