Difference between revisions of "API:SeekOrigin"

From Kerbal Space Program Wiki
Jump to: navigation, search
(Created page with "{{Namespace:KSP.IO}} {{Enum |name=SeekOrigin |desc=This enum is a replacement for its System.IO equivalent. It's used to determine from where one wishes to seek in a file str...")
 
m
Line 2: Line 2:
 
{{Enum
 
{{Enum
 
|name=SeekOrigin
 
|name=SeekOrigin
|desc=This enum is a replacement for its System.IO equivalent.  It's used to determine from where one wishes to seek in a file stream.
+
|summary=This enum is a replacement for its System.IO equivalent.  It's used to determine from where one wishes to seek in a file stream.
 
}}
 
}}
 
{{EnumStart}}
 
{{EnumStart}}
Line 12: Line 12:
 
|name=Current
 
|name=Current
 
|desc=Seek from the current position in the stream.
 
|desc=Seek from the current position in the stream.
 +
}}
 
{{EnumValue
 
{{EnumValue
 
|name=End
 
|name=End

Revision as of 10:11, 14 October 2012

KSP.IO Namespace
BinaryReader · BinaryWriter · File · FileInfo · FileStream · IOException · IOTools · IOUtils · MemoryStream · PluginConfigNode · PluginConfiguration · TextReader · TextWriter

|- | SeekOrigin | Enum template: values parameter missing

Begin Seek from the beginning of the stream.
Current Seek from the current position in the stream.
End Seek from the end of the stream.