Resets externalized file resources for all controls on a form.
Namespace: CleanCode.IOAssembly: CleanCode (in CleanCode.dll) Version: 1.2.3.0 (1.2.03)
public static Collection<string> ResetAllResources(
params Form[] forms
)
Public Shared Function ResetAllResources ( _
ParamArray forms As Form() _
) As Collection(Of String)
Public Shared Function ResetAllResources ( _
ParamArray forms As Form() _
) As Collection(Of String)
public:
static Collection<String^>^ ResetAllResources(
... array<Form^>^ forms
)
Return Value
A collection of filenames that were deleted.
This will search for any controls (whether directly on the form
or embedded within another control) that implement
IResourceUser
and call their
ResetResources method.
That method will either recursively call this method
(if the control includes its own forms)
or the
ResetResources(String, Boolean ) method
to reset the control's own external resources.