1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-09-29 17:41:06 +02:00
MLEM/Docs/api/MLEM.Textures.NinePatch.yml

954 lines
28 KiB
YAML
Raw Normal View History

2020-05-21 01:08:36 +02:00
### YamlMime:ManagedReference
items:
- uid: MLEM.Textures.NinePatch
commentId: T:MLEM.Textures.NinePatch
id: NinePatch
parent: MLEM.Textures
children:
- MLEM.Textures.NinePatch.#ctor(Microsoft.Xna.Framework.Graphics.Texture2D,System.Int32)
- MLEM.Textures.NinePatch.#ctor(Microsoft.Xna.Framework.Graphics.Texture2D,System.Int32,System.Int32,System.Int32,System.Int32)
- MLEM.Textures.NinePatch.#ctor(MLEM.Textures.TextureRegion,MLEM.Misc.Padding)
- MLEM.Textures.NinePatch.#ctor(MLEM.Textures.TextureRegion,System.Int32)
- MLEM.Textures.NinePatch.#ctor(MLEM.Textures.TextureRegion,System.Int32,System.Int32,System.Int32,System.Int32)
- MLEM.Textures.NinePatch.Padding
- MLEM.Textures.NinePatch.Region
- MLEM.Textures.NinePatch.SourceRectangles
langs:
- csharp
- vb
name: NinePatch
nameWithType: NinePatch
fullName: MLEM.Textures.NinePatch
type: Class
source:
remote:
path: MLEM/Textures/NinePatch.cs
branch: master
repo: https://github.com/Ellpeck/MLEM
id: NinePatch
path: ../MLEM/Textures/NinePatch.cs
startLine: 12
2020-05-21 01:08:36 +02:00
assemblies:
- MLEM
namespace: MLEM.Textures
summary: "\nThis class represents a texture with nine areas.\nA nine patch texture is useful if a big area should be covered by a small texture that has a specific outline, like a gui panel texture. The center of the texture will be stretched, while the outline of the texture will remain at its original size, keeping aspect ratios alive.\n"
example: []
2020-05-21 01:08:36 +02:00
syntax:
content: 'public class NinePatch : GenericDataHolder'
content.vb: >-
Public Class NinePatch
2020-05-21 01:08:36 +02:00
Inherits GenericDataHolder
inheritance:
- System.Object
- MLEM.Misc.GenericDataHolder
inheritedMembers:
- MLEM.Misc.GenericDataHolder.SetData(System.String,System.Object)
- MLEM.Misc.GenericDataHolder.GetData``1(System.String)
- MLEM.Misc.GenericDataHolder.GetDataKeys
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.ToString
extensionMethods:
- MLEM.Textures.NinePatch.MLEM.Extended.Extensions.TextureExtensions.ToExtended
modifiers.csharp:
- public
- class
modifiers.vb:
- Public
- Class
- uid: MLEM.Textures.NinePatch.Region
commentId: F:MLEM.Textures.NinePatch.Region
id: Region
parent: MLEM.Textures.NinePatch
langs:
- csharp
- vb
name: Region
nameWithType: NinePatch.Region
fullName: MLEM.Textures.NinePatch.Region
type: Field
source:
remote:
path: MLEM/Textures/NinePatch.cs
branch: master
repo: https://github.com/Ellpeck/MLEM
id: Region
path: ../MLEM/Textures/NinePatch.cs
startLine: 17
2020-05-21 01:08:36 +02:00
assemblies:
- MLEM
namespace: MLEM.Textures
summary: "\nThe texture region of this nine patch\n"
example: []
2020-05-21 01:08:36 +02:00
syntax:
content: public readonly TextureRegion Region
return:
type: MLEM.Textures.TextureRegion
content.vb: Public ReadOnly Region As TextureRegion
modifiers.csharp:
- public
- readonly
modifiers.vb:
- Public
- ReadOnly
- uid: MLEM.Textures.NinePatch.Padding
commentId: F:MLEM.Textures.NinePatch.Padding
id: Padding
parent: MLEM.Textures.NinePatch
langs:
- csharp
- vb
name: Padding
nameWithType: NinePatch.Padding
fullName: MLEM.Textures.NinePatch.Padding
type: Field
source:
remote:
path: MLEM/Textures/NinePatch.cs
branch: master
repo: https://github.com/Ellpeck/MLEM
id: Padding
path: ../MLEM/Textures/NinePatch.cs
startLine: 21
2020-05-21 01:08:36 +02:00
assemblies:
- MLEM
namespace: MLEM.Textures
summary: "\nThe padding in each direction that marks where the outline area stops\n"
example: []
2020-05-21 01:08:36 +02:00
syntax:
content: public readonly Padding Padding
return:
type: MLEM.Misc.Padding
content.vb: Public ReadOnly Padding As Padding
modifiers.csharp:
- public
- readonly
modifiers.vb:
- Public
- ReadOnly
- uid: MLEM.Textures.NinePatch.SourceRectangles
commentId: F:MLEM.Textures.NinePatch.SourceRectangles
id: SourceRectangles
parent: MLEM.Textures.NinePatch
langs:
- csharp
- vb
name: SourceRectangles
nameWithType: NinePatch.SourceRectangles
fullName: MLEM.Textures.NinePatch.SourceRectangles
type: Field
source:
remote:
path: MLEM/Textures/NinePatch.cs
branch: master
repo: https://github.com/Ellpeck/MLEM
id: SourceRectangles
path: ../MLEM/Textures/NinePatch.cs
startLine: 25
2020-05-21 01:08:36 +02:00
assemblies:
- MLEM
namespace: MLEM.Textures
summary: "\nThe nine patches that result from the <xref href=\"MLEM.Textures.NinePatch.Padding\" data-throw-if-not-resolved=\"false\"></xref>\n"
example: []
2020-05-21 01:08:36 +02:00
syntax:
content: public readonly Rectangle[] SourceRectangles
return:
type: Microsoft.Xna.Framework.Rectangle[]
content.vb: Public ReadOnly SourceRectangles As Rectangle()
modifiers.csharp:
- public
- readonly
modifiers.vb:
- Public
- ReadOnly
- uid: MLEM.Textures.NinePatch.#ctor(MLEM.Textures.TextureRegion,MLEM.Misc.Padding)
commentId: M:MLEM.Textures.NinePatch.#ctor(MLEM.Textures.TextureRegion,MLEM.Misc.Padding)
id: '#ctor(MLEM.Textures.TextureRegion,MLEM.Misc.Padding)'
parent: MLEM.Textures.NinePatch
langs:
- csharp
- vb
name: NinePatch(TextureRegion, Padding)
nameWithType: NinePatch.NinePatch(TextureRegion, Padding)
fullName: MLEM.Textures.NinePatch.NinePatch(MLEM.Textures.TextureRegion, MLEM.Misc.Padding)
type: Constructor
source:
remote:
path: MLEM/Textures/NinePatch.cs
branch: master
repo: https://github.com/Ellpeck/MLEM
id: .ctor
path: ../MLEM/Textures/NinePatch.cs
startLine: 32
2020-05-21 01:08:36 +02:00
assemblies:
- MLEM
namespace: MLEM.Textures
summary: "\nCreates a new nine patch from a texture and a padding\n"
example: []
2020-05-21 01:08:36 +02:00
syntax:
content: public NinePatch(TextureRegion texture, Padding padding)
parameters:
- id: texture
type: MLEM.Textures.TextureRegion
description: The texture to use
2020-05-21 01:08:36 +02:00
- id: padding
type: MLEM.Misc.Padding
description: The padding that marks where the outline area stops
2020-05-21 01:08:36 +02:00
content.vb: Public Sub New(texture As TextureRegion, padding As Padding)
overload: MLEM.Textures.NinePatch.#ctor*
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: MLEM.Textures.NinePatch.#ctor(MLEM.Textures.TextureRegion,System.Int32,System.Int32,System.Int32,System.Int32)
commentId: M:MLEM.Textures.NinePatch.#ctor(MLEM.Textures.TextureRegion,System.Int32,System.Int32,System.Int32,System.Int32)
id: '#ctor(MLEM.Textures.TextureRegion,System.Int32,System.Int32,System.Int32,System.Int32)'
parent: MLEM.Textures.NinePatch
langs:
- csharp
- vb
name: NinePatch(TextureRegion, Int32, Int32, Int32, Int32)
nameWithType: NinePatch.NinePatch(TextureRegion, Int32, Int32, Int32, Int32)
fullName: MLEM.Textures.NinePatch.NinePatch(MLEM.Textures.TextureRegion, System.Int32, System.Int32, System.Int32, System.Int32)
type: Constructor
source:
remote:
path: MLEM/Textures/NinePatch.cs
branch: master
repo: https://github.com/Ellpeck/MLEM
id: .ctor
path: ../MLEM/Textures/NinePatch.cs
startLine: 46
2020-05-21 01:08:36 +02:00
assemblies:
- MLEM
namespace: MLEM.Textures
summary: "\nCreates a new nine patch from a texture and a padding\n"
example: []
2020-05-21 01:08:36 +02:00
syntax:
content: public NinePatch(TextureRegion texture, int paddingLeft, int paddingRight, int paddingTop, int paddingBottom)
parameters:
- id: texture
type: MLEM.Textures.TextureRegion
description: The texture to use
2020-05-21 01:08:36 +02:00
- id: paddingLeft
type: System.Int32
description: The padding on the left edge
2020-05-21 01:08:36 +02:00
- id: paddingRight
type: System.Int32
description: The padding on the right edge
2020-05-21 01:08:36 +02:00
- id: paddingTop
type: System.Int32
description: The padding on the top edge
2020-05-21 01:08:36 +02:00
- id: paddingBottom
type: System.Int32
description: The padding on the bottom edge
2020-05-21 01:08:36 +02:00
content.vb: Public Sub New(texture As TextureRegion, paddingLeft As Integer, paddingRight As Integer, paddingTop As Integer, paddingBottom As Integer)
overload: MLEM.Textures.NinePatch.#ctor*
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: MLEM.Textures.NinePatch.#ctor(Microsoft.Xna.Framework.Graphics.Texture2D,System.Int32,System.Int32,System.Int32,System.Int32)
commentId: M:MLEM.Textures.NinePatch.#ctor(Microsoft.Xna.Framework.Graphics.Texture2D,System.Int32,System.Int32,System.Int32,System.Int32)
id: '#ctor(Microsoft.Xna.Framework.Graphics.Texture2D,System.Int32,System.Int32,System.Int32,System.Int32)'
parent: MLEM.Textures.NinePatch
langs:
- csharp
- vb
name: NinePatch(Texture2D, Int32, Int32, Int32, Int32)
nameWithType: NinePatch.NinePatch(Texture2D, Int32, Int32, Int32, Int32)
fullName: MLEM.Textures.NinePatch.NinePatch(Microsoft.Xna.Framework.Graphics.Texture2D, System.Int32, System.Int32, System.Int32, System.Int32)
type: Constructor
source:
remote:
path: MLEM/Textures/NinePatch.cs
branch: master
repo: https://github.com/Ellpeck/MLEM
id: .ctor
path: ../MLEM/Textures/NinePatch.cs
startLine: 51
2020-05-21 01:08:36 +02:00
assemblies:
- MLEM
namespace: MLEM.Textures
example: []
2020-05-21 01:08:36 +02:00
syntax:
content: public NinePatch(Texture2D texture, int paddingLeft, int paddingRight, int paddingTop, int paddingBottom)
parameters:
- id: texture
type: Microsoft.Xna.Framework.Graphics.Texture2D
- id: paddingLeft
type: System.Int32
- id: paddingRight
type: System.Int32
- id: paddingTop
type: System.Int32
- id: paddingBottom
type: System.Int32
content.vb: Public Sub New(texture As Texture2D, paddingLeft As Integer, paddingRight As Integer, paddingTop As Integer, paddingBottom As Integer)
overload: MLEM.Textures.NinePatch.#ctor*
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: MLEM.Textures.NinePatch.#ctor(Microsoft.Xna.Framework.Graphics.Texture2D,System.Int32)
commentId: M:MLEM.Textures.NinePatch.#ctor(Microsoft.Xna.Framework.Graphics.Texture2D,System.Int32)
id: '#ctor(Microsoft.Xna.Framework.Graphics.Texture2D,System.Int32)'
parent: MLEM.Textures.NinePatch
langs:
- csharp
- vb
name: NinePatch(Texture2D, Int32)
nameWithType: NinePatch.NinePatch(Texture2D, Int32)
fullName: MLEM.Textures.NinePatch.NinePatch(Microsoft.Xna.Framework.Graphics.Texture2D, System.Int32)
type: Constructor
source:
remote:
path: MLEM/Textures/NinePatch.cs
branch: master
repo: https://github.com/Ellpeck/MLEM
id: .ctor
path: ../MLEM/Textures/NinePatch.cs
startLine: 60
2020-05-21 01:08:36 +02:00
assemblies:
- MLEM
namespace: MLEM.Textures
summary: "\nCreates a new nine patch from a texture and a uniform padding\n"
example: []
2020-05-21 01:08:36 +02:00
syntax:
content: public NinePatch(Texture2D texture, int padding)
parameters:
- id: texture
type: Microsoft.Xna.Framework.Graphics.Texture2D
description: The texture to use
2020-05-21 01:08:36 +02:00
- id: padding
type: System.Int32
description: The padding that each edge should have
2020-05-21 01:08:36 +02:00
content.vb: Public Sub New(texture As Texture2D, padding As Integer)
overload: MLEM.Textures.NinePatch.#ctor*
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: MLEM.Textures.NinePatch.#ctor(MLEM.Textures.TextureRegion,System.Int32)
commentId: M:MLEM.Textures.NinePatch.#ctor(MLEM.Textures.TextureRegion,System.Int32)
id: '#ctor(MLEM.Textures.TextureRegion,System.Int32)'
parent: MLEM.Textures.NinePatch
langs:
- csharp
- vb
name: NinePatch(TextureRegion, Int32)
nameWithType: NinePatch.NinePatch(TextureRegion, Int32)
fullName: MLEM.Textures.NinePatch.NinePatch(MLEM.Textures.TextureRegion, System.Int32)
type: Constructor
source:
remote:
path: MLEM/Textures/NinePatch.cs
branch: master
repo: https://github.com/Ellpeck/MLEM
id: .ctor
path: ../MLEM/Textures/NinePatch.cs
startLine: 64
2020-05-21 01:08:36 +02:00
assemblies:
- MLEM
namespace: MLEM.Textures
example: []
2020-05-21 01:08:36 +02:00
syntax:
content: public NinePatch(TextureRegion texture, int padding)
parameters:
- id: texture
type: MLEM.Textures.TextureRegion
- id: padding
type: System.Int32
content.vb: Public Sub New(texture As TextureRegion, padding As Integer)
overload: MLEM.Textures.NinePatch.#ctor*
modifiers.csharp:
- public
modifiers.vb:
- Public
references:
- uid: MLEM.Textures
commentId: N:MLEM.Textures
name: MLEM.Textures
nameWithType: MLEM.Textures
fullName: MLEM.Textures
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
name: Object
nameWithType: Object
fullName: System.Object
- uid: MLEM.Misc.GenericDataHolder
commentId: T:MLEM.Misc.GenericDataHolder
parent: MLEM.Misc
name: GenericDataHolder
nameWithType: GenericDataHolder
fullName: MLEM.Misc.GenericDataHolder
- uid: MLEM.Misc.GenericDataHolder.SetData(System.String,System.Object)
commentId: M:MLEM.Misc.GenericDataHolder.SetData(System.String,System.Object)
parent: MLEM.Misc.GenericDataHolder
isExternal: true
name: SetData(String, Object)
nameWithType: GenericDataHolder.SetData(String, Object)
fullName: MLEM.Misc.GenericDataHolder.SetData(System.String, System.Object)
spec.csharp:
- uid: MLEM.Misc.GenericDataHolder.SetData(System.String,System.Object)
name: SetData
nameWithType: GenericDataHolder.SetData
fullName: MLEM.Misc.GenericDataHolder.SetData
- name: (
nameWithType: (
fullName: (
- uid: System.String
name: String
nameWithType: String
fullName: System.String
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: MLEM.Misc.GenericDataHolder.SetData(System.String,System.Object)
name: SetData
nameWithType: GenericDataHolder.SetData
fullName: MLEM.Misc.GenericDataHolder.SetData
- name: (
nameWithType: (
fullName: (
- uid: System.String
name: String
nameWithType: String
fullName: System.String
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: MLEM.Misc.GenericDataHolder.GetData``1(System.String)
commentId: M:MLEM.Misc.GenericDataHolder.GetData``1(System.String)
parent: MLEM.Misc.GenericDataHolder
isExternal: true
name: GetData<T>(String)
nameWithType: GenericDataHolder.GetData<T>(String)
fullName: MLEM.Misc.GenericDataHolder.GetData<T>(System.String)
nameWithType.vb: GenericDataHolder.GetData(Of T)(String)
fullName.vb: MLEM.Misc.GenericDataHolder.GetData(Of T)(System.String)
name.vb: GetData(Of T)(String)
spec.csharp:
- uid: MLEM.Misc.GenericDataHolder.GetData``1(System.String)
name: GetData<T>
nameWithType: GenericDataHolder.GetData<T>
fullName: MLEM.Misc.GenericDataHolder.GetData<T>
- name: (
nameWithType: (
fullName: (
- uid: System.String
name: String
nameWithType: String
fullName: System.String
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: MLEM.Misc.GenericDataHolder.GetData``1(System.String)
name: GetData(Of T)
nameWithType: GenericDataHolder.GetData(Of T)
fullName: MLEM.Misc.GenericDataHolder.GetData(Of T)
- name: (
nameWithType: (
fullName: (
- uid: System.String
name: String
nameWithType: String
fullName: System.String
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: MLEM.Misc.GenericDataHolder.GetDataKeys
commentId: M:MLEM.Misc.GenericDataHolder.GetDataKeys
parent: MLEM.Misc.GenericDataHolder
name: GetDataKeys()
nameWithType: GenericDataHolder.GetDataKeys()
fullName: MLEM.Misc.GenericDataHolder.GetDataKeys()
spec.csharp:
- uid: MLEM.Misc.GenericDataHolder.GetDataKeys
name: GetDataKeys
nameWithType: GenericDataHolder.GetDataKeys
fullName: MLEM.Misc.GenericDataHolder.GetDataKeys
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: MLEM.Misc.GenericDataHolder.GetDataKeys
name: GetDataKeys
nameWithType: GenericDataHolder.GetDataKeys
fullName: MLEM.Misc.GenericDataHolder.GetDataKeys
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
name: Equals(Object)
nameWithType: Object.Equals(Object)
fullName: System.Object.Equals(System.Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
name: Equals(Object, Object)
nameWithType: Object.Equals(Object, Object)
fullName: System.Object.Equals(System.Object, System.Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
name: GetHashCode()
nameWithType: Object.GetHashCode()
fullName: System.Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
nameWithType: Object.GetHashCode
fullName: System.Object.GetHashCode
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
nameWithType: Object.GetHashCode
fullName: System.Object.GetHashCode
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
name: GetType()
nameWithType: Object.GetType()
fullName: System.Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
nameWithType: Object.GetType
fullName: System.Object.GetType
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.GetType
name: GetType
nameWithType: Object.GetType
fullName: System.Object.GetType
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
name: MemberwiseClone()
nameWithType: Object.MemberwiseClone()
fullName: System.Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
nameWithType: Object.MemberwiseClone
fullName: System.Object.MemberwiseClone
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
nameWithType: Object.MemberwiseClone
fullName: System.Object.MemberwiseClone
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
name: ReferenceEquals(Object, Object)
nameWithType: Object.ReferenceEquals(Object, Object)
fullName: System.Object.ReferenceEquals(System.Object, System.Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
nameWithType: Object.ReferenceEquals
fullName: System.Object.ReferenceEquals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
nameWithType: Object.ReferenceEquals
fullName: System.Object.ReferenceEquals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
name: ToString()
nameWithType: Object.ToString()
fullName: System.Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
nameWithType: Object.ToString
fullName: System.Object.ToString
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.ToString
name: ToString
nameWithType: Object.ToString
fullName: System.Object.ToString
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: MLEM.Textures.NinePatch.MLEM.Extended.Extensions.TextureExtensions.ToExtended
commentId: M:MLEM.Extended.Extensions.TextureExtensions.ToExtended(MLEM.Textures.NinePatch)
parent: MLEM.Extended.Extensions.TextureExtensions
definition: MLEM.Extended.Extensions.TextureExtensions.ToExtended(MLEM.Textures.NinePatch)
name: ToExtended()
nameWithType: TextureExtensions.ToExtended()
fullName: MLEM.Extended.Extensions.TextureExtensions.ToExtended()
spec.csharp:
- uid: MLEM.Extended.Extensions.TextureExtensions.ToExtended
name: ToExtended
nameWithType: TextureExtensions.ToExtended
fullName: MLEM.Extended.Extensions.TextureExtensions.ToExtended
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: MLEM.Extended.Extensions.TextureExtensions.ToExtended
name: ToExtended
nameWithType: TextureExtensions.ToExtended
fullName: MLEM.Extended.Extensions.TextureExtensions.ToExtended
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System
commentId: N:System
isExternal: true
name: System
nameWithType: System
fullName: System
- uid: MLEM.Misc
commentId: N:MLEM.Misc
name: MLEM.Misc
nameWithType: MLEM.Misc
fullName: MLEM.Misc
- uid: MLEM.Extended.Extensions.TextureExtensions.ToExtended(MLEM.Textures.NinePatch)
commentId: M:MLEM.Extended.Extensions.TextureExtensions.ToExtended(MLEM.Textures.NinePatch)
name: ToExtended(NinePatch)
nameWithType: TextureExtensions.ToExtended(NinePatch)
fullName: MLEM.Extended.Extensions.TextureExtensions.ToExtended(MLEM.Textures.NinePatch)
spec.csharp:
- uid: MLEM.Extended.Extensions.TextureExtensions.ToExtended(MLEM.Textures.NinePatch)
name: ToExtended
nameWithType: TextureExtensions.ToExtended
fullName: MLEM.Extended.Extensions.TextureExtensions.ToExtended
- name: (
nameWithType: (
fullName: (
- uid: MLEM.Textures.NinePatch
name: NinePatch
nameWithType: NinePatch
fullName: MLEM.Textures.NinePatch
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: MLEM.Extended.Extensions.TextureExtensions.ToExtended(MLEM.Textures.NinePatch)
name: ToExtended
nameWithType: TextureExtensions.ToExtended
fullName: MLEM.Extended.Extensions.TextureExtensions.ToExtended
- name: (
nameWithType: (
fullName: (
- uid: MLEM.Textures.NinePatch
name: NinePatch
nameWithType: NinePatch
fullName: MLEM.Textures.NinePatch
- name: )
nameWithType: )
fullName: )
- uid: MLEM.Extended.Extensions.TextureExtensions
commentId: T:MLEM.Extended.Extensions.TextureExtensions
parent: MLEM.Extended.Extensions
name: TextureExtensions
nameWithType: TextureExtensions
fullName: MLEM.Extended.Extensions.TextureExtensions
- uid: MLEM.Extended.Extensions
commentId: N:MLEM.Extended.Extensions
name: MLEM.Extended.Extensions
nameWithType: MLEM.Extended.Extensions
fullName: MLEM.Extended.Extensions
- uid: MLEM.Textures.TextureRegion
commentId: T:MLEM.Textures.TextureRegion
parent: MLEM.Textures
name: TextureRegion
nameWithType: TextureRegion
fullName: MLEM.Textures.TextureRegion
- uid: MLEM.Misc.Padding
commentId: T:MLEM.Misc.Padding
parent: MLEM.Misc
name: Padding
nameWithType: Padding
fullName: MLEM.Misc.Padding
- uid: MLEM.Textures.NinePatch.Padding
commentId: F:MLEM.Textures.NinePatch.Padding
isExternal: true
2020-05-21 01:08:36 +02:00
- uid: Microsoft.Xna.Framework.Rectangle[]
isExternal: true
name: Rectangle[]
nameWithType: Rectangle[]
fullName: Microsoft.Xna.Framework.Rectangle[]
nameWithType.vb: Rectangle()
fullName.vb: Microsoft.Xna.Framework.Rectangle()
name.vb: Rectangle()
spec.csharp:
- uid: Microsoft.Xna.Framework.Rectangle
name: Rectangle
nameWithType: Rectangle
fullName: Microsoft.Xna.Framework.Rectangle
isExternal: true
- name: '[]'
nameWithType: '[]'
fullName: '[]'
spec.vb:
- uid: Microsoft.Xna.Framework.Rectangle
name: Rectangle
nameWithType: Rectangle
fullName: Microsoft.Xna.Framework.Rectangle
isExternal: true
- name: ()
nameWithType: ()
fullName: ()
- uid: MLEM.Textures.NinePatch.#ctor*
commentId: Overload:MLEM.Textures.NinePatch.#ctor
name: NinePatch
nameWithType: NinePatch.NinePatch
fullName: MLEM.Textures.NinePatch.NinePatch
- uid: System.Int32
commentId: T:System.Int32
parent: System
isExternal: true
name: Int32
nameWithType: Int32
fullName: System.Int32
- uid: MLEM.Textures.NinePatch.#ctor(MLEM.Textures.TextureRegion,System.Int32,System.Int32,System.Int32,System.Int32)
commentId: M:MLEM.Textures.NinePatch.#ctor(MLEM.Textures.TextureRegion,System.Int32,System.Int32,System.Int32,System.Int32)
isExternal: true
2020-05-21 01:08:36 +02:00
- uid: Microsoft.Xna.Framework.Graphics.Texture2D
commentId: T:Microsoft.Xna.Framework.Graphics.Texture2D
parent: Microsoft.Xna.Framework.Graphics
isExternal: true
name: Texture2D
nameWithType: Texture2D
fullName: Microsoft.Xna.Framework.Graphics.Texture2D
- uid: Microsoft.Xna.Framework.Graphics
commentId: N:Microsoft.Xna.Framework.Graphics
isExternal: true
name: Microsoft.Xna.Framework.Graphics
nameWithType: Microsoft.Xna.Framework.Graphics
fullName: Microsoft.Xna.Framework.Graphics
- uid: MLEM.Textures.NinePatch.#ctor(MLEM.Textures.TextureRegion,System.Int32)
commentId: M:MLEM.Textures.NinePatch.#ctor(MLEM.Textures.TextureRegion,System.Int32)
2020-05-21 01:08:36 +02:00
isExternal: true