Class: Fzeet::ShellFileSaveDialog

Inherits:
Windows::FileSaveDialog
  • Object
show all
Includes:
ShellFileDialogMethods
Defined in:
lib/fzeet/windows/comdlg/ShellFileDialog.rb

Instance Method Summary collapse

Methods included from ShellFileDialogMethods

#Show, #item, #items, #path, #paths, #show

Constructor Details

#initialize(opts = {}) ⇒ ShellFileSaveDialog

Returns a new instance of ShellFileSaveDialog.



79
80
81
82
83
84
85
86
87
# File 'lib/fzeet/windows/comdlg/ShellFileDialog.rb', line 79

def initialize(opts = {})
	super()

	begin
		yield self
	ensure
		Release()
	end if block_given?
end