SocketListUI.contentScrollRect
public ScrollRect contentScrollRect { get; }Description#
ScrollRect housing content (if any)
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(SocketListUI target) { UnityEngine.UI.ScrollRect result = target.contentScrollRect; } }