AdvancedLauncher.Tools.Interop.AirspaceDecorator.IScrollInfo C# (CSharp) Method

IScrollInfo() private method

private IScrollInfo ( double offset ) : void
offset double
return void
        void IScrollInfo.SetHorizontalOffset(double offset)
        {
            IScrollInfo realImplementation = Content as IScrollInfo;
            if (realImplementation != null) {
                realImplementation.SetHorizontalOffset(offset);
            } else {
                throw new NotImplementedException();
            }
        }

Same methods

AirspaceDecorator::IScrollInfo ( Visual visual, Rect rectangle ) : Rect
AirspaceDecorator::IScrollInfo ( ) : void