BalticAmadeus.FluentMdx.MdxNavigationFunction.Titled C# (CSharp) Method

Titled() public method

Sets the title and returns the updated current instance of MdxNavigationFunction.
public Titled ( string title ) : MdxNavigationFunction
title string Navigation function title.
return MdxNavigationFunction
        public MdxNavigationFunction Titled(string title)
        {
            Title = title;
            return this;
        }