るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.081秒)
トップページ > 種類:インスタンスメソッド[x] > クエリ:param[x] > クエリ:namespace[x] > クラス:REXML::Attribute[x]

別のキーワード

  1. net/imap param
  2. win32ole win32ole_param
  3. win32ole_param name
  4. bodytypetext param
  5. bodytypebasic param

ライブラリ

検索結果

REXML::Attribute#namespace(arg = nil) -> String | nil (18115.0)

属性の名前空間の URI を返します。

...属性の名前空間の URI を返します。

URI が定義されていない場合は nil を返します。

@param arg この値を指定すると、その属性の名前空間でなく、arg という名前空間
の URI が返されます。
通常は省略します。

//emlis...
...t[][ruby]{
require 'rexml/document'
e = REXML::Element.new("el")
e.add_attribute("xmlns:ns", "http://www.example.com/ns")
e.add_attribute("ns:r", "rval")
p e.attributes.get_attribute("r").prefix # => "ns"
p e.attributes.get_attribute("r").namespace # => "http://www.example.com/ns"
//}...