method
test_visible
ruby latest stable - Class:
TestOLEMETHOD
test_visible()public
No documentation available.
# File ext/win32ole/tests/testOLEMETHOD.rb, line 52
def test_visible
m = WIN32OLE_METHOD.new(@excel_app, 'ActiveCell')
assert(m.visible?)
m = WIN32OLE_METHOD.new(@excel_app, 'AddRef')
assert(!m.visible?)
end