Njb.SongFrame.Find C# (CSharp) Method

Find() public static method

public static Find ( Song song, string label ) : SongFrame
song Song
label string
return SongFrame
        public static SongFrame Find(Song song, string label)
        {
            IntPtr ptr = NJB_Songid_Findframe(song.Handle, Utility.Utf8StringToPtr(label));
            if(ptr == IntPtr.Zero) {
                return null;
            }

            return new SongFrame(ptr);
        }