cadencii.RendererKindUtil.getPianorollBar C# (CSharp) Method

getPianorollBar() public static method

ピアノロールの小節の区切り線の色を取得する
public static getPianorollBar ( this kind ) : Color
kind this 歌声合成システムの種類
return Color
        public static Color getPianorollBar( this RendererKind kind )
        {
            Config config;
            if ( configs_.TryGetValue( kind, out config ) ) {
                return config.bar_;
            }
            return Config.empty.bar_;
        }