SharpDox.Build.BuildMessenger.ExecuteOnStepProgress C# (CSharp) 메소드

ExecuteOnStepProgress() 개인적인 메소드

private ExecuteOnStepProgress ( int value ) : void
value int
리턴 void
        internal void ExecuteOnStepProgress(int value)
        {
            if (OnStepProgress != null)
            {
                OnStepProgress(value);
            }
        }