OpenSim.Region.Framework.Scenes.SceneObjectPart.GetBlockGrab C# (CSharp) Method

GetBlockGrab() public method

public GetBlockGrab ( ) : bool
return bool
        public bool GetBlockGrab()
        {
            if (m_parentGroup == null)
                return false;
            if (m_parentGroup.IsDeleted)
                return false;

            return m_parentGroup.RootPart.BlockGrab;
        }
SceneObjectPart