You are here: Symbol Reference > StatToolsDialogs Namespace > Functions > StatToolsDialogs.ShowDialog Function
Stats Master VCL
ContentsIndex
PreviousUpNext
StatToolsDialogs.ShowDialog Function

Shows TMtxMulLinReg component editor.

Pascal
procedure ShowDialog(Component: TMtxMulLinReg); overload;

The following code brings up the component editor.

Uses Statistics, StatTools, StatToolsDialogs;
var HypTest1: TMtxHypothesisTest;
begin
  HypTest1 := TMtxHypothesisTest.Create;
  try
    // ...
    ShowDialog(HypTest1);
    // ...
  finally
    HypTest1.Free;
  end;
end;
Examples on GitHub
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!