.NET/Link lets you write sophisticated user interfaces by calling .NET types directly from Mathematica. Doing so allows you to evaluate code as you add it, either one or ...
ActivateWindow is an option to DoNETModeless that specifies whether to make the window visible.
AddEventHandler[obj@event, func] assigns the specified Mathematica function func to be called when the given event event fires.
BeginNETBlock[] and EndNETBlock[] are equivalent to the NETBlock function, except that they work across a larger span than the evaluation of a single expression.
CallingConvention is an option to DefineDLLFunction that specifies what calling convention the DLL function uses.
DefineNETDelegate[name, rtype, ptypes] creates a new .NET delegate type with the given name name, return type rtype, and parameter types ptypes.
DoNETModal[form] displays the specified .NET form in the foreground and does not return until the form window is closed.DoNETModal[form, expr] evaluates expr just before the ...
DoNETModeless[form] displays the specified .NET form in the foreground and then returns.
EndNETBlock[] and a preceding BeginNETBlock are equivalent to the NETBlock function, except that they work across a larger span than the evaluation of a single expression.