462件ヒット
[1-100件を表示]
(0.104秒)
ライブラリ
- ビルトイン (36)
- benchmark (12)
-
cgi
/ html (24) - optparse (192)
- prettyprint (36)
- psych (24)
-
rexml
/ document (24) - rss (96)
- scanf (6)
クラス
-
Benchmark
:: Job (12) - OptionParser (192)
- PrettyPrint (36)
-
Psych
:: Nodes :: Node (24) -
RDoc
:: Options (12) -
REXML
:: Formatters :: Pretty (24) -
RSS
:: ImageItemModel :: ImageItem (48) -
RSS
:: Maker :: ImageBase (24) -
RSS
:: Rss :: Channel :: Image (24) -
Scanf
:: FormatSpecifier (6) - String (36)
モジュール
-
CGI
:: HtmlExtension (24)
キーワード
- breakable (24)
- center (12)
-
image
_ width (12) -
image
_ width= (12) - img (24)
- ljust (12)
- maxwidth (12)
- on (144)
- rjust (12)
- summarize (24)
-
summary
_ width (12) -
summary
_ width= (12) -
tab
_ width (12) -
to
_ yaml (12) - width= (48)
- yaml (12)
検索結果
先頭5件
-
RSS
:: ImageItemModel :: ImageItem # width (27105.0) -
@todo
@todo -
REXML
:: Formatters :: Pretty # width -> Integer (21108.0) -
出力のページ幅を返します。
...出力のページ幅を返します。
デフォルトは80です。
@see REXML::Formatters::Pretty#width=... -
RSS
:: Maker :: ImageBase # width (21103.0) -
@todo
@todo -
RSS
:: Rss :: Channel :: Image # width (21103.0) -
@todo
@todo -
Benchmark
:: Job # width -> Integer (21102.0) -
Benchmark::Job#list のサイズ。
...Benchmark::Job#list のサイズ。... -
Scanf
:: FormatSpecifier # width (21102.0) -
@todo
@todo -
RSS
:: ImageItemModel :: ImageItem # image _ width (18205.0) -
@todo
@todo -
RSS
:: ImageItemModel :: ImageItem # image _ width= (18205.0) -
@todo
@todo -
OptionParser
# summary _ width=(width) (15327.0) -
サマリを表示するときの幅を整数で指定します。
...@param width サマリを表示するときの幅を整数で指定します。
//emlist[例][ruby]{
require "optparse"
opts = OptionParser.new do |opts|
opts.on_head("-i", "--init")
opts.on("-u", "--update")
opts.on_tail("-h", "--help")
end
opts.summary_width # => 32
opts.summarize
#......=> [" -i, --init\n", " -u, --update\n", " -h, --help\n"]
opts.summary_width = 8 # => 8
opts.summary_width # => 8
opts.summarize
# => [" -i\n", " --init\n", " -u\n", " --update\n", " -h\n", " --help\n"]
//}...